From ac976d8b65644124217ad1a4593c91eb2c7d839e Mon Sep 17 00:00:00 2001 From: Hugo Villeneuve Date: Sat, 13 Dec 2025 13:19:40 -0500 Subject: [PATCH] rpi-u-boot-scr: fix error when setting bootargs Value was not saved because of missing parentheses. Signed-off-by: Hugo Villeneuve --- raspberrypi/recipes-bsp/rpi-u-boot-scr/files/boot.cmd.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/raspberrypi/recipes-bsp/rpi-u-boot-scr/files/boot.cmd.in b/raspberrypi/recipes-bsp/rpi-u-boot-scr/files/boot.cmd.in index 9f2bb90..aa0fcd9 100644 --- a/raspberrypi/recipes-bsp/rpi-u-boot-scr/files/boot.cmd.in +++ b/raspberrypi/recipes-bsp/rpi-u-boot-scr/files/boot.cmd.in @@ -2,5 +2,5 @@ saveenv fdt addr ${fdt_addr} && fdt get value bootargs /chosen bootargs if env exists rpipart;then echo Booting from mmcblk0p${rpipart};else setenv rpipart @@ROOT_PART_A_ID@@;echo rpipart not set, default to ${rpipart};fi load mmc 0:${rpipart} ${kernel_addr_r} boot/@@KERNEL_IMAGETYPE@@ -setenv bootargs ${bootargs} root=/dev/mmcblk0p${rpipart} +setenv bootargs "${bootargs} root=/dev/mmcblk0p${rpipart}" @@KERNEL_BOOTCMD@@ ${kernel_addr_r} - ${fdt_addr} -- 2.20.1