From 90fbfd6d7ebeb2f97f10b7762f1c320b9995a340 Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Tue, 22 Jan 2019 12:50:22 +0200 Subject: [PATCH] [sq] more overrides in LD script --- linker/aarch64.ld | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/linker/aarch64.ld b/linker/aarch64.ld index ccd9624..5f9fc24 100644 --- a/linker/aarch64.ld +++ b/linker/aarch64.ld @@ -65,16 +65,20 @@ SECTIONS /*PROVIDE(current_el0_synchronous = default_exception_handler); PROVIDE(current_el0_irq = default_exception_handler); +PROVIDE(current_el0_fiq = default_exception_handler); PROVIDE(current_el0_serror = default_exception_handler); PROVIDE(current_elx_synchronous = default_exception_handler); PROVIDE(current_elx_irq = default_exception_handler); +PROVIDE(current_elx_fiq = default_exception_handler); PROVIDE(current_elx_serror = default_exception_handler); PROVIDE(lower_aarch64_synchronous = default_exception_handler); PROVIDE(lower_aarch64_irq = default_exception_handler); +PROVIDE(lower_aarch64_fiq = default_exception_handler); PROVIDE(lower_aarch64_serror = default_exception_handler); PROVIDE(lower_aarch32_synchronous = default_exception_handler); PROVIDE(lower_aarch32_irq = default_exception_handler); +PROVIDE(lower_aarch32_fiq = default_exception_handler); PROVIDE(lower_aarch32_serror = default_exception_handler);*/