diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2025-03-21 09:15:01 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2025-03-21 09:15:01 +0100 |
commit | 5864cbd7486c6668429cd28468b9b7a6b208c411 (patch) | |
tree | ce6c88e2d4a1bffbcc41bdf4dd334942d494ce9b | |
parent | d267c4502cbaa22506f17c86e38e398e4c311497 (diff) |
New debian/patches/0130-chassis_bootparam.patch
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | debian/patches/0130-chassis_bootparam.patch | 21 | ||||
-rw-r--r-- | debian/patches/series | 1 |
3 files changed, 28 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index e3b4b01..d1a1b4c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +ipmitool (1.8.19-8) UNRELEASED; urgency=medium + + * -New debian/patches/0130-chassis_bootparam.patch (Closes: #1099886). + + -- Jörg Frings-Fürst <debian@jff.email> Fri, 21 Mar 2025 09:11:20 +0100 + ipmitool (1.8.19-7.1) unstable; urgency=medium * Non-maintainer upload. diff --git a/debian/patches/0130-chassis_bootparam.patch b/debian/patches/0130-chassis_bootparam.patch new file mode 100644 index 0000000..3e44bd1 --- /dev/null +++ b/debian/patches/0130-chassis_bootparam.patch @@ -0,0 +1,21 @@ +Description: fix 'chassis bootparam .. options=no-timeout' +Author: <name and email of author, optional> +Origin: https://codeberg.org/IPMITool/ipmitool/commit/b67f400825e55bd82f609f40c9c612b4c9961e3e +Bug: https://codeberg.org/IPMITool/ipmitool/pulls/19 +Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1099886 +Last-Update: 2025-03-21 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +Index: trunk/lib/ipmi_chassis.c +=================================================================== +--- trunk.orig/lib/ipmi_chassis.c ++++ trunk/lib/ipmi_chassis.c +@@ -1049,7 +1049,7 @@ get_bootparam_options(char *optstring, + optionError = 1; + break; + } +- if (!strcmp(token, "no-")) { ++ if (strncmp(token, "no-", 3) == 0) { + setbit = 1; + token += 3; + } diff --git a/debian/patches/series b/debian/patches/series index 98065ad..2b6f621 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -11,3 +11,4 @@ 0801-fix-lan-print-fails-on-unsupported-parameters.patch 0802-fix-temp-read-parameters.patch 0803-fix-sdr-hex-value.patch +0130-chassis_bootparam.patch |