- 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 :)
This commit is contained in:
parent
b8faa7ea60
commit
a9d8913bc7
10
Makefile
10
Makefile
@ -9,7 +9,8 @@
|
|||||||
# You shouldn't need to mess with anything beyond this point...
|
# You shouldn't need to mess with anything beyond this point...
|
||||||
#--------------------------------------------------------------
|
#--------------------------------------------------------------
|
||||||
noconfig_targets := menuconfig config oldconfig randconfig \
|
noconfig_targets := menuconfig config oldconfig randconfig \
|
||||||
defconfig allyesconfig allnoconfig clean distclean \
|
defconfig allyesconfig allnoconfig bareconfig \
|
||||||
|
clean distclean \
|
||||||
release tags
|
release tags
|
||||||
|
|
||||||
# the toplevel sourcedir
|
# the toplevel sourcedir
|
||||||
@ -118,7 +119,8 @@ help:
|
|||||||
@echo 'Configuration:'
|
@echo 'Configuration:'
|
||||||
@echo ' allnoconfig - disable all symbols in .config'
|
@echo ' allnoconfig - disable all symbols in .config'
|
||||||
@echo ' allyesconfig - enable (almost) 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 ' defconfig - set .config to defaults'
|
||||||
@echo ' menuconfig - interactive curses-based configurator'
|
@echo ' menuconfig - interactive curses-based configurator'
|
||||||
@echo ' oldconfig - resolve any unresolved symbols in .config'
|
@echo ' oldconfig - resolve any unresolved symbols in .config'
|
||||||
@ -189,6 +191,10 @@ allnoconfig: scripts/config/conf
|
|||||||
defconfig: scripts/config/conf
|
defconfig: scripts/config/conf
|
||||||
@./scripts/config/conf -d $(CONFIG_CONFIG_IN)
|
@./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)
|
else # ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
|
||||||
|
|
||||||
all: busybox busybox.links doc
|
all: busybox busybox.links doc
|
||||||
|
Loading…
Reference in New Issue
Block a user