summaryrefslogtreecommitdiff
path: root/scripts/package-build/linux-kernel/build.py
diff options
context:
space:
mode:
authorAndrii Klymenko <a.klymenko@vyos.io>2026-05-08 16:22:17 +0300
committerGitHub <noreply@github.com>2026-05-08 16:22:17 +0300
commit560bba0ef00af6039d9b95e31ee822a7f89c0fd7 (patch)
treee7fe18da8cc764384b7b7f35f6a8b21d1ddbd915 /scripts/package-build/linux-kernel/build.py
parenta0f74b5a2565956ce405b7185842cbdd0b4f1768 (diff)
parent2413b09291341031d77066db5f84509a7def54cd (diff)
downloadvyos-build-560bba0ef00af6039d9b95e31ee822a7f89c0fd7.tar.gz
vyos-build-560bba0ef00af6039d9b95e31ee822a7f89c0fd7.zip
Merge branch 'current' into T8542-SBOM-current
Diffstat (limited to 'scripts/package-build/linux-kernel/build.py')
-rwxr-xr-xscripts/package-build/linux-kernel/build.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/scripts/package-build/linux-kernel/build.py b/scripts/package-build/linux-kernel/build.py
index 4d243622..605a2194 100755
--- a/scripts/package-build/linux-kernel/build.py
+++ b/scripts/package-build/linux-kernel/build.py
@@ -160,9 +160,6 @@ def build_package(package: dict, dependencies: list) -> None:
build_jool()
elif package['build_cmd'] == 'build_ipt_netflow':
build_ipt_netflow(package['commit_id'], package['scm_url'])
- elif package['build_cmd'] == 'build_openvpn_dco':
- build_openvpn_dco(package['commit_id'], package['scm_url'])
- create_tarball(f'{package["name"]}-{package["commit_id"]}', f'{package["name"]}')
elif package['build_cmd'] == 'build_nat_rtsp':
build_nat_rtsp(package['commit_id'], package['scm_url'])
else:
@@ -260,12 +257,6 @@ def build_ipt_netflow(commit_id, scm_url):
clone_or_update_repo(repo_dir, scm_url, commit_id)
run(['./build-ipt-netflow.sh'], check=True, shell=True)
-def build_openvpn_dco(commit_id, scm_url):
- """Build OpenVPN DCO"""
- repo_dir = Path('ovpn-dco')
- clone_or_update_repo(repo_dir, scm_url, commit_id)
- run(['./build-openvpn-dco.sh'], check=True)
-
def build_nat_rtsp(commit_id, scm_url):
"""Build RTSP netfilter helper"""