The answer to this particular error message is a broken line in this script /etc/init.d/trousers.
Offensive line 32:
31:
32: if [ ! -e /dev/tpm* ]
33: then
expands to:
if [ ! -e /dev/tpm /dev/tpm0 ]
This causes an error. Changing this line to something like:
31:
32: if [ ! -e /dev/tpm ] && [ ! -e /dev/tpm0 ]
33: then
should at least do the script work.
Minix source
share