mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
01abae4d04
Withd53ecad92f
some unused interrupt related code was removed. However all of these options are currently unused. Rather than migrate some of these options to Kconfig we just remove the code in question. The only related code changes here are that in some cases we use CONFIG_STACKSIZE in non-IRQ related context. In these cases we rename and move the value local to the code in question. Fixes:d53ecad92f
("Merge branch 'master' of git://git.denx.de/u-boot-sunxi") Signed-off-by: Tom Rini <trini@konsulko.com>
20 lines
358 B
Makefile
20 lines
358 B
Makefile
#
|
|
# (C) Copyright 2000-2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
extra-y = start.o
|
|
|
|
obj-y += cpu.o
|
|
|
|
obj-$(CONFIG_EP93XX) += ep93xx/
|
|
obj-$(CONFIG_IMX) += imx/
|
|
obj-$(CONFIG_S3C24X0) += s3c24x0/
|
|
|
|
# some files can only build in ARM mode
|
|
|
|
ifdef CONFIG_$(SPL_)SYS_THUMB_BUILD
|
|
CFLAGS_cpu.o := -marm
|
|
endif
|