mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 06:04:34 +00:00
631f752de5
Generally the content of sections is not built until the final assembly of the image. This is partly to avoid wasting time, since the entries within sections may change multiple times as binman works through its various stages. This works quite well since sections exist in a strict hierarchy, so they can be processed in a depth-first manner. However the 'collection' entry type does not have this luxury. If it contains a section within its 'content' list, then it must produce the section contents, if available. That section is typically a sibling node, i.e. not part oc the collection's hierarchy. Add a new 'required' argument to section.GetData() to support this. When required is True, any referenced sections are immediately built. If this is not possible (because one of the subentries does not have its data yet) then an error is produced. The test for this uses a 'collection' entry type, referencing a section as its first member. This forces a call to _BuildSectionData() with required set to False, at first, then True later, when the image is assembled. Signed-off-by: Simon Glass <sjg@chromium.org>
32 lines
398 B
Text
32 lines
398 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
binman {
|
|
collection {
|
|
content = <§ion &u_boot>;
|
|
};
|
|
fill {
|
|
size = <2>;
|
|
fill-byte = [ff];
|
|
};
|
|
section: section {
|
|
u-boot-nodtb {
|
|
};
|
|
u-boot-dtb {
|
|
};
|
|
};
|
|
fill2 {
|
|
type = "fill";
|
|
size = <3>;
|
|
fill-byte = [fe];
|
|
};
|
|
u_boot: u-boot {
|
|
no-expanded;
|
|
};
|
|
};
|
|
};
|