Changeset 14436 in vbox for trunk/src/VBox/Installer/linux
- Timestamp:
- Nov 20, 2008 9:06:10 PM (16 years ago)
- Location:
- trunk/src/VBox/Installer/linux
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/linux/Makefile.kmk
r14256 r14436 252 252 $(QUIET)$(SED_EXT) \ 253 253 -e "s|%NOLSB%|yes|g" \ 254 -e "s|%NETFLT%|$(VBOX_WITH_NETFLT)|g" \255 254 -e "s|%PACKAGE%|virtualbox|g" \ 256 255 --output $@ \ -
trunk/src/VBox/Installer/linux/vboxdrv.sh.in
r14256 r14436 32 32 LOG="/var/log/vbox-install.log" 33 33 NOLSB=%NOLSB% 34 NETFLT=%NETFLT%35 34 36 35 [ -f /lib/lsb/init-functions ] || NOLSB=yes … … 183 182 failure "Cannot change owner $GROUPNAME for device $DEVICE" 184 183 fi 185 if [ -n "$NETFLT" ]; then 186 if ! modprobe vboxnetflt > /dev/null 2>&1; then 187 failure "modprobe vboxnetflt failed. Please use 'dmesg' to find out why" 188 fi 184 if ! modprobe vboxnetflt > /dev/null 2>&1; then 185 failure "modprobe vboxnetflt failed. Please use 'dmesg' to find out why" 189 186 fi 190 187 succ_msg … … 276 273 failure "Look at $LOG to find out what went wrong" 277 274 fi 278 if [ -n "$NETFLT" ]; then 279 if ! $BUILDVBOXNETFLT \ 280 --use-module-symvers /tmp/vboxdrv-Module.symvers \ 281 --no-print-directory install >> $LOG 2>&1; then 282 failure "Look at $LOG to find out what went wrong" 283 fi 275 if ! $BUILDVBOXNETFLT \ 276 --use-module-symvers /tmp/vboxdrv-Module.symvers \ 277 --no-print-directory install >> $LOG 2>&1; then 278 failure "Look at $LOG to find out what went wrong" 284 279 fi 285 280 succ_msg
Note:
See TracChangeset
for help on using the changeset viewer.