chore(local-build): sync openwrt packages

This commit is contained in:
CyberMind-FR 2026-01-06 10:45:52 +01:00
parent b3d1e5a740
commit 95f08e4bbc
2 changed files with 62 additions and 3 deletions

View File

@ -32,9 +32,9 @@ CACHE_DIR="${CACHE_DIR:-./cache}"
OPENWRT_DIR="${OPENWRT_DIR:-./openwrt}"
# Default architecture
ARCH="x86-64"
ARCH_NAME="x86_64"
SDK_PATH="x86/64"
ARCH="aarch64_cortex-a72"
ARCH_NAME="aarch64_cortex-a72"
SDK_PATH="mvebu/cortexa72"
# Device profiles for firmware building
declare -A DEVICE_PROFILES=(
@ -1046,6 +1046,8 @@ run_build_openwrt() {
fi
cd - > /dev/null
print_info "Syncing OpenWrt packages into firmware tree..."
ARCH_NAME="$ARCH_NAME" ./secubox-tools/sync-openwrt-packages.sh || print_warning "Package sync script failed"
return 0
}

View File

@ -0,0 +1,57 @@
#!/usr/bin/env bash
#
# Copies the freshly built Netifyd and CrowdSec IPKs from the OpenWrt build tree
# into the firmware release directory so they are included alongside the other
# SecuBox packages (mirrors what the GitHub Actions jobs expect).
set -euo pipefail
REPO_ROOT=$(cd "$(dirname "$0")/.." && pwd)
ARCH_NAME="${ARCH_NAME:-aarch64_cortex-a72}"
OPENWRT_BIN_DIR="${OPENWRT_BIN_DIR:-$REPO_ROOT/secubox-tools/openwrt/bin/packages/$ARCH_NAME}"
FIRMWARE_DIR="${FIRMWARE_DIR:-$REPO_ROOT/secubox-tools/build/firmware/mochabin/packages}"
mkdir -p "$FIRMWARE_DIR"
declare -a COPIED_FILES=()
copy_package() {
local pattern="$1"
local label="$2"
local src
src=$(find "$OPENWRT_BIN_DIR" -name "$pattern" -print -quit 2>/dev/null || true)
if [[ -z "$src" ]]; then
echo "⚠️ $label not found in $OPENWRT_BIN_DIR"
return 1
fi
local dest="$FIRMWARE_DIR/$(basename "$src")"
cp -f "$src" "$dest"
COPIED_FILES+=("$dest")
echo "✅ Copied $label$dest"
}
update_checksums() {
local sha_file="$FIRMWARE_DIR/SHA256SUMS"
local tmp
tmp=$(mktemp)
if [[ -f "$sha_file" ]]; then
grep -v -E 'netifyd_.*\.ipk|crowdsec_.*\.ipk' "$sha_file" > "$tmp" || true
fi
for pkg in "${COPIED_FILES[@]}"; do
sha256sum "$pkg" >> "$tmp"
done
mv "$tmp" "$sha_file"
}
copy_package 'netifyd_*.ipk' "netifyd DPI agent"
copy_package 'crowdsec_*.ipk' "CrowdSec core"
if [[ ${#COPIED_FILES[@]} -gt 0 ]]; then
update_checksums
echo "📦 Firmware directory now contains:"
ls -1 "$FIRMWARE_DIR" | grep -E 'netifyd_|crowdsec_' || true
else
echo "⚠️ No packages copied"
fi