Although if we we don't setup an initrd, there could be a stale
initrd setting from the previous boot firmware in the live
device tree. So, make sure there is no setting left if we
don't want an initrd.

This can happen when booting on a Raspberry Pi. The boot firmware
can happily load an initrd before us and configuring the addresses
in the live device tree we get handed over.

Especially the setting `auto_initramfs` in config.txt is dangerous.
When enabled (default), the firmware tries to be smart and looks for
initramfs files.

Signed-off-by: Richard Weinberger <rich...@nod.at>
---
Hi!

This foot gun hit me hard and invalidated an A/B
update concept...

Thanks,
//richard
---
 boot/fdt_support.c | 17 +++++++++++++----
 1 file changed, 13 insertions(+), 4 deletions(-)

diff --git a/boot/fdt_support.c b/boot/fdt_support.c
index 92f2f534ee0..b7331bb76b3 100644
--- a/boot/fdt_support.c
+++ b/boot/fdt_support.c
@@ -224,15 +224,24 @@ int fdt_initrd(void *fdt, ulong initrd_start, ulong 
initrd_end)
        int is_u64;
        uint64_t addr, size;
 
-       /* just return if the size of initrd is zero */
-       if (initrd_start == initrd_end)
-               return 0;
-
        /* find or create "/chosen" node. */
        nodeoffset = fdt_find_or_add_subnode(fdt, 0, "chosen");
        if (nodeoffset < 0)
                return nodeoffset;
 
+       /*
+        * Although we didn't setup an initrd, there could be a stale
+        * initrd setting from the previous boot firmware in the live
+        * device tree. So, make sure there is no setting left if we
+        * don't want an initrd.
+        */
+       if (initrd_start == initrd_end) {
+               fdt_delprop(fdt, nodeoffset, "linux,initrd-start");
+               fdt_delprop(fdt, nodeoffset, "linux,initrd-end");
+
+               return 0;
+       }
+
        total = fdt_num_mem_rsv(fdt);
 
        /*
-- 
2.43.0

Reply via email to