2018-05-06 17:58:06 -04:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2017-11-13 18:54:58 -07: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 15:22:37 -06:00
|
|
|
binman_sym_declare(unsigned long, u_boot_spl, offset);
|
|
|
|
binman_sym_declare(unsigned long long, u_boot_spl2, offset);
|
2018-08-01 15:22:42 -06:00
|
|
|
binman_sym_declare(unsigned long, u_boot_any, image_pos);
|
2019-08-24 07:23:05 -06:00
|
|
|
binman_sym_declare(unsigned long, u_boot_any, size);
|