busybox: make samba support optional

This commit is contained in:
Stefan Saraev 2013-07-20 19:47:44 +03:00
parent 9f40d7d87b
commit 536402c663

View File

@ -47,6 +47,9 @@ cd $BUILD/busybox*
if [ ! "$NFS_SUPPORT" = yes ]; then
sed -i -e "s|^CONFIG_FEATURE_MOUNT_NFS=.*$|# CONFIG_FEATURE_MOUNT_NFS is not set|" .config
fi
if [ ! "$SAMBA_SUPPORT" = yes ]; then
sed -i -e "s|^CONFIG_FEATURE_MOUNT_CIFS=.*$|# CONFIG_FEATURE_MOUNT_CIFS is not set|" .config
fi
make oldconfig