GNU bug report logs - #70912
[PATCH] gnu: e2fsprogs: Downgrade to 1.46.6.

Previous Next

Package: guix-patches;

Reported by: Efraim Flashner <efraim <at> flashner.co.il>

Date: Mon, 13 May 2024 08:12:02 UTC

Severity: normal

Tags: patch

Done: Efraim Flashner <efraim <at> flashner.co.il>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 70912 in the body.
You can then email your comments to 70912 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to leo <at> famulari.name, me <at> tobias.gr, w <at> wmeyer.eu, guix-patches <at> gnu.org:
bug#70912; Package guix-patches. (Mon, 13 May 2024 08:12:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Efraim Flashner <efraim <at> flashner.co.il>:
New bug report received and forwarded. Copy sent to leo <at> famulari.name, me <at> tobias.gr, w <at> wmeyer.eu, guix-patches <at> gnu.org. (Mon, 13 May 2024 08:12:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Efraim Flashner <efraim <at> flashner.co.il>
To: guix-patches <at> gnu.org
Cc: Efraim Flashner <efraim <at> flashner.co.il>
Subject: [PATCH] gnu: e2fsprogs: Downgrade to 1.46.6.
Date: Mon, 13 May 2024 11:10:00 +0300
1.47.0 would, by default, create an ext4 filesystem which was not
readable by our current version of grub.  This should also address a
number of the system test failures.

* gnu/packages/linux.scm (e2fsprogs): Downgrade to 1.46.6.

Change-Id: Ifa6841185ab85d24479f981afc1b42a349716d80
---
 gnu/packages/linux.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 2e0c05b4f7..76c69701b8 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -2548,10 +2548,12 @@ (define-public usbip-utils
 module.")
     (license license:gpl2)))
 
+;; XXX: Before updating to 1.47+ check if grub supports the ext4 flag
+;; metadata_csum_seed, otherwise grub will complain about an unknown filesystem.
 (define-public e2fsprogs
   (package
     (name "e2fsprogs")
-    (version "1.47.0")
+    (version "1.46.6")
     (source (origin
              (method url-fetch)
              (uri (string-append
@@ -2560,7 +2562,7 @@ (define-public e2fsprogs
                    "e2fsprogs-" version ".tar.xz"))
              (sha256
               (base32
-               "1nymjw801lmlr5y6bg1zv9jsip5dkyxqislbdzpir4mx5czzajhl"))))
+               "1z7lqkvrw97jym2w2gz1aj3d9maxhrk6alv3vrzfkr7mkzqifxd7"))))
     (build-system gnu-build-system)
     (inputs (list `(,util-linux "lib")))
     (native-inputs (list pkg-config

base-commit: 56980ea500a1db3c8586972b8abfaf5c4e24f82d
-- 
Efraim Flashner   <efraim <at> flashner.co.il>   רנשלפ םירפא
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted





Reply sent to Efraim Flashner <efraim <at> flashner.co.il>:
You have taken responsibility. (Mon, 27 May 2024 08:46:02 GMT) Full text and rfc822 format available.

Notification sent to Efraim Flashner <efraim <at> flashner.co.il>:
bug acknowledged by developer. (Mon, 27 May 2024 08:46:02 GMT) Full text and rfc822 format available.

Message #10 received at 70912-done <at> debbugs.gnu.org (full text, mbox):

From: Efraim Flashner <efraim <at> flashner.co.il>
To: 70912-done <at> debbugs.gnu.org
Subject: Re: bug#70912: Acknowledgement ([PATCH] gnu: e2fsprogs: Downgrade to
 1.46.6.)
Date: Mon, 27 May 2024 11:44:13 +0300
[Message part 1 (text/plain, inline)]
Patch applied

-- 
Efraim Flashner   <efraim <at> flashner.co.il>   רנשלפ םירפא
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#70912; Package guix-patches. (Fri, 31 May 2024 14:26:02 GMT) Full text and rfc822 format available.

Message #13 received at 70912 <at> debbugs.gnu.org (full text, mbox):

From: Zheng Junjie <zhengjunjie <at> iscas.ac.cn>
To: Efraim Flashner <efraim <at> flashner.co.il>
Cc: Wilko Meyer <w <at> wmeyer.eu>, Tobias Geerinckx-Rice <me <at> tobias.gr>,
 70912 <at> debbugs.gnu.org, Leo Famulari <leo <at> famulari.name>
Subject: Re: [bug#70912] [PATCH] gnu: e2fsprogs: Downgrade to 1.46.6.
Date: Fri, 31 May 2024 22:24:26 +0800
[Message part 1 (text/plain, inline)]
Efraim Flashner <efraim <at> flashner.co.il> writes:

> 1.47.0 would, by default, create an ext4 filesystem which was not
> readable by our current version of grub.  This should also address a
> number of the system test failures.
>
> * gnu/packages/linux.scm (e2fsprogs): Downgrade to 1.46.6.
>
> Change-Id: Ifa6841185ab85d24479f981afc1b42a349716d80
> ---
>  gnu/packages/linux.scm | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
> index 2e0c05b4f7..76c69701b8 100644
> --- a/gnu/packages/linux.scm
> +++ b/gnu/packages/linux.scm
> @@ -2548,10 +2548,12 @@ (define-public usbip-utils
>  module.")
>      (license license:gpl2)))
>  
> +;; XXX: Before updating to 1.47+ check if grub supports the ext4 flag
> +;; metadata_csum_seed, otherwise grub will complain about an unknown filesystem.
>  (define-public e2fsprogs
>    (package
>      (name "e2fsprogs")
> -    (version "1.47.0")
> +    (version "1.46.6")
>      (source (origin
>               (method url-fetch)
>               (uri (string-append
> @@ -2560,7 +2562,7 @@ (define-public e2fsprogs
>                     "e2fsprogs-" version ".tar.xz"))
>               (sha256
>                (base32
> -               "1nymjw801lmlr5y6bg1zv9jsip5dkyxqislbdzpir4mx5czzajhl"))))
> +               "1z7lqkvrw97jym2w2gz1aj3d9maxhrk6alv3vrzfkr7mkzqifxd7"))))
>      (build-system gnu-build-system)
>      (inputs (list `(,util-linux "lib")))
>      (native-inputs (list pkg-config
>
> base-commit: 56980ea500a1db3c8586972b8abfaf5c4e24f82d
hello, this downgrade make my visionfive2 boot fail,

#+begin_src bash

/dev/mmcblk1p3 has unsupported feature(s): FEATURE_C12
e2fsck: Get a newer version of e2fsck!

Guix_image: ********** WARNING: Filesystem still has errors **********

File system check on /dev/mmcblk1p3 failed

#+end_src
i think maybe we should use 1.47.0 and disable metadata_csum_seed by
default, like debian and gentoo?

see https://sources.debian.org/data/main/e/e2fsprogs/1.47.0-2/debian/patches/disable-metadata_csum_seed-and-orphan_file-by-default
and https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=747be80bc0594b776e233912ce517b38d5726891
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#70912; Package guix-patches. (Fri, 31 May 2024 14:29:02 GMT) Full text and rfc822 format available.

Message #16 received at 70912 <at> debbugs.gnu.org (full text, mbox):

From: Efraim Flashner <efraim <at> flashner.co.il>
To: Zheng Junjie <zhengjunjie <at> iscas.ac.cn>
Cc: Wilko Meyer <w <at> wmeyer.eu>, Tobias Geerinckx-Rice <me <at> tobias.gr>,
 70912 <at> debbugs.gnu.org, Leo Famulari <leo <at> famulari.name>
Subject: Re: [bug#70912] [PATCH] gnu: e2fsprogs: Downgrade to 1.46.6.
Date: Fri, 31 May 2024 14:27:55 +0000
Considering there was a second commit to fix this from the grub side I think we can upgrade e2fsprogs back to 1.47.0. Do you want to do it? I won't be able to for a few days.

On May 31, 2024 2:24:26 PM UTC, Zheng Junjie <zhengjunjie <at> iscas.ac.cn> wrote:
>Efraim Flashner <efraim <at> flashner.co.il> writes:
>
>> 1.47.0 would, by default, create an ext4 filesystem which was not
>> readable by our current version of grub.  This should also address a
>> number of the system test failures.
>>
>> * gnu/packages/linux.scm (e2fsprogs): Downgrade to 1.46.6.
>>
>> Change-Id: Ifa6841185ab85d24479f981afc1b42a349716d80
>> ---
>>  gnu/packages/linux.scm | 6 ++++--
>>  1 file changed, 4 insertions(+), 2 deletions(-)
>>
>> diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
>> index 2e0c05b4f7..76c69701b8 100644
>> --- a/gnu/packages/linux.scm
>> +++ b/gnu/packages/linux.scm
>> @@ -2548,10 +2548,12 @@ (define-public usbip-utils
>>  module.")
>>      (license license:gpl2)))
>>  
>> +;; XXX: Before updating to 1.47+ check if grub supports the ext4 flag
>> +;; metadata_csum_seed, otherwise grub will complain about an unknown filesystem.
>>  (define-public e2fsprogs
>>    (package
>>      (name "e2fsprogs")
>> -    (version "1.47.0")
>> +    (version "1.46.6")
>>      (source (origin
>>               (method url-fetch)
>>               (uri (string-append
>> @@ -2560,7 +2562,7 @@ (define-public e2fsprogs
>>                     "e2fsprogs-" version ".tar.xz"))
>>               (sha256
>>                (base32
>> -               "1nymjw801lmlr5y6bg1zv9jsip5dkyxqislbdzpir4mx5czzajhl"))))
>> +               "1z7lqkvrw97jym2w2gz1aj3d9maxhrk6alv3vrzfkr7mkzqifxd7"))))
>>      (build-system gnu-build-system)
>>      (inputs (list `(,util-linux "lib")))
>>      (native-inputs (list pkg-config
>>
>> base-commit: 56980ea500a1db3c8586972b8abfaf5c4e24f82d
>hello, this downgrade make my visionfive2 boot fail,
>
>#+begin_src bash
>
>/dev/mmcblk1p3 has unsupported feature(s): FEATURE_C12
>e2fsck: Get a newer version of e2fsck!
>
>Guix_image: ********** WARNING: Filesystem still has errors **********
>
>File system check on /dev/mmcblk1p3 failed
>
>#+end_src
>i think maybe we should use 1.47.0 and disable metadata_csum_seed by
>default, like debian and gentoo?
>
>see https://sources.debian.org/data/main/e/e2fsprogs/1.47.0-2/debian/patches/disable-metadata_csum_seed-and-orphan_file-by-default
>and https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=747be80bc0594b776e233912ce517b38d5726891

-- 
Sent from my Android device with K-9 Mail. Please excuse my brevity.




Information forwarded to guix-patches <at> gnu.org:
bug#70912; Package guix-patches. (Fri, 31 May 2024 14:33:01 GMT) Full text and rfc822 format available.

Message #19 received at 70912 <at> debbugs.gnu.org (full text, mbox):

From: Zheng Junjie <zhengjunjie <at> iscas.ac.cn>
To: Efraim Flashner <efraim <at> flashner.co.il>
Cc: Wilko Meyer <w <at> wmeyer.eu>, Tobias Geerinckx-Rice <me <at> tobias.gr>,
 70912 <at> debbugs.gnu.org, Leo Famulari <leo <at> famulari.name>
Subject: Re: [bug#70912] [PATCH] gnu: e2fsprogs: Downgrade to 1.46.6.
Date: Fri, 31 May 2024 22:32:25 +0800
[Message part 1 (text/plain, inline)]
Zheng Junjie <zhengjunjie <at> iscas.ac.cn> writes:

> Efraim Flashner <efraim <at> flashner.co.il> writes:
>
>> 1.47.0 would, by default, create an ext4 filesystem which was not
>> readable by our current version of grub.  This should also address a
>> number of the system test failures.
>>
>> * gnu/packages/linux.scm (e2fsprogs): Downgrade to 1.46.6.
>>
>> Change-Id: Ifa6841185ab85d24479f981afc1b42a349716d80
>> ---
>>  gnu/packages/linux.scm | 6 ++++--
>>  1 file changed, 4 insertions(+), 2 deletions(-)
>>
>> diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
>> index 2e0c05b4f7..76c69701b8 100644
>> --- a/gnu/packages/linux.scm
>> +++ b/gnu/packages/linux.scm
>> @@ -2548,10 +2548,12 @@ (define-public usbip-utils
>>  module.")
>>      (license license:gpl2)))
>>  
>> +;; XXX: Before updating to 1.47+ check if grub supports the ext4 flag
>> +;; metadata_csum_seed, otherwise grub will complain about an unknown filesystem.
>>  (define-public e2fsprogs
>>    (package
>>      (name "e2fsprogs")
>> -    (version "1.47.0")
>> +    (version "1.46.6")
>>      (source (origin
>>               (method url-fetch)
>>               (uri (string-append
>> @@ -2560,7 +2562,7 @@ (define-public e2fsprogs
>>                     "e2fsprogs-" version ".tar.xz"))
>>               (sha256
>>                (base32
>> -               "1nymjw801lmlr5y6bg1zv9jsip5dkyxqislbdzpir4mx5czzajhl"))))
>> +               "1z7lqkvrw97jym2w2gz1aj3d9maxhrk6alv3vrzfkr7mkzqifxd7"))))
>>      (build-system gnu-build-system)
>>      (inputs (list `(,util-linux "lib")))
>>      (native-inputs (list pkg-config
>>
>> base-commit: 56980ea500a1db3c8586972b8abfaf5c4e24f82d
> hello, this downgrade make my visionfive2 boot fail,
>
> #+begin_src bash
>
> /dev/mmcblk1p3 has unsupported feature(s): FEATURE_C12
> e2fsck: Get a newer version of e2fsck!
>
> Guix_image: ********** WARNING: Filesystem still has errors **********
>
> File system check on /dev/mmcblk1p3 failed
>
> #+end_src
> i think maybe we should use 1.47.0 and disable metadata_csum_seed by
> default, like debian and gentoo?
>
> see https://sources.debian.org/data/main/e/e2fsprogs/1.47.0-2/debian/patches/disable-metadata_csum_seed-and-orphan_file-by-default
> and https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=747be80bc0594b776e233912ce517b38d5726891

I can continue boot when I exit the Bourne-like REPL, but I have to
enter it manually, which is inconvenient and easily misinterpreted as a
boot failure.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#70912; Package guix-patches. (Fri, 31 May 2024 14:57:02 GMT) Full text and rfc822 format available.

Message #22 received at 70912 <at> debbugs.gnu.org (full text, mbox):

From: Zheng Junjie <zhengjunjie <at> iscas.ac.cn>
To: Efraim Flashner <efraim <at> flashner.co.il>
Cc: Wilko Meyer <w <at> wmeyer.eu>, Tobias Geerinckx-Rice <me <at> tobias.gr>,
 70912 <at> debbugs.gnu.org, Leo Famulari <leo <at> famulari.name>
Subject: Re: [bug#70912] [PATCH] gnu: e2fsprogs: Downgrade to 1.46.6.
Date: Fri, 31 May 2024 22:56:14 +0800
[Message part 1 (text/plain, inline)]
Efraim Flashner <efraim <at> flashner.co.il> writes:

> Considering there was a second commit to fix this from the grub side I
> think we can upgrade e2fsprogs back to 1.47.0. Do you want to do it? I
> won't be able to for a few days.
>
> On May 31, 2024 2:24:26 PM UTC, Zheng Junjie <zhengjunjie <at> iscas.ac.cn> wrote:
>>Efraim Flashner <efraim <at> flashner.co.il> writes:
>>
>>> 1.47.0 would, by default, create an ext4 filesystem which was not
>>> readable by our current version of grub.  This should also address a
>>> number of the system test failures.
>>>
>>> * gnu/packages/linux.scm (e2fsprogs): Downgrade to 1.46.6.
>>>
>>> Change-Id: Ifa6841185ab85d24479f981afc1b42a349716d80
>>> ---
>>>  gnu/packages/linux.scm | 6 ++++--
>>>  1 file changed, 4 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
>>> index 2e0c05b4f7..76c69701b8 100644
>>> --- a/gnu/packages/linux.scm
>>> +++ b/gnu/packages/linux.scm
>>> @@ -2548,10 +2548,12 @@ (define-public usbip-utils
>>>  module.")
>>>      (license license:gpl2)))
>>>  
>>> +;; XXX: Before updating to 1.47+ check if grub supports the ext4 flag
>>> +;; metadata_csum_seed, otherwise grub will complain about an unknown filesystem.
>>>  (define-public e2fsprogs
>>>    (package
>>>      (name "e2fsprogs")
>>> -    (version "1.47.0")
>>> +    (version "1.46.6")
>>>      (source (origin
>>>               (method url-fetch)
>>>               (uri (string-append
>>> @@ -2560,7 +2562,7 @@ (define-public e2fsprogs
>>>                     "e2fsprogs-" version ".tar.xz"))
>>>               (sha256
>>>                (base32
>>> -               "1nymjw801lmlr5y6bg1zv9jsip5dkyxqislbdzpir4mx5czzajhl"))))
>>> +               "1z7lqkvrw97jym2w2gz1aj3d9maxhrk6alv3vrzfkr7mkzqifxd7"))))
>>>      (build-system gnu-build-system)
>>>      (inputs (list `(,util-linux "lib")))
>>>      (native-inputs (list pkg-config
>>>
>>> base-commit: 56980ea500a1db3c8586972b8abfaf5c4e24f82d
>>hello, this downgrade make my visionfive2 boot fail,
>>
>>#+begin_src bash
>>
>>/dev/mmcblk1p3 has unsupported feature(s): FEATURE_C12
>>e2fsck: Get a newer version of e2fsck!
>>
>>Guix_image: ********** WARNING: Filesystem still has errors **********
>>
>>File system check on /dev/mmcblk1p3 failed
>>
>>#+end_src
>>i think maybe we should use 1.47.0 and disable metadata_csum_seed by
>>default, like debian and gentoo?
>>
>>see https://sources.debian.org/data/main/e/e2fsprogs/1.47.0-2/debian/patches/disable-metadata_csum_seed-and-orphan_file-by-default
>>and https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=747be80bc0594b776e233912ce517b38d5726891

I don't have a grub + ext4 machine now, but it seems to me that I should only need to Revert this commit?

[0001-Revert-gnu-e2fsprogs-Downgrade-to-1.46.6.patch (text/x-patch, inline)]
From 946991731da55ce5c1c541b1e118340d5a531be4 Mon Sep 17 00:00:00 2001
Message-ID: <946991731da55ce5c1c541b1e118340d5a531be4.1717167184.git.zhengjunjie <at> iscas.ac.cn>
From: Zheng Junjie <zhengjunjie <at> iscas.ac.cn>
Date: Fri, 31 May 2024 22:51:04 +0800
Subject: [PATCH] Revert "gnu: e2fsprogs: Downgrade to 1.46.6."

This reverts commit dd8364cfae6f666187eda62684cdbcd704fd9081.

Commit 00384aedbc6a371aaf90ca344a446952fdd5a6b3 let grub ignore
metadata-csum-seed, so we can update to 1.47+.
---
 gnu/packages/linux.scm | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 3129c5a073..0a9b31685d 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -2640,12 +2640,10 @@ (define-public usbip-utils
 module.")
     (license license:gpl2)))
 
-;; XXX: Before updating to 1.47+ check if grub supports the ext4 flag
-;; metadata_csum_seed, otherwise grub will complain about an unknown filesystem.
 (define-public e2fsprogs
   (package
     (name "e2fsprogs")
-    (version "1.46.6")
+    (version "1.47.0")
     (source (origin
              (method url-fetch)
              (uri (string-append
@@ -2654,7 +2652,7 @@ (define-public e2fsprogs
                    "e2fsprogs-" version ".tar.xz"))
              (sha256
               (base32
-               "1z7lqkvrw97jym2w2gz1aj3d9maxhrk6alv3vrzfkr7mkzqifxd7"))))
+               "1nymjw801lmlr5y6bg1zv9jsip5dkyxqislbdzpir4mx5czzajhl"))))
     (build-system gnu-build-system)
     (inputs (list `(,util-linux "lib")))
     (native-inputs (list pkg-config

base-commit: 83d29d56f8808ca1f076dda37ef34150d0308e9a
-- 
2.41.0

[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#70912; Package guix-patches. (Fri, 31 May 2024 15:36:02 GMT) Full text and rfc822 format available.

Message #25 received at 70912 <at> debbugs.gnu.org (full text, mbox):

From: Efraim Flashner <efraim <at> flashner.co.il>
To: Zheng Junjie <zhengjunjie <at> iscas.ac.cn>
Cc: Wilko Meyer <w <at> wmeyer.eu>, Tobias Geerinckx-Rice <me <at> tobias.gr>,
 70912 <at> debbugs.gnu.org, Leo Famulari <leo <at> famulari.name>
Subject: Re: [bug#70912] [PATCH] gnu: e2fsprogs: Downgrade to 1.46.6.
Date: Fri, 31 May 2024 15:35:28 +0000
Yeah, that should take care of it

On May 31, 2024 2:56:14 PM UTC, Zheng Junjie <zhengjunjie <at> iscas.ac.cn> wrote:
>Efraim Flashner <efraim <at> flashner.co.il> writes:
>
>> Considering there was a second commit to fix this from the grub side I
>> think we can upgrade e2fsprogs back to 1.47.0. Do you want to do it? I
>> won't be able to for a few days.
>>
>> On May 31, 2024 2:24:26 PM UTC, Zheng Junjie <zhengjunjie <at> iscas.ac.cn> wrote:
>>>Efraim Flashner <efraim <at> flashner.co.il> writes:
>>>
>>>> 1.47.0 would, by default, create an ext4 filesystem which was not
>>>> readable by our current version of grub.  This should also address a
>>>> number of the system test failures.
>>>>
>>>> * gnu/packages/linux.scm (e2fsprogs): Downgrade to 1.46.6.
>>>>
>>>> Change-Id: Ifa6841185ab85d24479f981afc1b42a349716d80
>>>> ---
>>>>  gnu/packages/linux.scm | 6 ++++--
>>>>  1 file changed, 4 insertions(+), 2 deletions(-)
>>>>
>>>> diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
>>>> index 2e0c05b4f7..76c69701b8 100644
>>>> --- a/gnu/packages/linux.scm
>>>> +++ b/gnu/packages/linux.scm
>>>> @@ -2548,10 +2548,12 @@ (define-public usbip-utils
>>>>  module.")
>>>>      (license license:gpl2)))
>>>>  
>>>> +;; XXX: Before updating to 1.47+ check if grub supports the ext4 flag
>>>> +;; metadata_csum_seed, otherwise grub will complain about an unknown filesystem.
>>>>  (define-public e2fsprogs
>>>>    (package
>>>>      (name "e2fsprogs")
>>>> -    (version "1.47.0")
>>>> +    (version "1.46.6")
>>>>      (source (origin
>>>>               (method url-fetch)
>>>>               (uri (string-append
>>>> @@ -2560,7 +2562,7 @@ (define-public e2fsprogs
>>>>                     "e2fsprogs-" version ".tar.xz"))
>>>>               (sha256
>>>>                (base32
>>>> -               "1nymjw801lmlr5y6bg1zv9jsip5dkyxqislbdzpir4mx5czzajhl"))))
>>>> +               "1z7lqkvrw97jym2w2gz1aj3d9maxhrk6alv3vrzfkr7mkzqifxd7"))))
>>>>      (build-system gnu-build-system)
>>>>      (inputs (list `(,util-linux "lib")))
>>>>      (native-inputs (list pkg-config
>>>>
>>>> base-commit: 56980ea500a1db3c8586972b8abfaf5c4e24f82d
>>>hello, this downgrade make my visionfive2 boot fail,
>>>
>>>#+begin_src bash
>>>
>>>/dev/mmcblk1p3 has unsupported feature(s): FEATURE_C12
>>>e2fsck: Get a newer version of e2fsck!
>>>
>>>Guix_image: ********** WARNING: Filesystem still has errors **********
>>>
>>>File system check on /dev/mmcblk1p3 failed
>>>
>>>#+end_src
>>>i think maybe we should use 1.47.0 and disable metadata_csum_seed by
>>>default, like debian and gentoo?
>>>
>>>see https://sources.debian.org/data/main/e/e2fsprogs/1.47.0-2/debian/patches/disable-metadata_csum_seed-and-orphan_file-by-default
>>>and https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=747be80bc0594b776e233912ce517b38d5726891
>
>I don't have a grub + ext4 machine now, but it seems to me that I should only need to Revert this commit?
>

-- 
Sent from my Android device with K-9 Mail. Please excuse my brevity.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sat, 29 Jun 2024 11:24:07 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 50 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.