summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-05-02 13:09:13 +0100
committerSuper user <root@baserock.(none)>2012-09-17 13:11:38 +0000
commit076eba1c86ba0e069434492b8bfc44627e386168 (patch)
tree28c0a624cdfef20eff60f40ce47168103958e7a6
parentb5d6a1a88cad805c25aea197a3645218ca771749 (diff)
downloadbusybox-076eba1c86ba0e069434492b8bfc44627e386168.tar.gz
busybox.morph: don't build strings or mke2fs
Binutils also provides strings and itt is not easy to prevent binutils from building it. Since it is primarily a development tool it doesn't need to be in foundation e2fsprogs also provides mkfs.ext2 and mke2fs. The ability to make these filesystems isn't functionality required in foundation, and it is difficult to make e2fsprogs not build those programs.
-rw-r--r--busybox.morph2
1 files changed, 2 insertions, 0 deletions
diff --git a/busybox.morph b/busybox.morph
index e4354bc89..76b67aaf2 100644
--- a/busybox.morph
+++ b/busybox.morph
@@ -20,6 +20,8 @@
"sed -e 's/.*MODPROBE=.*/CONFIG_MODPROBE=y/' -i .config",
"sed -e 's/.*FEATURE_MODPROBE_BLACKLIST=.*/CONFIG_FEATURE_MODPROBE_BLACKLIST=y/' -i .config",
"sed -e 's/.*FEATURE_LSMOD_PRETTY_2_6_OUTPUT=.*/CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT=y/' -i .config",
+ "sed -e 's/.*CONFIG_MKFS_EXT2.*/# CONFIG_MKFS_EXT2 is not set/' -i .config",
+ "sed -e 's/.*CONFIG_STRINGS.*/# CONFIG_STRINGS is not set/' -i .config",
"sed -e 's/.*CONFIG_PATCH.*/# CONFIG_PATCH is not set/' -i .config",
"sed -e 's/.*CONFIG_UNXZ.*/# CONFIG_UNXZ is not set/' -i .config",
"sed -e 's/.*CONFIG_XZ.*/# CONFIG_XZ is not set/' -i .config",