blob: 797567ce131a5595a6d304947014a3f31644720b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
choice
prompt "Operating System"
config ADK_TARGET_OS_LINUX
bool "Linux"
help
Create a Linux system or toolchain.
config ADK_TARGET_OS_WALDUX
bool "Waldux"
help
Create a Waldux 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
Create a frosted appliance or toolchain.
config ADK_TARGET_OS_ZEPHYR
bool "Zephyr"
help
Create a zephyr appliance or toolchain.
endchoice
config ADK_TARGET_OS
string
default "linux" if ADK_TARGET_OS_LINUX
default "waldux" if ADK_TARGET_OS_WALDUX
default "frosted" if ADK_TARGET_OS_FROSTED
default "rtems5.0.0" if ADK_TARGET_OS_RTEMS
default "zephyr" if ADK_TARGET_OS_ZEPHYR
|