diff options
| author | Christian Breunig <christian@breunig.cc> | 2026-05-06 20:30:20 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-06 20:30:20 +0200 |
| commit | 7b3f05c3ecbb57f7b0111d2f030e461f5d6071e5 (patch) | |
| tree | 34f97f8911e517216353ea1bacce659db5b5cf51 /scripts/package-build/linux-kernel/build.py | |
| parent | 0361367d9960c18e0aea54f04405cdcbfb2ff71a (diff) | |
| parent | b1151ea0bc7cce64c1398b5aa01eda607da74a37 (diff) | |
| download | vyos-build-7b3f05c3ecbb57f7b0111d2f030e461f5d6071e5.tar.gz vyos-build-7b3f05c3ecbb57f7b0111d2f030e461f5d6071e5.zip | |
Merge pull request #1177 from c-po/kernel-6.18
T8147: Update Linux Kernel to 6.18
Diffstat (limited to 'scripts/package-build/linux-kernel/build.py')
| -rwxr-xr-x | scripts/package-build/linux-kernel/build.py | 9 |
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""" |
