make kernel_menuconfig work without target toolchain
SVN-Revision: 6312
This commit is contained in:
parent
20db49bf2c
commit
509bb267a3
3 changed files with 5 additions and 4 deletions
2
Makefile
2
Makefile
|
@ -114,7 +114,7 @@ menuconfig: scripts/config/mconf tmp/.config.in tmp/.config-target.in FORCE
|
|||
$< Config.in
|
||||
|
||||
kernel_menuconfig: .config FORCE
|
||||
$(MAKE) target/linux-prepare
|
||||
-$(MAKE) target/linux-prepare
|
||||
$(NO_TRACE_MAKE) -C target/linux menuconfig
|
||||
|
||||
package/%: tmp/.pkginfo tmp/.targetinfo FORCE
|
||||
|
|
|
@ -92,7 +92,6 @@ define Kernel/Configure/2.6
|
|||
endef
|
||||
define Kernel/Configure/Default
|
||||
@$(CP) $(LINUX_CONFIG) $(LINUX_DIR)/.config
|
||||
$(call Kernel/Configure/$(KERNEL))
|
||||
endef
|
||||
define Kernel/Configure
|
||||
$(call Kernel/Configure/Default)
|
||||
|
@ -163,6 +162,7 @@ define BuildKernel
|
|||
|
||||
$(LINUX_DIR)/.configured: $(LINUX_DIR)/.prepared $(LINUX_CONFIG)
|
||||
$(call Kernel/Configure)
|
||||
$(call Kernel/Configure/$(KERNEL))
|
||||
touch $$@
|
||||
|
||||
$(LINUX_DIR)/.modules: $(LINUX_DIR)/.configured
|
||||
|
@ -226,7 +226,8 @@ $(eval $(call shexport,Target/Description))
|
|||
download: $(DL_DIR)/$(LINUX_SOURCE)
|
||||
prepare: $(LINUX_DIR)/.configured $(TMP_DIR)/.kernel.mk
|
||||
compile: $(LINUX_DIR)/.modules
|
||||
menuconfig: $(LINUX_DIR)/.configured FORCE
|
||||
menuconfig: $(LINUX_DIR)/.prepared FORCE
|
||||
$(call Kernel/Configure)
|
||||
$(MAKE) -C $(LINUX_DIR) $(KERNEL_MAKEOPTS) menuconfig
|
||||
$(SCRIPT_DIR)/config.pl $(LINUX_DIR)/.config > $(PLATFORM_DIR)/config
|
||||
ifeq ($(KERNEL),2.6)
|
||||
|
|
|
@ -19,7 +19,7 @@ compile:
|
|||
install:
|
||||
$(MAKE) -C $(BOARD)-$(KERNEL) install
|
||||
|
||||
menuconfig: prepare
|
||||
menuconfig:
|
||||
$(MAKE) -C $(BOARD)-$(KERNEL) menuconfig
|
||||
|
||||
clean:
|
||||
|
|
Loading…
Reference in a new issue