Changeset 39358 in vbox for trunk/src/VBox/Installer
- Timestamp:
- Nov 17, 2011 10:25:36 PM (13 years ago)
- Location:
- trunk/src/VBox/Installer/linux
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/linux/Makefile.kmk
r39334 r39358 339 339 -e "s|%DEBIAN%||g" \ 340 340 -e "s|%PACKAGE%|virtualbox|g" \ 341 -e "s|%VERSION%|$(VBOX_VERSION_STRING)|g" \ 341 342 --output $@ \ 342 343 $< … … 347 348 -e "s|%DEBIAN%||g" \ 348 349 -e "s|%PACKAGE%|virtualbox|g" \ 350 -e "s|%VERSION%|$(VBOX_VERSION_STRING)|g" \ 349 351 -e "s|%GROUP%|$(if $(VBOX_WITHOUT_HARDENING),vboxusers,root)|g" \ 350 352 --output $@ \ -
trunk/src/VBox/Installer/linux/debian/rules
r39223 r39358 318 318 -e 's|%DEBIAN%|yes|g' \ 319 319 -e 's|%PACKAGE%|virtualbox|g' \ 320 -e "s|%VERSION%|$(VBOX_VERSION_STRING)|g" \ 320 321 -e "s|%GROUP%|$(if $(VBOX_WITHOUT_HARDENING),vboxusers,root)|g" \ 321 322 $(vboxroot)/src/VBox/Installer/linux/vboxdrv.sh.in > debian/vboxdrv.init -
trunk/src/VBox/Installer/linux/rpm/rules
r39223 r39358 184 184 -e 's|%DEBIAN%||g' \ 185 185 -e 's|%PACKAGE%|virtualbox|g' \ 186 -e "s|%VERSION%|$(VBOX_VERSION_STRING)|g" \ 186 187 -e "s|%GROUP%|$(if $(VBOX_WITHOUT_HARDENING),vboxusers,root)|g" \ 187 188 vboxdrv.sh.in > $(archdir)/vboxdrv.init -
trunk/src/VBox/Installer/linux/vboxdrv.sh.in
r39334 r39358 32 32 NOLSB=%NOLSB% 33 33 DEBIAN=%DEBIAN% 34 VERSION=%VERSION% 34 35 MODPROBE=/sbin/modprobe 35 36 … … 299 300 stop 300 301 begin_msg "Uninstalling old VirtualBox DKMS kernel modules" 301 $DODKMS uninstall > $LOG302 $DODKMS uninstall vboxhost vboxdrv vboxnetflt vboxnetadp > $LOG 302 303 succ_msg 303 304 if find /lib/modules/`uname -r` -name "vboxpci\.*" 2>/dev/null|grep -q vboxpci; then … … 322 323 fi 323 324 begin_msg "Trying to register the VirtualBox kernel modules using DKMS" 324 if ! $DODKMS install >> $LOG; then325 if ! $DODKMS install vboxhost $VERSION >> $LOG; then 325 326 fail_msg "Failed, trying without DKMS" 326 327 begin_msg "Recompiling VirtualBox kernel modules"
Note:
See TracChangeset
for help on using the changeset viewer.