3ed8a1b07c
This adds a new subpackage that installs dependencies and configures the smartcard reader on the librem 5. Some setup is required before this will work (e.g. upgrading reader firmware), the L5 wiki page will have this information. The pcsc init script was forked into this package to allow for powering on the reader *before* the service started. Doing this in a separate init script would have caused the reader to power on regardless of whether the pcsc service was set to start, which is not desirable since it should *only* be powered on when pcsc is starting
11 lines
273 B
Bash
11 lines
273 B
Bash
#!/bin/sh
|
|
|
|
# smartcard reader service
|
|
rc-update add pcscd-librem5
|
|
|
|
cat 1>&2 <<EOF
|
|
*
|
|
* If the smartcard firmware hasn't been upgraded, an upgrade might be necessary!
|
|
* For more info: https://wiki.postmarketos.org/wiki/Purism_Librem5_(purism-librem5)#OpenPGP_Smartcard
|
|
*
|
|
EOF
|