From 3e912225dae8bada8b71724b77ce4c60c8bba29c Mon Sep 17 00:00:00 2001 From: Tony Nguyen Date: Mon, 2 Mar 2026 12:57:17 -0700 Subject: [PATCH] DLPX-96700 Re-enable delphix/bcc package to linux-pkg PR URL: https://www.github.com/delphix/linux-pkg/pull/389 --- package-lists/build/main.pkgs | 1 + packages/bcc/config.sh | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 packages/bcc/config.sh diff --git a/package-lists/build/main.pkgs b/package-lists/build/main.pkgs index b607817b..429b5c79 100644 --- a/package-lists/build/main.pkgs +++ b/package-lists/build/main.pkgs @@ -2,6 +2,7 @@ # List of non-kernel packages to be included in the Delphix Appliance. # +bcc challenge-response cloud-init crash-python diff --git a/packages/bcc/config.sh b/packages/bcc/config.sh new file mode 100644 index 00000000..047b6922 --- /dev/null +++ b/packages/bcc/config.sh @@ -0,0 +1,34 @@ +#!/usr/bin/env bash +# +# Copyright 2026 Delphix +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# shellcheck disable=SC2034 + +DEFAULT_PACKAGE_GIT_URL="https://github.com/delphix/bcc.git" + +UPSTREAM_GIT_URL=https://github.com/iovisor/bcc.git +UPSTREAM_GIT_BRANCH=master + +function prepare() { + logmust install_build_deps_from_control_file +} + +function build() { + logmust dpkg_buildpackage_default +} + +function update_upstream() { + logmust update_upstream_from_git +}