]> git.itanic.dy.fi Git - linux-stable/commitdiff
powerpc: dts: turris1x.dts: Fix NOR partitions labels
authorPali Rohár <pali@kernel.org>
Tue, 30 Aug 2022 22:55:00 +0000 (00:55 +0200)
committerMichael Ellerman <mpe@ellerman.id.au>
Mon, 26 Sep 2022 10:58:19 +0000 (20:58 +1000)
Partition partition@20000 contains generic kernel image and it does not
have to be used only for rescue purposes. Partition partition@1c0000
contains bootable rescue system and partition partition@340000 contains
factory image/data for restoring to NAND. So change partition labels to
better fit their purpose by removing possible misleading substring "rootfs"
from these labels.

Fixes: 54c15ec3b738 ("powerpc: dts: Add DTS file for CZ.NIC Turris 1.x routers")
Signed-off-by: Pali Rohár <pali@kernel.org>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20220830225500.8856-1-pali@kernel.org
arch/powerpc/boot/dts/turris1x.dts

index 12e08271e61f08ea5f8f11b81d945b80787faf64..47027b4cebb33503549ac700f491cf39fd7118c3 100644 (file)
@@ -263,21 +263,21 @@ partition@0 {
                                };
 
                                partition@20000 {
-                                       /* 1.7 MB for Rescue Linux Kernel Image */
+                                       /* 1.7 MB for Linux Kernel Image */
                                        reg = <0x00020000 0x001a0000>;
-                                       label = "rescue-kernel";
+                                       label = "kernel";
                                };
 
                                partition@1c0000 {
                                        /* 1.5 MB for Rescue JFFS2 Root File System */
                                        reg = <0x001c0000 0x00180000>;
-                                       label = "rescue-rootfs";
+                                       label = "rescue";
                                };
 
                                partition@340000 {
-                                       /* 11 MB for TAR.XZ Backup with content of NAND Root File System */
+                                       /* 11 MB for TAR.XZ Archive with Factory content of NAND Root File System */
                                        reg = <0x00340000 0x00b00000>;
-                                       label = "backup-rootfs";
+                                       label = "factory";
                                };
 
                                partition@e40000 {