mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 14:14:32 +00:00
52b10dd7de
At present testPackX86RomMeNoDesc removes the contents of the descriptor.bin file and testPackX86RomMeMissingDesc removes the file completely. If a test that relies on this file happens to run after it is removed, it will not work. Since we have no control over the selecting of tests that run in parallel and series, we must avoid changing the files. Update this tests to use separate files instead. Signed-off-by: Simon Glass <sjg@chromium.org>
22 lines
291 B
Text
22 lines
291 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
binman {
|
|
sort-by-offset;
|
|
end-at-4gb;
|
|
size = <0x800000>;
|
|
intel-descriptor {
|
|
filename = "descriptor-empty.bin";
|
|
};
|
|
|
|
intel-me {
|
|
filename = "me.bin";
|
|
offset-unset;
|
|
};
|
|
};
|
|
};
|