diff options
author | Rob Landley | 2006-01-31 02:42:50 +0000 |
---|---|---|
committer | Rob Landley | 2006-01-31 02:42:50 +0000 |
commit | a167ec5e633b5007883b3e0d5619792914e3540f (patch) | |
tree | 1b7ce8fe0426150ffa6b665f9af5720f459761af /Makefile | |
parent | 3496fdc9a573a424e34141cbe04250cc8df15e32 (diff) | |
download | busybox-a167ec5e633b5007883b3e0d5619792914e3540f.zip busybox-a167ec5e633b5007883b3e0d5619792914e3540f.tar.gz |
Turn defconfig into what make allyesconfig is today. Turn allyesconfig
back into allyesconfig. (Memo: apparently SELINUX doesn't compile anymore.)
Make defconfig shouldn't switch on libbusybox.so, but allyesconfig does.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -184,15 +184,21 @@ randconfig: scripts/config/conf allyesconfig: scripts/config/conf @./scripts/config/conf -y $(CONFIG_CONFIG_IN) - sed -i -r -e "s/^(USING_CROSS_COMPILER|CONFIG_(DEBUG.*|STATIC|SELINUX|FEATURE_DEVFS|BUILD_AT_ONCE))=.*/# \1 is not set/" .config + sed -i -r -e "s/^(USING_CROSS_COMPILER)=.*/# \1 is not set/" .config echo "CONFIG_FEATURE_SHARED_BUSYBOX=y" >> .config @./scripts/config/conf -o $(CONFIG_CONFIG_IN) allnoconfig: scripts/config/conf @./scripts/config/conf -n $(CONFIG_CONFIG_IN) +#defconfig: scripts/config/conf +# @./scripts/config/conf -d $(CONFIG_CONFIG_IN) + defconfig: scripts/config/conf - @./scripts/config/conf -d $(CONFIG_CONFIG_IN) + @./scripts/config/conf -y $(CONFIG_CONFIG_IN) + sed -i -r -e "s/^(USING_CROSS_COMPILER|CONFIG_(DEBUG.*|STATIC|SELINUX|FEATURE_DEVFS|BUILD_AT_ONCE|BUILD_LIBBUSYBOX|FEATURE_FULL_LIBBUSYBOX|FEATURE_SHARED_BUSYBOX))=.*/# \1 is not set/" .config + @./scripts/config/conf -o $(CONFIG_CONFIG_IN) + allbareconfig: scripts/config/conf @./scripts/config/conf -y $(CONFIG_CONFIG_IN) |