summaryrefslogtreecommitdiff
path: root/target/config/Config.in.os
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2018-01-09 21:32:28 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2018-01-12 19:57:43 +0100
commita5a60ae7133fc9b893f3d44c793ccc322fd913d3 (patch)
tree6b538263b066e1780dee5d19ed5acaa56ae5456a /target/config/Config.in.os
parent9ca35e7ead58b872cca3ff9d7e3976863f8f8715 (diff)
add basic rtems support as a new playground
Diffstat (limited to 'target/config/Config.in.os')
-rw-r--r--target/config/Config.in.os22
1 files changed, 17 insertions, 5 deletions
diff --git a/target/config/Config.in.os b/target/config/Config.in.os
index 6d77dfa4b..7fff1d521 100644
--- a/target/config/Config.in.os
+++ b/target/config/Config.in.os
@@ -9,6 +9,16 @@ config ADK_TARGET_OS_LINUX
help
Create a Linux system or toolchain.
+config ADK_TARGET_OS_BAREMETAL
+ bool "Bare metal"
+ help
+ Create a bare metal appliance or toolchain.
+
+config ADK_TARGET_OS_RTEMS
+ bool "RTEMS"
+ help
+ Create a RTEMS appliance or toolchain.
+
config ADK_TARGET_OS_FROSTED
bool "Frosted"
help
@@ -19,9 +29,11 @@ config ADK_TARGET_OS_ZEPHYR
help
Create a zephyr appliance or toolchain.
-config ADK_TARGET_OS_BAREMETAL
- bool "Bare metal"
- help
- Create a bare metal appliance or toolchain.
-
endchoice
+
+config ADK_TARGET_OS
+ string
+ default "linux" if ADK_TARGET_OS_LINUX
+ default "frosted" if ADK_TARGET_OS_FROSTED
+ default "rtems5.0.0" if ADK_TARGET_OS_RTEMS
+ default "zephyr" if ADK_TARGET_OS_ZEPHYR