diff --git a/system/arm/bootloader/arm64/boot.S b/system/arm/bootloader/arm64/boot.S index 3809f72c2c..50415615d2 100644 --- a/system/arm/bootloader/arm64/boot.S +++ b/system/arm/bootloader/arm64/boot.S @@ -59,6 +59,8 @@ _start: orr x0, x0, #(1 << 0) // Non-secure EL1 orr x0, x0, #(1 << 8) // HVC enable orr x0, x0, #(1 << 10) // 64-bit EL2 + orr x0, x0, #(1 << 16) // Disable FEAT_PAuth traps (APK) + orr x0, x0, #(1 << 17) // Disable FEAT_PAuth traps (API) msr scr_el3, x0 mov x0, #(1 << 8) // Disable SVE trap to EL3