mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
0bca284b17
Many CONFIG options have an unnecessary value of 1. CONFIG_440 is set in the various board config files. Also simplify the CONFIG_440 check in config.mk Signed-off-by: Simon Glass <sjg@chromium.org>
14 lines
285 B
Makefile
14 lines
285 B
Makefile
#
|
|
# (C) Copyright 2000-2010
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
PLATFORM_CPPFLAGS += -mstring -msoft-float
|
|
|
|
ifneq (,$(CONFIG_440))
|
|
PLATFORM_CPPFLAGS += -Wa,-m440 -mcpu=440
|
|
else
|
|
PLATFORM_CPPFLAGS += -Wa,-m405 -mcpu=405
|
|
endif
|