linux/advanced: default to make menuconfig

This commit is contained in:
Peter Korsgaard 2009-01-26 16:25:17 +00:00
parent 132b010efc
commit d2c6e22040
2 changed files with 2 additions and 2 deletions

View File

@ -406,7 +406,7 @@ config BR2_PACKAGE_LINUX_KCONFIG
choice choice
prompt "Preferred config tool" prompt "Preferred config tool"
default BR2_MAKE_XCONFIG default BR2_MAKE_MENUCONFIG
depends on BR2_PACKAGE_LINUX_USE_XCONFIG depends on BR2_PACKAGE_LINUX_USE_XCONFIG
help help
Define the preferred tool to invoke if a configuration is invalid Define the preferred tool to invoke if a configuration is invalid

View File

@ -117,7 +117,7 @@ else
KERNEL_CONFIG_METHOD:=$(strip $(subst ",,$(BR2_KERNEL_CONFIG_METHOD))) KERNEL_CONFIG_METHOD:=$(strip $(subst ",,$(BR2_KERNEL_CONFIG_METHOD)))
#")) #"))
ifeq ($(KERNEL_CONFIG_METHOD),) ifeq ($(KERNEL_CONFIG_METHOD),)
KERNEL_CONFIG_METHOD:=xconfig KERNEL_CONFIG_METHOD:=menuconfig
endif endif
endif endif
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------