mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
323762e54a
$(SRCTREE)/$(CPUDIR)/u-boot.lds is our default location of arch-specific linker script. Remove redundant definitions in arch/{arc,microblaze,openrisc}/config.mk. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Alexey Brodkin <Alexey.Brodkin@synopsys.com> Cc: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi> Acked-by: Michal Simek <monstr@monstr.eu>
16 lines
349 B
Makefile
16 lines
349 B
Makefile
#
|
|
# (C) Copyright 2011
|
|
# Julius Baxter <julius@opencores.org>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifeq ($(CROSS_COMPILE),)
|
|
CROSS_COMPILE := or32-elf-
|
|
endif
|
|
|
|
# r10 used for global object pointer, already set in OR32 GCC but just to be
|
|
# clear
|
|
PLATFORM_CPPFLAGS += -DCONFIG_OPENRISC -D__OR1K__ -ffixed-r10
|
|
|
|
CONFIG_STANDALONE_LOAD_ADDR ?= 0x40000
|