1
0
mirror of https://github.com/freifunk-gluon/packages.git synced 2024-06-17 12:44:00 +02:00
gluon-packages/libs/libplatforminfo/Config.in
Florian Eckert 90b26e3388 libplatforminfo: add Config.in for custom target
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2018-11-28 09:50:14 +01:00

34 lines
694 B
Plaintext

menu "Configuration"
depends on PACKAGE_libplatforminfo
config LIBPLATFORMINFO_CUSTOM
bool "Use custom definitions"
default n
help
Use custom definitions to get the platform informations
from special files.
if LIBPLATFORMINFO_CUSTOM
config LIBPLATFORMINFO_BOARD_NAME
string "File to board name information"
default "/tmp/sysinfo/board_name"
help
File to board name information
config LIBPLATFORMINFO_MODEL
string "File to model information"
default "/tmp/sysinfo/model"
help
File to model information
config LIBPLATFORMINFO_IMAGE_NAME
string "File to image name information"
default ""
help
File to image name information
endif # if LIBPLATFORMINFO_CUSTOM
endmenu