From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp1 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id aGjyI7IL9V7CQgAA0tVLHw (envelope-from ) for ; Thu, 25 Jun 2020 20:40:18 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp1 with LMTPS id GIu6H7IL9V5wcwAAbx9fmQ (envelope-from ) for ; Thu, 25 Jun 2020 20:40:18 +0000 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id 2D3769401CB for ; Thu, 25 Jun 2020 20:40:18 +0000 (UTC) Received: from localhost ([::1]:42352 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1joYfR-0001S9-4l for larch@yhetil.org; Thu, 25 Jun 2020 16:40:17 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:39376) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1joYfC-0001QJ-Ri for bug-guix@gnu.org; Thu, 25 Jun 2020 16:40:02 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:57988) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1joYfC-0005kl-IT for bug-guix@gnu.org; Thu, 25 Jun 2020 16:40:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1joYfC-0001TU-Fs for bug-guix@gnu.org; Thu, 25 Jun 2020 16:40:02 -0400 X-Loop: help-debbugs@gnu.org Subject: bug#42047: [PATCH 1/3] image: hurd: Create hurd-compatible ext2 file-system. References: <20200625203400.24644-1-janneke@gnu.org> In-Reply-To: <20200625203400.24644-1-janneke@gnu.org> Resent-From: "Jan (janneke) Nieuwenhuizen" Original-Sender: "Debbugs-submit" Resent-CC: bug-guix@gnu.org Resent-Date: Thu, 25 Jun 2020 20:40:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 42047 X-GNU-PR-Package: guix X-GNU-PR-Keywords: patch To: 42047@debbugs.gnu.org Received: via spool by 42047-submit@debbugs.gnu.org id=B42047.15931175475566 (code B ref 42047); Thu, 25 Jun 2020 20:40:02 +0000 Received: (at 42047) by debbugs.gnu.org; 25 Jun 2020 20:39:07 +0000 Received: from localhost ([127.0.0.1]:41296 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1joYeI-0001Ri-LP for submit@debbugs.gnu.org; Thu, 25 Jun 2020 16:39:07 -0400 Received: from eggs.gnu.org ([209.51.188.92]:52996) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1joYeA-0001QZ-33 for 42047@debbugs.gnu.org; Thu, 25 Jun 2020 16:39:02 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:44856) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1joYe4-000461-QL; Thu, 25 Jun 2020 16:38:52 -0400 Received: from [2001:980:1b4f:1:42d2:832d:bb59:862] (port=46176 helo=dundal.fritz.box) by fencepost.gnu.org with esmtpa (Exim 4.82) (envelope-from ) id 1joYe4-0000HF-9M; Thu, 25 Jun 2020 16:38:52 -0400 From: "Jan (janneke) Nieuwenhuizen" Date: Thu, 25 Jun 2020 22:38:48 +0200 Message-Id: <20200625203850.25057-1-janneke@gnu.org> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-Spam-Score: -3.3 (---) X-BeenThere: bug-guix@gnu.org List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+larch=yhetil.org@gnu.org Sender: "bug-Guix" X-Scanner: scn0 Authentication-Results: aspmx1.migadu.com; dkim=none; dmarc=none; spf=pass (aspmx1.migadu.com: domain of bug-guix-bounces@gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=bug-guix-bounces@gnu.org X-Spam-Score: -0.01 X-TUID: iQDtZ4heGiaN This is a follow-up to commit b904b59ce592c89dfb4675a8c06757afed6738a0. * gnu/system/images/hurd.scm (hurd-disk-image): Add file-system-options to create an ext2 file-system that is compatible with the Hurd. --- gnu/system/images/hurd.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/system/images/hurd.scm b/gnu/system/images/hurd.scm index 4417f03cc8..e5e120d49c 100644 --- a/gnu/system/images/hurd.scm +++ b/gnu/system/images/hurd.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2020 Mathieu Othacehe +;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of GNU Guix. ;;; @@ -66,6 +67,7 @@ (offset root-offset) (label root-label) (file-system "ext2") + (file-system-options '("-o" "hurd" "-O" "ext_attr")) (flags '(boot)) (initializer (gexp initialize-root-partition))))))) -- Jan Nieuwenhuizen | GNU LilyPond http://lilypond.org Freelance IT http://JoyofSource.com | Avatar® http://AvatarAcademy.com