mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-22 03:03:05 +00:00
d626e825f5
At present the collections etype only works with entries in the same section. This can be limiting, since in some cases the data may be inside a subsection, e.g. if there are alignment constraints. Add a function to find the entries in an etype and have it search recursively. Make use of this for mkimage also. Signed-off-by: Simon Glass <sjg@chromium.org>
29 lines
377 B
Text
29 lines
377 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
binman {
|
|
collection {
|
|
content = <&u_boot_nodtb &dtb>;
|
|
};
|
|
section {
|
|
fill {
|
|
size = <2>;
|
|
fill-byte = [ff];
|
|
};
|
|
u_boot_nodtb: u-boot-nodtb {
|
|
};
|
|
fill2 {
|
|
type = "fill";
|
|
size = <3>;
|
|
fill-byte = [fe];
|
|
};
|
|
};
|
|
dtb: u-boot-dtb {
|
|
};
|
|
};
|
|
};
|