diff options
author | Rafał Miłecki <rafal@milecki.pl> | 2022-03-15 18:42:15 +0100 |
---|---|---|
committer | Rafał Miłecki <rafal@milecki.pl> | 2022-03-15 18:43:42 +0100 |
commit | 2de86691b67ea73d858ec1c78757faae795691e4 (patch) | |
tree | d604d1d56a4caa4e3d7d9990bc0adc2deb6d4e0c /target/linux/bcm4908/image/bootfs-generic.its | |
parent | f4c2dab544ec22fac6ab2de32aa5bb361c7566f7 (diff) | |
download | upstream-2de86691b67ea73d858ec1c78757faae795691e4.tar.gz upstream-2de86691b67ea73d858ec1c78757faae795691e4.tar.bz2 upstream-2de86691b67ea73d858ec1c78757faae795691e4.zip |
bcm4908: include U-Boot DTB files for ASUS GT-AX6000 & Netgear RAX220
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
Diffstat (limited to 'target/linux/bcm4908/image/bootfs-generic.its')
-rw-r--r-- | target/linux/bcm4908/image/bootfs-generic.its | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/target/linux/bcm4908/image/bootfs-generic.its b/target/linux/bcm4908/image/bootfs-generic.its index bd566d5d22..d32e094eb5 100644 --- a/target/linux/bcm4908/image/bootfs-generic.its +++ b/target/linux/bcm4908/image/bootfs-generic.its @@ -62,6 +62,28 @@ }; }; + fdt_GTAX6000 { + description = "dtb"; + data = /incbin/("${images_dir}/u-boot/GTAX6000.dtb"); + type = "flat_dt"; + compression = "none"; + + hash-1 { + algo = "sha256"; + }; + }; + + fdt_uboot_RAX220 { + description = "dtb"; + data = /incbin/("${images_dir}/u-boot/RAX220.dtb"); + type = "flat_dt"; + compression = "none"; + + hash-1 { + algo = "sha256"; + }; + }; + fdt_linux_RAX220 { description = "dtb"; data = /incbin/("${dts_dir}/broadcom/bcm4908/bcm4908-netgear-raxe500.dtb"); @@ -80,6 +102,18 @@ loadables = "atf", "uboot"; }; + conf_ub_GTAX6000 { + description = "GTAX6000"; + fdt = "fdt_GTAX6000"; + loadables = "atf", "uboot"; + }; + + conf_ub_RAX220 { + description = "RAX220"; + fdt = "fdt_uboot_RAX220"; + loadables = "atf", "uboot"; + }; + conf_lx_RAX220 { description = "BRCM 63xxx linux"; kernel = "kernel"; |