mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-25 11:57:22 +00:00
km/common: introduce $uimage variable
Replace the hardcoded string with a variable. If CONFIG_NAND_ECC_BCH is set we use a specific name for the uImage (ecc_bch_uImage). Signed-off-by: Andreas Huber <andreas.huber@keymile.com> Signed-off-by: Holger Brunck <holger.brunck@keymile.com>
This commit is contained in:
parent
6515139bfb
commit
dacc109c41
1 changed files with 8 additions and 1 deletions
|
@ -148,6 +148,12 @@
|
||||||
"ubi part " CONFIG_KM_UBI_PARTITION_NAME_APP "; fi\0"
|
"ubi part " CONFIG_KM_UBI_PARTITION_NAME_APP "; fi\0"
|
||||||
#endif /* CONFIG_KM_UBI_PARTITION_NAME_APP */
|
#endif /* CONFIG_KM_UBI_PARTITION_NAME_APP */
|
||||||
|
|
||||||
|
#ifdef CONFIG_NAND_ECC_BCH
|
||||||
|
#define CONFIG_KM_UIMAGE_NAME "ecc_bch_uImage\0"
|
||||||
|
#else
|
||||||
|
#define CONFIG_KM_UIMAGE_NAME "uImage\0"
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* boottargets
|
* boottargets
|
||||||
* - set 'subbootcmds'
|
* - set 'subbootcmds'
|
||||||
|
@ -210,9 +216,10 @@
|
||||||
*/
|
*/
|
||||||
#define CONFIG_KM_DEF_ENV_FLASH_BOOT \
|
#define CONFIG_KM_DEF_ENV_FLASH_BOOT \
|
||||||
"cramfsaddr=" __stringify(CONFIG_KM_CRAMFS_ADDR) "\0" \
|
"cramfsaddr=" __stringify(CONFIG_KM_CRAMFS_ADDR) "\0" \
|
||||||
"cramfsloadkernel=cramfsload ${load_addr_r} uImage\0" \
|
"cramfsloadkernel=cramfsload ${load_addr_r} ${uimage}\0" \
|
||||||
"ubicopy=ubi read "__stringify(CONFIG_KM_CRAMFS_ADDR) \
|
"ubicopy=ubi read "__stringify(CONFIG_KM_CRAMFS_ADDR) \
|
||||||
" bootfs${boot_bank}\0" \
|
" bootfs${boot_bank}\0" \
|
||||||
|
"uimage=" CONFIG_KM_UIMAGE_NAME \
|
||||||
CONFIG_KM_DEV_ENV_FLASH_BOOT_UBI
|
CONFIG_KM_DEV_ENV_FLASH_BOOT_UBI
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Reference in a new issue