mirror of
https://github.com/Dasharo/systemd.git
synced 2026-03-06 15:02:31 -08:00
test: only load tpm_ibmvtpm kernel module on PowerPC hw
This module is only available on PPC hw, so avoid trying to load it elsewhere, as it generates a misleading error message in the logs: modprobe: FATAL: Module tpm_ibmvtpm not found in directory /lib/modules/5.15.0-83-generic
This commit is contained in:
committed by
Luca Boccassi
parent
aefdc1124f
commit
948d460ea6
@@ -16,7 +16,12 @@ test_require_bin swtpm tpm2_pcrextend tpm2_dictionarylockout
|
||||
test_append_files() {
|
||||
local workspace="${1:?}"
|
||||
|
||||
instmods tpm tpm_tis tpm_ibmvtpm
|
||||
instmods tpm tpm_tis
|
||||
machine="$(uname -m)"
|
||||
if [ "${machine}" = "ppc64le" ]; then
|
||||
# This module is only available on PPC hw
|
||||
instmods tpm_ibmvtpm
|
||||
fi
|
||||
install_dmevent
|
||||
generate_module_dependencies
|
||||
inst_binary tpm2_dictionarylockout
|
||||
|
||||
Reference in New Issue
Block a user