blob: 75874bb6e23917b933fbd3d35a91e9cc07235fc0 [file] [log] [blame]
Simon Glassadfb8492021-11-03 21:09:18 -06001// 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}