From debbugs-submit-bounces@debbugs.gnu.org Sun Apr 29 03:29:23 2018 Received: (at submit) by debbugs.gnu.org; 29 Apr 2018 07:29:23 +0000 Received: from localhost ([127.0.0.1]:42473 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fCglu-0003Bx-Qw for submit@debbugs.gnu.org; Sun, 29 Apr 2018 03:29:23 -0400 Received: from eggs.gnu.org ([208.118.235.92]:33480) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fCgls-0003Bl-Is for submit@debbugs.gnu.org; Sun, 29 Apr 2018 03:29:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fCglm-000432-81 for submit@debbugs.gnu.org; Sun, 29 Apr 2018 03:29:15 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.0 required=5.0 tests=BAYES_20 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:40985) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fCglm-00042Z-3P for submit@debbugs.gnu.org; Sun, 29 Apr 2018 03:29:14 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52671) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fCglk-00082M-UW for guix-patches@gnu.org; Sun, 29 Apr 2018 03:29:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fCglg-0003ug-0d for guix-patches@gnu.org; Sun, 29 Apr 2018 03:29:12 -0400 Received: from cascadia.aikidev.net ([173.255.214.101]:39808) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fCglf-0003fe-Mn for guix-patches@gnu.org; Sun, 29 Apr 2018 03:29:07 -0400 Received: from localhost (unknown [IPv6:2600:3c01:e000:21:21:21:0:100b]) (Authenticated sender: vagrant@cascadia.debian.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id 6C7791B6D9 for ; Sun, 29 Apr 2018 00:28:43 -0700 (PDT) From: Vagrant Cascadian To: guix-patches@gnu.org Subject: [PATCH 0/3] Support u-boot on wandboard and mx6cuboxi Date: Sun, 29 Apr 2018 00:28:26 -0700 Message-ID: <87k1sqo4it.fsf@aikidev.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="==-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) 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: -6.0 (------) --==-=-= Content-Type: multipart/mixed; boundary="=-=-=" --=-=-= Content-Type: text/plain The following patches enable u-boot builds for wandboard and mx6cuboxi. Both u-boot builds require the inclusion of the "SPL" file. Tested on Wandboard Solo and Hummingboard-i1. live well, vagrant Vagrant Cascadian (3): gnu: make-u-boot-package: Install 'SPL' files also. gnu: Add u-boot-wandboard. gnu: Add u-boot-mx6cuboxi. gnu/packages/bootloaders.scm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-make-u-boot-package-Install-SPL-files-also.patch Content-Transfer-Encoding: quoted-printable From=201e1705ae3167c1e3eb149a7e30837b6fdca2aed1 Mon Sep 17 00:00:00 2001 From: Vagrant Cascadian Date: Sun, 29 Apr 2018 04:33:00 +0000 Subject: [PATCH 1/3] gnu: make-u-boot-package: Install 'SPL' files also. * gnu/packages/bootloaders.scm (make-u-boot-package)[arguments]: Add 'SPL' files to the files installed during custom 'install phase. =2D-- gnu/packages/bootloaders.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm index 4350ff3a5..fc4570c2e 100644 =2D-- a/gnu/packages/bootloaders.scm +++ b/gnu/packages/bootloaders.scm @@ -408,7 +408,7 @@ also initializes the boards (RAM etc).") (libexec (string-append out "/libexec")) (uboot-files (append (find-files "." ".*\\.(bin|efi|img|spl= |itb|dtb)$") =2D (find-files "." "^MLO$")))) + (find-files "." "^(MLO|SPL)$")))) (mkdir-p libexec) (install-file ".config" libexec) (for-each =2D-=20 2.17.0 --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0002-gnu-Add-u-boot-wandboard.patch Content-Transfer-Encoding: quoted-printable From=2030a21d289cf6a49f2a80ff66fb969b3bac511a08 Mon Sep 17 00:00:00 2001 From: Vagrant Cascadian Date: Sun, 29 Apr 2018 04:38:05 +0000 Subject: [PATCH 2/3] gnu: Add u-boot-wandboard. * gnu/packages/bootloaders.scm (u-boot-wandboard): New variable. =2D-- gnu/packages/bootloaders.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm index fc4570c2e..6a9fa36f2 100644 =2D-- a/gnu/packages/bootloaders.scm +++ b/gnu/packages/bootloaders.scm @@ -463,6 +463,9 @@ also initializes the boards (RAM etc).") (define-public u-boot-nintendo-nes-classic-edition (make-u-boot-package "Nintendo_NES_Classic_Edition" "arm-linux-gnueabihf= ")) =20 +(define-public u-boot-wandboard + (make-u-boot-package "wandboard" "arm-linux-gnueabihf")) + (define-public vboot-utils (package (name "vboot-utils") =2D-=20 2.17.0 --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0003-gnu-Add-u-boot-mx6cuboxi.patch Content-Transfer-Encoding: quoted-printable From=20d86d0b14a4885328f09b4454d078a2b0df6c041a Mon Sep 17 00:00:00 2001 From: Vagrant Cascadian Date: Sun, 29 Apr 2018 06:39:10 +0000 Subject: [PATCH 3/3] gnu: Add u-boot-mx6cuboxi. * gnu/packages/bootloaders.scm (u-boot-mx6cuboxi): New variable. =2D-- gnu/packages/bootloaders.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm index 6a9fa36f2..0db6ad3f6 100644 =2D-- a/gnu/packages/bootloaders.scm +++ b/gnu/packages/bootloaders.scm @@ -466,6 +466,9 @@ also initializes the boards (RAM etc).") (define-public u-boot-wandboard (make-u-boot-package "wandboard" "arm-linux-gnueabihf")) =20 +(define-public u-boot-mx6cuboxi + (make-u-boot-package "mx6cuboxi" "arm-linux-gnueabihf")) + (define-public vboot-utils (package (name "vboot-utils") =2D-=20 2.17.0 --=-=-=-- --==-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEcDardHbDotegGFCHt4uC1IFLkbYFAlrldBoACgkQt4uC1IFL kbYLOBAAhzux3ovS/6JvxljibOJGVdANVXiTODDahd4+TNxMtmh/7sQ1Y4H9aur+ wGvXSeZ4dJaMAqVuK8kXFJV4Hxrau3KT6H+gf/BnBOCTfXMSdPQWoOuKuz1XdkQL d0qXjCTNcyOnQdkrQHuzi8snO3yDOGfdEjfEYiRYq9EJe/QZi0RXdKBG7rlJTrxs WIM1jWC7V5zsoAiQBuyuEdYUstNH6u2xMZUzaZzzmzVO0mtuDE69XVXmLI9dMV+f ejpLj8V3uG6b3pT0Wlfj4rulfwWB18m4X7XbFS3G4xiRl3X3mhm96sSnoIHkEvVv JYFSd/aLkDMVMiHGb7KEDprpJa3ZqLTOu3Hpx+dMTUfw1z3tUJS/euzauFkFdhns q2+iz7tejXDtHT1abzkZWUKJTT3T+tpiCFcAijrWcQzTUEp0PUH04cF5ckpHEKdj LeKa8Q9DsSHgOa/lNgjeuF46+H1XrIM8AsZPt1+WfgiCdQ8v6owBtf4fEHkGRTB+ mGD3DK9sv4Ycr9PQi+WBahlOTY9tZ9gc6aA1jL0A3dOcgaZA+GV3839CJg0E48pk LATLmTzBbHa9XdKXFvaxj+6gPhlm0/hHRHZqmLTh2IFzwJrAYf3wyW4vboc5wIcF wlzoFvPF/6whnEQj5OHiMGCjETnkiv6C6e4PxeTr6RC+z5OxS9A= =CV5G -----END PGP SIGNATURE----- --==-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Sun Apr 29 11:26:24 2018 Received: (at 31308-done) by debbugs.gnu.org; 29 Apr 2018 15:26:24 +0000 Received: from localhost ([127.0.0.1]:43016 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fCoDW-0007vU-Pm for submit@debbugs.gnu.org; Sun, 29 Apr 2018 11:26:24 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:57708) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fCoDU-0007vL-FZ for 31308-done@debbugs.gnu.org; Sun, 29 Apr 2018 11:26:20 -0400 Received: from localhost (178.113.249.174.wireless.dyn.drei.com [178.113.249.174]) by dd26836.kasserver.com (Postfix) with ESMTPSA id D659C33601B2; Sun, 29 Apr 2018 17:26:18 +0200 (CEST) Date: Sun, 29 Apr 2018 17:26:16 +0200 From: Danny Milosavljevic To: Vagrant Cascadian Subject: Re: [bug#31308] [PATCH 0/3] Support u-boot on wandboard and mx6cuboxi Message-ID: <20180429172616.43b04a46@scratchpost.org> In-Reply-To: <87k1sqo4it.fsf@aikidev.net> References: <87k1sqo4it.fsf@aikidev.net> X-Mailer: Claws Mail 3.16.0 (GTK+ 2.24.31; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; boundary="Sig_/Xj/0_Fg3NS_pNjPwAhPdQ3C"; protocol="application/pgp-signature" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 31308-done Cc: 31308-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_/Xj/0_Fg3NS_pNjPwAhPdQ3C Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Hi, thanks! I've applied these patches to master. Just a heads-up, there are now files "SPL" and "spl" (with different conten= ts) being installed. That's fine as long as we are using a case-sensitive = filesystem, which we probably are. Let's just keep an eye on it. --Sig_/Xj/0_Fg3NS_pNjPwAhPdQ3C Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEds7GsXJ0tGXALbPZ5xo1VCwwuqUFAlrl5BgACgkQ5xo1VCww uqW28gf/VFu1OBjCAOp99xUv/4v9rseMHE6fW8aGPufqd4A3YVy/QwLWyIpL2zMt zme+FClmoRmTAa3SWMBvYVu1clpqcT+/AfxiXL1iBzr0SS+ixc/INj1lMbEjNsaY kM7XTUUIjyR2X02RtZdmbvs7f6D0QfZlU4dVeMUkqrtNA2B8t/KHMNbtU+8DtaWi VTMoamuwNsvpPtySHs9iMsJ8por5H/V1yfv7ghaSStxJtiHy+5+gK3ieYrCsRjyb WsFha/M/3PuBlcAwx1DvEfhf+4Xad+aGut/PcJ8vIQsK6SIcEpq7OLDw7DPYC2La QR5TyJPMtwpagksWTpZVNsh9r5u0wQ== =zPF+ -----END PGP SIGNATURE----- --Sig_/Xj/0_Fg3NS_pNjPwAhPdQ3C-- From debbugs-submit-bounces@debbugs.gnu.org Mon Apr 30 01:41:57 2018 Received: (at 31308) by debbugs.gnu.org; 30 Apr 2018 05:41:58 +0000 Received: from localhost ([127.0.0.1]:43354 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fD1ZV-0006WS-M6 for submit@debbugs.gnu.org; Mon, 30 Apr 2018 01:41:57 -0400 Received: from cascadia.aikidev.net ([173.255.214.101]:45089) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fD1ZT-0006WG-RP for 31308@debbugs.gnu.org; Mon, 30 Apr 2018 01:41:56 -0400 Received: from localhost (unknown [IPv6:2600:3c01:e000:21:21:21:0:100b]) (Authenticated sender: vagrant@cascadia.debian.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id CAD7A1B6D9; Sun, 29 Apr 2018 22:41:48 -0700 (PDT) From: Vagrant Cascadian To: Danny Milosavljevic Subject: Re: [bug#31308] [PATCH 0/3] Support u-boot on wandboard and mx6cuboxi In-Reply-To: <20180429172616.43b04a46@scratchpost.org> References: <87k1sqo4it.fsf@aikidev.net> <20180429172616.43b04a46@scratchpost.org> Date: Sun, 29 Apr 2018 22:41:15 -0700 Message-ID: <87h8ntntdw.fsf@aikidev.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 31308 Cc: 31308@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 (-) --=-=-= Content-Type: text/plain On 2018-04-29, Danny Milosavljevic wrote: > I've applied these patches to master. Thanks for being the one to apply my first contribution to guix! :) > Just a heads-up, there are now files "SPL" and "spl" (with different > contents) being installed. That's fine as long as we are using a > case-sensitive filesystem, which we probably are. I think the two matches are against files the ending in .spl and files that are exactly "SPL", so this shouldn't be much of an issue, even with a case-insensitive filesystem. I imagine many other things would break with a case-insensitive filesystem, too... live well, vagrant --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEcDardHbDotegGFCHt4uC1IFLkbYFAlrmrHsACgkQt4uC1IFL kbbVIw//SfvIaEeDMEB3/1HgkpSIf9Qn9RzqvcUH1wfGoTwBH1vvw0JOrBBnjJte 0R0ZqSNK1NCK/PDkM1HaqYG4Jkx0A5CyL5WDzXiV6vxADYr8a7H0ZSPzJR/fpn/h DhzU5aNRW1aBpt9EE4ARicVd588uPYnrmr6X3CUZ8Kg+LFB5wg0LayPy1jcXtrm2 kMFh4loxLm6U9Ii5gxQRFHS9kFIraQrowm3KpaOpoOMJ6h2JShGUXZUJFC08z09i Tkz+vgJc4Ce54C+K0GLMjL6PpxnxONH2A6h19NGHCparyFyswmjRmtp56z0oTQmo IwP46/fcM3Wk4gJDAAcskWoXKMtQBnMiICsMgs/QLtOjPEg706NjHcIvYJh7UikW MNMr3hUsHznomSbwuTEVHQ2NGLVFhwdoG4erRLxRB+L16gonb4t7I17ivU/EJMEF LcbkpxcPZsQ8OkfnJgy3HQ/RTg1MqvcJYYFg3GRrxWtpx9P/UIFDNLq4GAWY0tOV 2TRDcnPvcTPuOTpkVoRhmLCok7X4aCe3za/SfQdVHXCb9aDu4Qe0BZ3KkrKJW6fQ p+Tj14Xza2VZfxb/weA/KMrBubLc+bJCgCcThGwvz1IyaccEUHTgJ3UkSzftl1SM FMyPCM8KN7yCtLGuKUgtRp9ATs0PnYtDZRP2pxPYJgsc27NlJLQ= =KaId -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Mon Apr 30 17:01:05 2018 Received: (at 31308) by debbugs.gnu.org; 30 Apr 2018 21:01:05 +0000 Received: from localhost ([127.0.0.1]:44370 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fDFuz-0000Ve-0b for submit@debbugs.gnu.org; Mon, 30 Apr 2018 17:01:05 -0400 Received: from hera.aquilenet.fr ([185.233.100.1]:40936) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fDFuy-0000VW-20 for 31308@debbugs.gnu.org; Mon, 30 Apr 2018 17:01:04 -0400 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 66B91130BC; Mon, 30 Apr 2018 23:01:03 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id S4sVN7m7XaZh; Mon, 30 Apr 2018 23:01:02 +0200 (CEST) Received: from ribbon (unknown [IPv6:2a01:e0a:1d:7270:af76:b9b:ca24:c465]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 93CE611FB1; Mon, 30 Apr 2018 23:01:02 +0200 (CEST) From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) To: Vagrant Cascadian Subject: Re: [bug#31308] [PATCH 0/3] Support u-boot on wandboard and mx6cuboxi References: <87k1sqo4it.fsf@aikidev.net> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 11 =?utf-8?Q?Flor=C3=A9al?= an 226 de la =?utf-8?Q?R?= =?utf-8?Q?=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-pc-linux-gnu Date: Mon, 30 Apr 2018 23:01:01 +0200 In-Reply-To: <87k1sqo4it.fsf@aikidev.net> (Vagrant Cascadian's message of "Sun, 29 Apr 2018 00:28:26 -0700") Message-ID: <876048v27m.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: 31308 Cc: 31308@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: -0.0 (/) Hi Vagrant, Vagrant Cascadian skribis: > The following patches enable u-boot builds for wandboard and mx6cuboxi. > > Both u-boot builds require the inclusion of the "SPL" file. > > Tested on Wandboard Solo and Hummingboard-i1. Did you install these U-Boot packages on these boards, or did you go as far as running GuixSD on them? Thank you for these first patches! :-) Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Mon Apr 30 17:18:34 2018 Received: (at 31308) by debbugs.gnu.org; 30 Apr 2018 21:18:34 +0000 Received: from localhost ([127.0.0.1]:44387 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fDGBt-0000uD-BL for submit@debbugs.gnu.org; Mon, 30 Apr 2018 17:18:34 -0400 Received: from cascadia.aikidev.net ([173.255.214.101]:45268) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fDGBr-0000u0-1F for 31308@debbugs.gnu.org; Mon, 30 Apr 2018 17:18:31 -0400 Received: from localhost (unknown [IPv6:2600:3c01:e000:21:21:21:0:100b]) (Authenticated sender: vagrant@cascadia.debian.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id A90B21B6D9; Mon, 30 Apr 2018 14:18:24 -0700 (PDT) From: Vagrant Cascadian To: Ludovic =?utf-8?Q?Court=C3=A8s?= Subject: Re: [bug#31308] [PATCH 0/3] Support u-boot on wandboard and mx6cuboxi In-Reply-To: <876048v27m.fsf@gnu.org> References: <87k1sqo4it.fsf@aikidev.net> <876048v27m.fsf@gnu.org> Date: Mon, 30 Apr 2018 14:18:11 -0700 Message-ID: <87efiwo0ks.fsf@aikidev.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 31308 Cc: 31308@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 (-) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 2018-04-30, Ludovic Court=C3=A8s wrote: > Vagrant Cascadian skribis: >> The following patches enable u-boot builds for wandboard and mx6cuboxi. >> >> Both u-boot builds require the inclusion of the "SPL" file. >> >> Tested on Wandboard Solo and Hummingboard-i1. > > Did you install these U-Boot packages on these boards, or did you go as > far as running GuixSD on them? I only went as far as using guix to build the bootloaders and manually install them, and tested that they successfully booted... Debian. :) The boards I tested on were only single-core with 512MB of ram, so would be a bit difficult to run GuixSD on. However, this u-boot build should also work on the Wandboard Quad or CuBox-i4, which have quad-core CPUs and 2-4GB of ram, which might actually be useable with GuixSD. There's also been recent good progress on free graphics drivers for this family of SoC. > Thank you for these first patches! :-) Thanks for having such a nice project to contribute patches to! I've got some work-in-progress on a few more boards, but haven't had a chance to boot test them, and some with non-trivial changes (at least with my rank beginner guile skills)... will submit eventually. :) live well, vagrant --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEcDardHbDotegGFCHt4uC1IFLkbYFAlrniBMACgkQt4uC1IFL kbZz0w/+It3aUC1uLxhCEdmtb0ayCUkcccwD1GzNfKft2O6Ms2xux7bcim6oO9dh Ux/cCqQqVoTCxnsJZvTLmsG9z+beNvthlDEtEVqBrsVDL7L6n/bpGqj07Uc7iwsk JT5l1J/rLTBdlJn/DSblM4DI7t9KScAm+EQ5AQb2jygkQHPieC8bMSD/s34GAF7i zakNvy1009NPX4nXp+khyazbGA2vItQYVDoefnlPc5nAdaimCgAAb6XIPvqM/jFk d/EyBZ4T0282V800SHeJDv3VLQYEXzoYeBkTLkyx3V2njOoXOCVJWzzttEqD1nYi HzLQXv/h+5ZEThV942Fo8y0238HwXTL0dFWEpM0gYJCpZ1aIIfSuo9M7TUx0H+28 CHnErzQd6t/eBbBnCcQXBaZj3HV54SQRKJ9xzmdltx1iYO+V/3eDCIwFFVsZZ51Z f7MPoZ3AaMeE3FhqKt4Avzub6oQ6qIrwOBJbLPJytWZQ6O0Dfvy7InAjLZWujZC2 rgwMG/ljefgRfoTQBd4xe0uJnsRFiZLQT6b54qOouPq94wFxeDx7WsonEzevAfs4 5n7bHJT/9dSQ1QLKsLE9A0WI0njki4tD0yGXQvCuV/fNqw6/VY064jWsZLs7DRa2 fTjl8d8SZZlpcDzai2vnyW8ToS0kgMH77wyIgkklPDk8gyVNoNk= =w1fF -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Tue May 01 15:55:19 2018 Received: (at 31308) by debbugs.gnu.org; 1 May 2018 19:55:19 +0000 Received: from localhost ([127.0.0.1]:46067 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fDbMt-0003Up-9w for submit@debbugs.gnu.org; Tue, 01 May 2018 15:55:19 -0400 Received: from hera.aquilenet.fr ([185.233.100.1]:51114) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fDbMp-0003Uf-Ii for 31308@debbugs.gnu.org; Tue, 01 May 2018 15:55:17 -0400 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 4AA0613991; Tue, 1 May 2018 21:55:14 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id h0b6U2DUx5OH; Tue, 1 May 2018 21:55:13 +0200 (CEST) Received: from ribbon (unknown [IPv6:2a01:e0a:1d:7270:af76:b9b:ca24:c465]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 21D5F51B; Tue, 1 May 2018 21:55:13 +0200 (CEST) From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) To: Vagrant Cascadian Subject: Re: [bug#31308] [PATCH 0/3] Support u-boot on wandboard and mx6cuboxi References: <87k1sqo4it.fsf@aikidev.net> <876048v27m.fsf@gnu.org> <87efiwo0ks.fsf@aikidev.net> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 12 =?utf-8?Q?Flor=C3=A9al?= an 226 de la =?utf-8?Q?R?= =?utf-8?Q?=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-pc-linux-gnu Date: Tue, 01 May 2018 21:55:12 +0200 In-Reply-To: <87efiwo0ks.fsf@aikidev.net> (Vagrant Cascadian's message of "Mon, 30 Apr 2018 14:18:11 -0700") Message-ID: <87muxjqhgf.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: 31308 Cc: 31308@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: -0.0 (/) Hello, Vagrant Cascadian skribis: > On 2018-04-30, Ludovic Court=C3=A8s wrote: >> Vagrant Cascadian skribis: >>> The following patches enable u-boot builds for wandboard and mx6cuboxi. >>> >>> Both u-boot builds require the inclusion of the "SPL" file. >>> >>> Tested on Wandboard Solo and Hummingboard-i1. >> >> Did you install these U-Boot packages on these boards, or did you go as >> far as running GuixSD on them? > > I only went as far as using guix to build the bootloaders and manually > install them, and tested that they successfully booted... Debian. :) Heh, not too bad! ;-) > The boards I tested on were only single-core with 512MB of ram, so would > be a bit difficult to run GuixSD on. Yeah. I hope we=E2=80=99ll do better in the future in that regard. > However, this u-boot build should also work on the Wandboard Quad or > CuBox-i4, which have quad-core CPUs and 2-4GB of ram, which might > actually be useable with GuixSD. There's also been recent good progress > on free graphics drivers for this family of SoC. [...] > I've got some work-in-progress on a few more boards, but haven't had a > chance to boot test them, and some with non-trivial changes (at least > with my rank beginner guile skills)... will submit eventually. :) Heh, sounds exciting. :-) Thank you, Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Tue May 01 16:42:38 2018 Received: (at 31308) by debbugs.gnu.org; 1 May 2018 20:42:38 +0000 Received: from localhost ([127.0.0.1]:46130 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fDc6g-0006d3-DB for submit@debbugs.gnu.org; Tue, 01 May 2018 16:42:38 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:36402) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fDc6e-0006cv-Nr for 31308@debbugs.gnu.org; Tue, 01 May 2018 16:42:37 -0400 Received: from localhost (178.113.235.197.wireless.dyn.drei.com [178.113.235.197]) by dd26836.kasserver.com (Postfix) with ESMTPSA id DF8C13360129; Tue, 1 May 2018 22:42:34 +0200 (CEST) Date: Tue, 1 May 2018 22:42:29 +0200 From: Danny Milosavljevic To: Vagrant Cascadian Subject: Re: [bug#31308] [PATCH 0/3] Support u-boot on wandboard and mx6cuboxi Message-ID: <20180501224229.1520d136@scratchpost.org> In-Reply-To: <87efiwo0ks.fsf@aikidev.net> References: <87k1sqo4it.fsf@aikidev.net> <876048v27m.fsf@gnu.org> <87efiwo0ks.fsf@aikidev.net> X-Mailer: Claws Mail 3.16.0 (GTK+ 2.24.31; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; boundary="Sig_/6X3ecTZvVXZJn0Hgzo.TEHf"; protocol="application/pgp-signature" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 31308 Cc: Ludovic =?ISO-8859-1?Q?Court=E8s?= , 31308@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_/6X3ecTZvVXZJn0Hgzo.TEHf Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable For an eventual u-boot-installer, how do you install u-boot on wandboard? And how do we detect that we have to use this kind of installation method b= ased on u-boot's .config ? For comparison, for sunxi, it's: .config contains CONFIG_SYS_SOC=3D"sunxi" =3D> install via "dd if=3Du-boot-= sunxi-with-spl.bin of=3D/dev/sdX bs=3D1024 seek=3D8". --Sig_/6X3ecTZvVXZJn0Hgzo.TEHf Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEds7GsXJ0tGXALbPZ5xo1VCwwuqUFAlro0TUACgkQ5xo1VCww uqV76wf+Lcwr3FpL7GreH8VMC8/YGaXCWOzeZoCYSqaiV/EShmj66WVIMn3lO3YI sQ+qcPYPDHholRN/5tPbeixjSp2QUD0ZCu6171bI5IUgGmRAgNwp3I42R8tj4pzu J3NefNE+ovNQ6V4RgryFxdV3KKMxEX0TJERx8eqIRRvGueA4JVZd0IxzJqbqqOPy +qI7DhzbNgYJn7vRvczPU4vo2KFOeKW2TUOWHTIt/lrjgZNQRYBwqu3DFZXOgvOX uU4r7YsLnlv5zIGjLOw5F3cgIgqGmds7kJGl6jUpaY9iU0Lhiu7/t8IOZsFWYCJv mgp50IsK+8MLY9+hQ3fmCL3vew255w== =ssMX -----END PGP SIGNATURE----- --Sig_/6X3ecTZvVXZJn0Hgzo.TEHf-- From debbugs-submit-bounces@debbugs.gnu.org Tue May 01 17:42:00 2018 Received: (at 31308) by debbugs.gnu.org; 1 May 2018 21:42:00 +0000 Received: from localhost ([127.0.0.1]:46158 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fDd28-0001VL-5q for submit@debbugs.gnu.org; Tue, 01 May 2018 17:42:00 -0400 Received: from cascadia.aikidev.net ([173.255.214.101]:45564) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fDd26-0001V6-4k for 31308@debbugs.gnu.org; Tue, 01 May 2018 17:41:58 -0400 Received: from localhost (unknown [IPv6:2600:3c01:e000:21:21:21:0:100b]) (Authenticated sender: vagrant@cascadia.debian.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id 686D91B6D9; Tue, 1 May 2018 14:41:50 -0700 (PDT) From: Vagrant Cascadian To: Danny Milosavljevic Subject: Re: [bug#31308] [PATCH 0/3] Support u-boot on wandboard and mx6cuboxi In-Reply-To: <20180501224229.1520d136@scratchpost.org> References: <87k1sqo4it.fsf@aikidev.net> <876048v27m.fsf@gnu.org> <87efiwo0ks.fsf@aikidev.net> <20180501224229.1520d136@scratchpost.org> Date: Tue, 01 May 2018 14:41:38 -0700 Message-ID: <87tvrruk8d.fsf@aikidev.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 31308 Cc: Ludovic =?utf-8?Q?Court=C3=A8s?= , 31308@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 (-) --=-=-= Content-Type: text/plain On 2018-05-01, Danny Milosavljevic wrote: > For an eventual u-boot-installer, how do you install u-boot on wandboard? > > And how do we detect that we have to use this kind of installation method based on u-boot's .config ? An interesting idea... I had thought about making an SD image either as a separate target, or integrating it into u-boot-BOARD for targets that support booting from SD. > For comparison, for sunxi, it's: > > .config contains CONFIG_SYS_SOC="sunxi" => install via "dd if=u-boot-sunxi-with-spl.bin of=/dev/sdX bs=1024 seek=8". I've been using: https://salsa.debian.org/debian/u-boot/blob/master/debian/u-boot-imx.README.Debian Which pretty much comes down to: dd conv=fsync,notrunc if=SPL of=DEVICE|IMAGEFILE bs=1k seek=1 dd conv=fsync,notrunc if=u-boot.img of=DEVICE|IMAGEFILE bs=1k seek=69 That works on wandboard and mx6cuboxi, as well as several other imx6 targets. The novena target requires u-boot.img to be copied to the first partition with a fat or ext filesystem, and only the SPL is written to the raw device. With usbarmory (imx5), only the u-boot.img portion is installed directly to the raw device at the offset above; there is no SPL. CONFIG_SPL=y seems to be the best indicator that it needs SPL, and as far as I know with CONFIG_MX[5,6]=y SPL is always installed to the same offset. It's less obvious to me comparing other configuration options what determines which method is needed for u-boot.img. Maybe with recent u-boot versions, it's possible to use either an offset or read it from a filesystem with a single image; I didn't have much luck with that in the past. I'll experiment a little more and see what I can figure out. live well, vagrant --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEcDardHbDotegGFCHt4uC1IFLkbYFAlro3xIACgkQt4uC1IFL kbaDExAAgEbf71BdSanAaVVaKNtVcJl+KoIbeOy5osvjJDb/6sbWUu6oVGiVAPKR 8l3z1COf98d2krJhOl345iIsKeNxm9WfKIbM222tl2EeMLuZFuvoFdC/LNZGGb3j cEoyPUuQWWxNqAtaa1hJD472Tm9AOLLFzYOSj2iu/fmF4dFgyhf76llzS+rHAdTy u8aTMjHQOIOW89PlQi7X6pMzLrSH/ZD8dmcFiI+nEzr9HS021M0rYLNk/+Bv3W9u A5atmbWRE8QpgUBzzHJ5FYI3rbLG89eRoZ8ticuiZ8qTwDoRLZ5K3uPo6utrm1tk 9lznqaYThEgv9khBGnki00xYnvl6IwRSPfU74doVDstIqf7fygSGE0VCTXRVy6lN UhKhi9Y+XjFLBEvBumQ7opZ4Yx5KURV+3m8Gl5e/PF1nUn4Vus7JUeFttZA/4he8 LPD2GhGEBP32GaoGktEuOMygQ7C11FZffFvdxJdjgIhOrTnooza6rkNNjX1nnlS3 W2QF8t9qQMYkfxzllQtthx1UHy9vZWDnUlNrF0806aKfuhM4FV6ZEdEqUOIB81Wz vnhGmKn0DrztUQrtqyFwJ3Yf0/8mc4W2jVB0lRN7OM0neOxKpj6GDbExUi1JZyXk 75tf++qacQPw0Dg1gKOEZNgT6dAUvu3BLGz+RyaraDniaVkVSEU= =NU7a -----END PGP SIGNATURE----- --=-=-=-- From unknown Sat Jun 14 18:55:02 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 30 May 2018 11:24:04 +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