diff options
author | Rafał Miłecki <rafal@milecki.pl> | 2022-03-04 09:39:05 +0100 |
---|---|---|
committer | Rafał Miłecki <rafal@milecki.pl> | 2022-03-14 08:51:02 +0100 |
commit | e8a806c49e8b5ee0e6c6c79e9c875d47a9349ab7 (patch) | |
tree | 0d650c54e3ee41b0286a302b4f09fa97cb3d95d9 | |
parent | 45b3f2aa0f57c7ca694317aca462d6ed1e183a67 (diff) | |
download | upstream-e8a806c49e8b5ee0e6c6c79e9c875d47a9349ab7.tar.gz upstream-e8a806c49e8b5ee0e6c6c79e9c875d47a9349ab7.tar.bz2 upstream-e8a806c49e8b5ee0e6c6c79e9c875d47a9349ab7.zip |
bcm4908: include U-Boot in images
This is a step forward in adding support for devices with U-Boot.
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
(cherry picked from commit 34fd5e325af5cbcb64696c9b4b1660f22299790f)
-rw-r--r-- | target/linux/bcm4908/image/bootfs-generic.its | 35 |
1 files changed, 32 insertions, 3 deletions
diff --git a/target/linux/bcm4908/image/bootfs-generic.its b/target/linux/bcm4908/image/bootfs-generic.its index 3cde532d72..bd566d5d22 100644 --- a/target/linux/bcm4908/image/bootfs-generic.its +++ b/target/linux/bcm4908/image/bootfs-generic.its @@ -22,6 +22,20 @@ }; }; + uboot { + description = "U-Boot"; + data = /incbin/("${images_dir}/u-boot/u-boot-nodtb.bin"); + os = "U-Boot"; + arch = "arm64"; + compression = "none"; + load = <0x1000000>; + entry = <0x1000000>; + + hash-1 { + algo = "sha256"; + }; + }; + kernel { description = "Linux kernel"; data = /incbin/("${kernel}"); @@ -37,10 +51,9 @@ }; }; - fdt_linux_RAX220 { + fdt_uboot { description = "dtb"; - data = /incbin/("${dts_dir}/broadcom/bcm4908/bcm4908-netgear-raxe500.dtb"); - arch = "arm64"; + data = /incbin/("${images_dir}/u-boot/u-boot.dtb"); type = "flat_dt"; compression = "none"; @@ -48,9 +61,25 @@ algo = "sha256"; }; }; + + fdt_linux_RAX220 { + description = "dtb"; + data = /incbin/("${dts_dir}/broadcom/bcm4908/bcm4908-netgear-raxe500.dtb"); + arch = "arm64"; + type = "flat_dt"; + compression = "none"; + }; }; configurations { + default = "conf_uboot"; + + conf_uboot { + description = "BRCM 63xxx with uboot"; + fdt = "fdt_uboot"; + loadables = "atf", "uboot"; + }; + conf_lx_RAX220 { description = "BRCM 63xxx linux"; kernel = "kernel"; |