arch: gen_isr_tables: migrate to <zephyr/...> include prefix
The gen_usr_tables scripts were not updated to make use of the <zephyr/...> include prefix, fix this. Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
parent
26a924a44e
commit
45776650c2
|
@ -21,7 +21,7 @@ zephyr_cc_option(-ffunction-sections -fdata-sections)
|
|||
|
||||
zephyr_linker_sources_ifdef(CONFIG_GEN_ISR_TABLES
|
||||
SECTIONS
|
||||
${ZEPHYR_BASE}/include/linker/intlist.ld
|
||||
${ZEPHYR_BASE}/include/zephyr/linker/intlist.ld
|
||||
)
|
||||
|
||||
if(CONFIG_GEN_ISR_TABLES)
|
||||
|
|
|
@ -43,7 +43,7 @@ def endian_prefix():
|
|||
def read_intlist(intlist_path, syms):
|
||||
"""read a binary file containing the contents of the kernel's .intList
|
||||
section. This is an instance of a header created by
|
||||
include/linker/intlist.ld:
|
||||
include/zephyr/linker/intlist.ld:
|
||||
|
||||
struct {
|
||||
uint32_t num_vectors; <- typically CONFIG_NUM_IRQS
|
||||
|
@ -128,10 +128,10 @@ def parse_args():
|
|||
source_header = """
|
||||
/* AUTO-GENERATED by gen_isr_tables.py, do not edit! */
|
||||
|
||||
#include <toolchain.h>
|
||||
#include <linker/sections.h>
|
||||
#include <sw_isr_table.h>
|
||||
#include <arch/cpu.h>
|
||||
#include <zephyr/toolchain.h>
|
||||
#include <zephyr/linker/sections.h>
|
||||
#include <zephyr/sw_isr_table.h>
|
||||
#include <zephyr/arch/cpu.h>
|
||||
|
||||
#if defined(CONFIG_GEN_SW_ISR_TABLE) && defined(CONFIG_GEN_IRQ_VECTOR_TABLE)
|
||||
#define ISR_WRAPPER ((uintptr_t)&_isr_wrapper)
|
||||
|
|
Loading…
Reference in a new issue