summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Silverstone <daniel.silverstone@codethink.co.uk>2014-05-13 10:56:52 +0000
committerDaniel Silverstone <daniel.silverstone@codethink.co.uk>2014-05-13 10:56:52 +0000
commitbf06394ab87ff22662084c82c1821847c25b7f21 (patch)
tree12bed0f3152e6a8db6bba0949d8f7cf8e13a9ae1
parenteeb9014f28e3aa00673a0fad127e7420da4392db (diff)
downloadbusybox-baserock/danielsilverstone/vagrant-support.tar.gz
Enable bbconfig and mount helpersbaserock/danielsilverstone/vagrant-support
-rw-r--r--busybox.morph6
1 files changed, 6 insertions, 0 deletions
diff --git a/busybox.morph b/busybox.morph
index 74da16ddc..796abd33a 100644
--- a/busybox.morph
+++ b/busybox.morph
@@ -49,6 +49,12 @@ configure-commands:
- sed -e 's/CONFIG_UNXZ=y.*/# CONFIG_UNXZ is not set/' -i .config
- sed -e 's/CONFIG_XZ=y.*/# CONFIG_XZ is not set/' -i .config
+ # Now turn on some little bits we do need
+ - sed -e 's/# CONFIG_BBCONFIG is not set/CONFIG_BBCONFIG=y/' -i .config
+ - sed -e 's/# CONFIG_FEATURE_COMPRESS_BBCONFIG is not set/CONFIG_FEATURE_COMPRESS_BBCONFIG=y/' -i .config
+ - sed -e 's/# CONFIG_FEATURE_MOUNT_HELPERS is not set/CONFIG_FEATURE_MOUNT_HELPERS=y/' -i .config
+
+
build-commands:
- make
- |