mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
d67a577512
The include/configs/yucca.h already has the same define: #define CONFIG_SYS_TEXT_BASE 0xfffb0000 Remove the redundant one from board/amcc/yucca/config.mk. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Acked-by: Stefan Roese <sr@denx.de>
20 lines
341 B
Makefile
20 lines
341 B
Makefile
#
|
|
# (C) Copyright 2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
#
|
|
# AMCC 440SPe Reference Platform (yucca) board
|
|
#
|
|
|
|
PLATFORM_CPPFLAGS += -DCONFIG_440=1
|
|
|
|
ifeq ($(debug),1)
|
|
PLATFORM_CPPFLAGS += -DDEBUG
|
|
endif
|
|
|
|
ifeq ($(dbcr),1)
|
|
PLATFORM_CPPFLAGS += -DCONFIG_SYS_INIT_DBCR=0x8cff0000
|
|
endif
|