diff options
| author | Martin Schwan <[email protected]> | 2025-10-02 13:20:37 +0200 |
|---|---|---|
| committer | Fabio Estevam <[email protected]> | 2025-10-07 08:57:52 -0300 |
| commit | fcddf2fc7ef6a68fc97d1dce9e137692dc129d2e (patch) | |
| tree | 9454dd7a8c41bb7b4f5d6d72edf87d2274b0867c | |
| parent | 0eaa4b337336dbbe93395d1f2ccc18937eaafea2 (diff) | |
board: phytec: phycore_imx8mp: Add rauc to bootmeths
Add rauc to bootmeths variable if BOOTMETH_RAUC is enabled. This is
setting a proper default for RAUC enabled systems.
Signed-off-by: Martin Schwan <[email protected]>
| -rw-r--r-- | board/phytec/phycore_imx8mp/phycore_imx8mp.env | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/board/phytec/phycore_imx8mp/phycore_imx8mp.env b/board/phytec/phycore_imx8mp/phycore_imx8mp.env index 9a129a0a4bf..70044997adb 100644 --- a/board/phytec/phycore_imx8mp/phycore_imx8mp.env +++ b/board/phytec/phycore_imx8mp/phycore_imx8mp.env @@ -3,7 +3,11 @@ bootcmd= fastboot 0; fi; bootflow scan -lb; +#ifdef CONFIG_BOOTMETH_RAUC +bootmeths=rauc script efi +#else bootmeths=script efi +#endif boot_targets=mmc2 mmc1 usb ethernet bootenv_addr_r=0x49100000 boot_script_dhcp=boot.scr.uimg |
