From efcf396afb8b32e752979c32d1328aeb6bd441a4 Mon Sep 17 00:00:00 2001 From: sergio Date: Fri, 10 Jul 2026 22:36:47 -0400 Subject: [PATCH] =?UTF-8?q?base-system:=20iproute2=20construye=20=E2=80=94?= =?UTF-8?q?=20ip+ss=20est=C3=A1ticos,=20features=20de=20libs=20ausentes=20?= =?UTF-8?q?off?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit iproute2-7.1.0 (b3:f05e947f). Quité build-deps ausentes (iptables/libmnl/elfutils/ libcap/bash) y desactivé sus features (HAVE_MNL=n HAVE_ELF=n HAVE_CAP=n HAVE_SELINUX=n) para el 'ip'/'ss' base de la red del sistema. --- recipes/incoming-clib/iproute2.toml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/recipes/incoming-clib/iproute2.toml b/recipes/incoming-clib/iproute2.toml index 13ebb0aa..08d144de 100644 --- a/recipes/incoming-clib/iproute2.toml +++ b/recipes/incoming-clib/iproute2.toml @@ -20,8 +20,10 @@ flags = [] # de build() de Alpine (traducido; el lab provee $CBUILD/$CHOST — Etapa G Fase 3; revisá --shared para estático): compile = ''' _abuild_phase() { -export CFLAGS="$CFLAGS -flto=auto" - make V=1 + # iproute2 usa ./configure propio; autodetecta libmnl/libelf/libcap y las + # desactiva si faltan. Sin netfilter/xtables (iptables no está en catálogo). + ./configure || true + make V=1 HAVE_MNL=n HAVE_ELF=n HAVE_CAP=n HAVE_SELINUX=n } _abuild_phase ''' @@ -37,4 +39,4 @@ _abuild_phase ''' [deps] -build = ["bash", "bison", "elfutils", "flex", "iptables", "libcap", "libmnl"] +build = ["linux-headers", "bison", "flex"]