mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-26 08:51:13 +00:00
a8e1e30543
This fixes problem of overwriting BCM4908 U-Boot and DTB files by
BCM4912 ones. That bug didn't allow booting BCM4908 devices.
Fixes: f4c2dab544
("uboot-bcm4908: add BCM4912 build")
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
49 lines
894 B
Plaintext
49 lines
894 B
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
|
|
/include/ "bootfs.itsi"
|
|
|
|
/ {
|
|
images {
|
|
uboot {
|
|
data = /incbin/("${images_dir}/u-boot/u-boot-bcm4908.bin");
|
|
};
|
|
|
|
fdt_uboot {
|
|
data = /incbin/("${images_dir}/u-boot/u-boot-bcm4908.dtb");
|
|
};
|
|
|
|
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");
|
|
arch = "arm64";
|
|
type = "flat_dt";
|
|
compression = "none";
|
|
};
|
|
};
|
|
|
|
configurations {
|
|
conf_ub_RAX220 {
|
|
description = "RAX220";
|
|
fdt = "fdt_uboot_RAX220";
|
|
loadables = "atf", "uboot";
|
|
};
|
|
|
|
conf_lx_RAX220 {
|
|
description = "BRCM 63xxx linux";
|
|
kernel = "kernel";
|
|
fdt = "fdt_linux_RAX220";
|
|
};
|
|
};
|
|
};
|