mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-13 06:42:56 +00:00
f8f8df6eb8
Normally x86 platforms use the end-at-4gb option. This currently produces an FMAP with positions which have a large offset. The use of end-at-4gb is a useful convenience within binman, but we don't really want to export a map with these offsets. Fix this by subtracting the 'skip at start' parameter. Also put the code which convers names to fmap format, for clarity. Signed-off-by: Simon Glass <sjg@chromium.org>
22 lines
258 B
Text
22 lines
258 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
binman {
|
|
end-at-4gb;
|
|
size = <0x100>;
|
|
u-boot {
|
|
};
|
|
section {
|
|
pad-byte = <0x62>;
|
|
intel-mrc {
|
|
};
|
|
fmap {
|
|
offset = <0x20>;
|
|
};
|
|
};
|
|
};
|
|
};
|