aboutsummaryrefslogtreecommitdiff
path: root/drivers/Kconfig
blob: 5f3377266e168aa479a7f51934f53cc3a205bd68 (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
menu "Drivers"

    menu "Video"
        config video0_enable
            bool "Enable video0"
            default y

        choice video0_driver
            prompt "video0 driver"
            depends on video0_enable
            config video0_driver_cga
                bool "CGA"
            config video0_driver_vga
                bool "VGA"
        endchoice

        config VIDEO0_CLASS
            string "video0 class"
            default "CGA" if video0_driver_cga
            default "VGA" if video0_driver_vga
            depends on video0_enable
        config VIDEO0_CONSOLE
            bool "use video0 for debug output"
            default y
            depends on video0_enable
    endmenu

    menu "Serial ports"
        config serial0_enable
            bool "Enable serial0"
            default y

        config SERIAL0_CLASS
            string "serial0 class"
            default "SerialPort"
            depends on serial0_enable
        config SERIAL0_CONSOLE
            bool "Use serial0 for debug output"
            default y
            depends on serial0_enable
    endmenu
endmenu