mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 14:14:32 +00:00
76ab9f2726
We don't expect an exception in TPL and don't need to set up interrupts in TPL. Drop this whole file. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
11 lines
184 B
Makefile
11 lines
184 B
Makefile
#
|
|
# (C) Copyright 2016 Google, Inc
|
|
# Written by Simon Glass <sjg@chromium.org>
|
|
#
|
|
|
|
obj-y += call64.o
|
|
obj-y += cpu.o
|
|
ifndef CONFIG_TPL_BUILD
|
|
obj-y += interrupt.o
|
|
endif
|
|
obj-y += setjmp.o
|