mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-13 16:37:30 +00:00
dab8788a8c
The 'exception' command allows to test exception handling. This implementation supports ARM, x86, RISC-V and the following exceptions: * 'breakpoint' - prefetch abort exception (ARM 32bit only) * 'unaligned' - data abort exception (ARM only) * 'undefined' - undefined instruction exception Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
5 lines
128 B
Makefile
5 lines
128 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
|
|
obj-y += mtrr.o
|
|
obj-$(CONFIG_CMD_EXCEPTION) += exception.o
|
|
obj-$(CONFIG_HAVE_FSP) += fsp.o
|