summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAndrew Boie <andrew.p.boie@intel.com>2016-10-21 10:30:21 -0700
committerAnas Nashif <nashif@linux.intel.com>2016-10-21 23:30:05 +0000
commit238fe1f60fc064607e6587816c8a7237e141709a (patch)
treea9bf7b4ae147cb6ed9e25c3ab643254e34c5c29e /Makefile
parent327017fb9237061b0ad8fc9ddcb6bac580d173e5 (diff)
gen_idt: remove int_vec_alloc bitfield from output
This is no longer used. Change-Id: I6536076ae3510d66eb26c49d89b865dc82e91e33 Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 4 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 0d8056d4c..99158073f 100644
--- a/Makefile
+++ b/Makefile
@@ -843,17 +843,14 @@ quiet_cmd_gen_idt = SIDT $@
( \
$(OBJCOPY) -I $(OUTPUT_FORMAT) -O binary -j intList $< isrList.bin && \
$(GENIDT) -i isrList.bin -n $(CONFIG_IDT_NUM_VECTORS) -o staticIdt.bin \
- -b int_vector_alloc.bin -m irq_int_vector_map.bin \
+ -m irq_int_vector_map.bin \
-l $(CONFIG_MAX_IRQ_LINES) $(GENIDT_EXTRA_ARGS) && \
$(OBJCOPY) -I binary -B $(OUTPUT_ARCH) -O $(OUTPUT_FORMAT) \
--rename-section .data=staticIdt staticIdt.bin staticIdt.o && \
$(OBJCOPY) -I binary -B $(OUTPUT_ARCH) -O $(OUTPUT_FORMAT) \
- --rename-section .data=int_vector_alloc int_vector_alloc.bin \
- int_vector_alloc.o && \
- $(OBJCOPY) -I binary -B $(OUTPUT_ARCH) -O $(OUTPUT_FORMAT) \
--rename-section .data=irq_int_vector_map irq_int_vector_map.bin \
irq_int_vector_map.o && \
- rm staticIdt.bin irq_int_vector_map.bin int_vector_alloc.bin isrList.bin\
+ rm staticIdt.bin irq_int_vector_map.bin isrList.bin \
)
staticIdt.o: $(TMP_ELF)
@@ -862,8 +859,8 @@ staticIdt.o: $(TMP_ELF)
quiet_cmd_lnk_elf = LINK $@
cmd_lnk_elf = \
( \
- $(CC) -T linker.cmd @$(KERNEL_NAME).lnk staticIdt.o int_vector_alloc.o \
- irq_int_vector_map.o -o $@; \
+ $(CC) -T linker.cmd @$(KERNEL_NAME).lnk staticIdt.o \
+ irq_int_vector_map.o -o $@; \
${OBJCOPY} --change-section-address intList=${CONFIG_PHYS_LOAD_ADDR} $@ elf.tmp;\
$(OBJCOPY) -R intList elf.tmp $@; \
rm elf.tmp \