Changeset 77541 in vbox for trunk/src/VBox/Installer/linux
- Timestamp:
- Mar 3, 2019 4:39:14 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 129145
- Location:
- trunk/src/VBox/Installer/linux
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/linux/Makefile-footer.gmk
r77416 r77541 102 102 # OL/UEK: disable module signing for external modules -- we don't have any private key 103 103 $(VBOXMOD_0_TARGET): 104 ifneq ($(VBOX_KERN_GROKS_SUBDIRS),) 104 105 $(MAKE) V=$(VBOX_LNX_VERBOSE) CONFIG_MODULE_SIG= -C $(KERN_DIR) SUBDIRS=$(CURDIR) SRCROOT=$(CURDIR) $(if $(JOBS),-j$(JOBS),) modules 106 else 107 $(MAKE) V=$(VBOX_LNX_VERBOSE) CONFIG_MODULE_SIG= -C $(KERN_DIR) M=$(CURDIR) SRCROOT=$(CURDIR) $(if $(JOBS),-j$(JOBS),) modules 108 endif 105 109 106 110 install: $(VBOXMOD_0_TARGET) 111 ifneq ($(VBOX_KERN_GROKS_SUBDIRS),) 107 112 $(MAKE) V=$(VBOX_LNX_VERBOSE) CONFIG_MODULE_SIG= -C $(KERN_DIR) SUBDIRS=$(CURDIR) SRCROOT=$(CURDIR) INSTALL_MOD_PATH=$(INSTALL_MOD_PATH) INSTALL_MOD_DIR=$(INSTALL_MOD_DIR) modules_install 113 else 114 $(MAKE) V=$(VBOX_LNX_VERBOSE) CONFIG_MODULE_SIG= -C $(KERN_DIR) M=$(CURDIR) SRCROOT=$(CURDIR) INSTALL_MOD_PATH=$(INSTALL_MOD_PATH) INSTALL_MOD_DIR=$(INSTALL_MOD_DIR) modules_install 115 endif 108 116 109 117 modules_install: install 110 118 111 119 clean: 120 ifneq ($(VBOX_KERN_GROKS_SUBDIRS),) 112 121 $(MAKE) V=$(VBOX_LNX_VERBOSE) CONFIG_MODULE_SIG= -C $(KERN_DIR) SUBDIRS=$(CURDIR) SRCROOT=$(CURDIR) clean 122 else 123 $(MAKE) V=$(VBOX_LNX_VERBOSE) CONFIG_MODULE_SIG= -C $(KERN_DIR) M=$(CURDIR) SRCROOT=$(CURDIR) clean 124 endif 113 125 114 126 .PHONY: all $(VBOXMOD_0_TARGET) install modules_install clean -
trunk/src/VBox/Installer/linux/Makefile-header.gmk
r77504 r77541 126 126 ifeq ($(shell if grep '"2\.6\.[012345][."]' $(KERN_DIR)/include/linux/version.h > /dev/null 2>&1; then echo yes; fi),yes) 127 127 VBOX_KERN_GROKS_EXTMOD := 128 else 129 endif 130 endif 131 128 endif 129 VBOX_KERN_GROKS_SUBDIRS := 130 ifeq ($(shell if grep '"[432]\.' $(KERN_DIR)/include/linux/version.h > /dev/null 2>&1; then echo yes; fi),yes) 131 VBOX_KERN_GROKS_SUBDIRS := yes 132 endif 133 endif 132 134 else # neq($(KERNELRELEASE),) 133 135 … … 147 149 VBOX_KERN_GROKS_EXTMOD := 148 150 endif 151 endif 152 VBOX_KERN_GROKS_SUBDIRS := 153 ifeq ($(VERSION),2) 154 VBOX_KERN_GROKS_SUBDIRS := yes 155 endif 156 ifeq ($(VERSION),3) 157 VBOX_KERN_GROKS_SUBDIRS := yes 158 endif 159 ifeq ($(VERSION),4) 160 VBOX_KERN_GROKS_SUBDIRS := yes 149 161 endif 150 162 endif
Note:
See TracChangeset
for help on using the changeset viewer.