]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/m68k/cpu/mcf5445x/config.mk
malta: correct tcl script path in README.malta
[karo-tx-uboot.git] / arch / m68k / cpu / mcf5445x / config.mk
1 #
2 # (C) Copyright 2003 Josef Baumgartner <josef.baumgartner@telex.de>
3 #
4 # (C) Copyright 2000-2004
5 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 #
7 # Copyright 2011-2012 Freescale Semiconductor, Inc.
8 #
9 # SPDX-License-Identifier:      GPL-2.0+
10 #
11
12 PLATFORM_RELFLAGS += -ffixed-d7 -msep-data
13
14 cfg=$(shell grep configs $(OBJTREE)/include/config.h | sed 's/.*<\(configs.*\)>/\1/')
15 is5441x:=$(shell grep CONFIG_MCF5441x $(TOPDIR)/include/$(cfg))
16
17 ifneq (,$(findstring CONFIG_MCF5441x,$(is5441x)))
18 PLATFORM_CPPFLAGS += -mcpu=54418 -fPIC
19 else
20 PLATFORM_CPPFLAGS += -mcpu=54455 -fPIC
21 endif
22
23 ifneq (,$(findstring -linux-,$(shell $(CC) --version)))
24 ifneq (,$(findstring GOT,$(shell $(LD) --help)))
25 PLATFORM_LDFLAGS += --got=single
26 endif
27 endif