From debbugs-submit-bounces@debbugs.gnu.org Fri May 01 23:04:34 2020 Received: (at submit) by debbugs.gnu.org; 2 May 2020 03:04:34 +0000 Received: from localhost ([127.0.0.1]:51041 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jUiS9-0007dV-Ex for submit@debbugs.gnu.org; Fri, 01 May 2020 23:04:34 -0400 Received: from lists.gnu.org ([209.51.188.17]:59110) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jUiS7-0007dN-TX for submit@debbugs.gnu.org; Fri, 01 May 2020 23:04:32 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:47036) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jUiS6-0002G7-Hn for guix-patches@gnu.org; Fri, 01 May 2020 23:04:31 -0400 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-2.8 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,SPF_HELO_PASS,SPF_PASS, URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jUiOa-0008L6-MX for guix-patches@gnu.org; Fri, 01 May 2020 23:04:29 -0400 Received: from mx1.riseup.net ([198.252.153.129]:58070) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jUiOZ-0007zX-PE for guix-patches@gnu.org; Fri, 01 May 2020 23:00:52 -0400 Received: from bell.riseup.net (unknown [10.0.1.178]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "Sectigo RSA Domain Validation Secure Server CA" (not verified)) by mx1.riseup.net (Postfix) with ESMTPS id 49DYlX5vv4zFccb for ; Fri, 1 May 2020 20:00:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=riseup.net; s=squak; t=1588388441; bh=BeKmtfrjV2tFg7Dldp3amJZzJFiSs3+61IoXqawrisU=; h=Date:From:To:Subject:From; b=VOo3zNvSEeYhJYvtVqFVAvNUwC8gC6+vK3iSH7rhnnTg7memw5L8slOOp7VCHkQiG R8lEh1tmtpwtIWEJys5nfvWecZQ0AEiZFBOmysfeQtheNCzNiksSaEFbRzvD4ppr2H DqQzRjRq412/c6wNpnceuJWuCU+JXap+r/F44uVE= X-Riseup-User-ID: E19BC2A11B369688847C8513F3F431CCDF523C2BFE34ED334434A1071BFCE40F Received: from [127.0.0.1] (localhost [127.0.0.1]) by bell.riseup.net (Postfix) with ESMTPSA id 49DYlX0xLmzJqZf for ; Fri, 1 May 2020 20:00:39 -0700 (PDT) Date: Sat, 2 May 2020 02:48:00 +0200 From: raingloom To: guix-patches@gnu.org Subject: [PATCH] (incomplete) F2FS support Message-ID: <20200502024800.4b741809@riseup.net> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/HEw+PS8IGtrMD.IdzsFAr_h" Received-SPF: pass client-ip=198.252.153.129; envelope-from=raingloom@riseup.net; helo=mx1.riseup.net X-detected-operating-system: by eggs.gnu.org: First seen = 2020/05/01 23:00:41 X-ACL-Warn: Detected OS = Linux 3.11 and newer [fuzzy] X-Received-From: 198.252.153.129 X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) --MP_/HEw+PS8IGtrMD.IdzsFAr_h Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline I've been working on this on and off for a while, but can't finish the last steps, so I'm sending it as is. What works: installing to and booting from a partition specified by UUID What seemed to work but then didn't: installing to a partition specified by its label. i tried to do the math, but for some reason it still can't find it. I'm pretty sure it worked at some point. What definitely doesn't work: file system check on boot. I tried and tried to create a statically linked fsck and I've concluded that it's impossible and that I hate linkers. Someone else can figure it out, because I've given up. This means that the init will look for it but won't find it. You will be thrown into a rescue shell, but if you exit it with `,q`, the init process continues without any issue. I used this to set Guix up on my desktop machine on an SSD and other than the issues I've mentioned, it seems to be working fine. I'm hoping someone will pick up the work where I left it. If not, I may revisit it once I've learned enough about how f2fs-tools is built. But I can't say that I'm eager to devote more of my life to that. About the patches: 0001-0005 are what you need for a working system, I included the rest to help anyone who wishes to continue the work. --MP_/HEw+PS8IGtrMD.IdzsFAr_h Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0001-file-system-Add-support-for-F2FS.patch >From 383d8536b748786b2072f5f61e1e24d0c9b4585d Mon Sep 17 00:00:00 2001 From: raingloom Date: Fri, 3 Apr 2020 02:32:23 +0200 Subject: [PATCH 1/8] file-system: Add support for F2FS. * gnu/build/file-systems.scm (%f2fs-endianness): New syntax. (f2fs-superblock?, read-f2fs-superblock, f2fs-superblock-uuid) (f2fs-superblock-volume-name, check-f2fs-file-system): New procedures. (%partition-label-readers, %partition-uuid-readers, check-file-system): Register them. --- gnu/build/file-systems.scm | 61 ++++++++++++++++++++++++++++++++++++-- 1 file changed, 59 insertions(+), 2 deletions(-) diff --git a/gnu/build/file-systems.scm b/gnu/build/file-systems.scm index 902563b219..3742252421 100644 --- a/gnu/build/file-systems.scm +++ b/gnu/build/file-systems.scm @@ -336,6 +336,58 @@ if DEVICE does not contain a JFS file system." (2 'reboot-required) (_ 'fatal-error))) + +;;; +;;; F2FS (Flash-Friendly File System) +;;; + +;;; https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git/tree/include/linux/f2fs_fs.h +;;; (but using xxd proved to be simpler) + +(define-syntax %f2fs-endianness + ;; Endianness of F2FS file systems + (identifier-syntax (endianness little))) + +;; F2FS actually stores two adjacent copies of the superblock. +;; should we read both? +(define (f2fs-superblock? sblock) + "Return #t when SBLOCK is an F2FS superblock." + (let ((magic (bytevector-u32-ref sblock 0 %f2fs-endianness))) + (= magic #xF2F52010))) + +(define (read-f2fs-superblock device) + "Return the raw contents of DEVICE's F2FS superblock as a bytevector, or #f +if DEVICE does not contain an F2FS file system." + (read-superblock device + ;; offset of magic in first copy + #x400 + ;; difference between magic of second + ;; and first copies + (- #x1400 #x400) + f2fs-superblock?)) + +(define (f2fs-superblock-uuid sblock) + "Return the UUID of F2FS superblock SBLOCK as a 16-byte bytevector." + (sub-bytevector sblock + (- (+ #x460 12) + ;; subtract superblock offset + #x400) + 16)) + +(define (f2fs-superblock-volume-name sblock) + "Return the volume name of SBLOCK as a string of at most 16 characters, or +#f if SBLOCK has no volume name." + (utf16->string (sub-bytevector sblock (- (+ #x470 12) #x400) 512) %f2fs-endianness)) + +(define (check-f2fs-file-system device) + "Return the health of a F2FS file system on DEVICE." + (match (status:exit-val + (system* "fsck.f2fs" "-p" device)) + ;; 0 and -1 are the only two possibilities + ;; (according to the manpage) + (0 'pass) + (_ 'fatal-error))) + ;;; ;;; LUKS encrypted devices. @@ -472,7 +524,9 @@ partition field reader that returned a value." (partition-field-reader read-fat16-superblock fat16-superblock-volume-name) (partition-field-reader read-jfs-superblock - jfs-superblock-volume-name))) + jfs-superblock-volume-name) + (partition-field-reader read-f2fs-superblock + f2fs-superblock-volume-name))) (define %partition-uuid-readers (list (partition-field-reader read-iso9660-superblock @@ -486,7 +540,9 @@ partition field reader that returned a value." (partition-field-reader read-fat16-superblock fat16-superblock-uuid) (partition-field-reader read-jfs-superblock - jfs-superblock-uuid))) + jfs-superblock-uuid) + (partition-field-reader read-f2fs-superblock + f2fs-superblock-uuid))) (define read-partition-label (cut read-partition-field <> %partition-label-readers)) @@ -582,6 +638,7 @@ were found." ((string-prefix? "btrfs" type) check-btrfs-file-system) ((string-suffix? "fat" type) check-fat-file-system) ((string-prefix? "jfs" type) check-jfs-file-system) + ((string-prefix? "f2fs" type) check-f2fs-file-system) ((string-prefix? "nfs" type) (const 'pass)) (else #f))) -- 2.26.2 --MP_/HEw+PS8IGtrMD.IdzsFAr_h Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0002-gnu-Add-f2fs-tools-static.patch >From 26208230e82cad199ec45707d156e9c23d43d04c Mon Sep 17 00:00:00 2001 From: raingloom Date: Fri, 3 Apr 2020 03:59:52 +0200 Subject: [PATCH 2/8] gnu: Add f2fs-tools-static * gnu/packages/file-systems.scm (f2fs-tools/static): New public variable. --- gnu/packages/linux.scm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 701df764cd..fc8afbb90c 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -4469,6 +4469,15 @@ disks and SD cards. This package provides the userland utilities.") (inputs `(("libuuid" ,util-linux))))) +(define-public f2fs-tools/static + (static-package + (package + (inherit f2fs-tools) + (name "f2fs-tools-static") + (inputs + `(("libuuid:static" ,util-linux "static") + ,@(package-inputs f2fs-tools)))))) + (define-public freefall (package (name "freefall") -- 2.26.2 --MP_/HEw+PS8IGtrMD.IdzsFAr_h Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0003-gnu-Add-f2fs-fsck-static.patch >From 6fff1095c768b5863e6de45bb9b90aead77e121f Mon Sep 17 00:00:00 2001 From: raingloom Date: Fri, 3 Apr 2020 04:18:26 +0200 Subject: [PATCH 3/8] gnu: Add f2fs-fsck-static * gnu/packages/linux.scm (f2fs-fsck/static): New public variable. --- gnu/packages/linux.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index fc8afbb90c..5b752eeef5 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -4478,6 +4478,38 @@ disks and SD cards. This package provides the userland utilities.") `(("libuuid:static" ,util-linux "static") ,@(package-inputs f2fs-tools)))))) +(define-public f2fs-fsck/static + (package + (name "f2fs-fsck-static") + (version (package-version f2fs-tools/static)) + (source #f) + (build-system trivial-build-system) + (arguments + `(#:modules ((guix build utils)) + #:builder + (begin + (use-modules (guix build utils) + (ice-9 ftw) + (srfi srfi-26)) + (let* ((f2fs-tools (assoc-ref %build-inputs "f2fs-tools-static")) + (fsck "fsck.f2fs") + (out (assoc-ref %outputs "out")) + (sbin (string-append out "/sbin"))) + (mkdir-p sbin) + (with-directory-excursion sbin + (install-file (string-append f2fs-tools "/sbin/" fsck) + ".") + (remove-store-references fsck) + (chmod fsck #o555)) + #t)))) + (inputs + `(("f2fs-tools-static" ,f2fs-tools/static))) + (home-page (package-home-page f2fs-tools/static)) + (synopsis "Statically-linked fsck.f2fs command from f2fs-tools") + (description "This package provides statically-linked fsck.f2fs command taken +from the f2fs-tools package. It is meant to be used in initrds.") + (license (package-license f2fs-tools/static)))) + (define-public freefall (package (name "freefall") -- 2.26.2 --MP_/HEw+PS8IGtrMD.IdzsFAr_h Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0004-linux-initrd-Add-support-for-F2FS.patch >From 0ea3a259b2f89b7a6a6962156ffaffec9d389c99 Mon Sep 17 00:00:00 2001 From: raingloom Date: Fri, 3 Apr 2020 07:00:41 +0200 Subject: [PATCH 4/8] =?UTF-8?q?linux-initrd:=20Add=20support=20for=20F2FS.?= =?UTF-8?q?=20*=20gnu/system/linux-initrd.scm=20(file-system-packages):=20?= =?UTF-8?q?Add=20f2fs-fsck/static.=20(file-system-type-modules):=20Add=20?= =?UTF-8?q?=E2=80=98f2fs=E2=80=99=20module.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gnu/system/linux-initrd.scm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gnu/system/linux-initrd.scm b/gnu/system/linux-initrd.scm index dcc9b6b937..6a1840dbf6 100644 --- a/gnu/system/linux-initrd.scm +++ b/gnu/system/linux-initrd.scm @@ -245,6 +245,9 @@ FILE-SYSTEMS." '()) ,@(if (find (file-system-type-predicate "jfs") file-systems) (list jfs_fsck/static) + '()) + ,@(if (find (file-system-type-predicate "f2fs") file-systems) + (list f2fs-fsck/static) '()))) (define-syntax vhash ;TODO: factorize @@ -275,6 +278,7 @@ FILE-SYSTEMS." ("btrfs" => '("btrfs")) ("iso9660" => '("isofs")) ("jfs" => '("jfs")) + ("f2fs" => '("f2fs" "crc32_generic")) (else '()))) (define (file-system-modules file-systems) -- 2.26.2 --MP_/HEw+PS8IGtrMD.IdzsFAr_h Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0005-disable-fsck.f2fs.patch >From 4b8156682cae49df79ef992a55f951256163a6fa Mon Sep 17 00:00:00 2001 From: raingloom Date: Fri, 17 Apr 2020 00:51:28 +0200 Subject: [PATCH 5/8] disable fsck.f2fs --- gnu/system/linux-initrd.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gnu/system/linux-initrd.scm b/gnu/system/linux-initrd.scm index 6a1840dbf6..349c143298 100644 --- a/gnu/system/linux-initrd.scm +++ b/gnu/system/linux-initrd.scm @@ -246,9 +246,10 @@ FILE-SYSTEMS." ,@(if (find (file-system-type-predicate "jfs") file-systems) (list jfs_fsck/static) '()) - ,@(if (find (file-system-type-predicate "f2fs") file-systems) - (list f2fs-fsck/static) - '()))) + ;; ,@(if (find (file-system-type-predicate "f2fs") file-systems) + ;; (list f2fs-fsck/static) + ;; '()) + )) (define-syntax vhash ;TODO: factorize (syntax-rules (=>) -- 2.26.2 --MP_/HEw+PS8IGtrMD.IdzsFAr_h Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0006-gnu-f2fs-tools-static-try-only-using-static-util-lin.patch >From 3faa9923e70416d27eba822d423c5a5007c6df3d Mon Sep 17 00:00:00 2001 From: raingloom Date: Sun, 19 Apr 2020 12:30:55 +0200 Subject: [PATCH 6/8] gnu: f2fs-tools-static: try only using static util-linux --- gnu/packages/linux.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index ab74380dd6..db7cf03b3e 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -4571,8 +4571,7 @@ disks and SD cards. This package provides the userland utilities.") (inherit f2fs-tools) (name "f2fs-tools-static") (inputs - `(("libuuid:static" ,util-linux "static") - ,@(package-inputs f2fs-tools)))))) + `(("libuuid:static" ,util-linux "static")))))) (define-public f2fs-fsck/static (package -- 2.26.2 --MP_/HEw+PS8IGtrMD.IdzsFAr_h Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0007-add-temporary-debugger-breakpoint-in-f2fs-tools-stat.patch >From 4e01a024dd8c9de3affb6a0f628fce7325ef07cc Mon Sep 17 00:00:00 2001 From: raingloom Date: Mon, 20 Apr 2020 14:57:33 +0200 Subject: [PATCH 7/8] add temporary debugger breakpoint in f2fs-tools-static --- gnu/packages/linux.scm | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 9b56e84477..c0fac7b6e5 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -4570,8 +4570,18 @@ disks and SD cards. This package provides the userland utilities.") (package (inherit f2fs-tools) (name "f2fs-tools-static") + (arguments + '(#:make-flags (list "CFLAGS=-v") + #:phases + (modify-phases %standard-phases + (add-before 'install 'fail + (lambda _ + (error "fail on purpose")))))) (inputs - `(("libuuid:static" ,util-linux "static")))))) + `(,@(package-inputs f2fs-tools) + ("libuuid:static" ,util-linux "static") + ("glibc:static" ,glibc "static") + ))))) (define-public f2fs-fsck/static (package -- 2.26.2 --MP_/HEw+PS8IGtrMD.IdzsFAr_h Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0008-trying-the-original-approach-glibc-static-adding-a-b.patch >From ab44403a7563fe6ca3edf4d1b7929a8d7d12429a Mon Sep 17 00:00:00 2001 From: raingloom Date: Thu, 23 Apr 2020 04:14:37 +0200 Subject: [PATCH 8/8] trying the original approach + glibc static + adding a "breakpoint" --- gnu/packages/linux.scm | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index c0fac7b6e5..801ffbdf88 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -4571,17 +4571,18 @@ disks and SD cards. This package provides the userland utilities.") (inherit f2fs-tools) (name "f2fs-tools-static") (arguments - '(#:make-flags (list "CFLAGS=-v") - #:phases - (modify-phases %standard-phases - (add-before 'install 'fail - (lambda _ - (error "fail on purpose")))))) + (substitute-keyword-arguments (package-arguments f2fs-tools) + ((#:make-flags flags) + `(cons* "CFLAGS=-v" ,flags)) + ((#:phases phases) + `(modify-phases ,phases + (add-before 'install 'fail + (lambda _ + (error "fail on purpose"))))))) (inputs - `(,@(package-inputs f2fs-tools) - ("libuuid:static" ,util-linux "static") + `(("libuuid:static" ,util-linux "static") ("glibc:static" ,glibc "static") - ))))) + ,@(package-inputs f2fs-tools)))))) (define-public f2fs-fsck/static (package -- 2.26.2 --MP_/HEw+PS8IGtrMD.IdzsFAr_h-- From debbugs-submit-bounces@debbugs.gnu.org Sat May 02 05:02:55 2020 Received: (at 41015) by debbugs.gnu.org; 2 May 2020 09:02:55 +0000 Received: from localhost ([127.0.0.1]:51225 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jUo2x-0002Jn-L1 for submit@debbugs.gnu.org; Sat, 02 May 2020 05:02:55 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:56664) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jUo2v-0002Je-2U for 41015@debbugs.gnu.org; Sat, 02 May 2020 05:02:53 -0400 Received: from localhost (80-110-127-207.cgn.dynamic.surfer.at [80.110.127.207]) by dd26836.kasserver.com (Postfix) with ESMTPSA id 4A9A13360B53; Sat, 2 May 2020 11:02:51 +0200 (CEST) Date: Sat, 2 May 2020 11:02:45 +0200 From: Danny Milosavljevic To: raingloom Subject: Re: [bug#41015] [PATCH] (incomplete) F2FS support Message-ID: <20200502110245.45cc4b21@scratchpost.org> In-Reply-To: <20200502024800.4b741809@riseup.net> References: <20200502024800.4b741809@riseup.net> X-Mailer: Claws Mail 3.17.5 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/LPq.anBOQfB8nY.D/cbalSK"; protocol="application/pgp-signature"; micalg=pgp-sha256 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 41015 Cc: 41015@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) --Sig_/LPq.anBOQfB8nY.D/cbalSK Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Hi, thanks! I know exactly what you mean--I've had some "fun" preparing initrds too. Pushed the first patch to guix master as commit 23b37c3d40d497cc6f07437ab26= ab10e60fb6e09 and a variant of your fourth patch to guix master as commit 27efeef3068bfa2= 1011ea509e21efcbe8c353b5f so you should be able to at least boot. Note: https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git/tree/inclu= de/linux/f2fs_fs.h says volume name can have up to 512 chars. Your comment says 16, but your code uses 512. I've fixed comment to say 51= 2. fsck progress so far: fsck.f2fs links to libuuid dynamically... --Sig_/LPq.anBOQfB8nY.D/cbalSK Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEds7GsXJ0tGXALbPZ5xo1VCwwuqUFAl6tNzUACgkQ5xo1VCww uqUIigf+M8sTWx8N4AqN6gP7Cw6bkwEwvEL7UZrEi1uSLOaJJUW38UdOBljW/3Ym DEVPZKlG4S0qNmyLmOR0kK4rY321+MrqfNHc5lW3lHZrNXRv/YWqirm72lfsxPdJ 08T7dW15SslLluQFtFCMvEy/uOsA/WYtFj0f1ZUlRUSNXHfJqT1b/BjBmeCkPEUC QkGl4lfEnoGrtK2qx7dsL8ZRQkq0yBtBBk5Tz9hNIdHvw5cRHtZDjxPNMbciESHE c8fGqAt4JZUo1kmJxCJhfdj75Rsy5t7TgQcSvZmkQshMyYHJ8+w9F5GHr+3ZyrYG YVWMx+vKmIWIeG9hokGMvxKEU38WMA== =eqRx -----END PGP SIGNATURE----- --Sig_/LPq.anBOQfB8nY.D/cbalSK-- From debbugs-submit-bounces@debbugs.gnu.org Sat May 02 05:40:39 2020 Received: (at 41015) by debbugs.gnu.org; 2 May 2020 09:40:39 +0000 Received: from localhost ([127.0.0.1]:51273 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jUodS-0003ED-T7 for submit@debbugs.gnu.org; Sat, 02 May 2020 05:40:39 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:59512) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jUodO-0003E0-GN for 41015@debbugs.gnu.org; Sat, 02 May 2020 05:40:34 -0400 Received: from localhost (80-110-127-207.cgn.dynamic.surfer.at [80.110.127.207]) by dd26836.kasserver.com (Postfix) with ESMTPSA id B033F3361011; Sat, 2 May 2020 11:40:32 +0200 (CEST) Date: Sat, 2 May 2020 11:40:32 +0200 From: Danny Milosavljevic To: raingloom Subject: Re: [bug#41015] [PATCH] (incomplete) F2FS support Message-ID: <20200502114032.74a57538@scratchpost.org> In-Reply-To: <20200502110245.45cc4b21@scratchpost.org> References: <20200502024800.4b741809@riseup.net> <20200502110245.45cc4b21@scratchpost.org> X-Mailer: Claws Mail 3.17.5 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/pPkZajuEoueyvfbbYZz.Wxg"; protocol="application/pgp-signature"; micalg=pgp-sha256 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 41015 Cc: 41015@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) --Sig_/pPkZajuEoueyvfbbYZz.Wxg Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable fsck progress so far: Everything except mkfs.f2fs links statically. --Sig_/pPkZajuEoueyvfbbYZz.Wxg Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEds7GsXJ0tGXALbPZ5xo1VCwwuqUFAl6tQBAACgkQ5xo1VCww uqX9pwf+P+UjJj0EnZXJC6eSGzolMZVazZsLQ0k5MLn+to6Bb49dY0i0eteVRjkf Y4zEmSx3mDIc4iMJS/l3HpWWJhlVblLiZgjaVOAH4/+w5vCRSTiQjjnV3zHoZM0c lueUf/izNYuKu4Mrvi8T03hOpKI16kOJzx7YQqDhL522/0U+I9tBuhgUGfB+YDAH UAyfHBBOWtZID4VgCH77+VAb7xY3ApqbQhDRTrrRX4NkcPmZMspz/kMeFxcV+Pkp OLTvGji6EA25+/BzHuMQvHGo8WdVg2pGFN1Ta/GV9JtlP9n+AO0q4rT444GLePDg emBwnWipkaNahWp7Y2BRP1OaMERS6A== =P6gB -----END PGP SIGNATURE----- --Sig_/pPkZajuEoueyvfbbYZz.Wxg-- From debbugs-submit-bounces@debbugs.gnu.org Sat May 02 05:56:58 2020 Received: (at 41015) by debbugs.gnu.org; 2 May 2020 09:56:58 +0000 Received: from localhost ([127.0.0.1]:51287 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jUotF-0003cD-Nc for submit@debbugs.gnu.org; Sat, 02 May 2020 05:56:58 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:60860) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jUotE-0003c5-3F for 41015@debbugs.gnu.org; Sat, 02 May 2020 05:56:56 -0400 Received: from localhost (80-110-127-207.cgn.dynamic.surfer.at [80.110.127.207]) by dd26836.kasserver.com (Postfix) with ESMTPSA id 527693361011; Sat, 2 May 2020 11:56:55 +0200 (CEST) Date: Sat, 2 May 2020 11:56:54 +0200 From: Danny Milosavljevic To: raingloom Subject: Re: [bug#41015] [PATCH] (incomplete) F2FS support Message-ID: <20200502115654.3f06ce2f@scratchpost.org> In-Reply-To: <20200502114032.74a57538@scratchpost.org> References: <20200502024800.4b741809@riseup.net> <20200502110245.45cc4b21@scratchpost.org> <20200502114032.74a57538@scratchpost.org> X-Mailer: Claws Mail 3.17.5 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/0yr70CXZAFBhAzEC8Bq3bnR"; protocol="application/pgp-signature"; micalg=pgp-sha256 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 41015 Cc: 41015@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) --Sig_/0yr70CXZAFBhAzEC8Bq3bnR Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Pushed that version of f2fs-tools-static to guix master as commit 807986a55fc2849d6986efb79f9a015cf4132e09 anyway since it is a problem in our util-linux package. See also https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D41019 --Sig_/0yr70CXZAFBhAzEC8Bq3bnR Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEds7GsXJ0tGXALbPZ5xo1VCwwuqUFAl6tQ+YACgkQ5xo1VCww uqWTIQgAjDHy0nvKc4PbkbNqTX17PdzPBXtSJPISua71WUu8rre1yTlcsPXgzmi9 /tmk2W+pKa7e56j3tiL0EleuPu2LdDulfZ4WaGv1hcbZ1o4TjMcTklw0auQoboHI CLBKya95jZ2OS6S50kbkLX93vI6NYDYdUo878NfY2aLz6G2Q0jZiFY6V7ZRtlI0Z PRHlwj8BBastuwmHKDMY47Xl9DJRrnaGs2pbIhHYDTvNDByaYsHrK5GJWnv2tbOR Ncy5mNNC2HgA5TSyZ35j/EN6AAW0kMABipCo4iTsY0DzGE/9mEs1dyrIJms2pH1H sH8KOg4QYKJ4Bob7DedyQOhA/zcu2g== =aq0B -----END PGP SIGNATURE----- --Sig_/0yr70CXZAFBhAzEC8Bq3bnR-- From debbugs-submit-bounces@debbugs.gnu.org Sat May 02 05:59:28 2020 Received: (at 41015) by debbugs.gnu.org; 2 May 2020 09:59:28 +0000 Received: from localhost ([127.0.0.1]:51298 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jUovf-0003gH-K1 for submit@debbugs.gnu.org; Sat, 02 May 2020 05:59:28 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:32828) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jUovb-0003g7-Qu for 41015@debbugs.gnu.org; Sat, 02 May 2020 05:59:24 -0400 Received: from localhost (80-110-127-207.cgn.dynamic.surfer.at [80.110.127.207]) by dd26836.kasserver.com (Postfix) with ESMTPSA id E17CA3361011; Sat, 2 May 2020 11:59:22 +0200 (CEST) Date: Sat, 2 May 2020 11:59:22 +0200 From: Danny Milosavljevic To: raingloom Subject: Re: [bug#41015] [PATCH] (incomplete) F2FS support Message-ID: <20200502115922.2b3be6dd@scratchpost.org> In-Reply-To: <20200502024800.4b741809@riseup.net> References: <20200502024800.4b741809@riseup.net> X-Mailer: Claws Mail 3.17.5 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/S.cCGjrUbP5FME6QjQijv4="; protocol="application/pgp-signature"; micalg=pgp-sha256 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 41015 Cc: 41015@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) --Sig_/S.cCGjrUbP5FME6QjQijv4= Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Pushed patch 3 to guix master as commit 2dd2210bf9065c9dcc3ec5412776a88b4df= 0201b. --Sig_/S.cCGjrUbP5FME6QjQijv4= Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEds7GsXJ0tGXALbPZ5xo1VCwwuqUFAl6tRHoACgkQ5xo1VCww uqXffwgAjwwKrdkPyF+lfNrYs3l1g8NQgp6dbPTvGbT8fBDEQhBORXvHZsN63J0r vd5aZxzwfjH2UCfoIHNpbjMOcTdPw7OB7LNRV8Kdu38W2VqQTBI/pCIhdUEOZui0 rY5MXUuOy5V9yqA41qs9WMXeO6NDBWhLANlzSNtmrcG3xXzt2U4jAy4mpGf96Bfs 04yUV5sThRqm/BZYN4W8VxHqfM3RsMWs8ld2hFH60B3ZvwXbl9cne3og2PhloJUM 9Nq7wPZq/TGbEP7p4dpbadBsYZCaFrORi6XLEvOmBlmfg4i3q92w3Am3/ZPbx6Kv ai2anx7jyaYgK0b7rF4tH2zNoa4T4Q== =yyWe -----END PGP SIGNATURE----- --Sig_/S.cCGjrUbP5FME6QjQijv4=-- From debbugs-submit-bounces@debbugs.gnu.org Sat May 02 06:04:37 2020 Received: (at 41015) by debbugs.gnu.org; 2 May 2020 10:04:37 +0000 Received: from localhost ([127.0.0.1]:51307 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jUp0e-0003pJ-Qg for submit@debbugs.gnu.org; Sat, 02 May 2020 06:04:36 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:33292) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jUp0c-0003pB-T5 for 41015@debbugs.gnu.org; Sat, 02 May 2020 06:04:35 -0400 Received: from localhost (80-110-127-207.cgn.dynamic.surfer.at [80.110.127.207]) by dd26836.kasserver.com (Postfix) with ESMTPSA id 59E11336536D; Sat, 2 May 2020 12:04:33 +0200 (CEST) Date: Sat, 2 May 2020 12:04:29 +0200 From: Danny Milosavljevic To: raingloom Subject: Re: [bug#41015] [PATCH] (incomplete) F2FS support Message-ID: <20200502120429.3537426c@scratchpost.org> In-Reply-To: <20200502024800.4b741809@riseup.net> References: <20200502024800.4b741809@riseup.net> X-Mailer: Claws Mail 3.17.5 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/ynfN1Yi=gjGZV2E1X9ME7y_"; protocol="application/pgp-signature"; micalg=pgp-sha256 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 41015 Cc: 41015@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) --Sig_/ynfN1Yi=gjGZV2E1X9ME7y_ Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable On Sat, 2 May 2020 02:48:00 +0200 raingloom wrote: > What seemed to work but then didn't: > installing to a partition specified by its label. i tried to do the > math, but for some reason it still can't find it. I'm pretty sure it > worked at some point. Please try: $ guile --no-auto-compile -L . ((@@ (gnu build file-systems) f2fs-superblock-volume-name) ((@@ (gnu build file-systems) read-f2fs-superblock) "your-device")) --Sig_/ynfN1Yi=gjGZV2E1X9ME7y_ Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEds7GsXJ0tGXALbPZ5xo1VCwwuqUFAl6tRa0ACgkQ5xo1VCww uqWyVgf/T7+9HpXDSa8VCoxgaLgpvBsgfhcgRDsR9XhMx+Vd0LGK9xndhYH1L1+s VOaNcRUYC45frelPYpUxuKYsAZ7xE/ZkWln7em2ChbbFrkmll23L66Ck9UkNANLa RlVcQ9g48mAWoAJhmVSEPRybf0INCqaHM3uRT9KB/VCzBosYFz+wyNPlDXrPLfOi kXXsZ2NRiucmwOaY6NYBRDQg2MRMz3Q3K7c4Vr9oiYJ62HjNg4aytAPWVX+1Jxvq T2BPeYbMN8ES3lvobyPKeMthOBO3VXUKJWHPGakTG5gIffdkZ2qh9M9ArPt5l8BG UygKpiSwGFuoXqzxDLya5LNqDwIJZw== =A1+n -----END PGP SIGNATURE----- --Sig_/ynfN1Yi=gjGZV2E1X9ME7y_-- From debbugs-submit-bounces@debbugs.gnu.org Sun May 03 06:41:52 2020 Received: (at 41015) by debbugs.gnu.org; 3 May 2020 10:41:52 +0000 Received: from localhost ([127.0.0.1]:54716 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jVC4G-0008RP-Lu for submit@debbugs.gnu.org; Sun, 03 May 2020 06:41:52 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:35562) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jVC4F-0008RG-6L for 41015@debbugs.gnu.org; Sun, 03 May 2020 06:41:51 -0400 Received: from localhost (80-110-127-207.cgn.dynamic.surfer.at [80.110.127.207]) by dd26836.kasserver.com (Postfix) with ESMTPSA id 82C4D3365A26; Sun, 3 May 2020 12:41:49 +0200 (CEST) Date: Sun, 3 May 2020 12:41:46 +0200 From: Danny Milosavljevic To: raingloom Subject: Re: [bug#41015] [PATCH] (incomplete) F2FS support Message-ID: <20200503124146.140f2c9f@scratchpost.org> In-Reply-To: <20200502115922.2b3be6dd@scratchpost.org> References: <20200502024800.4b741809@riseup.net> <20200502115922.2b3be6dd@scratchpost.org> X-Mailer: Claws Mail 3.17.5 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/ILGqu/7ZGtUzB/dmBU53b/d"; protocol="application/pgp-signature"; micalg=pgp-sha256 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 41015 Cc: 41015@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) --Sig_/ILGqu/7ZGtUzB/dmBU53b/d Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Correction: Pushed patch 3 to guix master as commit a5cf52d3aa31717a8ae0c2cbbc4b848266e= d7818. --Sig_/ILGqu/7ZGtUzB/dmBU53b/d Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEds7GsXJ0tGXALbPZ5xo1VCwwuqUFAl6un+oACgkQ5xo1VCww uqU8QAgAkAZofNXq0E2wHauZaLk8qdO7+zQ5onRsCRoFJOhZYBXe6maR9hedlCst 4Lqqp+yFK8TVWtr5I58KIaX0FG7BqiIf4Uv2rK1vnjKcrEGI6ZnBOJPvKIbtIQMV BpqJ8dDikndAYQ5F8hPpwas+x69HLXu1a2zjF8/oWfuofAFoSWsWqxJyyRQMmMU2 G0I+P4cm4Yefjf2AMX5vzIA/3BxWK0t8Z+cu9pIJZQRKQMsW7Nvw705KXwPWoPDm 5xIdenM5eus8qcgV4Qtf2WswdrtMeUMtvQYXwsJkFijci4qe8VODd9hrbBqDZnIv kHiebIeTUBJr4G/9CS8Can3h/GLoSA== =j1UX -----END PGP SIGNATURE----- --Sig_/ILGqu/7ZGtUzB/dmBU53b/d-- From debbugs-submit-bounces@debbugs.gnu.org Sun May 03 14:47:15 2020 Received: (at 41015) by debbugs.gnu.org; 3 May 2020 18:47:16 +0000 Received: from localhost ([127.0.0.1]:58024 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jVJdz-0004lk-K6 for submit@debbugs.gnu.org; Sun, 03 May 2020 14:47:15 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:45912) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jVJdx-0004lb-TK for 41015@debbugs.gnu.org; Sun, 03 May 2020 14:47:14 -0400 Received: from localhost (80-110-127-207.cgn.dynamic.surfer.at [80.110.127.207]) by dd26836.kasserver.com (Postfix) with ESMTPSA id E53683362FAA; Sun, 3 May 2020 20:47:11 +0200 (CEST) Date: Sun, 3 May 2020 20:47:07 +0200 From: Danny Milosavljevic To: raingloom Subject: Re: [bug#41015] [PATCH] (incomplete) F2FS support Message-ID: <20200503204707.436dfaf1@scratchpost.org> In-Reply-To: <20200502120429.3537426c@scratchpost.org> References: <20200502024800.4b741809@riseup.net> <20200502120429.3537426c@scratchpost.org> X-Mailer: Claws Mail 3.17.5 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/Yv26hI9M056esTEPsl78XDy"; protocol="application/pgp-signature"; micalg=pgp-sha256 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 41015 Cc: 41015@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) --Sig_/Yv26hI9M056esTEPsl78XDy Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable I've tried it now--it wasn't honoring the UTF-16 NUL termination. I've fixed it now in guix master commit f73f4b3a2d7a313a6cb1667bd69205ea4b0= 9f57c. --Sig_/Yv26hI9M056esTEPsl78XDy Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEds7GsXJ0tGXALbPZ5xo1VCwwuqUFAl6vEasACgkQ5xo1VCww uqVoIgf/eMPAsAQQns64ZMyasjbCf+I5z4sat4uOq6LnoE/5TGFyBMlSUoAviRm4 3URnlQ363nCKxMnghB7NiNT2S7QFR/nNxzPl2IQwtRBpLqUdek+5jxIPsXRDs75K CK9fuQRQM4BK1I3kkowR00ht1YvH/xGOmS/y/GmeIB+Peyoy6inGVsF+iSu1bJBy gYEuWUlX1j/9BjaqtRq8duUOP5OEChNUuxiNMi+Jfl0UImpTEkLzPmm0JzSYxWUv x+UQDU4w2szOv0sVCixswbSnZIsbyppQm4vSgMU1XJu5V06z59khTcvML2i5EmfC xuUJumum40EwC/LMbwHESIwRak861g== =gb6C -----END PGP SIGNATURE----- --Sig_/Yv26hI9M056esTEPsl78XDy-- From debbugs-submit-bounces@debbugs.gnu.org Sun May 03 17:05:56 2020 Received: (at 41015-done) by debbugs.gnu.org; 3 May 2020 21:05:56 +0000 Received: from localhost ([127.0.0.1]:58176 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jVLoB-0001oI-Pe for submit@debbugs.gnu.org; Sun, 03 May 2020 17:05:55 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:56508) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jVLo8-0001o9-DV for 41015-done@debbugs.gnu.org; Sun, 03 May 2020 17:05:53 -0400 Received: from localhost (80-110-127-207.cgn.dynamic.surfer.at [80.110.127.207]) by dd26836.kasserver.com (Postfix) with ESMTPSA id 5053C3360AA0; Sun, 3 May 2020 23:05:50 +0200 (CEST) Date: Sun, 3 May 2020 23:05:49 +0200 From: Danny Milosavljevic To: raingloom Subject: Re: [bug#41015] [PATCH] (incomplete) F2FS support Message-ID: <20200503230549.1648b6a0@scratchpost.org> In-Reply-To: <20200502115654.3f06ce2f@scratchpost.org> References: <20200502024800.4b741809@riseup.net> <20200502110245.45cc4b21@scratchpost.org> <20200502114032.74a57538@scratchpost.org> <20200502115654.3f06ce2f@scratchpost.org> X-Mailer: Claws Mail 3.17.5 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/pFYCXmhw.1_gzIp3TVlU5xW"; protocol="application/pgp-signature"; micalg=pgp-sha256 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 41015-done Cc: 41015-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) --Sig_/pFYCXmhw.1_gzIp3TVlU5xW Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable On Sat, 2 May 2020 11:56:54 +0200 Danny Milosavljevic wrote: > See also https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D41019 Pushed a workaround for that bug to guix master in commit da09c63e78ebebeabb347f483d7284b87ff51c2f and enabled f2fs fsck in commit 33eab4a10dcd2a6580f168f18455df1d4653d14b. Added system installation test in commit af7a8e718dddd12c3dddf92bfce2f79471= fa4a0d. Added workaround for mising support for UTF-16 in the initrd's guile in commit bb357c509e1c017e1fef5aa5f4d05beea0c25157. That concludes this patch series. --Sig_/pFYCXmhw.1_gzIp3TVlU5xW Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEds7GsXJ0tGXALbPZ5xo1VCwwuqUFAl6vMi0ACgkQ5xo1VCww uqXjZAf+LJofg/Mvl1DZLSC+7bfe+C5RPz7uR2zmoJUEmTX7JbyqGrlcAt6C9yRp d/s7Yf2WTq0AzhP2P0Fwul7uA+3p0ZjvHhub/2GCWtAyh0shrTxLsqTjo749Qnwl OHwjagDZ0ncd1QC+gzHIAPOV4LvmfzZS1R8lYoXkxMreVc9Aa0BX/IbdhGhHTDPa Tm1EocfvG9u0KIWz7uH4e+wQuLcwg/IQlga6CjFcaxuZrCeys4QmWxFJvQo4eGMA WPpE+qwfH9xJVvSAi1wXWZ4H/6gI6D/nHHNj0Dqcuii2ojoF0TcnGLuemQpC4F9H l6pDFG/aN5tpaubQZ+vS4Ae7Vg991A== =m6IG -----END PGP SIGNATURE----- --Sig_/pFYCXmhw.1_gzIp3TVlU5xW-- From unknown Sat Jun 21 03:29:52 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 01 Jun 2020 11:24:05 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator