From fb79d84593261b79cf5f296c740648d4ce9cae0f Mon Sep 17 00:00:00 2001 From: Vincent Li Date: Wed, 4 Jun 2025 17:57:52 -0700 Subject: [PATCH] ply: add ply addon for tracing Signed-off-by: Vincent Li --- config/rootfiles/common/ply | 1 + lfs/ply | 81 +++++++++++++++++++++++++++++++++++++ make.sh | 1 + 3 files changed, 83 insertions(+) create mode 100644 config/rootfiles/common/ply create mode 100644 lfs/ply diff --git a/config/rootfiles/common/ply b/config/rootfiles/common/ply new file mode 100644 index 000000000..535ce6c06 --- /dev/null +++ b/config/rootfiles/common/ply @@ -0,0 +1 @@ +usr/sbin/ply diff --git a/lfs/ply b/lfs/ply new file mode 100644 index 000000000..84ba14edb --- /dev/null +++ b/lfs/ply @@ -0,0 +1,81 @@ +############################################################################### +# # +# IPFire.org - A linux based firewall # +# Copyright (C) 2007-2023 IPFire Team # +# Copyright (C) 2025 BPFire Team # +# # +# This program is free software: you can redistribute it and/or modify # +# it under the terms of the GNU General Public License as published by # +# the Free Software Foundation, either version 3 of the License, or # +# (at your option) any later version. # +# # +# This program is distributed in the hope that it will be useful, # +# but WITHOUT ANY WARRANTY; without even the implied warranty of # +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # +# GNU General Public License for more details. # +# # +# You should have received a copy of the GNU General Public License # +# along with this program. If not, see . # +# # +############################################################################### + +############################################################################### +# Definitions +############################################################################### + +include Config + +VER = 2.4.0 + +THISAPP = ply-$(VER) +DL_FILE = $(THISAPP).tar.gz +DL_FROM = $(URL_IPFIRE) +DIR_APP = $(DIR_SRC)/$(THISAPP) +TARGET = $(DIR_INFO)/$(THISAPP) + +############################################################################### +# Top-level Rules +############################################################################### + +objects = $(DL_FILE) + +$(DL_FILE) = $(DL_FROM)/$(DL_FILE) + +$(DL_FILE)_BLAKE2 = 234a3e4d73904ea53871c0e040fc4b8dc05f5ff09ba2d1f601741d3fedb89d8ad59a346f64c28b0be3c458a06bcd13f2e84f2c13e008dab0629b9622e2fd0847 + +install : $(TARGET) + +check : $(patsubst %,$(DIR_CHK)/%,$(objects)) + +download :$(patsubst %,$(DIR_DL)/%,$(objects)) + +b2 : $(subst %,%_BLAKE2,$(objects)) + +############################################################################### +# Downloading, checking, b2sum +############################################################################### + +$(patsubst %,$(DIR_CHK)/%,$(objects)) : + @$(CHECK) + +$(patsubst %,$(DIR_DL)/%,$(objects)) : + @$(LOAD) + +$(subst %,%_BLAKE2,$(objects)) : + @$(B2SUM) + +############################################################################### +# Installation Details +############################################################################### + +$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) + @$(PREBUILD) + @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) + + cd $(DIR_APP) && ./autogen.sh + cd $(DIR_APP) && ./configure --prefix=/usr + cd $(DIR_APP) && make $(MAKETUNING) + cd $(DIR_APP) && make install + + @rm -rf $(DIR_APP) + @$(POSTBUILD) diff --git a/make.sh b/make.sh index 1a5176390..dbad186d4 100755 --- a/make.sh +++ b/make.sh @@ -2095,6 +2095,7 @@ build_system() { lfsmake2 llvm-project lfsmake2 libbpf-bootstrap lfsmake2 bcc + lfsmake2 ply lfsmake2 xdp-tools lfsmake2 loxilb lfsmake2 loxicmd