mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
819f1e081c
The U-Boot binary may trip over its actual allocated size in the storage. In such a case, the environment will not be readable anymore (because corrupted when the new image was flashed), and any attempt at using saveenv to reconstruct the environment will result in a corrupted U-Boot binary. Reviewed-by: Andre Przywara <andre.przywara@arm.com> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
26 lines
660 B
Text
26 lines
660 B
Text
#include <config.h>
|
|
|
|
/*
|
|
* This is the maximum size the U-Boot binary can be, which is basically
|
|
* the start of the environment, minus the start of the U-Boot binary in
|
|
* the MMC. This makes the assumption that the MMC is using 512-bytes
|
|
* blocks, but devices using something other than that remains to be
|
|
* seen.
|
|
*/
|
|
#define UBOOT_MMC_MAX_SIZE (CONFIG_ENV_OFFSET - (CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512))
|
|
|
|
/ {
|
|
binman {
|
|
filename = "u-boot-sunxi-with-spl.bin";
|
|
pad-byte = <0xff>;
|
|
blob {
|
|
filename = "spl/sunxi-spl.bin";
|
|
};
|
|
u-boot-img {
|
|
#ifdef CONFIG_MMC
|
|
size = <UBOOT_MMC_MAX_SIZE>;
|
|
#endif
|
|
pos = <CONFIG_SPL_PAD_TO>;
|
|
};
|
|
};
|
|
};
|