diff options
Diffstat (limited to 'roms/u-boot/arch/m68k/cpu/mcf532x/config.mk')
-rw-r--r-- | roms/u-boot/arch/m68k/cpu/mcf532x/config.mk | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/roms/u-boot/arch/m68k/cpu/mcf532x/config.mk b/roms/u-boot/arch/m68k/cpu/mcf532x/config.mk new file mode 100644 index 00000000..af943543 --- /dev/null +++ b/roms/u-boot/arch/m68k/cpu/mcf532x/config.mk @@ -0,0 +1,19 @@ +# +# (C) Copyright 2003 Josef Baumgartner <josef.baumgartner@telex.de> +# +# (C) Copyright 2000-2004 +# Wolfgang Denk, DENX Software Engineering, wd@denx.de. +# +# SPDX-License-Identifier: GPL-2.0+ +# + +cfg=$(shell grep configs $(objtree)/include/config.h | sed 's/.*<\(configs.*\)>/\1/') +is5301x:=$(shell grep CONFIG_MCF5301x $(srctree)/include/$(cfg)) +is532x:=$(shell grep CONFIG_MCF532x $(srctree)/include/$(cfg)) + +ifneq (,$(findstring CONFIG_MCF5301x,$(is5301x))) +PLATFORM_CPPFLAGS += -mcpu=53015 -fPIC +endif +ifneq (,$(findstring CONFIG_MCF532x,$(is532x))) +PLATFORM_CPPFLAGS += -mcpu=5329 -fPIC +endif |