From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH] gptfdisk: Update to version 1.0.10 Date: Wed, 28 Feb 2024 20:31:32 +0100 Message-ID: <20240228193137.2586482-3-adolf.belka@ipfire.org> In-Reply-To: <20240228193137.2586482-1-adolf.belka@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============3349083095622830719==" List-Id: --===============3349083095622830719== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable - Update from version 1.0.9 to 1.0.10 - Update of rootfile not required - Changelog 1.0.10 - Fixed problem that caused sgdisk to crash with errors about being unable to read the disk's partition table when compiled with the latest popt (commit 740, which is pre-release as I type; presumably version 1.19 and later once released). - Updated guid.cc to deal with minor change in libuuid. - Fixed potential NULL derefernce bug in sgdisk. Thanks to Damian Kurek for this fix. - The partition number of "0" can now be used to reference newly-created partitions when the --largest-new=3D0 option to sgdisk is used. Thanks to David Joaqu=C3=ADn Shourabi Porcel for this improvement. - Make explicit casts in gptcurses.cc to eliminate compiler warnings about mis-matched types in printw() statements. - Minor code cleanup based on valgrind analysis. - In previous versions, GPT fdisk accepted only integer values for partition start points, end points, and sizes, and it interpreted decimal values incorrectly. That is, if you typed "+9.5G" as the partition end point, you'd end up with something just 9 sectors in size. This version now truncates decimal numbers to their integral values, so you'd get a 9 GiB partition instead. - Changes to optimize disk handling, particularly on Windows, courtesy of Frediano Ziglio. - Added numerous new partition type codes from Discoverable Partitions Specification (https://uapi-group.org/specifications/specs/discoverable_partitions_speci= fication/). - Added new sgdisk -k/--move-backup-table and gdisk k (on the experts' menu) option to relocate the backup partition table. This is the counterpart of the sgdisk -j/--move-main-table and gdisk j (on the experts' menu) option to move the main partition table. This code comes from Niklas Gollenstede. Signed-off-by: Adolf Belka --- lfs/gptfdisk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lfs/gptfdisk b/lfs/gptfdisk index eb1c60357..9e6f4310a 100644 --- a/lfs/gptfdisk +++ b/lfs/gptfdisk @@ -1,7 +1,7 @@ ############################################################################= ### # = # # IPFire.org - A linux based firewall = # -# Copyright (C) 2007-2022 IPFire Team = # +# Copyright (C) 2007-2024 IPFire 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 = # @@ -25,7 +25,7 @@ =20 include Config =20 -VER =3D 1.0.9 +VER =3D 1.0.10 =20 THISAPP =3D gptfdisk-$(VER) DL_FILE =3D $(THISAPP).tar.gz @@ -33,7 +33,7 @@ DL_FROM =3D $(URL_IPFIRE) DIR_APP =3D $(DIR_SRC)/$(THISAPP) TARGET =3D $(DIR_INFO)/$(THISAPP) PROG =3D gptfdisk -PAK_VER =3D 2 +PAK_VER =3D 3 =20 DEPS =3D =20 @@ -45,7 +45,7 @@ objects =3D $(DL_FILE) =20 $(DL_FILE) =3D $(DL_FROM)/$(DL_FILE) =20 -$(DL_FILE)_BLAKE2 =3D 1939ffd75972a4d7f92af2bfab90c7b0223825b5478b6b808dd35a= f943c687d38ba81663cd7ba5e0f9400656db4dac019c13a9f75d90b7bd716568c676c24dd2 +$(DL_FILE)_BLAKE2 =3D 9047bf68a2c5c254bda9b2815488963dc19a9415c90fbf4a127268= a37fe8a545b7d45a333e356bd9da22e37ef649d9f60896ffedfdc35b60c7642a48e4ed2e5a =20 install : $(TARGET) =20 --=20 2.44.0 --===============3349083095622830719==--