diff options
author | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-01-31 02:42:50 +0000 |
---|---|---|
committer | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-01-31 02:42:50 +0000 |
commit | 8d2abb4caf2c9019634727b6d09536e97501b7a1 (patch) | |
tree | 1b7ce8fe0426150ffa6b665f9af5720f459761af | |
parent | e4c3642c175326dc960999caa74798de8c703ab5 (diff) | |
download | busybox-w32-8d2abb4caf2c9019634727b6d09536e97501b7a1.tar.gz busybox-w32-8d2abb4caf2c9019634727b6d09536e97501b7a1.tar.bz2 busybox-w32-8d2abb4caf2c9019634727b6d09536e97501b7a1.zip |
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.
git-svn-id: svn://busybox.net/trunk/busybox@13743 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -184,15 +184,21 @@ randconfig: scripts/config/conf | |||
184 | 184 | ||
185 | allyesconfig: scripts/config/conf | 185 | allyesconfig: scripts/config/conf |
186 | @./scripts/config/conf -y $(CONFIG_CONFIG_IN) | 186 | @./scripts/config/conf -y $(CONFIG_CONFIG_IN) |
187 | sed -i -r -e "s/^(USING_CROSS_COMPILER|CONFIG_(DEBUG.*|STATIC|SELINUX|FEATURE_DEVFS|BUILD_AT_ONCE))=.*/# \1 is not set/" .config | 187 | sed -i -r -e "s/^(USING_CROSS_COMPILER)=.*/# \1 is not set/" .config |
188 | echo "CONFIG_FEATURE_SHARED_BUSYBOX=y" >> .config | 188 | echo "CONFIG_FEATURE_SHARED_BUSYBOX=y" >> .config |
189 | @./scripts/config/conf -o $(CONFIG_CONFIG_IN) | 189 | @./scripts/config/conf -o $(CONFIG_CONFIG_IN) |
190 | 190 | ||
191 | allnoconfig: scripts/config/conf | 191 | allnoconfig: scripts/config/conf |
192 | @./scripts/config/conf -n $(CONFIG_CONFIG_IN) | 192 | @./scripts/config/conf -n $(CONFIG_CONFIG_IN) |
193 | 193 | ||
194 | #defconfig: scripts/config/conf | ||
195 | # @./scripts/config/conf -d $(CONFIG_CONFIG_IN) | ||
196 | |||
194 | defconfig: scripts/config/conf | 197 | defconfig: scripts/config/conf |
195 | @./scripts/config/conf -d $(CONFIG_CONFIG_IN) | 198 | @./scripts/config/conf -y $(CONFIG_CONFIG_IN) |
199 | 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 | ||
200 | @./scripts/config/conf -o $(CONFIG_CONFIG_IN) | ||
201 | |||
196 | 202 | ||
197 | allbareconfig: scripts/config/conf | 203 | allbareconfig: scripts/config/conf |
198 | @./scripts/config/conf -y $(CONFIG_CONFIG_IN) | 204 | @./scripts/config/conf -y $(CONFIG_CONFIG_IN) |