summaryrefslogtreecommitdiff
path: root/package/block-mount
diff options
context:
space:
mode:
authorMirko Vogt <mirko@openwrt.org>2011-06-08 20:45:19 +0000
committerMirko Vogt <mirko@openwrt.org>2011-06-08 20:45:19 +0000
commit4798e27247e586ac45a7118e5cbfdcd771b09d29 (patch)
tree146d773ec9c21e1cb40c968740313fa98860c429 /package/block-mount
parentb179722c71d2c6fb227054cbbb2ec97819d52573 (diff)
downloadmtk-20170518-4798e27247e586ac45a7118e5cbfdcd771b09d29.zip
mtk-20170518-4798e27247e586ac45a7118e5cbfdcd771b09d29.tar.gz
mtk-20170518-4798e27247e586ac45a7118e5cbfdcd771b09d29.tar.bz2
Revert "[package/block-mount] remove example config file"
This isn't needed anymore due to commit 27138 SVN-Revision: 27139
Diffstat (limited to 'package/block-mount')
-rw-r--r--package/block-mount/Makefile2
-rw-r--r--package/block-mount/files/fstab.config20
2 files changed, 22 insertions, 0 deletions
diff --git a/package/block-mount/Makefile b/package/block-mount/Makefile
index ac6c5f3..c2c9d33 100644
--- a/package/block-mount/Makefile
+++ b/package/block-mount/Makefile
@@ -48,6 +48,8 @@ endef
define Package/block-mount/install
$(INSTALL_DIR) $(1)/etc/init.d
$(INSTALL_BIN) ./files/fstab.init $(1)/etc/init.d/fstab
+ $(INSTALL_DIR) $(1)/etc/config
+ $(INSTALL_DATA) ./files/fstab.config $(1)/etc/config/fstab
$(INSTALL_DIR) $(1)/lib/functions/fsck
$(INSTALL_DATA) ./files/mount.sh $(1)/lib/functions/
$(INSTALL_DATA) ./files/fsck.sh $(1)/lib/functions/
diff --git a/package/block-mount/files/fstab.config b/package/block-mount/files/fstab.config
new file mode 100644
index 0000000..de52e20
--- /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 ext4
+ option options rw,sync
+ option enabled 0
+ option enabled_fsck 0
+
+config swap
+ option device /dev/sda2
+ option enabled 0
+