mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
4a28b00703
The tests don't currently cover all the different property types. Add a new test which checks each property type in turn, to make sure each has the correct type and value. Signed-off-by: Simon Glass <sjg@chromium.org>
23 lines
374 B
Text
23 lines
374 B
Text
/dts-v1/;
|
|
|
|
/ {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
binman {
|
|
sort-by-pos;
|
|
end-at-4gb;
|
|
size = <16>;
|
|
intel-me {
|
|
filename = "me.bin";
|
|
pos-unset;
|
|
intval = <3>;
|
|
intarray = <5 6>;
|
|
byteval = [08];
|
|
bytearray = [01 23 34];
|
|
longbytearray = [09 0a 0b 0c];
|
|
stringval = "message2";
|
|
stringarray = "another", "multi-word", "message";
|
|
};
|
|
};
|
|
};
|