From be5c10314dc8b80614e80c9a753af8865ba75f1a Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Sat, 8 Oct 2005 11:08:28 +0000 Subject: - rename bareconfig to allbareconfig and emit "is not set" strings needed for oldconfig. --- Makefile | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index cfe62cc32..d213dc597 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ # You shouldn't need to mess with anything beyond this point... #-------------------------------------------------------------- noconfig_targets := menuconfig config oldconfig randconfig \ - defconfig allyesconfig allnoconfig bareconfig \ + defconfig allyesconfig allnoconfig allbareconfig \ clean distclean \ release tags @@ -119,7 +119,7 @@ help: @echo 'Configuration:' @echo ' allnoconfig - disable all symbols in .config' @echo ' allyesconfig - enable (almost) all symbols in .config' - @echo ' bareconfig - enable all basics without any features' + @echo ' allbareconfig - enable all basics without any features' @echo ' config - text based configurator (of last resort)' @echo ' defconfig - set .config to defaults' @echo ' menuconfig - interactive curses-based configurator' @@ -191,9 +191,12 @@ allnoconfig: scripts/config/conf defconfig: scripts/config/conf @./scripts/config/conf -d $(CONFIG_CONFIG_IN) -bareconfig: allyesconfig - sed -i '/FEATURE/d' .config - @./scripts/config/conf -d $(CONFIG_CONFIG_IN) +allbareconfig: scripts/config/conf + @./scripts/config/conf -y $(CONFIG_CONFIG_IN) + sed -i -r -e "s/^(CONFIG_DEBUG|USING_CROSS_COMPILER|CONFIG_STATIC|CONFIG_SELINUX).*/# \1 is not set/" .config + sed -i -e "/FEATURE/s/=.*//;/^[^#]/s/.*FEATURE.*/# \0 is not set/;" .config + @echo "CONFIG_FEATURE_BUFFERS_GO_ON_STACK=y" >> .config + @./scripts/config/conf -o $(CONFIG_CONFIG_IN) else # ifneq ($(strip $(HAVE_DOT_CONFIG)),y) -- cgit v1.2.3