Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 0 additions & 50 deletions scripts/package-build/linux-kernel/build-accel-ppp.sh

This file was deleted.

10 changes: 0 additions & 10 deletions scripts/package-build/linux-kernel/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,6 @@ def build_package(package: dict, dependencies: list) -> None:
elif package['build_cmd'] == 'build_linux_firmware':
build_linux_firmware(package['commit_id'], package['scm_url'])
create_tarball(f'{package["name"]}-{package["commit_id"]}', f'{package["name"]}')
elif package['build_cmd'] == 'build_accel_ppp':
build_accel_ppp(package['commit_id'], package['scm_url'])
create_tarball(f'{package["name"]}-{package["commit_id"]}', f'{package["name"]}')
elif package['build_cmd'] == 'build_accel_ppp_ng':
build_accel_ppp_ng(package['commit_id'], package['scm_url'])
create_tarball(f'{package["name"]}-{package["commit_id"]}', f'{package["name"]}')
Expand Down Expand Up @@ -212,13 +209,6 @@ def build_linux_firmware(commit_id, scm_url):
run(['./build-linux-firmware.sh'], check=True)


def build_accel_ppp(commit_id, scm_url):
"""Build accel-ppp"""
repo_dir = Path('accel-ppp')
clone_or_update_repo(repo_dir, scm_url, commit_id)
run(['./build-accel-ppp.sh'], check=True)


def build_accel_ppp_ng(commit_id, scm_url):
"""Build accel-ppp-ng"""
repo_dir = Path('accel-ppp-ng')
Expand Down
6 changes: 0 additions & 6 deletions scripts/package-build/linux-kernel/package.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,6 @@ commit_id = "20240610"
scm_url = "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git"
build_cmd = "build_linux_firmware"

[[packages]]
name = "accel-ppp"
commit_id = "1.13.0"
scm_url = "https://github.com/accel-ppp/accel-ppp.git"
build_cmd = "build_accel_ppp"

[[packages]]
name = "accel-ppp-ng"
commit_id = "f5764ea"
Expand Down

This file was deleted.

Loading