From b2e136c5f08d17b8db57d5cda867c4ce3dbfe958 Mon Sep 17 00:00:00 2001 From: Andrew Boie Date: Mon, 13 Feb 2017 12:39:50 -0800 Subject: [PATCH] gen_isr_tables: make vector offset a hidden option If this is set incorrectly things will break all over the place. Needs a default defined per-arch and left alone. Change-Id: I3f8c842937a240297ee21589a22a7a9e51dbdfad Signed-off-by: Andrew Boie --- arch/Kconfig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/Kconfig b/arch/Kconfig index dad05fc6ef8..9114915674c 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -153,7 +153,6 @@ config GEN_SW_ISR_TABLE config GEN_IRQ_START_VECTOR int - prompt "Starting vector for user-configurable interrupts" default 0 depends on GEN_ISR_TABLES help @@ -161,6 +160,8 @@ config GEN_IRQ_START_VECTOR system exceptions and is declared separately from the tables created by gen_isr_tables.py. When creating these tables, this value will be subtracted from CONFIG_NUM_IRQS to properly size them. + This is a hidden option which needs to be set-per architecture and + left alone. source "arch/*/Kconfig"