Simon Glass | adfb849 | 2021-11-03 21:09:18 -0600 | [diff] [blame] | 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 | |||||
8 | int __attribute__((section(".mydtb"))) dtb_data[4096]; | ||||
9 | |||||
10 | int main(void) | ||||
11 | { | ||||
12 | return 0; | ||||
13 | } |