• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# none hdf driver configs
2choice
3    prompt "Enable Uart"
4    default DRIVERS_HDF_PLATFORM_UART
5    help
6      Enable simple uart (without vfs) only for litekernel.
7      Enable general uart (with vfs) for full code.
8
9config DRIVERS_HDF_PLATFORM_UART
10    bool "Enable HDF platform uart driver"
11    depends on DRIVERS_HDF_PLATFORM
12    help
13      Answer Y to enable HDF platform uart driver.
14
15config PLATFORM_UART_WITHOUT_VFS
16    bool "Simple Uart"
17config PLATFORM_NO_UART
18    bool "NO Uart"
19endchoice
20
21# mmc config start
22config DRIVERS_MMC
23    depends on DRIVERS
24    bool "Enable MMC"
25    default y
26    depends on DRIVERS && FS_VFS
27    help
28      Answer Y to enable LiteOS support MMC driver.
29
30config DRIVERS_EMMC
31    depends on DRIVERS_MMC && PLATFORM_STM32MP157
32    bool "Enable MMC0 support eMMC type"
33# mmc config end
34# mtd configs tart
35config DRIVERS_MTD
36    bool "Enable MTD"
37    default y
38    depends on DRIVERS && FS_VFS
39    help
40      Answer Y to enable LiteOS support jffs2 multipartion.
41
42# spi nor
43config DRIVERS_MTD_SPI_NOR
44    bool "Enable MTD spi_nor flash"
45    default y
46    depends on DRIVERS_MTD
47    help
48      Answer Y to support spi_nor flash.
49
50config DRIVERS_HI3881
51      bool "Enable Hi3881 Host driver"
52      default n
53      depends on DRIVERS_HDF_WIFI
54      help
55        Answer Y to enable Hi3881 Host driver.
56config HW_RANDOM_ENABLE
57        depends on DRIVERS_RANDOM
58        bool "Select hw random"
59        default y
60        help
61        Answer Y to select hw random.
62
63