diff options
author | Waldemar Brodkorb <wbrodkorb@conet.de> | 2015-12-07 15:23:12 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbrodkorb@conet.de> | 2015-12-07 15:23:12 +0100 |
commit | 2a0ec4d53e2ff0265ae5469e5cceac5446c016ab (patch) | |
tree | dd66a048202d1b1669a97f46e5b146a490f17e02 | |
parent | c3999afcffcdca7385da932699fc80bc12bb9ef4 (diff) |
kernel: add basic nfc support
-rw-r--r-- | target/linux/Config.in | 1 | ||||
-rw-r--r-- | target/linux/config/Config.in.nfc | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/target/linux/Config.in b/target/linux/Config.in index 05927e8d3..2765d0980 100644 --- a/target/linux/Config.in +++ b/target/linux/Config.in @@ -14,6 +14,7 @@ source target/linux/config/Config.in.graphics source target/linux/config/Config.in.input source target/linux/config/Config.in.pcmcia source target/linux/config/Config.in.network +source target/linux/config/Config.in.nfc source target/linux/config/Config.in.netfilter source target/linux/config/Config.in.audio source target/linux/config/Config.in.multimedia diff --git a/target/linux/config/Config.in.nfc b/target/linux/config/Config.in.nfc new file mode 100644 index 000000000..0d402c51f --- /dev/null +++ b/target/linux/config/Config.in.nfc @@ -0,0 +1,37 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +menu "NFC devices support" + +config ADK_KERNEL_NFC + bool + +config ADK_KERNEL_NFC_DIGITAL + bool + +config ADK_KERNEL_NFC_HCI + bool + +config ADK_KERNEL_NFC_NCI + bool + +config ADK_KERNEL_NFC_NCI_SPI + bool + +config ADK_KERNEL_NFC_SHDLC + bool + +config ADK_KERNEL_NFC_PN533 + tristate "PN533 USB chip" + select ADK_KERNEL_NFC + select ADK_KERNEL_NFC_DIGITAL + select ADK_KERNEL_NFC_HCI + select ADK_KERNEL_NFC_NCI + select ADK_KERNEL_NFC_NCI_SPI + select ADK_KERNEL_NFC_SHDLC + default n + help + Driver for PN533 USB chip. + +endmenu + |