Simon Glass | 7223245 | 2016-11-25 20:15:53 -0700 | [diff] [blame] | 1 | /* |
2 | * Copyright (c) 2016 Google, Inc | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: GPL-2.0+ | ||||
5 | * | ||||
6 | * Simple program to create a _dt_ucode_base_size symbol which can be read | ||||
Simon Glass | 24ad365 | 2017-11-13 18:54:54 -0700 | [diff] [blame] | 7 | * by binutils. This is used by binman tests. |
Simon Glass | 7223245 | 2016-11-25 20:15:53 -0700 | [diff] [blame] | 8 | */ |
9 | |||||
10 | static unsigned long _dt_ucode_base_size[2] | ||||
11 | __attribute__((section(".ucode"))) = {1, 2}; |