mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 22:49:02 +00:00
distroboot: ubifs: Add support for specifying UBI header offset
Some UBI partitions may use non-standard UBI header offset. For attaching these UBI partitions it is required to pass second argument with offset to "ubi part" command. Therefore extend distroboot to allow specifying additional optional 6th argument with UBI header offset. This offset is set in new distroboot variable ${bootubioff} which may be used by distroboot script to e.g. properly pass this value to linux kernel command line for proper mounting of rootfs by kernel. This variable is set to empty string (cleared) when UBI header offset is not specified into distroboot BOOT_TARGET_DEVICES macro. Usage of helper macro BOOTENV_DEV_UBIFS_BOOTUBIOFF in this change is there as a type check. It ensures that in BOOT_TARGET_DEVICES macro was specified UBIFS func with either 5 or 6 arguments. If not then cpp throws compile error. Signed-off-by: Pali Rohár <pali@kernel.org> Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
2f03a639f3
commit
53a9f9ef87
1 changed files with 5 additions and 3 deletions
|
@ -70,7 +70,7 @@
|
|||
#ifdef CONFIG_CMD_UBIFS
|
||||
#define BOOTENV_SHARED_UBIFS \
|
||||
"ubifs_boot=" \
|
||||
"if ubi part ${bootubipart} && " \
|
||||
"if ubi part ${bootubipart} ${bootubioff} && " \
|
||||
"ubifsmount ubi0:${bootubivol}; " \
|
||||
"then " \
|
||||
"devtype=ubi; " \
|
||||
|
@ -80,12 +80,14 @@
|
|||
"run scan_dev_for_boot; " \
|
||||
"ubifsumount; " \
|
||||
"fi\0"
|
||||
#define BOOTENV_DEV_UBIFS(devtypeu, devtypel, instance, bootubipart, bootubivol) \
|
||||
#define BOOTENV_DEV_UBIFS_BOOTUBIOFF(off) #off /* type check, throw error when called with more args */
|
||||
#define BOOTENV_DEV_UBIFS(devtypeu, devtypel, instance, bootubipart, bootubivol, ...) \
|
||||
"bootcmd_ubifs" #instance "=" \
|
||||
"bootubipart=" #bootubipart "; " \
|
||||
"bootubivol=" #bootubivol "; " \
|
||||
"bootubioff=" BOOTENV_DEV_UBIFS_BOOTUBIOFF(__VA_ARGS__) "; " \
|
||||
"run ubifs_boot\0"
|
||||
#define BOOTENV_DEV_NAME_UBIFS(devtypeu, devtypel, instance, bootubipart, bootubivol) \
|
||||
#define BOOTENV_DEV_NAME_UBIFS(devtypeu, devtypel, instance, ...) \
|
||||
#devtypel #instance " "
|
||||
#else
|
||||
#define BOOTENV_SHARED_UBIFS
|
||||
|
|
Loading…
Add table
Reference in a new issue