diff options
author | Aaron Durbin <adurbin@chromium.org> | 2016-03-02 14:55:32 -0600 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2016-03-03 23:52:50 +0100 |
commit | 0fd068b3c3b80274fa2db9eaf27a85ceb9dd47e7 (patch) | |
tree | 818d0559c99b0185403ed09b907a2fc6e6fb332c /src/cpu/x86/16bit/reset16.inc | |
parent | 998d8561d10df7a1077a5bfa4465a571607c0f66 (diff) |
cpu/x86/16bit/reset16: mark reset vector executable
It's helpful to see the reset vector in objdump output. Without
it being marked executable it doesn't get displayed.
Change-Id: I85cb72ea0727d3f3c2186ae20b9c5cfe5d23aeed
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://review.coreboot.org/13879
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/cpu/x86/16bit/reset16.inc')
-rw-r--r-- | src/cpu/x86/16bit/reset16.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/x86/16bit/reset16.inc b/src/cpu/x86/16bit/reset16.inc index 2220aabb49..ebc3d4cee2 100644 --- a/src/cpu/x86/16bit/reset16.inc +++ b/src/cpu/x86/16bit/reset16.inc @@ -1,4 +1,4 @@ - .section ".reset" + .section ".reset", "ax", %progbits .code16 .globl reset_vector reset_vector: |