mirror of
https://gitee.com/Vancouver2017/luban-lite.git
synced 2025-12-29 01:06:56 +00:00
43 lines
972 B
Plaintext
43 lines
972 B
Plaintext
|
|
# Kconfig file for package AzureGUIX
|
|
menuconfig PKG_USING_AZUREGUIX
|
|
bool "AzureGUIX"
|
|
default n
|
|
|
|
if PKG_USING_AZUREGUIX
|
|
|
|
config PKG_AZUREGUIX_PATH
|
|
string
|
|
default "/packages/multimedia/AzureGUIX"
|
|
|
|
config GUIX_VIRTUAL_DISPLAY_MONO
|
|
bool "Enable uart device virtual display"
|
|
default n
|
|
|
|
if GUIX_VIRTUAL_DISPLAY_MONO
|
|
config GUIX_VIRTUAL_DISPLAY_SERIAL_DEV
|
|
string "virtual display uart device name"
|
|
default "uart2"
|
|
endif
|
|
|
|
choice
|
|
prompt "Version"
|
|
default PKG_USING_AZUREGUIX_LATEST_VERSION
|
|
help
|
|
Select the package version
|
|
|
|
config PKG_USING_AZUREGUIX_V100
|
|
bool "v1.0.0"
|
|
|
|
config PKG_USING_AZUREGUIX_LATEST_VERSION
|
|
bool "latest"
|
|
endchoice
|
|
|
|
config PKG_AZUREGUIX_VER
|
|
string
|
|
default "v1.0.0" if PKG_USING_AZUREGUIX_V100
|
|
default "latest" if PKG_USING_AZUREGUIX_LATEST_VERSION
|
|
|
|
endif
|
|
|