From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4b028m5Rs6z30WM for ; Sat, 17 May 2025 11:41:28 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (secp384r1) client-signature RSA-PSS (4096 bits)) (Client CN "mail01.haj.ipfire.org", Issuer "R10" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4b028j27rZz3367 for ; Sat, 17 May 2025 11:41:25 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4b028j0cPkzwN; Sat, 17 May 2025 11:41:25 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1747482085; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=s2Le5RbxS9dfY/se5s0gtu044WG5efjuSFnq0Dt1qFA=; b=WdRjVWei7K+itkgbVoA7Ac4S2Jl6EdLMFZc6RuK/MhedncJ6RtsD7BoTX1fiAW9d4u/E7/ V2gQNd01z1mpoRCw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1747482085; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=s2Le5RbxS9dfY/se5s0gtu044WG5efjuSFnq0Dt1qFA=; b=qk9OFW2I+5Eb/nqBV3jyUyusZ89Q1NzsRFJiW0kKkCJpKkoY/udxKHgZ7S2rfjtQXI7sOh tdQFkEc8N2tMlke8RL0K4nEp0ERg+CNWqQ1YYEMVuD7yMj8y+CDI//vqC61pqwgOvZQqD1 dQg69fx6uRMVzw9iCoWwDuLEVnjNDWsBfLRBYuDL/ewXtUnDB1MztCexumwl8KScE43fw2 K0tYztgMmXDGnyLTdRFBYvipIFjpbtYlD6wmdT5XbGxD6kfusgapDH+d+wfH0wp51b/Fl5 Sz0czNIPyQUpbPuynUZ6qSsU08+831+RbabZUBx2BDoKxcklxAfEJVfFbsaIxQ== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH] exfatprogs: Update to version 1.2.9 Date: Sat, 17 May 2025 13:41:19 +0200 Message-ID: <20250517114119.3280225-2-adolf.belka@ipfire.org> In-Reply-To: <20250517114119.3280225-1-adolf.belka@ipfire.org> References: <20250517114119.3280225-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit - Update from version 1.2.5 to 1.2.9 - Update of rootfile not required - Changelog 1.2.9 NEW FEATURES : * dump.exfat: support dumping directory entry sets, which prints all fields of directory entries and cluster chains. See a man page. CHANGES : * exfatprogs: update the Github action for build test with Debain + clang + lld. 1.2.8 BUG FIXES : * dump.exfat: fix an incorrect output of an entry position in 32-bit system. * mkfs.exfat: fill an oem sector with zero instead of one. * exfatprogs: fix compilation on musl based systems due to loff_t type. And update the Github action to validate builds on the system. 1.2.7 NEW FEATURES : * fsck.exfat: support repairing the upcase table. CHANGES : * exfatprogs: make sure to load the tbl preprocessor for man pages. BUG FIXES : * exfatprogs: fix a double free memory error. * dump.exfat: fix a constraint that volume label, bitmap, upcase table must be located at the beginning of a root directory. 1.2.6 CHANGES : * exfatprogs: replace obsolete autoconf and libtool macros. * mkfs.exfat: prefer the physical block size over the logical block size for the exFAT sector size. * mkfs.exfat: add notes about the format of the volume GUID to the man page. * mkfs.exfat: fix an incorrect calculation of the number of used clusters. BUG FIXES : * exfatlabel: fix an user input error when setting a volume serial or label. Signed-off-by: Adolf Belka --- lfs/exfatprogs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lfs/exfatprogs b/lfs/exfatprogs index 51f6c45b9..83a44bde9 100644 --- a/lfs/exfatprogs +++ b/lfs/exfatprogs @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2024 IPFire Team # +# Copyright (C) 2007-2025 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 # @@ -24,7 +24,7 @@ include Config -VER = 1.2.5 +VER = 1.2.9 THISAPP = exfatprogs-$(VER) DL_FILE = $(THISAPP).tar.xz @@ -40,7 +40,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_BLAKE2 = 11909a494d0e6ae3ba938ae6c8511d587037f32c0a07a7775c3da5e1019cd2ca989f42e616da4a44e32551d936db97a935b0074322389cc39b4c336043535bea +$(DL_FILE)_BLAKE2 = d63282fab1822746b4f9ad29539c9549ef75269c5b350d6297e13972cf969661862c421d19d5f9047d63e2eb5b83f0d6bf2e668f78e85917af1973fc2c4627c5 install : $(TARGET) -- 2.49.0