diff options
Diffstat (limited to 'roms/u-boot/tools/binman/test/039_x86_ucode_missing_node2.dts')
-rw-r--r-- | roms/u-boot/tools/binman/test/039_x86_ucode_missing_node2.dts | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/roms/u-boot/tools/binman/test/039_x86_ucode_missing_node2.dts b/roms/u-boot/tools/binman/test/039_x86_ucode_missing_node2.dts new file mode 100644 index 000000000..10ac086d5 --- /dev/null +++ b/roms/u-boot/tools/binman/test/039_x86_ucode_missing_node2.dts @@ -0,0 +1,23 @@ +/dts-v1/; + +/ { + #address-cells = <1>; + #size-cells = <1>; + + binman { + sort-by-offset; + end-at-4gb; + size = <0x200>; + u-boot-with-ucode-ptr { + }; + }; + + microcode { + update@0 { + data = <0x12345678 0x12345679>; + }; + update@1 { + data = <0xabcd0000 0x78235609>; + }; + }; +}; |