diff options
-rw-r--r-- | INSTALL | 4 | ||||
-rw-r--r-- | v4l/Makefile | 7 | ||||
-rwxr-xr-x | v4l/scripts/make_makefile.pl | 4 |
3 files changed, 10 insertions, 5 deletions
@@ -82,9 +82,7 @@ ivtv - enable merged ivtv build, using the latest ivtv sources cx88-ivtv - enable cx88-blackbird ivtv API emulation -ivtv-update - update ivtv sources - -ivtv-install - install ivtv and/or cx88-ivtv modules (requires root access) +ivtv-update - update ivtv sources from ivtvdriver.org ========================================== Patch preparation and tree handling rules: diff --git a/v4l/Makefile b/v4l/Makefile index 7814c6799..c57767940 100644 --- a/v4l/Makefile +++ b/v4l/Makefile @@ -115,6 +115,13 @@ export LC_ALL all:: allmodconfig default ################################################# +# installation invocation rules + +install:: media-install ivtv-install + +remove rminstall:: media-rminstall ivtv-rminstall + +################################################# # Compiling preparation rules Makefile.media:: diff --git a/v4l/scripts/make_makefile.pl b/v4l/scripts/make_makefile.pl index 6b8076a4d..238c5082f 100755 --- a/v4l/scripts/make_makefile.pl +++ b/v4l/scripts/make_makefile.pl @@ -113,7 +113,7 @@ open OUT,">Makefile.media"; open_makefile ("../linux/drivers/media/Makefile"); # Creating Install rule -printf OUT "install::\n"; +printf OUT "media-install::\n"; printf OUT "\t\@echo \"Stripping debug info from files:\"\n"; printf OUT "\t\@strip --strip-debug \$(inst-m)\n\n"; @@ -128,7 +128,7 @@ while ( my ($key, $value) = each(%instdir) ) { printf OUT "\t/sbin/depmod -a \${KERNELRELEASE}\n\n"; # Creating Remove rule -printf OUT "remove rminstall::\n"; +printf OUT "media-rminstall::\n"; printf OUT "\t\@echo -e \"\\nRemoving old \$(DEST) files\\n\"\n"; while ( my ($key, $value) = each(%instdir) ) { |