Commit 44b9c8e7 authored by Linus Walleij's avatar Linus Walleij Committed by Olof Johansson

ARM: dts: gemini: Indent DIR-685 partition table

It is discouraged to have OF partitions as subnodes directly
under the device, create a "partitions" subnode and put the
partitions inside it.
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
parent 97fc172d
...@@ -267,44 +267,50 @@ flash@30000000 { ...@@ -267,44 +267,50 @@ flash@30000000 {
/* 32MB of flash */ /* 32MB of flash */
reg = <0x30000000 0x02000000>; reg = <0x30000000 0x02000000>;
/* partitions {
* This "RedBoot" is the Storlink derivative. compatible = "fixed-partitions";
*/ #address-cells = <1>;
partition@0 { #size-cells = <1>;
label = "RedBoot";
reg = <0x00000000 0x00040000>; /*
read-only; * This "RedBoot" is the Storlink derivative.
}; */
/* partition@0 {
* This firmware image contains the kernel catenated label = "RedBoot";
* with the squashfs root filesystem. For some reason reg = <0x00000000 0x00040000>;
* this is called "upgrade" on the vendor system. read-only;
*/ };
partition@40000 { /*
label = "upgrade"; * This firmware image contains the kernel catenated
reg = <0x00040000 0x01f40000>; * with the squashfs root filesystem. For some reason
read-only; * this is called "upgrade" on the vendor system.
}; */
/* RGDB, Residental Gateway Database? */ partition@40000 {
partition@1f80000 { label = "upgrade";
label = "rgdb"; reg = <0x00040000 0x01f40000>;
reg = <0x01f80000 0x00040000>; read-only;
read-only; };
}; /* RGDB, Residental Gateway Database? */
/* partition@1f80000 {
* This partition contains MAC addresses for WAN, label = "rgdb";
* WLAN and LAN, and the country code (for wireless reg = <0x01f80000 0x00040000>;
* I guess). read-only;
*/ };
partition@1fc0000 { /*
label = "nvram"; * This partition contains MAC addresses for WAN,
reg = <0x01fc0000 0x00020000>; * WLAN and LAN, and the country code (for wireless
read-only; * I guess).
}; */
partition@1fe0000 { partition@1fc0000 {
label = "LangPack"; label = "nvram";
reg = <0x01fe0000 0x00020000>; reg = <0x01fc0000 0x00020000>;
read-only; read-only;
};
partition@1fe0000 {
label = "LangPack";
reg = <0x01fe0000 0x00020000>;
read-only;
};
}; };
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment