Provides modprobe configuration file and instructions for PN533 and Linux >3.1 users.
This commit is contained in:
parent
cf6d843c18
commit
0fd3c9fab3
5 changed files with 14 additions and 0 deletions
8
README
8
README
|
@ -133,6 +133,14 @@ Two possible solutions:
|
||||||
* Either you don't install SCL3711 driver at all
|
* Either you don't install SCL3711 driver at all
|
||||||
* Or you stop the PCSC daemon when you want to use libnfc-based tools
|
* Or you stop the PCSC daemon when you want to use libnfc-based tools
|
||||||
|
|
||||||
|
PN533 USB device on Linux >= 3.1:
|
||||||
|
---------------------------------
|
||||||
|
Since Linux kernel version 3.1, two kernel-modules must not be loaded in order
|
||||||
|
to use libnfc : "nfc" and "pn533".
|
||||||
|
To prevent kernel from loading automatically these modules, you can blacklist
|
||||||
|
them in a modprobe conf file. This file is provided within libnfc archive:
|
||||||
|
sudo cp contrib/linux/blacklist-libnfc.conf /etc/modprobe.d/blacklist-libnfc.conf
|
||||||
|
|
||||||
Proprietary Notes
|
Proprietary Notes
|
||||||
=================
|
=================
|
||||||
|
|
||||||
|
|
|
@ -147,6 +147,7 @@ AC_CONFIG_FILES([
|
||||||
cmake/modules/Makefile
|
cmake/modules/Makefile
|
||||||
contrib/Makefile
|
contrib/Makefile
|
||||||
contrib/devd/Makefile
|
contrib/devd/Makefile
|
||||||
|
contrib/linux/Makefile
|
||||||
contrib/udev/Makefile
|
contrib/udev/Makefile
|
||||||
contrib/win32/Makefile
|
contrib/win32/Makefile
|
||||||
contrib/win32/sys/Makefile
|
contrib/win32/sys/Makefile
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
SUBDIRS = \
|
SUBDIRS = \
|
||||||
devd \
|
devd \
|
||||||
|
linux \
|
||||||
udev \
|
udev \
|
||||||
win32
|
win32
|
||||||
|
|
||||||
|
|
2
contrib/linux/Makefile.am
Normal file
2
contrib/linux/Makefile.am
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
EXTRA_DIST = \
|
||||||
|
blacklist-libnfc.conf
|
2
contrib/linux/blacklist-libnfc.conf
Normal file
2
contrib/linux/blacklist-libnfc.conf
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
blacklist nfc
|
||||||
|
blacklist pn533
|
Loading…
Reference in a new issue