mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
8122f3967f
At present the .map file produced for each image does not include the overall image size. This is useful information. Update the code to generate it in the .map file as well as the updated FDT. Also fix a few comments while we are here. Signed-off-by: Simon Glass <sjg@chromium.org>
32 lines
359 B
Text
32 lines
359 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
binman {
|
|
pad-byte = <0x26>;
|
|
size = <0x28>;
|
|
section@0 {
|
|
read-only;
|
|
size = <0x10>;
|
|
pad-byte = <0x21>;
|
|
|
|
u-boot {
|
|
};
|
|
};
|
|
section@1 {
|
|
size = <0x10>;
|
|
pad-byte = <0x61>;
|
|
|
|
u-boot {
|
|
};
|
|
};
|
|
section@2 {
|
|
u-boot {
|
|
};
|
|
};
|
|
};
|
|
};
|