mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
35 lines
574 B
Plaintext
35 lines
574 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-nodtb.bin");
|
||
|
};
|
||
|
|
||
|
fdt_uboot {
|
||
|
data = /incbin/("${images_dir}/u-boot/u-boot.dtb");
|
||
|
};
|
||
|
|
||
|
fdt_GTAX6000 {
|
||
|
description = "dtb";
|
||
|
data = /incbin/("${images_dir}/u-boot/GTAX6000.dtb");
|
||
|
type = "flat_dt";
|
||
|
compression = "none";
|
||
|
|
||
|
hash-1 {
|
||
|
algo = "sha256";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
configurations {
|
||
|
conf_ub_GTAX6000 {
|
||
|
description = "GTAX6000";
|
||
|
fdt = "fdt_GTAX6000";
|
||
|
loadables = "atf", "uboot";
|
||
|
};
|
||
|
};
|
||
|
};
|