From: Pascal Zimmermann Date: Thu, 27 Mar 2025 14:38:42 +0000 (+0100) Subject: config_distro_bootcmd: make possible to substitute 'part list' in distro_bootcmd X-Git-Tag: v2025.07-rc2~33^2~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fd3202153a26c53529b5606094b6887a31426af5;p=thirdparty%2Fu-boot.git config_distro_bootcmd: make possible to substitute 'part list' in distro_bootcmd Make it possible to substitute the 'part list' command inside 'scan_dev_for_boot_part' with a custom board specific implementation. For this the new define 'SCAN_DEV_FOR_BOOT_PARTS' is introduced. Signed-off-by: Pascal Zimmermann Reviewed-by: Patrice Chotard --- diff --git a/include/config_distro_bootcmd.h b/include/config_distro_bootcmd.h index 8ac3a4feeb8..7b6ac6eed9d 100644 --- a/include/config_distro_bootcmd.h +++ b/include/config_distro_bootcmd.h @@ -194,6 +194,11 @@ #define SCAN_DEV_FOR_EFI #endif +#ifndef SCAN_DEV_FOR_BOOT_PARTS +#define SCAN_DEV_FOR_BOOT_PARTS \ + "part list ${devtype} ${devnum} -bootable devplist; " +#endif + #ifdef CONFIG_SATA #define BOOTENV_SHARED_SATA BOOTENV_SHARED_BLKDEV(sata) #define BOOTENV_DEV_SATA BOOTENV_DEV_BLKDEV @@ -538,7 +543,7 @@ "\0" \ \ "scan_dev_for_boot_part=" \ - "part list ${devtype} ${devnum} -bootable devplist; " \ + SCAN_DEV_FOR_BOOT_PARTS \ "env exists devplist || setenv devplist 1; " \ "for distro_bootpart in ${devplist}; do " \ "if fstype ${devtype} " \