Changeset 61411 in vbox
- Timestamp:
- Jun 2, 2016 1:06:58 PM (8 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 5 edited
-
HostDrivers/Support/linux/Makefile (modified) (1 diff)
-
HostDrivers/VBoxNetAdp/linux/Makefile (modified) (1 diff)
-
HostDrivers/VBoxNetFlt/linux/Makefile (modified) (1 diff)
-
HostDrivers/VBoxPci/linux/Makefile (modified) (1 diff)
-
Installer/linux/Makefile.include.footer (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/linux/Makefile
r61081 r61411 294 294 obj-m += $(MODULE).o 295 295 296 JOBS := $(shell (getconf _NPROCESSORS_ONLN || grep -Ec '^processor|^CPU[0-9]' /proc/cpuinfo) 2>/dev/null) 297 ifeq ($(JOBS),0) 298 JOBS := 1 299 endif 300 296 301 # OL/UEK: disable module signing for external modules -- we don't have any private key 297 302 $(MODULE): 298 $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) SUBDIRS=$(CURDIR) SRCROOT=$(CURDIR) CONFIG_MODULE_SIG= -C $(KERN_DIR) modules303 $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) SUBDIRS=$(CURDIR) SRCROOT=$(CURDIR) CONFIG_MODULE_SIG= -C $(KERN_DIR) -j$(JOBS) modules 299 304 300 305 install: $(MODULE) -
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) -
trunk/src/VBox/HostDrivers/VBoxNetFlt/linux/Makefile
r61081 r61411 201 201 obj-m += $(MODULE).o 202 202 203 JOBS := $(shell (getconf _NPROCESSORS_ONLN || grep -Ec '^processor|^CPU[0-9]' /proc/cpuinfo) 2>/dev/null) 204 ifeq ($(JOBS),0) 205 JOBS := 1 206 endif 207 203 208 # OL/UEK: disable module signing for external modules -- we don't have any private key 204 209 $(MODULE): 205 $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) SUBDIRS=$(CURDIR) SRCROOT=$(CURDIR) CONFIG_MODULE_SIG= -C $(KERN_DIR) modules210 $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) SUBDIRS=$(CURDIR) SRCROOT=$(CURDIR) CONFIG_MODULE_SIG= -C $(KERN_DIR) -j$(JOBS) modules 206 211 207 212 install: $(MODULE) -
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) -
trunk/src/VBox/Installer/linux/Makefile.include.footer
r59453 r61411 75 75 obj-m += $(MODULE).o 76 76 77 JOBS := $(shell (getconf _NPROCESSORS_ONLN || grep -Ec '^processor|^CPU[0-9]' /proc/cpuinfo) 2>/dev/null) 78 ifeq ($(JOBS),0) 79 JOBS := 1 80 endif 81 77 82 # OL/UEK: disable module signing for external modules -- we don't have any private key 78 83 $(MODULE): 79 $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) CONFIG_MODULE_SIG= -C $(KERN_DIR) SUBDIRS=$(CURDIR) SRCROOT=$(CURDIR) modules84 $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) CONFIG_MODULE_SIG= -C $(KERN_DIR) SUBDIRS=$(CURDIR) SRCROOT=$(CURDIR) -j$(JOBS) modules 80 85 81 86 modules_install:
Note:
See TracChangeset
for help on using the changeset viewer.

