diff options
author | Andrew Thoelke <andrew.thoelke@arm.com> | 2014-06-02 12:38:12 +0100 |
---|---|---|
committer | Andrew Thoelke <andrew.thoelke@arm.com> | 2014-06-17 11:20:00 +0100 |
commit | ee94cc6fa6dc11229a53c3b66d2ce3487bb3b08f (patch) | |
tree | 2d6c57c937294183bd284706aca62d47aa3022f7 /bl31/bl31.mk | |
parent | 5e910074245fa180cfbe70d3c8bceeff1eaa026e (diff) | |
download | platform_external_arm-trusted-firmware-ee94cc6fa6dc11229a53c3b66d2ce3487bb3b08f.tar.gz platform_external_arm-trusted-firmware-ee94cc6fa6dc11229a53c3b66d2ce3487bb3b08f.tar.bz2 platform_external_arm-trusted-firmware-ee94cc6fa6dc11229a53c3b66d2ce3487bb3b08f.zip |
Remove early_exceptions from BL3-1
The crash reporting support and early initialisation of the
cpu_data allow the runtime_exception vectors to be used from
the start in BL3-1, removing the need for the additional
early_exception vectors and 2KB of code from BL3-1.
Change-Id: I5f8997dabbaafd8935a7455910b7db174a25d871
Diffstat (limited to 'bl31/bl31.mk')
-rw-r--r-- | bl31/bl31.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bl31/bl31.mk b/bl31/bl31.mk index 4602e4113..5555c319c 100644 --- a/bl31/bl31.mk +++ b/bl31/bl31.mk @@ -38,8 +38,7 @@ BL31_SOURCES += bl31/bl31_main.c \ bl31/aarch64/context.S \ bl31/aarch64/cpu_data.S \ bl31/aarch64/runtime_exceptions.S \ - bl31/aarch64/crash_reporting.S \ - common/aarch64/early_exceptions.S \ + bl31/aarch64/crash_reporting.S \ lib/aarch64/cpu_helpers.S \ lib/locks/bakery/bakery_lock.c \ lib/locks/exclusive/spinlock.S \ |