<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vyos-1x.git/smoketest/scripts/system/test_module_load.py, branch rolling</title>
<subtitle>VyOS command definitions, scripts, and utilities (mirror of https://github.com/vyos/vyos-1x.git)
</subtitle>
<id>https://git.amelek.net/vyos/vyos-1x.git/atom?h=rolling</id>
<link rel='self' href='https://git.amelek.net/vyos/vyos-1x.git/atom?h=rolling'/>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/'/>
<updated>2026-05-11T19:27:16+00:00</updated>
<entry>
<title>smoketest: T6847: probe for Intel I40E and IAVF Out-Of-Tree drivers</title>
<updated>2026-05-11T19:27:16+00:00</updated>
<author>
<name>Christian Breunig</name>
<email>christian@breunig.cc</email>
</author>
<published>2026-05-09T05:59:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=38e21db24b41c4f0ea7fbbbcfe478ae4bc7f8447'/>
<id>urn:sha1:38e21db24b41c4f0ea7fbbbcfe478ae4bc7f8447</id>
<content type='text'>
The Intel iavf driver (formerly i40evf) is the Linux virtual function driver
for modern Intel Ethernet adapters supporting SR-IOV, including the X700/E800
series.

Renamed to iavf to support future devices, it replaced i40evf entirely by 2019.
The driver facilitates high-performance networking in virtualized environments.
</content>
</entry>
<entry>
<title>Debian: T8147: remove out-of-tree OpenVPN DCO module - incl. in Kernel 6.18</title>
<updated>2026-05-02T18:35:01+00:00</updated>
<author>
<name>Christian Breunig</name>
<email>christian@breunig.cc</email>
</author>
<published>2026-05-02T18:35:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=0bfde189978dec10de9994837c71bc795743aea7'/>
<id>urn:sha1:0bfde189978dec10de9994837c71bc795743aea7</id>
<content type='text'>
Move from the out-of-tree to an in-tree variant of the OpenVPN DCO module. As
this was not available in the previous used LTS 6.6 Kernel it now is available
while we upgrade to Linux 6.18.
</content>
</entry>
<entry>
<title>T7591: remove copyright years from source files</title>
<updated>2025-06-28T21:16:52+00:00</updated>
<author>
<name>Christian Breunig</name>
<email>christian@breunig.cc</email>
</author>
<published>2025-06-28T18:51:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=1478516ae437f19ebeb7d6ff9b83dd74f8e76758'/>
<id>urn:sha1:1478516ae437f19ebeb7d6ff9b83dd74f8e76758</id>
<content type='text'>
The legal team says years are not necessary so we can go ahead with it, since
it will simplify backporting.

Automatically removed using: git ls-files | grep -v libvyosconfig | xargs sed -i -E \
's/^# Copyright (19|20)[0-9]{2}(-[0-9]{4})? VyOS maintainers.*/# Copyright VyOS maintainers and contributors &lt;maintainers@vyos.io&gt;/g'

In addition we will error-out during "make" if someone re-adds a legacy
copyright notice
</content>
</entry>
<entry>
<title>smoketests: T5887: remove IXGB driver</title>
<updated>2024-01-03T20:13:02+00:00</updated>
<author>
<name>Christian Breunig</name>
<email>christian@breunig.cc</email>
</author>
<published>2024-01-03T20:13:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=8eabba331f2615a284348b70a9ef3dd49e15f76d'/>
<id>urn:sha1:8eabba331f2615a284348b70a9ef3dd49e15f76d</id>
<content type='text'>
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.
</content>
</entry>
<entry>
<title>smoketest: T4947: check for OpenVPN DCO Kernel module</title>
<updated>2023-07-22T18:53:41+00:00</updated>
<author>
<name>Christian Breunig</name>
<email>christian@breunig.cc</email>
</author>
<published>2023-07-22T18:52:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=e4f3bcc7083c554866cdb0b625ea4991ed0d7f32'/>
<id>urn:sha1:e4f3bcc7083c554866cdb0b625ea4991ed0d7f32</id>
<content type='text'>
</content>
</entry>
<entry>
<title>T5195: vyos.util -&gt; vyos.utils package refactoring (#2093)</title>
<updated>2023-07-14T20:18:36+00:00</updated>
<author>
<name>Christian Breunig</name>
<email>christian@breunig.cc</email>
</author>
<published>2023-07-14T20:18:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=d1ca536da448749dff557f13ecae97b124026e96'/>
<id>urn:sha1:d1ca536da448749dff557f13ecae97b124026e96</id>
<content type='text'>
* T5195: move run, cmd, call, rc_cmd helper to vyos.utils.process

* T5195: use read_file and write_file implementation from vyos.utils.file

Changed code automatically using:

find . -type f -not -path '*/\.*' -exec sed -i 's/^from vyos.util import read_file$/from vyos.utils.file import read_file/g' {} +
find . -type f -not -path '*/\.*' -exec sed -i 's/^from vyos.util import write_file$/from vyos.utils.file import write_file/g' {} +

* T5195: move chmod* helpers to vyos.utils.permission

* T5195: use colon_separated_to_dict from vyos.utils.dict

* T5195: move is_systemd_service_* to vyos.utils.process

* T5195: fix boot issues with missing imports

* T5195: move dict_search_* helpers to vyos.utils.dict

* T5195: move network helpers to vyos.utils.network

* T5195: move commit_* helpers to vyos.utils.commit

* T5195: move user I/O helpers to vyos.utils.io</content>
</entry>
<entry>
<title>smoketests: modules: wireguard no longer needs to be loaded</title>
<updated>2023-01-18T17:01:14+00:00</updated>
<author>
<name>Christian Breunig</name>
<email>christian@breunig.cc</email>
</author>
<published>2023-01-18T17:01:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=ae8734f1052054aa2763398f3e85da5e28a0a6f9'/>
<id>urn:sha1:ae8734f1052054aa2763398f3e85da5e28a0a6f9</id>
<content type='text'>
As WireGuard is now part of the mainline Kernel, we no longer need to validate
it using the external module loader/tester.
</content>
</entry>
<entry>
<title>smoketest: kernel-modules: fail hard if module is unloadable</title>
<updated>2021-04-17T17:03:12+00:00</updated>
<author>
<name>Christian Poessinger</name>
<email>christian@poessinger.com</email>
</author>
<published>2021-04-17T17:02:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=837929297855034e4bea339ae5081c68daa4d6cb'/>
<id>urn:sha1:837929297855034e4bea339ae5081c68daa4d6cb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>smoketest: run all tests with verbosity=2</title>
<updated>2020-12-29T20:08:41+00:00</updated>
<author>
<name>Christian Poessinger</name>
<email>christian@poessinger.com</email>
</author>
<published>2020-12-29T19:41:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=d36063f837e7b015e8f9fc3a19832bc36bceb61a'/>
<id>urn:sha1:d36063f837e7b015e8f9fc3a19832bc36bceb61a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>smoketest: kernel: try loading Intel QAT drivers</title>
<updated>2020-09-03T21:23:40+00:00</updated>
<author>
<name>Christian Poessinger</name>
<email>christian@poessinger.com</email>
</author>
<published>2020-09-03T21:23:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=b6b61bc9ecf1328e67a0c15934f8bf3966a6b66d'/>
<id>urn:sha1:b6b61bc9ecf1328e67a0c15934f8bf3966a6b66d</id>
<content type='text'>
</content>
</entry>
</feed>
