diff options
| author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2026-04-03 12:43:13 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-04-03 12:43:13 +0300 |
| commit | 9c374a6b5012c885522d088818744943ac5708f2 (patch) | |
| tree | 042cb6c7360f7e54884477fbffd607870ff872a2 | |
| parent | bba85756aa458811a347ffb063671731a2975407 (diff) | |
| parent | a823ec975cbd5aa5c15006895f93d2c55d3ea09b (diff) | |
| download | vyos-1x-9c374a6b5012c885522d088818744943ac5708f2.tar.gz vyos-1x-9c374a6b5012c885522d088818744943ac5708f2.zip | |
Merge pull request #5102 from sever-sever/T8377-stest
T8377: Extend smoketestest to check ARM CN10308 kernel modules
| -rwxr-xr-x | smoketest/scripts/system/test_kernel_options.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/smoketest/scripts/system/test_kernel_options.py b/smoketest/scripts/system/test_kernel_options.py index 39e4da6fe..2f3c54c79 100755 --- a/smoketest/scripts/system/test_kernel_options.py +++ b/smoketest/scripts/system/test_kernel_options.py @@ -178,10 +178,18 @@ class TestKernelModules(unittest.TestCase): if not IS_ARM64: self.skipTest('Not an arm64 platform') - # Marvell CN9130: CONFIG_MVPP2 + # Marvell CN9130: CONFIG_MVPP2, CN10308 required_options = [ 'CONFIG_MVPP2', 'CONFIG_USB_XHCI_PLATFORM', + 'CONFIG_OCTEONTX2_AF', + 'CONFIG_OCTEONTX2_PF', + 'CONFIG_I2C_THUNDERX', + 'CONFIG_GPIO_PCA953X', + 'CONFIG_MMC_SDHCI_CADENCE', + 'CONFIG_LEDS_PCA955X_GPIO', + 'CONFIG_RTC_DRV_EFI', + 'CONFIG_RTC_DRV_PL031', ] for option in required_options: |
