summaryrefslogtreecommitdiff
path: root/config/target.in
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2017-06-13 07:19:30 (GMT)
committerAlexey Neyman <stilor@att.net>2017-06-13 07:19:30 (GMT)
commitc0162ff475f74d1da78c167a479e2b010cb27df5 (patch)
tree11ae703eb1ef79d42aa39b332d2b0765255ba6e9 /config/target.in
parenta9f8a8e67509547a53b9b4781734e2b482b75b4e (diff)
Make ARM32 option appear only if 32-bit is selected
Fixes #745 Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'config/target.in')
-rw-r--r--config/target.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/config/target.in b/config/target.in
index 2ce8aa3..50aaa61 100644
--- a/config/target.in
+++ b/config/target.in
@@ -144,6 +144,9 @@ config ARCH_SUPPORTS_64
config ARCH_DEFAULT_8
bool
+config ARCH_DEFAULT_16
+ bool
+
config ARCH_DEFAULT_32
bool
@@ -153,6 +156,7 @@ config ARCH_DEFAULT_64
config ARCH_BITNESS
int
default "8" if ARCH_8
+ default "16" if ARCH_16
default "32" if ARCH_32
default "64" if ARCH_64
@@ -160,6 +164,7 @@ choice
bool
prompt "Bitness:"
default ARCH_8 if ARCH_DEFAULT_8
+ default ARCH_16 if ARCH_DEFAULT_16
default ARCH_32 if ARCH_DEFAULT_32
default ARCH_64 if ARCH_DEFAULT_64