summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorViacheslav Hletenko <v.gletenko@vyos.io>2026-04-02 12:36:24 +0000
committerViacheslav Hletenko <v.gletenko@vyos.io>2026-04-02 12:36:24 +0000
commita823ec975cbd5aa5c15006895f93d2c55d3ea09b (patch)
treeb1e23e27e6d46aef8d9368cf75980d5e66554bf3
parent2ad37c4a8a963651bbc183d24662f2571c4682c6 (diff)
downloadvyos-1x-a823ec975cbd5aa5c15006895f93d2c55d3ea09b.tar.gz
vyos-1x-a823ec975cbd5aa5c15006895f93d2c55d3ea09b.zip
T8377: Extend smoketestest to check ARM CN10308 kernel modules
Extend required kernel options in arm64 test to cover CN10308 platform features, including OCTEONTX2 networking, I2C, GPIO, MMC, LED, and RTC drivers.
-rwxr-xr-xsmoketest/scripts/system/test_kernel_options.py10
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: