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