mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
984639039f
The current name is inconsistent with SPL which uses CONFIG_SPL_TEXT_BASE and this makes it imposible to use CONFIG_VAL(). Rename it to resolve this problem. Signed-off-by: Simon Glass <sjg@chromium.org>
24 lines
557 B
C
24 lines
557 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (c) Aspeed Technology Inc.
|
|
*/
|
|
|
|
#ifndef __CONFIG_H
|
|
#define __CONFIG_H
|
|
|
|
#include <configs/aspeed-common.h>
|
|
|
|
#define CONFIG_SYS_UBOOT_BASE CONFIG_TEXT_BASE
|
|
|
|
/* Misc */
|
|
#define STR_HELPER(s) #s
|
|
#define STR(s) STR_HELPER(s)
|
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
"loadaddr=" STR(CONFIG_SYS_LOAD_ADDR) "\0" \
|
|
"bootspi=fdt addr 20100000 && fdt header get fitsize totalsize && " \
|
|
"cp.b 20100000 ${loadaddr} ${fitsize} && bootm; " \
|
|
"echo Error loading kernel FIT image\0" \
|
|
""
|
|
|
|
#endif /* __CONFIG_H */
|