Changeset 61411 in vbox for trunk/src/VBox/HostDrivers/VBoxNetAdp/linux
- Timestamp:
- Jun 2, 2016 1:06:58 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetAdp/linux/Makefile
r61081 r61411 197 197 obj-m += $(MODULE).o 198 198 199 JOBS := $(shell (getconf _NPROCESSORS_ONLN || grep -Ec '^processor|^CPU[0-9]' /proc/cpuinfo) 2>/dev/null) 200 ifeq ($(JOBS),0) 201 JOBS := 1 202 endif 203 199 204 # OL/UEK: disable module signing for external modules -- we don't have any private key 200 205 $(MODULE): 201 $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) SUBDIRS=$(CURDIR) SRCROOT=$(CURDIR) CONFIG_MODULE_SIG= -C $(KERN_DIR) modules206 $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) SUBDIRS=$(CURDIR) SRCROOT=$(CURDIR) CONFIG_MODULE_SIG= -C $(KERN_DIR) -j$(JOBS) modules 202 207 203 208 install: $(MODULE)
Note:
See TracChangeset
for help on using the changeset viewer.