upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
660 B
26 lines
660 B
#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>;
|
|
};
|
|
};
|
|
};
|
|
|