Merge branch 'master' of git://git.denx.de/u-boot-sh
[platform/kernel/u-boot.git] / tools / binman / test / 038_x86_ucode_missing_node.dts
1 /dts-v1/;
2
3 / {
4         #address-cells = <1>;
5         #size-cells = <1>;
6
7         binman {
8                 sort-by-offset;
9                 end-at-4gb;
10                 size = <0x200>;
11                 u-boot-with-ucode-ptr {
12                 };
13
14                 u-boot-ucode {
15                 };
16         };
17
18         microcode {
19                 update@0 {
20                         data = <0x12345678 0x12345679>;
21                 };
22                 update@1 {
23                         data = <0xabcd0000 0x78235609>;
24                 };
25         };
26 };