uboot/tools/binman/test/077_vblock_bad_entry.dts
<<
>>
Prefs
   1// SPDX-License-Identifier: GPL-2.0+
   2/dts-v1/;
   3
   4/ {
   5        #address-cells = <1>;
   6        #size-cells = <1>;
   7
   8        binman {
   9                u_boot: u-boot {
  10                };
  11
  12                vblock {
  13                        content = <&u_boot &other>;
  14                        keyblock = "firmware.keyblock";
  15                        signprivate = "firmware_data_key.vbprivk";
  16                        version = <1>;
  17                        kernelkey = "kernel_subkey.vbpubk";
  18                        preamble-flags = <1>;
  19                };
  20
  21                dtb: u-boot-dtb {
  22                };
  23        };
  24
  25        other: other {
  26        };
  27};
  28