svn commit: trunk/busybox

aldot at busybox.net aldot at busybox.net
Fri Oct 7 18:45:05 UTC 2005


Author: aldot
Date: 2005-10-07 11:45:03 -0700 (Fri, 07 Oct 2005)
New Revision: 11803

Log:
- add config target bareconfig. Enables all applets but without any features.
  Rob wanted to have regression tests if a bug crops up. Here you are wrt find :)


Modified:
   trunk/busybox/Makefile


Changeset:
Modified: trunk/busybox/Makefile
===================================================================
--- trunk/busybox/Makefile	2005-10-07 17:44:14 UTC (rev 11802)
+++ trunk/busybox/Makefile	2005-10-07 18:45:03 UTC (rev 11803)
@@ -9,7 +9,8 @@
 # You shouldn't need to mess with anything beyond this point...
 #--------------------------------------------------------------
 noconfig_targets := menuconfig config oldconfig randconfig \
-	defconfig allyesconfig allnoconfig clean distclean \
+	defconfig allyesconfig allnoconfig bareconfig \
+	clean distclean \
 	release tags
 
 # the toplevel sourcedir
@@ -118,7 +119,8 @@
 	@echo 'Configuration:'
 	@echo '  allnoconfig		- disable all symbols in .config'
 	@echo '  allyesconfig		- enable (almost) all symbols in .config'
-	@echo '  config		- text based configurator (of last resort).'
+	@echo '  bareconfig		- 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'
 	@echo '  oldconfig		- resolve any unresolved symbols in .config'
@@ -189,6 +191,10 @@
 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)
+
 else # ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
 
 all: busybox busybox.links doc




More information about the busybox-cvs mailing list