X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/263c7a706996b2991462fdc47146cb9a7a6ac19f..54ca5395e8b95e06ad81e8f94a754b42adb59319:/include/kernel-build.mk?ds=inline diff --git a/include/kernel-build.mk b/include/kernel-build.mk index 7a02d5553..8750bb4fd 100644 --- a/include/kernel-build.mk +++ b/include/kernel-build.mk @@ -11,6 +11,8 @@ include $(INCLUDE_DIR)/host.mk include $(INCLUDE_DIR)/kernel.mk include $(INCLUDE_DIR)/prereq.mk +override MAKEFLAGS= + GENERIC_LINUX_CONFIG:=$(GENERIC_PLATFORM_DIR)/config-$(shell [ -f "$(GENERIC_PLATFORM_DIR)/config-$(KERNEL_PATCHVER)" ] && echo "$(KERNEL_PATCHVER)" || echo template ) LINUX_CONFIG_DIR ?= ./config$(shell [ -d "./config-$(KERNEL_PATCHVER)" ] && printf -- "-$(KERNEL_PATCHVER)" || true ) LINUX_CONFIG ?= $(LINUX_CONFIG_DIR)/default @@ -165,6 +167,8 @@ $(eval $(call shexport,Target/Description)) download: $(DL_DIR)/$(LINUX_SOURCE) prepare: $(STAMP_CONFIGURED) compile: $(LINUX_DIR)/.modules + $(MAKE) -C image compile + oldconfig menuconfig: $(STAMP_PREPARED) FORCE $(call Kernel/Configure) $(SCRIPT_DIR)/config.pl '+' $(GENERIC_LINUX_CONFIG) $(LINUX_CONFIG) > $(LINUX_DIR)/.config @@ -172,6 +176,7 @@ oldconfig menuconfig: $(STAMP_PREPARED) FORCE $(SCRIPT_DIR)/config.pl '>' $(GENERIC_LINUX_CONFIG) $(LINUX_DIR)/.config > $(LINUX_CONFIG) install: $(LINUX_DIR)/.image + $(MAKE) -C image compile install clean: FORCE rm -f $(STAMP_DIR)/.linux-compile @@ -184,4 +189,7 @@ rebuild: FORCE fi @$(MAKE) compile +image-prereq: + $(SUBMAKE) -s -C image prereq +prereq: image-prereq