19 lines
501 B
C
19 lines
501 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (c) 2017 Google, Inc
|
|
*
|
|
* Simple program to create some binman symbols. This is used by binman tests.
|
|
*/
|
|
|
|
typedef unsigned long ulong;
|
|
|
|
#include <linux/kconfig.h>
|
|
#include <binman_sym.h>
|
|
|
|
DECLARE_BINMAN_MAGIC_SYM;
|
|
|
|
binman_sym_declare(unsigned long, u_boot_spl_any, offset);
|
|
binman_sym_declare(unsigned long long, u_boot_spl2, offset);
|
|
binman_sym_declare(unsigned long, u_boot_any, image_pos);
|
|
binman_sym_declare(unsigned long, u_boot_any, size);
|