mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 06:04:34 +00:00
189f291914
The vblock entry type includes code to collect the data from a number of other entries (not necessarily subentries) and concatenating it. This is a useful feature for other entry types. Make it a base class, so that vblock can use it, along with other entry types. Signed-off-by: Simon Glass <sjg@chromium.org>
27 lines
349 B
Text
27 lines
349 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
binman {
|
|
collection {
|
|
content = <&u_boot_nodtb &dtb>;
|
|
};
|
|
fill {
|
|
size = <2>;
|
|
fill-byte = [ff];
|
|
};
|
|
u_boot_nodtb: u-boot-nodtb {
|
|
};
|
|
fill2 {
|
|
type = "fill";
|
|
size = <3>;
|
|
fill-byte = [fe];
|
|
};
|
|
dtb: u-boot-dtb {
|
|
};
|
|
};
|
|
};
|