Changeset 14436 in vbox for trunk/src/VBox
- Timestamp:
- Nov 20, 2008 9:06:10 PM (16 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/linux/Makefile
r14432 r14436 206 206 endif 207 207 208 KBUILD_VERBOSE ?= 1 209 208 210 # 209 211 # Compiler options … … 269 271 270 272 $(MODULE): 271 $(MAKE) KBUILD_VERBOSE= 1-C $(KERN_DIR) SUBDIRS=$(CURDIR) SRCROOT=$(CURDIR) modules273 $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) -C $(KERN_DIR) SUBDIRS=$(CURDIR) SRCROOT=$(CURDIR) modules 272 274 273 275 ifeq ($(KERN_VERSION),24) -
trunk/src/VBox/HostDrivers/VBoxNetFlt/linux/Makefile
r14430 r14436 200 200 endif 201 201 202 KBUILD_VERBOSE ?= 1 203 202 204 # 203 205 # Compiler options … … 251 253 252 254 $(MODULE): 253 $(MAKE) KBUILD_VERBOSE= 1-C $(KERN_DIR) SUBDIRS=$(CURDIR) SRCROOT=$(CURDIR) modules255 $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) -C $(KERN_DIR) SUBDIRS=$(CURDIR) SRCROOT=$(CURDIR) modules 254 256 255 257 install: $(MODULE) -
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.