blob: 243c8e9e1a131d2ab2f1abe6b2ecc122a36188af [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass72232452016-11-25 20:15:53 -07002/*
3 * Copyright (c) 2016 Google, Inc
4 *
Simon Glass72232452016-11-25 20:15:53 -07005 * Simple program to create a _dt_ucode_base_size symbol which can be read
Simon Glass24ad3652017-11-13 18:54:54 -07006 * by binutils. This is used by binman tests.
Simon Glass72232452016-11-25 20:15:53 -07007 */
8
9static unsigned long _dt_ucode_base_size[2]
10 __attribute__((section(".ucode"))) = {1, 2};