From fdfaf72ace05c349045ab2e48731d82b65aa13eb Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Mon, 16 Mar 2026 00:51:35 +0100 Subject: arm: renesas: Enable modern HUSH parser on all R-Car systems Enable modern HUSH parser on all Renesas R-Car systems. This replaces the old HUSH parser and includes matching updates to the command line parser. No functional change expected. Signed-off-by: Marek Vasut --- configs/renesas_rcar.config | 2 ++ 1 file changed, 2 insertions(+) (limited to 'configs') diff --git a/configs/renesas_rcar.config b/configs/renesas_rcar.config index b3107d79b0e..1835eb1357f 100644 --- a/configs/renesas_rcar.config +++ b/configs/renesas_rcar.config @@ -21,6 +21,8 @@ CONFIG_DM_SPI_FLASH=y CONFIG_ENV_VARS_UBOOT_CONFIG=y CONFIG_FIT=y CONFIG_HUSH_PARSER=y +# CONFIG_HUSH_OLD_PARSER is not set +CONFIG_HUSH_MODERN_PARSER=y CONFIG_MTD=y CONFIG_OF_CONTROL=y CONFIG_PROT_TCP_SACK=y -- cgit v1.2.3 From cb5f92b5d5d671fe8fc7068feb9a465cca976e46 Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Sun, 5 Apr 2026 05:51:40 +0200 Subject: arm: renesas: Enable preboot environment variable on all R-Car systems Enable the 'preboot' variable on all R-Car systems. This variable can optionally be set and contain a script which is executed before the autoboot timeout starts. This can be used to run critical scripts or similar tasks. By default, the "preboot" variable is empty. Signed-off-by: Marek Vasut --- configs/renesas_rcar.config | 1 + 1 file changed, 1 insertion(+) (limited to 'configs') diff --git a/configs/renesas_rcar.config b/configs/renesas_rcar.config index 1835eb1357f..a93cb2e9f13 100644 --- a/configs/renesas_rcar.config +++ b/configs/renesas_rcar.config @@ -30,5 +30,6 @@ CONFIG_RCAR_GPIO=y CONFIG_SCIF_CONSOLE=y CONFIG_SERIAL_RX_BUFFER=y CONFIG_SPI=y +CONFIG_USE_PREBOOT=y CONFIG_VERSION_VARIABLE=y CONFIG_WGET=y -- cgit v1.2.3 From 0453bcfd16322075e32004c07003644d6e60bb65 Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Sun, 5 Apr 2026 05:53:03 +0200 Subject: arm64: renesas: Enable SMC command on all R-Car 64-bit systems Enable the 'smc' command on all R-Car 64-bit systems. This command is useful for interacting with EL3 firmware, testing interaction with the PSCI provider or OPTEE-OS. Signed-off-by: Marek Vasut --- configs/renesas_rcar64.config | 1 + 1 file changed, 1 insertion(+) (limited to 'configs') diff --git a/configs/renesas_rcar64.config b/configs/renesas_rcar64.config index da4b262fc6a..30869a4e3e7 100644 --- a/configs/renesas_rcar64.config +++ b/configs/renesas_rcar64.config @@ -1,6 +1,7 @@ #include CONFIG_CMD_FS_GENERIC=y +CONFIG_CMD_SMC=y CONFIG_CMD_SPI=y CONFIG_CMD_TEMPERATURE=y CONFIG_DM_THERMAL=y -- cgit v1.2.3