diff options
author | Mirko Vogt <mirko@openwrt.org> | 2009-07-05 17:00:46 +0000 |
---|---|---|
committer | Mirko Vogt <mirko@openwrt.org> | 2009-07-05 17:00:46 +0000 |
commit | 38d73d373c8a5165efe6d0afbd758db63c25825b (patch) | |
tree | f5c2455c39349c88488c8103b8cd7ed4692cbe79 /target | |
parent | 4626965e526d227c9b2481feb75bcedd9b565a1b (diff) | |
download | upstream-38d73d373c8a5165efe6d0afbd758db63c25825b.tar.gz upstream-38d73d373c8a5165efe6d0afbd758db63c25825b.tar.bz2 upstream-38d73d373c8a5165efe6d0afbd758db63c25825b.zip |
automatically mount sd-card as it's possible (might be done via hotplug later)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16700 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/s3c24xx/base-files/etc/config/fstab | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/target/linux/s3c24xx/base-files/etc/config/fstab b/target/linux/s3c24xx/base-files/etc/config/fstab new file mode 100644 index 0000000000..522356112f --- /dev/null +++ b/target/linux/s3c24xx/base-files/etc/config/fstab @@ -0,0 +1,6 @@ +config mount + option target /card + option device /dev/mmcblk0p1 + option fstype auto + option options rw,sync + option enabled 1 |