From: Michael Mair-Keimberger (asterix) Date: Sun, 3 Jul 2016 17:22:59 +0000 (+0200) Subject: app-crypt/tpm-emulator: remove unused patches X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=4f7b2b7290b8275eec8e84bf9b50a122c5169e9a;p=gentoo.git app-crypt/tpm-emulator: remove unused patches Closes: https://github.com/gentoo/gentoo/pull/1826 Signed-off-by: Patrice Clement --- diff --git a/app-crypt/tpm-emulator/files/tpm-emulator.initd b/app-crypt/tpm-emulator/files/tpm-emulator.initd deleted file mode 100644 index 6b2a648ae87c..000000000000 --- a/app-crypt/tpm-emulator/files/tpm-emulator.initd +++ /dev/null @@ -1,54 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -opts="save clear deactivated" - -STARTUP_MODE='save'; - - -depend() { - use logger - after coldplug -} - -checkconfig() { - lsmod | grep -q "^tpmd_dev\b" \ - || modprobe tpmd_dev &>/dev/null \ - || eerror "Failed to load module tpmd_dev"; - - if [ ! -c /dev/tpm ] && [ ! -c /dev/tpm0 ] ; then - eerror "No TPM device found!" - return 1 - fi - return 0 -} - -start() { - ebegin "Starting tpm-emulator daemon with mode '$STARTUP_MODE' (tpmd)" - checkconfig || eend $? - start-stop-daemon --start --chuid tss --exec /usr/sbin/tpmd $STARTUP_MODE > /dev/null - eend $? -} - -save() { - STARTUP_MODE='save'; - svc_restart -} - -clear() { - STARTUP_MODE='clear'; - svc_restart -} - -deactivated() { - STARTUP_MODE='deactivated'; - svc_restart -} - -stop() { - ebegin "Stopping tpm-emulator daemon (tpmd)" - start-stop-daemon --stop --exec /usr/sbin/tpmd --user tss > /dev/null - eend $? -} diff --git a/app-crypt/tpm-emulator/files/tpm-emulator.udev b/app-crypt/tpm-emulator/files/tpm-emulator.udev deleted file mode 100644 index ca053b9d36d3..000000000000 --- a/app-crypt/tpm-emulator/files/tpm-emulator.udev +++ /dev/null @@ -1 +0,0 @@ -KERNEL=="tpm", NAME="%k", SYMLINK+="tpm0", GROUP="tss", MODE="0660"