mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 10:18:38 +00:00
00ebd1f74d
These test programs are includedd as binary files in U-Boot to avoid having to build them (and associated toolchain differences). Instructions on building are in the files themselves, but it seems better to provide a Makefile which can be manually run when desired. Add a Makefile, separate from the normal build system, to handle this. Signed-off-by: Simon Glass <sjg@chromium.org>
11 lines
297 B
C
11 lines
297 B
C
/*
|
|
* Copyright (c) 2016 Google, Inc
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*
|
|
* Simple program to create a _dt_ucode_base_size symbol which can be read
|
|
* by 'nm'. This is used by binman tests.
|
|
*/
|
|
|
|
static unsigned long _dt_ucode_base_size[2]
|
|
__attribute__((section(".ucode"))) = {1, 2};
|