diff options
author | Stijn Segers <foss@volatilesystems.org> | 2021-02-28 22:50:15 +0100 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2021-04-03 18:57:13 +0200 |
commit | 1601b39b6197963e85c441a043702e022779f371 (patch) | |
tree | 2ef343b18ba8ce84dc5ea1ff6aa8769932d535c1 /target/linux/realtek/dts | |
parent | 565dfeb1280343fb3f838581169e5d7a1c947862 (diff) | |
download | upstream-1601b39b6197963e85c441a043702e022779f371.tar.gz upstream-1601b39b6197963e85c441a043702e022779f371.tar.bz2 upstream-1601b39b6197963e85c441a043702e022779f371.zip |
realtek: rename partitions in Netgear DTSI
Switch the Netgear DTSI for the Realtek target from the OEM partition
naming scheme to accepted OpenWrt naming practices. A quick git grep for
'u-boot-env' e.g. in the OpenWrt tree turns up almost 500 hits whereas
grepping for 'bdinfo' (the OEM equivalent) returns a meagre 14.
Signed-off-by: Stijn Segers <foss@volatilesystems.org>
Diffstat (limited to 'target/linux/realtek/dts')
-rw-r--r-- | target/linux/realtek/dts/rtl8380_netgear_gigabit.dtsi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/target/linux/realtek/dts/rtl8380_netgear_gigabit.dtsi b/target/linux/realtek/dts/rtl8380_netgear_gigabit.dtsi index 2cda3c15a3..d31eb74001 100644 --- a/target/linux/realtek/dts/rtl8380_netgear_gigabit.dtsi +++ b/target/linux/realtek/dts/rtl8380_netgear_gigabit.dtsi @@ -47,31 +47,31 @@ #size-cells = <1>; partition@0 { - label = "loader"; + label = "u-boot"; reg = <0x0000000 0x00e0000>; read-only; }; partition@e0000 { - label = "bdinfo"; + label = "u-boot-env"; reg = <0x00e0000 0x0010000>; read-only; }; partition@f0000 { - label = "sysinfo"; + label = "u-boot-env2"; reg = <0x00f0000 0x0010000>; read-only; }; partition@100000 { - label = "jffs2_cfg"; + label = "jffs"; reg = <0x0100000 0x0100000>; read-only; }; partition@200000 { - label = "jffs2_log"; + label = "jffs2"; reg = <0x0200000 0x0100000>; read-only; }; |