Aaron Durbin (adurbin@chromium.org) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/13879
-gerrit
commit 802bbb5a3104f383c6daa6a7ffc5c0b7e2efca9e Author: Aaron Durbin adurbin@chromium.org Date: Wed Mar 2 14:55:32 2016 -0600
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 --- src/cpu/x86/16bit/reset16.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/cpu/x86/16bit/reset16.inc b/src/cpu/x86/16bit/reset16.inc index 2220aab..ebc3d4c 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: