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 <nsora...@tiscali.it>

---
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

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

Reply via email to