diff options
author | Christian Breunig <christian@breunig.cc> | 2024-01-03 21:13:02 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-01-03 21:13:02 +0100 |
commit | 8eabba331f2615a284348b70a9ef3dd49e15f76d (patch) | |
tree | c1264f9ee675a1c6ddf4d8e419a27f604e2432f5 | |
parent | 27b9a45ef3460e1a8db03b9e8f0aeacdd3619b07 (diff) | |
download | vyos-1x-8eabba331f2615a284348b70a9ef3dd49e15f76d.tar.gz vyos-1x-8eabba331f2615a284348b70a9ef3dd49e15f76d.zip |
smoketests: T5887: remove IXGB driver
From Kernel commit e485f3a6eae0 ("ixgb: Remove ixgb driver")
There are likely no users of this driver as the hardware has been discontinued
since 2010. Remove the driver and all references to it in documentation.
-rwxr-xr-x | smoketest/scripts/system/test_module_load.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/smoketest/scripts/system/test_module_load.py b/smoketest/scripts/system/test_module_load.py index 9d94f01e6..fc60c7220 100755 --- a/smoketest/scripts/system/test_module_load.py +++ b/smoketest/scripts/system/test_module_load.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2019-2023 VyOS maintainers and contributors +# Copyright (C) 2019-2024 VyOS maintainers and contributors # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 or later as @@ -18,7 +18,7 @@ import unittest from vyos.utils.process import cmd modules = { - "intel": ["e1000", "e1000e", "igb", "ixgb", "ixgbe", "ixgbevf", "i40e", + "intel": ["e1000", "e1000e", "igb", "ixgbe", "ixgbevf", "i40e", "i40evf", "iavf"], "intel_qat": ["qat_200xx", "qat_200xxvf", "qat_c3xxx", "qat_c3xxxvf", "qat_c62x", "qat_c62xvf", "qat_d15xx", "qat_d15xxvf", |