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 | 0be423f619f7627e0b7d1c415ce312e4c868e45f (patch) | |
tree | d29184675f8d44eef6e507457bae7aae39e6aa19 /target | |
parent | 8e4f117b245dfa0bc2fffc8f84b158b0b7833643 (diff) | |
download | upstream-0be423f619f7627e0b7d1c415ce312e4c868e45f.tar.gz upstream-0be423f619f7627e0b7d1c415ce312e4c868e45f.tar.bz2 upstream-0be423f619f7627e0b7d1c415ce312e4c868e45f.zip |
automatically mount sd-card as it's possible (might be done via hotplug later)
SVN-Revision: 16700
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 |