diff options
author | Vladimir Vid <vladimir.vid@sartura.hr> | 2019-09-09 18:50:26 +0200 |
---|---|---|
committer | Luka Perkov <luka.perkov@sartura.hr> | 2019-11-21 07:32:41 +0100 |
commit | e7a96acf1bd505880133e136e48b09d33344e466 (patch) | |
tree | 6cf88592c720ea58144c9eace998dee676e32cde /package/boot/uboot-mvebu/patches | |
parent | 52459ebf773d6eca1dbf53ab4dbde8c81a3addf0 (diff) | |
download | upstream-e7a96acf1bd505880133e136e48b09d33344e466.tar.gz upstream-e7a96acf1bd505880133e136e48b09d33344e466.tar.bz2 upstream-e7a96acf1bd505880133e136e48b09d33344e466.zip |
uboot-mvebu: add uDPU board
* add u-boot support for uDPU
* add line to copy u-boot binary to STAGING_DIR_IMAGE, this can later be used
as BL33 variable required for ATF build
* add patch to increase max gunzip size in mvebu_armada-37xx.h which is
required for booting the itb recovery images
Signed-off-by: Vladimir Vid <vladimir.vid@sartura.hr>
Diffstat (limited to 'package/boot/uboot-mvebu/patches')
-rw-r--r-- | package/boot/uboot-mvebu/patches/120-mvebu_armada-37xx.h_increase_max_gunzip_size.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/package/boot/uboot-mvebu/patches/120-mvebu_armada-37xx.h_increase_max_gunzip_size.patch b/package/boot/uboot-mvebu/patches/120-mvebu_armada-37xx.h_increase_max_gunzip_size.patch new file mode 100644 index 0000000000..580270a70f --- /dev/null +++ b/package/boot/uboot-mvebu/patches/120-mvebu_armada-37xx.h_increase_max_gunzip_size.patch @@ -0,0 +1,13 @@ +Increase max gunzip size in mvebu_armada-37xx.h. +This is required in order to boot itb images. + +--- a/include/configs/mvebu_armada-37xx.h ++++ b/include/configs/mvebu_armada-37xx.h +@@ -12,6 +12,7 @@ + + /* additions for new ARM relocation support */ + #define CONFIG_SYS_SDRAM_BASE 0x00000000 ++#define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */ + + #define CONFIG_NR_DRAM_BANKS 1 + |