uboot/tools/binman/test/u_boot_binman_embed.c
<<
>>
Prefs
   1// SPDX-License-Identifier: GPL-2.0+
   2/*
   3 * Copyright 2021 Google LLC
   4 *
   5 * Simple program to embed a devicetree. This is used by binman tests.
   6 */
   7
   8int __attribute__((section(".mydtb"))) dtb_data[4096];
   9
  10int main(void)
  11{
  12        return 0;
  13}
  14