1config BR2_PACKAGE_CCID 2 bool "ccid" 3 depends on BR2_TOOLCHAIN_HAS_THREADS # libusb 4 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb 5 depends on BR2_USE_MMU # pcsc-lite 6 depends on !BR2_STATIC_LIBS # pcsc-lite 7 select BR2_PACKAGE_PCSC_LITE 8 select BR2_PACKAGE_LIBUSB 9 help 10 PC/SC driver for USB CCID smart card readers 11 12 https://ccid.apdu.fr/ 13 14comment "ccid needs a toolchain w/ threads, dynamic library, gcc >= 4.9" 15 depends on BR2_USE_MMU 16 depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS || \ 17 !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 18