[PATCH 5/7] UBUNTU: SAUCE: ubuntu_ltp_syscalls: Install the linux-modules-extra package matching the running kernel
Francis Ginther
francis.ginther at canonical.com
Tue Nov 9 21:35:20 UTC 2021
Install the linux-modules-extra package matching the running kernel
instead of doing a wildcard match on the kernel flavour. The wildcard
may match packages that are uninstallable.
Signed-off-by: Francis Ginther <francis.ginther at canonical.com>
---
ubuntu_ltp_syscalls/ubuntu_ltp_syscalls.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ubuntu_ltp_syscalls/ubuntu_ltp_syscalls.py b/ubuntu_ltp_syscalls/ubuntu_ltp_syscalls.py
index 7ea656f1..02c5bd83 100644
--- a/ubuntu_ltp_syscalls/ubuntu_ltp_syscalls.py
+++ b/ubuntu_ltp_syscalls/ubuntu_ltp_syscalls.py
@@ -53,7 +53,7 @@ class ubuntu_ltp_syscalls(test.test):
if self.flavour in ['aws', 'azure', 'azure-fips', 'gcp', 'gcp-fips', 'gke', 'gkeop']:
if not (self.flavour == 'aws' and self.series == 'trusty'):
- pkgs.append('linux-modules-extra-' + self.flavour + '*')
+ pkgs.append('linux-modules-extra-' + platform.uname()[2])
if self.flavour not in ['kvm']:
pkgs.append('nfs-kernel-server')
if self.series not in ['trusty']:
--
2.30.2
More information about the kernel-team
mailing list