diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-02-26 22:45:39 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-02-26 22:45:39 +0000 |
commit | bfeb96126dedec0133b8fc5138225394a3ab3af3 (patch) | |
tree | 15fc6051ae24767ae1d830fb96f8df8b7064e2a8 /package/block-mount/files/fstab.config | |
parent | 87298f0de2bf3cfb615c0e6cdeefee58b0534707 (diff) | |
download | upstream-bfeb96126dedec0133b8fc5138225394a3ab3af3.tar.gz upstream-bfeb96126dedec0133b8fc5138225394a3ab3af3.tar.bz2 upstream-bfeb96126dedec0133b8fc5138225394a3ab3af3.zip |
add the block-mount package by Daniel Dickinson (cshore), replacing existing automount functionality
SVN-Revision: 19877
Diffstat (limited to 'package/block-mount/files/fstab.config')
-rw-r--r-- | package/block-mount/files/fstab.config | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/package/block-mount/files/fstab.config b/package/block-mount/files/fstab.config new file mode 100644 index 0000000000..f672ef4d56 --- /dev/null +++ b/package/block-mount/files/fstab.config @@ -0,0 +1,20 @@ +config global automount + option from_fstab 1 + option anon_mount 1 + +config global autoswap + option from_fstab 1 + option anon_swap 0 + +config mount + option target /home + option device /dev/sda1 + option fstype ext3 + option options rw,sync + option enabled 0 + option enabled_fsck 0 + +config swap + option device /dev/sda2 + option enabled 0 + |