1#=============================================================================== 2# @brief Kconfig file. 3# Copyright (c) 2020 HiSilicon (Shanghai) Technologies CO., LIMITED. 4#=============================================================================== 5mainmenu "Configuration" 6comment "Main menu description, show how to use this configuration system." 7 8menu "Targets" 9 comment "Select the target." 10endmenu 11 12menu "Application" 13 comment "Config the application." 14 osource "application/Kconfig" 15endmenu 16 17menu "Bootloader" 18 comment "Config the bootloader." 19 osource "bootloader/Kconfig" 20endmenu 21 22menu "Drivers" 23 comment "Config the drivers." 24 osource "drivers/Kconfig" 25endmenu 26 27menu "Kernel" 28 comment "Config the kernel." 29 osource "kernel/Kconfig" 30endmenu 31 32menu "Middleware" 33 comment "Config the middleware." 34 osource "middleware/Kconfig" 35endmenu 36 37menu "Protocol" 38 comment "Config the protocol." 39 osource "protocol/Kconfig" 40endmenu 41 42menu "Test" 43 comment "Config the test." 44 osource "test/Kconfig" 45endmenu 46 47