diff options
author | Michael Büsch <mb@bu3sch.de> | 2010-10-03 12:16:56 +0000 |
---|---|---|
committer | Michael Büsch <mb@bu3sch.de> | 2010-10-03 12:16:56 +0000 |
commit | f47c187bda4e5cc3ba492800fb4cc2073f8230a2 (patch) | |
tree | b986e93040f867c0be66575d113d43a94a18c8cf /target/linux | |
parent | 8affb4906929251bfd594979a1eed12f19328aa7 (diff) | |
download | upstream-f47c187bda4e5cc3ba492800fb4cc2073f8230a2.tar.gz upstream-f47c187bda4e5cc3ba492800fb4cc2073f8230a2.tar.bz2 upstream-f47c187bda4e5cc3ba492800fb4cc2073f8230a2.zip |
n810: Add fstab for maemo filesystems
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23195 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/omap24xx/base-files/etc/config/fstab | 13 | ||||
-rw-r--r-- | target/linux/omap24xx/profiles/100-n810.mk | 3 |
2 files changed, 15 insertions, 1 deletions
diff --git a/target/linux/omap24xx/base-files/etc/config/fstab b/target/linux/omap24xx/base-files/etc/config/fstab new file mode 100644 index 0000000000..5430d56d59 --- /dev/null +++ b/target/linux/omap24xx/base-files/etc/config/fstab @@ -0,0 +1,13 @@ +config mount + option target /maemo/initfs + option device /dev/mtdblock3 + option fstype jffs2 + option options rw + option enabled 1 + +config mount + option target /maemo/rootfs + option device /dev/mtdblock4 + option fstype jffs2 + option options rw + option enabled 1 diff --git a/target/linux/omap24xx/profiles/100-n810.mk b/target/linux/omap24xx/profiles/100-n810.mk index f424b9723b..d4db4017cf 100644 --- a/target/linux/omap24xx/profiles/100-n810.mk +++ b/target/linux/omap24xx/profiles/100-n810.mk @@ -8,10 +8,11 @@ define Profile/n810-base NAME:=Nokia n810 (base) PACKAGES:= \ - block-hotplug \ + block-mount block-hotplug \ gpsd \ ip iw wireless-tools kmod-p54-spi wpa-supplicant \ dnsmasq dropbear \ + pwrtray-backend \ kmod-fs-vfat kmod-fs-msdos \ kmod-input-evdev \ kmod-leds-gpio \ |