mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 14:10:43 +00:00
696f2b73d6
Allow templates to be used inside a section, not just in the top-level /binman node. Signed-off-by: Simon Glass <sjg@chromium.org>
52 lines
600 B
Text
52 lines
600 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
binman {
|
|
u-boot-img {
|
|
};
|
|
|
|
common_part: template {
|
|
u-boot {
|
|
};
|
|
|
|
intel-vga {
|
|
filename = "vga.bin";
|
|
};
|
|
};
|
|
|
|
first {
|
|
type = "section";
|
|
insert-template = <&common_part>;
|
|
|
|
u-boot-dtb {
|
|
};
|
|
};
|
|
|
|
section {
|
|
second {
|
|
type = "section";
|
|
insert-template = <&common_part>;
|
|
|
|
u-boot-dtb {
|
|
};
|
|
|
|
intel-vga {
|
|
filename = "vga2.bin";
|
|
};
|
|
};
|
|
};
|
|
|
|
second {
|
|
type = "section";
|
|
insert-template = <&common_part>;
|
|
|
|
u-boot-dtb {
|
|
};
|
|
};
|
|
};
|
|
};
|