mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
5ff10aa7e7
This patch implements the generic board init as described in doc/README.generic-board. Signed-off-by: Thomas Chou <thomas@wytron.com.tw> Signed-off-by: Scott McNutt <smcnutt@psyent.com> Reviewed-by: Stefan Roese <sr@denx.de>
21 lines
420 B
Makefile
21 lines
420 B
Makefile
#
|
|
# (C) Copyright 2004
|
|
# Psyent Corporation <www.psyent.com>
|
|
# Scott McNutt <smcnutt@psyent.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifeq ($(CROSS_COMPILE),)
|
|
CROSS_COMPILE := nios2-elf-
|
|
endif
|
|
|
|
CONFIG_STANDALONE_LOAD_ADDR ?= 0x02000000
|
|
|
|
PLATFORM_CPPFLAGS += -D__NIOS2__
|
|
PLATFORM_CPPFLAGS += -G0
|
|
|
|
LDFLAGS_FINAL += --gc-sections
|
|
PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections
|
|
|
|
__HAVE_ARCH_GENERIC_BOARD := y
|