1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (c) 2017 Google, Inc
4 *
5 * Simple program to create some binman symbols. This is used by binman tests.
6 */
7
8#include <linux/kconfig.h>
9#include <binman_sym.h>
10
11DECLARE_BINMAN_MAGIC_SYM;
12
13unsigned long val1 = 123;
14unsigned long val2 = 456;
15binman_sym_declare(unsigned long, inset, offset);
16unsigned long val3 = 789;
17unsigned long val4 = 999;
18binman_sym_declare(unsigned long, inset, size);
19