mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-25 21:24:21 +08:00
27145fd3a8
The Intel descriptor must always appear at the start of an (x86) image, so it is supposed to position itself there always. However there is no explicit test for this. Add one and fix a bug introduced by the recent change to adjust Entry to read the node in a separate call. Signed-off-by: Simon Glass <sjg@chromium.org>
21 lines
267 B
Plaintext
21 lines
267 B
Plaintext
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
binman {
|
|
sort-by-offset;
|
|
end-at-4gb;
|
|
size = <0x800000>;
|
|
u-boot {
|
|
offset = <0xffff0000>;
|
|
};
|
|
intel-descriptor {
|
|
filename = "descriptor.bin";
|
|
};
|
|
};
|
|
};
|