mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 14:12:06 +00:00
13d1ff2c85
Move the Boston board flattened image tree source into its own file which is concatenated into the final image tree source used to build the flattened image tree. Separating boards into different files will help us to avoid conflicts as boards are added. Signed-off-by: Paul Burton <paul.burton@imgtec.com> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/16939/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
23 lines
363 B
ArmAsm
23 lines
363 B
ArmAsm
/ {
|
|
images {
|
|
fdt@boston {
|
|
description = "img,boston Device Tree";
|
|
data = /incbin/("boot/dts/img/boston.dtb");
|
|
type = "flat_dt";
|
|
arch = "mips";
|
|
compression = "none";
|
|
hash@0 {
|
|
algo = "sha1";
|
|
};
|
|
};
|
|
};
|
|
|
|
configurations {
|
|
conf@boston {
|
|
description = "Boston Linux kernel";
|
|
kernel = "kernel@0";
|
|
fdt = "fdt@boston";
|
|
};
|
|
};
|
|
};
|