1config BR2_PACKAGE_PYTHON_NFC 2 bool "python-nfc" 3 depends on BR2_PACKAGE_PYTHON 4 depends on BR2_TOOLCHAIN_HAS_THREADS # libusb 5 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb 6 select BR2_PACKAGE_LIBUSB 7 select BR2_PACKAGE_LIBUSB_COMPAT 8 help 9 Python module for near field communication. 10 11 https://launchpad.net/nfcpy 12 13comment "python-nfc needs a toolchain w/ threads, gcc >= 4.9" 14 depends on BR2_PACKAGE_PYTHON 15 depends on !BR2_TOOLCHAIN_HAS_THREADS || \ 16 !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 17