mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 05:34:28 +00:00
61ec04f9ed
Sometimes an entry may shrink after it has already been packed. In that case we must repack the items. Of course it is always possible to just leave the entry at its original size and waste space at the end. This is what binman does by default, since there is the possibility of the entry changing size every time binman calculates its contents, thus causing a loop. Signed-off-by: Simon Glass <sjg@chromium.org>
20 lines
201 B
Text
20 lines
201 B
Text
/dts-v1/;
|
|
|
|
/ {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
binman {
|
|
_testing {
|
|
bad-shrink-contents;
|
|
};
|
|
|
|
u-boot {
|
|
};
|
|
|
|
_testing2 {
|
|
type = "_testing";
|
|
bad-shrink-contents;
|
|
};
|
|
};
|
|
};
|