diff options
author | John Crispin <blogic@openwrt.org> | 2014-04-22 08:08:46 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2014-04-22 08:08:46 +0000 |
commit | d5e2e74b3e8437d9f15e13c2fc5c8fd3a1bf98dd (patch) | |
tree | 1ec32a7af43de360402846aded01e3a99b1db37d /target/linux/lantiq/dts | |
parent | f4e347c4048e2c09ae1ad1b1d19a0c8602c26ed9 (diff) | |
download | upstream-d5e2e74b3e8437d9f15e13c2fc5c8fd3a1bf98dd.tar.gz upstream-d5e2e74b3e8437d9f15e13c2fc5c8fd3a1bf98dd.tar.bz2 upstream-d5e2e74b3e8437d9f15e13c2fc5c8fd3a1bf98dd.zip |
lantiq: BT Home Hub 2B - overlayfs on top of ubi
BT Home Hub 2B: use overlayfs on top of ubi.
Signed-off-by: Ben Mulvihill <ben.mulvihill@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@40553 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/lantiq/dts')
-rw-r--r-- | target/linux/lantiq/dts/BTHOMEHUBV2B.dts | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/target/linux/lantiq/dts/BTHOMEHUBV2B.dts b/target/linux/lantiq/dts/BTHOMEHUBV2B.dts index ac53217bb3..329e149911 100644 --- a/target/linux/lantiq/dts/BTHOMEHUBV2B.dts +++ b/target/linux/lantiq/dts/BTHOMEHUBV2B.dts @@ -6,7 +6,10 @@ model = "BTHOMEHUBV2B - BT Home Hub 2B"; /* SoC: Lantiq Danube-S PSB 50712 @ 333MHz V1.3/1.5 */ chosen { - bootargs = "console=ttyLTQ0,115200 init=/etc/preinit rootfstype=squashfs,jffs2"; + // uncomment for overlayfs on top of ubi + bootargs = "console=ttyLTQ0,115200 init=/etc/preinit ubi.mtd=rootfs_ubi,256 root=/dev/mtdblock8"; + // uncomment for ubifs +// bootargs = "console=ttyLTQ0,115200 init=/etc/preinit ubi.mtd=rootfs_ubi,256 root=ubi0:rootfs rootfstype=ubifs"; }; memory@0 { /* RAM: Samsung K4H511638F-LC 64MB */ @@ -80,8 +83,13 @@ }; partition@4000 { - label = "firmware"; - reg = <0x4000 0x1FFC000>; + label = "kernel"; + reg = <0x4000 0x160000>; + }; + + partition@164000 { + label = "rootfs_ubi"; + reg = <0x164000 0x1E9C000>; }; }; |