Skip to content
Snippets Groups Projects
Commit 509bb267 authored by Felix Fietkau's avatar Felix Fietkau
Browse files

make kernel_menuconfig work without target toolchain

SVN-Revision: 6312
parent 20db49bf
No related branches found
No related tags found
No related merge requests found
...@@ -114,7 +114,7 @@ menuconfig: scripts/config/mconf tmp/.config.in tmp/.config-target.in FORCE ...@@ -114,7 +114,7 @@ menuconfig: scripts/config/mconf tmp/.config.in tmp/.config-target.in FORCE
$< Config.in $< Config.in
kernel_menuconfig: .config FORCE kernel_menuconfig: .config FORCE
$(MAKE) target/linux-prepare -$(MAKE) target/linux-prepare
$(NO_TRACE_MAKE) -C target/linux menuconfig $(NO_TRACE_MAKE) -C target/linux menuconfig
package/%: tmp/.pkginfo tmp/.targetinfo FORCE package/%: tmp/.pkginfo tmp/.targetinfo FORCE
......
...@@ -92,7 +92,6 @@ define Kernel/Configure/2.6 ...@@ -92,7 +92,6 @@ define Kernel/Configure/2.6
endef endef
define Kernel/Configure/Default define Kernel/Configure/Default
@$(CP) $(LINUX_CONFIG) $(LINUX_DIR)/.config @$(CP) $(LINUX_CONFIG) $(LINUX_DIR)/.config
$(call Kernel/Configure/$(KERNEL))
endef endef
define Kernel/Configure define Kernel/Configure
$(call Kernel/Configure/Default) $(call Kernel/Configure/Default)
...@@ -163,6 +162,7 @@ define BuildKernel ...@@ -163,6 +162,7 @@ define BuildKernel
$(LINUX_DIR)/.configured: $(LINUX_DIR)/.prepared $(LINUX_CONFIG) $(LINUX_DIR)/.configured: $(LINUX_DIR)/.prepared $(LINUX_CONFIG)
$(call Kernel/Configure) $(call Kernel/Configure)
$(call Kernel/Configure/$(KERNEL))
touch $$@ touch $$@
$(LINUX_DIR)/.modules: $(LINUX_DIR)/.configured $(LINUX_DIR)/.modules: $(LINUX_DIR)/.configured
...@@ -226,7 +226,8 @@ $(eval $(call shexport,Target/Description)) ...@@ -226,7 +226,8 @@ $(eval $(call shexport,Target/Description))
download: $(DL_DIR)/$(LINUX_SOURCE) download: $(DL_DIR)/$(LINUX_SOURCE)
prepare: $(LINUX_DIR)/.configured $(TMP_DIR)/.kernel.mk prepare: $(LINUX_DIR)/.configured $(TMP_DIR)/.kernel.mk
compile: $(LINUX_DIR)/.modules compile: $(LINUX_DIR)/.modules
menuconfig: $(LINUX_DIR)/.configured FORCE menuconfig: $(LINUX_DIR)/.prepared FORCE
$(call Kernel/Configure)
$(MAKE) -C $(LINUX_DIR) $(KERNEL_MAKEOPTS) menuconfig $(MAKE) -C $(LINUX_DIR) $(KERNEL_MAKEOPTS) menuconfig
$(SCRIPT_DIR)/config.pl $(LINUX_DIR)/.config > $(PLATFORM_DIR)/config $(SCRIPT_DIR)/config.pl $(LINUX_DIR)/.config > $(PLATFORM_DIR)/config
ifeq ($(KERNEL),2.6) ifeq ($(KERNEL),2.6)
......
...@@ -19,7 +19,7 @@ compile: ...@@ -19,7 +19,7 @@ compile:
install: install:
$(MAKE) -C $(BOARD)-$(KERNEL) install $(MAKE) -C $(BOARD)-$(KERNEL) install
menuconfig: prepare menuconfig:
$(MAKE) -C $(BOARD)-$(KERNEL) menuconfig $(MAKE) -C $(BOARD)-$(KERNEL) menuconfig
clean: clean:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment