arm: enable SW_ISR_TABLE/DYNAMIC by default

Enable by default the easy usage of connecting interrupts. If someone
wants to connect interrupts by hardcoding the ISR in the vector table,
they now have to disable these two options.

Change-Id: I5fd14784596e7c52d3c43fddc4fcb51bc8850db3
Signed-off-by: Benjamin Walsh <benjamin.walsh@windriver.com>
This commit is contained in:
Benjamin Walsh 2015-04-22 14:34:39 -04:00 committed by Anas Nashif
commit e1308ebd37

View file

@ -45,7 +45,7 @@ config CPU_CORTEXM3
config SW_ISR_TABLE
bool
prompt "Enable software interrupt handler table"
default n
default y
help
Enable an interrupt handler table implemented in software. This
table, unlike ISRs connected directly in the vector table, allow
@ -59,7 +59,7 @@ config SW_ISR_TABLE_DYNAMIC
bool
prompt "Allow installing interrupt handlers at runtime"
depends on SW_ISR_TABLE
default n
default y
help
This option enables irq_connect(). It moves the ISR table to
SRAM so that it is writable. This has the side-effect of removing