Skip to content

Commit 25f98c9

Browse files
lyakhfabiobaltieri
authored andcommitted
soc: intel: ace: fix GDB stub
A recent commit inadvertently broke GDB stub on ACE. Revert that part of the faulty commit. Fixes: commit cfd6a06 ("SoC: Intel: ACE: remove unused litelals parts in interrupt vectors") Signed-off-by: Guennadi Liakhovetski <[email protected]>
1 parent 5da1baa commit 25f98c9

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

soc/intel/intel_adsp/ace/ace-link.ld

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,11 @@ SECTIONS {
194194
KEEP (*(.Level4InterruptVector.text))
195195
_Level4InterruptVector_text_end = .;
196196
} >vector_int4_text
197+
.DebugExceptionVector.text : {
198+
_DebugExceptionVector_text_start = .;
199+
KEEP (*(.DebugExceptionVector.text))
200+
_DebugExceptionVector_text_end = .;
201+
} >vector_int4_text
197202
.NMIExceptionVector.text : {
198203
_NMIExceptionVector_text_start = .;
199204
KEEP (*(.NMIExceptionVector.text))

0 commit comments

Comments
 (0)