mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
19 lines
698 B
Text
19 lines
698 B
Text
if PACKAGE_bbf_configmngr
|
|
choice
|
|
prompt "Select backend daemon for bbf.config"
|
|
default BBF_CONFIGMNGR_C_BACKEND
|
|
help
|
|
Select which backend daemon should be used for ubus bbf.config
|
|
|
|
config BBF_CONFIGMNGR_SCRIPT_BACKEND
|
|
bool "Use shell script backend"
|
|
help
|
|
Enable this option to use shell script as the backend for bbf.config. This can be useful for quick and easy scripting of configuration tasks.
|
|
|
|
config BBF_CONFIGMNGR_C_BACKEND
|
|
bool "Use C code backend"
|
|
help
|
|
Enable this option to use a C code implementation as the backend for bbf.config. This option is generally preferred for performance-critical tasks and scenarios requiring more robust and efficient handling.
|
|
|
|
endchoice
|
|
endif
|