summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--remote/rootfs/rootfs-stage32/rootfs-stage32.build2
-rw-r--r--remote/rootfs/rootfs-stage32/rootfs-stage32.conf7
2 files changed, 6 insertions, 3 deletions
diff --git a/remote/rootfs/rootfs-stage32/rootfs-stage32.build b/remote/rootfs/rootfs-stage32/rootfs-stage32.build
index 713c0a3d..162dcdc2 100644
--- a/remote/rootfs/rootfs-stage32/rootfs-stage32.build
+++ b/remote/rootfs/rootfs-stage32/rootfs-stage32.build
@@ -17,7 +17,7 @@ build() {
pinfo "Searching binaries from config file in system..."
for BIN in ${REQUIRED_BINARIES}
do
- BIN_LOCATION=$(which ${BIN})
+ BIN_LOCATION="$(which ${BIN})"
if [ ! -z ${BIN_LOCATION} -a -e ${BIN_LOCATION} ];
then
get_link_chain ${BIN_LOCATION} >> "${FILELIST}"
diff --git a/remote/rootfs/rootfs-stage32/rootfs-stage32.conf b/remote/rootfs/rootfs-stage32/rootfs-stage32.conf
index 3b47d131..ccdcddce 100644
--- a/remote/rootfs/rootfs-stage32/rootfs-stage32.conf
+++ b/remote/rootfs/rootfs-stage32/rootfs-stage32.conf
@@ -1,6 +1,7 @@
REQUIRED_MODULES=" kernel"
REQUIRED_INSTALLED_PACKAGES="nfs-common aufs-tools squashfs-tools whois xfsprogs"
-REQUIRED_BINARIES=" bash
+REQUIRED_BINARIES="
+ bash
more
less
agetty
@@ -29,7 +30,9 @@ REQUIRED_BINARIES=" bash
xvidtune
bc
dirname
- mkdosfs"
+ mkdosfs
+ iptables
+"
REQUIRED_LIBRARIES=" libcap
libcidn
libcom_err