From unknown Thu Aug 14 21:45:05 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#45517 <45517@debbugs.gnu.org> To: bug#45517 <45517@debbugs.gnu.org> Subject: Status: Failed boot on arm32 with u-boot due to missing requirements with the distro boot protocol Reply-To: bug#45517 <45517@debbugs.gnu.org> Date: Fri, 15 Aug 2025 04:45:05 +0000 retitle 45517 Failed boot on arm32 with u-boot due to missing requirements = with the distro boot protocol reassign 45517 guix submitter 45517 Denis 'GNUtoo' Carikli severity 45517 normal thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Dec 28 21:36:55 2020 Received: (at submit) by debbugs.gnu.org; 29 Dec 2020 02:36:55 +0000 Received: from localhost ([127.0.0.1]:37291 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ku4sY-0003y1-Nx for submit@debbugs.gnu.org; Mon, 28 Dec 2020 21:36:55 -0500 Received: from lists.gnu.org ([209.51.188.17]:51952) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ku4sW-0003xs-EZ for submit@debbugs.gnu.org; Mon, 28 Dec 2020 21:36:53 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:52850) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ku4sW-0001Rl-7Q for bug-guix@gnu.org; Mon, 28 Dec 2020 21:36:52 -0500 Received: from cyberdimension.org ([80.67.179.20]:55594 helo=gnutoo.cyberdimension.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_CHACHA20_POLY1305:256) (Exim 4.90_1) (envelope-from ) id 1ku4sT-0005m5-QH for bug-guix@gnu.org; Mon, 28 Dec 2020 21:36:52 -0500 Received: from gnutoo.cyberdimension.org (localhost [127.0.0.1]) by cyberdimension.org (OpenSMTPD) with ESMTP id 93f7b554 for ; Tue, 29 Dec 2020 02:30:21 +0000 (UTC) Received: from primarylaptop.localdomain (localhost.localdomain [::1]) by gnutoo.cyberdimension.org (OpenSMTPD) with ESMTP id 0051cdd7 for ; Tue, 29 Dec 2020 02:30:21 +0000 (UTC) Date: Tue, 29 Dec 2020 03:34:39 +0100 From: Denis 'GNUtoo' Carikli To: bug-guix@gnu.org Subject: Failed boot on arm32 with u-boot due to missing requirements with the distro boot protocol Message-ID: <20201229033439.60b2a9ff@primarylaptop.localdomain> X-Mailer: Claws Mail 3.17.8 (GTK+ 2.24.32; i686-pc-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/jb=Zu=CXcarWt.i5//Me79r"; protocol="application/pgp-signature"; micalg=pgp-sha256 Received-SPF: pass client-ip=80.67.179.20; envelope-from=GNUtoo@cyberdimension.org; helo=gnutoo.cyberdimension.org X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action 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 (--) --Sig_/jb=Zu=CXcarWt.i5//Me79r Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Hi, I've generated an image for the Lime2 with this (lime2.scm) file: > ;; Based on Guix's beaglebone-black.tmpl > (use-modules (gnu) (gnu bootloader u-boot)) > (use-package-modules bootloaders) > (operating-system > (host-name "lime2") > (timezone "Europe/Paris") > (locale "en_US.utf8") > ;; We use a microSD > (bootloader (bootloader-configuration > (bootloader u-boot-a20-olinuxino-lime2-bootloader) > (target "/dev/mmcblk0"))) > (kernel-arguments '("console=3DttyS0,115200" "ignore_loglevel")) > ;; This module is required to mount the SD card. > (initrd-modules (cons "sunxi-mmc" %base-initrd-modules)) > (file-systems (cons (file-system > (device (file-system-label "my-root")) > (mount-point "/") > (needed-for-boot? #t) > (type "ext4")) > %base-file-systems)) > (packages %base-packages) > (services (append (list > (agetty-service > (agetty-configuration > (extra-options '("-L")) > (baud-rate "115200") > (term "xterm-256color") > (tty "ttyS0")))) > %base-services))) I then built it with: > cp `guix system disk-image --target=3Darm-linux-gnueabihf lime2.scm` \ > guix.img However when booting the image, u-boot doesn't find /boot/extlinux/extlinux.conf. However running the following command in u-boot makes the board boot: > sysboot mmc 0:2 any $scriptaddr /boot/extlinux/extlinux.conf When we look at the resulting image with fdisk -l we have: > Device Boot Start End Sectors Size Id Type > guix.img1 2048 83967 81920 40M ef EFI (FAT-12/16/32) > guix.img2 83968 3301783 3217816 1.5G 83 Linux The second partition (which has /boot/extlinux/extlinux.conf) doesn't have the boot flag. Adding the boot flag with the following command results in a booting image: > sfdisk guix.img -A 2 This is because the distro boot protocol (documented in doc/README.distro in u-boot source code[1]) expects the partition that holds the extlinux.conf config file to be "explicitly marked bootable". else "U-Boot falls back to searching the first valid partition of a disk for boot configuration files." So we either need to remove the first partition or to mark the second partition as bootable or both. I've tried looking in the partitioning code to understand how flags are set but I'm a complete newbie in scheme so I failed. Being able to set the bootable flag could probably help in some situations where a first partition has to be used for some reasons. In addition, the first partition it only contains the /EFI/BOOT/BOOTIA32.EFI file which is of the following type: > PE32 executable (EFI application) Intel 80386 (stripped to external > PDB), for MS Windows So it could also be removed and/or replaced with ARM code. References: ----------- [1]https://gitlab.denx.de/u-boot/u-boot/-/raw/master/doc/README.distro Denis. --Sig_/jb=Zu=CXcarWt.i5//Me79r Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQIzBAEBCAAdFiEEeC+d2+Nrp/PU3kkGX138wUF34mMFAl/qlb8ACgkQX138wUF3 4mOeBA/9Gs5ZXVIg+vy4rqfO9YmwCAZCXzeD5qKgSq+toVE4iT/zxhSvuPwkfx4R tJP5taQyAneInZvn7t0MnvnRXWilw0CIoObtA7XJyOxI52IVgy5MDz8iwrSpPunC cOdKT4gL9USOfryMwDNDPvnBcAkvYYlW2cDa1NMsr20IOPbek5Etrl9wx2yRZCIx Q6PDQCbFJzRgq2NIK5+fJpsO7wATEw2GuB7cWSfje9Xfhkg/J89+57foZSmd8LlY anGKIMSjAzfWrAjJoxnFFBxJyj3uQCm+UDQm3V3l59khvTRsyxQjTBIZFI3V4Qre MHEurBi0yCXZGROVbnqw9ZMAl4PuT5XmjjuxBg/jDmeSN2I/8x5HcJf2PA2QO3TP ZjAmb6unQqXV6k+yYOX53NZCuHyFl+V02/oFA+O5Uqp27iCELJBwW85kYq0xV82x 53AAkibW5Cx9IIw4IqV/Q/QMSDVukqOQdw8+m4l9mFbNM1EAUsOJ7O4CqJqjIN9G OOK0+Ual+GkOnfstNZsQo6tKsq6hQfiseWToYGdgluf235aMvIXQ57s9osQSWakb l1VoRAibUOwOmAJ3QMECbY9+59zXYbSQrfdTAD5r87anziN8eRwWujjH49seK+8e M7f8N5QE7nMdf9Hi6kSlgXHo2eclH8/gnr3HqxvXh9G5Aj+p7oI= =tPeA -----END PGP SIGNATURE----- --Sig_/jb=Zu=CXcarWt.i5//Me79r-- From debbugs-submit-bounces@debbugs.gnu.org Wed Dec 30 09:36:01 2020 Received: (at 45517) by debbugs.gnu.org; 30 Dec 2020 14:36:01 +0000 Received: from localhost ([127.0.0.1]:48729 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kuca1-0004Gr-6h for submit@debbugs.gnu.org; Wed, 30 Dec 2020 09:36:01 -0500 Received: from eggs.gnu.org ([209.51.188.92]:43314) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kucZy-0004GF-Jh for 45517@debbugs.gnu.org; Wed, 30 Dec 2020 09:35:59 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]:54964) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kucZs-000568-W5; Wed, 30 Dec 2020 09:35:53 -0500 Received: from [2a01:cb18:832e:5f00:1419:7f05:4215:aaad] (port=51488 helo=cervin) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1kucZp-0005DZ-R1; Wed, 30 Dec 2020 09:35:51 -0500 From: Mathieu Othacehe To: Denis 'GNUtoo' Carikli Subject: Re: bug#45517: Failed boot on arm32 with u-boot due to missing requirements with the distro boot protocol References: <20201229033439.60b2a9ff@primarylaptop.localdomain> Date: Wed, 30 Dec 2020 15:35:48 +0100 In-Reply-To: <20201229033439.60b2a9ff@primarylaptop.localdomain> (Denis Carikli's message of "Tue, 29 Dec 2020 03:34:39 +0100") Message-ID: <87sg7n5pkr.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 45517 Cc: 45517@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: -3.3 (---) Hello Denis, > I then built it with: >> cp `guix system disk-image --target=arm-linux-gnueabihf lime2.scm` \ >> guix.img > > However when booting the image, u-boot doesn't find > /boot/extlinux/extlinux.conf. > > However running the following command in u-boot makes the board boot: >> sysboot mmc 0:2 any $scriptaddr /boot/extlinux/extlinux.conf > > When we look at the resulting image with fdisk -l we have: >> Device Boot Start End Sectors Size Id Type >> guix.img1 2048 83967 81920 40M ef EFI (FAT-12/16/32) >> guix.img2 83968 3301783 3217816 1.5G 83 Linux The default image type creates an EFI partition which is not desirable here. You should try again running this instead: --8<---------------cut here---------------start------------->8--- guix system disk-image -t arm32-raw lime2.scm --8<---------------cut here---------------end--------------->8--- Thanks, Mathieu From debbugs-submit-bounces@debbugs.gnu.org Fri Jan 01 21:57:21 2021 Received: (at 45517) by debbugs.gnu.org; 2 Jan 2021 02:57:21 +0000 Received: from localhost ([127.0.0.1]:35098 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kvX6W-00015a-Vk for submit@debbugs.gnu.org; Fri, 01 Jan 2021 21:57:21 -0500 Received: from cyberdimension.org ([80.67.179.20]:36590 helo=gnutoo.cyberdimension.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kvX6U-00015P-Ii for 45517@debbugs.gnu.org; Fri, 01 Jan 2021 21:57:19 -0500 Received: from gnutoo.cyberdimension.org (localhost [127.0.0.1]) by cyberdimension.org (OpenSMTPD) with ESMTP id dadf541a; Sat, 2 Jan 2021 02:50:14 +0000 (UTC) Received: from primarylaptop.localdomain (localhost.localdomain [::1]) by gnutoo.cyberdimension.org (OpenSMTPD) with ESMTP id 5f645029; Sat, 2 Jan 2021 02:50:13 +0000 (UTC) Date: Sat, 2 Jan 2021 03:54:40 +0100 From: Denis 'GNUtoo' Carikli To: Mathieu Othacehe Subject: Re: bug#45517: Failed boot on arm32 with u-boot due to missing requirements with the distro boot protocol Message-ID: <20210102035440.0d5aacea@primarylaptop.localdomain> In-Reply-To: <87sg7n5pkr.fsf@gnu.org> References: <20201229033439.60b2a9ff@primarylaptop.localdomain> <87sg7n5pkr.fsf@gnu.org> X-Mailer: Claws Mail 3.17.8 (GTK+ 2.24.32; i686-pc-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/Y1KM1XQ1ekW+7wlBe6.qJQe"; protocol="application/pgp-signature"; micalg=pgp-sha256 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 45517 Cc: 45517@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.0 (-) --Sig_/Y1KM1XQ1ekW+7wlBe6.qJQe Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable On Wed, 30 Dec 2020 15:35:48 +0100 Mathieu Othacehe wrote: > The default image type creates an EFI partition which is not desirable > here. You should try again running this instead: >=20 > --8<---------------cut here---------------start------------->8--- > guix system disk-image -t arm32-raw lime2.scm > --8<---------------cut here---------------end--------------->8--- Thanks a lot, that works fine. Sorry for the noise. Denis. --Sig_/Y1KM1XQ1ekW+7wlBe6.qJQe Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQIzBAEBCAAdFiEEeC+d2+Nrp/PU3kkGX138wUF34mMFAl/v4HEACgkQX138wUF3 4mN58w//eVAbww1LpDq4H6kvxaNDPm+CydOeS8fo0U6c/0OF0+D88XwaCM9vpEQY Jlqnw+/UxcGbq/35Sq1XTuDVXz2CBdQ3yKYAgav9YbRQtMqF1m34LWgJoMgCrdg5 gLdpVZpVu7tAKsJomEgx4/HM/GFpIAX5lhVv7s0Au0kr+2TSDPvFf/+prFP1aUqK X9pnO26CDvjoKEqz9U97H7rwHnIpiTdwNkd0LeWMtT++mYCWcbgrUyBY0t+UOhD1 VHu1qOMq5szRJkalyoieV31TG6WfUHh/DByrmyqLA01C8x4GqdcXuxacmB8/ksvJ VqGkhISSQNuZKFOSVJ2sWkEBB2Tko2ZXu1oWnOCFcmKfLkqcjsICh3TgXIlcy4+Y MNA2QXd06JqVkdLVjp4/CxX/0hMjnZvE1M49o3is2yGOUJTC5gmDL40N8/W3PDzL zFKB19GV+aHfg9+rWkgM3sfJXToARg2Lvw7lSN/smKlrQGV+XxZWXRHCX3swSgt+ arNnqpiBB3wuEZW4WOZ3UjBaIQVO7Q2QUWLWUsx4oM+2L6ITVzjKsgCvWUNhSVg9 nrX2BDkgdnoTSKZSbMLwOITPH6cLo0nbUFBOq/nWfmxq+jftWWxhc5vkfAySdjVc bKHl5CE8pT04xITk3c075FpfN7fwjfzHEDounlRu/8zGVxx/E5A= =SsBS -----END PGP SIGNATURE----- --Sig_/Y1KM1XQ1ekW+7wlBe6.qJQe-- From debbugs-submit-bounces@debbugs.gnu.org Sat Jan 02 05:23:40 2021 Received: (at 45517-done) by debbugs.gnu.org; 2 Jan 2021 10:23:40 +0000 Received: from localhost ([127.0.0.1]:52148 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kve4R-0005DM-Te for submit@debbugs.gnu.org; Sat, 02 Jan 2021 05:23:40 -0500 Received: from eggs.gnu.org ([209.51.188.92]:58326) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kve4Q-0005D4-NY for 45517-done@debbugs.gnu.org; Sat, 02 Jan 2021 05:23:39 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]:51541) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kve4L-0007op-2y; Sat, 02 Jan 2021 05:23:33 -0500 Received: from pop.92-184-107-104.mobile.abo.orange.fr ([92.184.107.104]:32802 helo=cervin) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1kve4H-0006SP-SK; Sat, 02 Jan 2021 05:23:32 -0500 From: Mathieu Othacehe To: Denis 'GNUtoo' Carikli Subject: Re: bug#45517: Failed boot on arm32 with u-boot due to missing requirements with the distro boot protocol References: <20201229033439.60b2a9ff@primarylaptop.localdomain> <87sg7n5pkr.fsf@gnu.org> <20210102035440.0d5aacea@primarylaptop.localdomain> Date: Sat, 02 Jan 2021 11:23:24 +0100 In-Reply-To: <20210102035440.0d5aacea@primarylaptop.localdomain> (Denis Carikli's message of "Sat, 2 Jan 2021 03:54:40 +0100") Message-ID: <87lfdbbpsz.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 45517-done Cc: 45517-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: -3.3 (---) Hey Dennis, > Thanks a lot, that works fine. Glad it works! Maybe we should consider creating a gnu/system/images/lime.scm file in the future. Closing this one. Thanks, Mathieu From debbugs-submit-bounces@debbugs.gnu.org Sun Jan 03 17:15:07 2021 Received: (at 45517-done) by debbugs.gnu.org; 3 Jan 2021 22:15:07 +0000 Received: from localhost ([127.0.0.1]:38797 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kwBeU-0007zD-Vf for submit@debbugs.gnu.org; Sun, 03 Jan 2021 17:15:07 -0500 Received: from dd26836.kasserver.com ([85.13.145.193]:58122) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kwBeT-0007z2-Nw for 45517-done@debbugs.gnu.org; Sun, 03 Jan 2021 17:15:06 -0500 Received: from localhost (80-110-127-104.cgn.dynamic.surfer.at [80.110.127.104]) by dd26836.kasserver.com (Postfix) with ESMTPSA id 1E5D3336579E; Sun, 3 Jan 2021 23:15:04 +0100 (CET) Date: Sun, 3 Jan 2021 23:15:01 +0100 From: Danny Milosavljevic To: Mathieu Othacehe Subject: Re: bug#45517: Failed boot on arm32 with u-boot due to missing requirements with the distro boot protocol Message-ID: <20210103231501.31267abc@scratchpost.org> In-Reply-To: <87lfdbbpsz.fsf@gnu.org> References: <20201229033439.60b2a9ff@primarylaptop.localdomain> <87sg7n5pkr.fsf@gnu.org> <20210102035440.0d5aacea@primarylaptop.localdomain> <87lfdbbpsz.fsf@gnu.org> X-Mailer: Claws Mail 3.17.8 (GTK+ 2.24.32; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/+RcF3e6XP5ME.nR1Lwyy6Hv"; protocol="application/pgp-signature"; micalg=pgp-sha512 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 45517-done Cc: 45517-done@debbugs.gnu.org, Denis 'GNUtoo' Carikli 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_/+RcF3e6XP5ME.nR1Lwyy6Hv Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Hi Mathieu, On Sat, 02 Jan 2021 11:23:24 +0100 Mathieu Othacehe wrote: > > Thanks a lot, that works fine. =20 >=20 > Glad it works! Maybe we should consider creating a > gnu/system/images/lime.scm file in the future. Sure. I think that Allwinner boards are all similar enough in booting that we cou= ld just have a gnu/system/images/allwinner.scm to support them all--except for the u-boot package reference they are all the same. Later Allwinner boards added a reference to an alternative boot sector[1] for the first part of u-boot into boot ROM *in addition* to the old one--so even those would still work! Long story short, all of the Allwinner boards can inherit from the same allwinner image type--with only the u-boot package (not even the bootloader-installer) swapped out. We could have a gnu/system/images/olinuxino-lime2.scm which would inherit from that common thing somehow (and which would thus have about two lines of source code total). But there's a reason I added OS-WITH-U-BOOT and that's because of things like this. It can adapt any existing operating-system image, swapping out the bootloader by an u-boot with a random u-boot board config name and compile it for a given architecture. It would be nice to have it integrated into the Guix image generation process somehow, if possible. =20 By automatically calling OS-WITH-U-BOOT (as a fallback), we could avoid end= ing up with 1273 similar files in gnu/system/images. Guix would just call os-with-u-boot dynamically to generate those image types at runtime that don't have a special one in that directory. WDYT? [1] https://linux-sunxi.org/Bootable_SD_card#SD_Card_Layout --Sig_/+RcF3e6XP5ME.nR1Lwyy6Hv Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEds7GsXJ0tGXALbPZ5xo1VCwwuqUFAl/yQeUACgkQ5xo1VCww uqWAEQf+O0ukvdacFZaRtZPxOD1KG5VEgeWV/Rd5XJcgQF+leHiQ3RbVWs7JT1VF yRGSceMeq7JSTkQYpKkTfqgVH3u0LvvV1zH5MC7YT5wiH+7IyZzjw1n+wWuJbwNQ f10oj7b5IJSOMEolPaIdyLaoNoNMscUu39iiwJlIWlNFCkPsB+AQziMmiB83hAj6 DPiMvgNqTjhfJGndOPJM5FfIsAEP32xops5gU+x+IXUSASs1aUVLOOpAWlQje0qX PXSyXWTfEFECiZzyn/uP4aSYqji520PTddVzTGXj6lPxpKg1OiWtu+3L+MbLCRgn 86q1VpaCoyXXaj1Nxov1hZVEddimww== =Sp4Y -----END PGP SIGNATURE----- --Sig_/+RcF3e6XP5ME.nR1Lwyy6Hv-- From unknown Thu Aug 14 21:45:05 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 Feb 2021 12: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