mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-29 08:01:08 +00:00
f6abd5227a
Collections can used to collect the contents of other entries into a single entry, but they result in a single entry, with the original entries 'left behind' in their old place. It is useful to be able to specific a set of entries ones and have it used in multiple images, or parts of an image. Implement this mechanism. Signed-off-by: Simon Glass <sjg@chromium.org>
42 lines
476 B
Text
42 lines
476 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 {
|
|
};
|
|
};
|
|
|
|
second {
|
|
type = "section";
|
|
insert-template = <&common_part>;
|
|
|
|
u-boot-dtb {
|
|
};
|
|
|
|
intel-vga {
|
|
filename = "vga2.bin";
|
|
};
|
|
};
|
|
};
|
|
};
|