aboutsummaryrefslogtreecommitdiffstats
path: root/src/linux/Kconfig
blob: 1647ef91a996534c848bb44b2bc3c85c7ba55c25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Kconfig settings for compiling and running the micro-controller code
# in a Linux process

if MACH_LINUX

config LINUX_SELECT
    bool
    default y
    select HAVE_GPIO_ADC
    select HAVE_GPIO_SPI

config BOARD_DIRECTORY
    string
    default "linux"

config CLOCK_FREQ
    int
    default 20000000

endif