summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-05-28 16:56:01 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2014-05-28 16:57:23 +0200
commitf8f3f61e495f6e8f337b385351cc05b3e6a0b898 (patch)
treee8af4694e11f72ba98d05207907ce507ad576bb0
parent13d54c7f7865346aeaa402843035526f8a2d5de2 (diff)
fix mounting
-rw-r--r--package/base-files/Makefile2
-rwxr-xr-xpackage/base-files/src/etc/init.d/fs2
2 files changed, 2 insertions, 2 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile
index bdab1ae71..a34f504e9 100644
--- a/package/base-files/Makefile
+++ b/package/base-files/Makefile
@@ -6,7 +6,7 @@ include $(TOPDIR)/mk/rootfs.mk
PKG_NAME:= base-files
PKG_VERSION:= 1.0
-PKG_RELEASE:= 95
+PKG_RELEASE:= 96
PKG_SECTION:= base
PKG_DESCR:= basic files and scripts
diff --git a/package/base-files/src/etc/init.d/fs b/package/base-files/src/etc/init.d/fs
index 993977b71..d74f9a846 100755
--- a/package/base-files/src/etc/init.d/fs
+++ b/package/base-files/src/etc/init.d/fs
@@ -21,7 +21,7 @@
# mount local filesystems
fstypes="ext2 ext3 ext4 xfs vfat ntfs"
for fs in $fstypes; do
- disks=$(grep -v "^#" /etc/fstab|grep $fs|awk '{ print $1 }' >/dev/null 2>&1)
+ disks=$(grep -v "^#" /etc/fstab|grep $fs|awk '{ print $1 }')
for disk in $disks; do
logger -t '' "Found $disk with filesystem $fs"
grep $fs /proc/filesystems >/dev/null 2>&1