mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-13 16:37:30 +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>
20 lines
371 B
C
20 lines
371 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2012-2020 ASPEED Technology Inc.
|
|
* Ryan Chen <ryan_chen@aspeedtech.com>
|
|
*
|
|
* Copyright 2016 Google Inc
|
|
*/
|
|
|
|
#ifndef __CONFIG_H
|
|
#define __CONFIG_H
|
|
|
|
#include <configs/aspeed-common.h>
|
|
|
|
#define CONFIG_SYS_UBOOT_BASE CONFIG_TEXT_BASE
|
|
|
|
/* Misc */
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
""
|
|
|
|
#endif /* __CONFIG_H */
|