diff mbox

Make firmware before install

Message ID 200904221528.13225.nsoranzo@tiscali.it (mailing list archive)
State Accepted
Headers show

Commit Message

Nicola Soranzo April 22, 2009, 1:28 p.m. UTC
Presently with the usual:

make && sudo make install

firmware is not built during make, but in the second step with root privileges,
which should be avoided.
This patch adds firmware dependency to the default make target.
Moreover, one more file (ihex2fw) should be deleted by firmware clean.

Priority: normal

Signed-off-by: Nicola Soranzo <nsoranzo@tiscali.it>

---

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff -r 2a6d95947fa1 -r bf39a52e7f49 v4l/Makefile
--- a/v4l/Makefile	Sun Apr 19 20:21:03 2009 +0000
+++ b/v4l/Makefile	Wed Apr 22 15:18:13 2009 +0200
@@ -39,7 +39,7 @@ 
 #################################################
 # default compilation rule
 
-default:: config-compat.h Makefile.media links oss
+default:: config-compat.h Makefile.media links oss firmware
 	@echo Kernel build directory is $(OUTDIR)
 	$(MAKE) -C $(OUTDIR) SUBDIRS=$(PWD) $(MYCFLAGS) modules
 	./scripts/rmmod.pl check
diff -r 2a6d95947fa1 -r bf39a52e7f49 v4l/firmware/Makefile
--- a/v4l/firmware/Makefile	Sun Apr 19 20:21:03 2009 +0000
+++ b/v4l/firmware/Makefile	Wed Apr 22 15:18:13 2009 +0200
@@ -7,6 +7,7 @@ 
 default: $(TARGETS)
 
 clean:
+	-rm -f ihex2fw
 	-rm -f $(TARGETS)
 
 distclean: clean