mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
51014aabc2
So far we don't allow entries to change size when repacking. But this is not very useful since it is common for entries to change size after an updated binary is built, etc. Add support for this, respecting the original offset/size/alignment constraints of the image layout. For this to work the original image must have been created with the 'allow-repack' property. This does not support entry types with sub-entries such as files and CBFS, but it does support sections. Signed-off-by: Simon Glass <sjg@chromium.org>
22 lines
243 B
Text
22 lines
243 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
binman {
|
|
size = <0xc00>;
|
|
allow-repack;
|
|
u-boot {
|
|
};
|
|
fdtmap {
|
|
};
|
|
u-boot-dtb {
|
|
};
|
|
image-header {
|
|
location = "end";
|
|
};
|
|
};
|
|
};
|