Files
packages/utils/lpac/Config.in
Robert Marko 34f9d96b4c lpac: make APDU backends configurable
Currently, lpac will be built with the PCSC and AT APDU backends by default
and its not configurable in OpenWrt.

Since smart card reads are not really common on OpenWrt devices lets
disable PCSC backend by default so we dont have to include PCSC lib and
daemon by default.

AT backend is left enabled by default since it has no external dependecies
and all modems have it.

QMI over QRTR backend is not selectable even though it is part of the 2.0.2
relase since it requires unstable libqmi 1.35.4 or newer and we are still
using 1.34 stable branch.

Signed-off-by: Robert Marko <robert.marko@sartura.hr>
2024-07-02 09:52:03 -07:00

17 lines
309 B
Plaintext

menu "Configuration"
depends on PACKAGE_lpac
config LPAC_WITH_PCSC
bool "Include APDU PCSC Backend support"
default n
help
Compile LPAC with APDU PCSC Backend support.
config LPAC_WITH_AT
bool "Include APDU AT Backend support"
default y
help
Compile LPAC with APDU AT Backend support.
endmenu