aboutsummaryrefslogtreecommitdiffstats
path: root/src/linux/Kconfig
blob: 0ae585166aa163fb6474146c851c1c7df8a73bfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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
    select HAVE_GPIO_HARD_PWM

config BOARD_DIRECTORY
    string
    default "linux"

config CLOCK_FREQ
    int
    default 20000000

endif