mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-02 01:19:49 +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
314 B
C
11 lines
314 B
C
/*
|
|
* Copyright (c) 2016 Google, Inc
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*
|
|
* Simple program to create a bad _dt_ucode_base_size symbol to create an
|
|
* error when it is used. This is used by binman tests.
|
|
*/
|
|
|
|
static unsigned long not__dt_ucode_base_size[2]
|
|
__attribute__((section(".ucode"))) = {1, 2};
|