2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2017-11-14 01:54:58 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2017 Google, Inc
|
|
|
|
*
|
|
|
|
* Simple program to create some binman symbols. This is used by binman tests.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define CONFIG_BINMAN
|
|
|
|
#include <binman_sym.h>
|
|
|
|
|
2018-08-01 21:22:37 +00:00
|
|
|
binman_sym_declare(unsigned long, u_boot_spl, offset);
|
|
|
|
binman_sym_declare(unsigned long long, u_boot_spl2, offset);
|
2018-08-01 21:22:42 +00:00
|
|
|
binman_sym_declare(unsigned long, u_boot_any, image_pos);
|
2019-08-24 13:23:05 +00:00
|
|
|
binman_sym_declare(unsigned long, u_boot_any, size);
|