summaryrefslogtreecommitdiff
path: root/package/cfgfs
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2009-06-04 19:51:01 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2009-06-04 19:51:01 +0200
commitcf7d637ee9c6034152f9f789c8e65893f0295289 (patch)
treeb6bc077658a89d8a65446f592186c9ca98b13a3e /package/cfgfs
parent322327d668e6cef8bb5f318bc414593794530b7b (diff)
first regressions found while runtime testing
- fix add_rconf and quoting - update gpsd to latest upstream - do not use size parameter for cfgfs and tmpfs - disable some dangerous busybox options - fix some kernel module dependencies
Diffstat (limited to 'package/cfgfs')
-rw-r--r--package/cfgfs/src/fwcf.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/cfgfs/src/fwcf.sh b/package/cfgfs/src/fwcf.sh
index 890dcf216..6a97beb8a 100644
--- a/package/cfgfs/src/fwcf.sh
+++ b/package/cfgfs/src/fwcf.sh
@@ -146,7 +146,7 @@ if test $1 = setup; then
mkdir /tmp/.cfgfs/root
mount --bind /etc /tmp/.cfgfs/root
mkdir /tmp/.cfgfs/temp
- mount -t tmpfs -o size=960k cfgfs /tmp/.cfgfs/temp
+ mount -t tmpfs -o cfgfs /tmp/.cfgfs/temp
(cd /tmp/.cfgfs/root; tar cf - .) | (cd /tmp/.cfgfs/temp; tar xpf -)
unclean=0
if [[ $1 = -N ]]; then
@@ -225,7 +225,7 @@ if test $1 = commit; then
EOF
[[ $1 = -f ]] || exit 7
fi
- mount -t tmpfs -o size=960k swap /tmp/.cfgfs/temp
+ mount -t tmpfs -o swap /tmp/.cfgfs/temp
(cd /etc; tar cf - .) | (cd /tmp/.cfgfs/temp; tar xpf -)
cd /tmp/.cfgfs/temp
find . -type f | grep -v -e '^./.cfgfs' -e '^./.rnd$' | sort | \