| Index: src/trusted/debug_stub/abi.cc
|
| diff --git a/src/trusted/debug_stub/abi.cc b/src/trusted/debug_stub/abi.cc
|
| index b12d89e862ae0ff1dbe702bde81f47ed0af69977..558c3bfe9da03567fddc95414f9c7f8596a2696f 100644
|
| --- a/src/trusted/debug_stub/abi.cc
|
| +++ b/src/trusted/debug_stub/abi.cc
|
| @@ -129,7 +129,8 @@ static Abi::BPDef breakpoint_x86 = {
|
| breakpoint_code_x86
|
| };
|
|
|
| -static uint32_t breakpoint_code_arm[] = { 0xe1277777 /* bkpt 0x7777 */ };
|
| +// Breakpoint on ARM is defined in the validator's model.h.
|
| +static uint32_t breakpoint_code_arm[] = { 0xE125BE7F /* BKPT 0x5BEF */ };
|
| static Abi::BPDef breakpoint_arm = {
|
| sizeof(breakpoint_code_arm),
|
| (uint8_t *) breakpoint_code_arm
|
|
|