From 742c5bb94caef4539d4e096cb91633bf239cffbb Mon Sep 17 00:00:00 2001 From: Oliver Sedlbauer Date: Thu, 3 Apr 2025 17:31:36 +0200 Subject: [PATCH] ipmitool: disable download of PEN list in Makefile This commit allows building the package without downloading enterprise numbers from the IANA PEN registry. This enables offline builds and reduces storage usage, especially on devices with limited space. Signed-off-by: Oliver Sedlbauer --- admin/ipmitool/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/admin/ipmitool/Makefile b/admin/ipmitool/Makefile index cc3a155a6..f61a3ff99 100644 --- a/admin/ipmitool/Makefile +++ b/admin/ipmitool/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ipmitool PKG_VERSION:=1.8.19 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://codeberg.org/IPMITool/ipmitool @@ -53,6 +53,7 @@ CONFIGURE_ARGS += \ --disable-intf-free \ --enable-intf-open \ --enable-intf-imb \ - --enable-ipmishell + --enable-ipmishell \ + --disable-registry-download $(eval $(call BuildPackage,ipmitool))