From debbugs-submit-bounces@debbugs.gnu.org Sun Oct 07 23:17:35 2018 Received: (at submit) by debbugs.gnu.org; 8 Oct 2018 03:17:35 +0000 Received: from localhost ([127.0.0.1]:39812 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g9M35-0002AV-DL for submit@debbugs.gnu.org; Sun, 07 Oct 2018 23:17:35 -0400 Received: from eggs.gnu.org ([208.118.235.92]:50823) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g9M34-0002AH-FX for submit@debbugs.gnu.org; Sun, 07 Oct 2018 23:17:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g9M2q-0006pz-7j for submit@debbugs.gnu.org; Sun, 07 Oct 2018 23:17:25 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:40588) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1g9M2o-0006pc-K7 for submit@debbugs.gnu.org; Sun, 07 Oct 2018 23:17:19 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60389) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g9M2m-000152-Kn for guix-patches@gnu.org; Sun, 07 Oct 2018 23:17:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g9M2g-0006nL-1v for guix-patches@gnu.org; Sun, 07 Oct 2018 23:17:13 -0400 Received: from cascadia.aikidev.net ([173.255.214.101]:41670) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g9M2X-0006Qx-TN for guix-patches@gnu.org; Sun, 07 Oct 2018 23:17:06 -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 7FEB51AA23 for ; Sun, 7 Oct 2018 20:16:52 -0700 (PDT) From: Vagrant Cascadian To: guix-patches@gnu.org Subject: [PATCH] gnu: u-boot: Update to 2018.09. Date: Sun, 07 Oct 2018 20:16:47 -0700 Message-ID: <875zydyvog.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] 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: text/plain Content-Transfer-Encoding: quoted-printable * gnu/packages/bootloaders.scm (u-boot): Update to 2018.09. (u-boot-tools): Substitute "coverage" for "python-coverage". (u-boot-tools): Update workaround for only 99% test coverage. =2D-- gnu/packages/bootloaders.scm | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm index 4ba9d2e04..e6876d359 100644 =2D-- a/gnu/packages/bootloaders.scm +++ b/gnu/packages/bootloaders.scm @@ -360,7 +360,7 @@ tree binary files. These are board description files u= sed by Linux and BSD.") (define u-boot (package (name "u-boot") =2D (version "2018.07") + (version "2018.09") (source (origin (method url-fetch) (uri (string-append @@ -368,7 +368,7 @@ tree binary files. These are board description files u= sed by Linux and BSD.") "u-boot-" version ".tar.bz2")) (sha256 (base32 =2D "1m7nw64mxflpc6sqvnz2kb5fxfkb4mrpy8b1wi15dcwipj4dy44z"))= )) + "0s122kyz1svvs2yjzj4j9qravl3ra4vn0fjqgski7rlczqyg56w3")))) (native-inputs `(("bc" ,bc) ("bison" ,bison) @@ -403,6 +403,12 @@ also initializes the boards (RAM etc).") (("/bin/false") (which "false"))) (substitute* "tools/dtoc/fdt_util.py" (("'cc'") "'gcc'")) + (substitute* "tools/patman/test_util.py" + ;; python-coverage is simply called coverage in guix. + (("python-coverage") "coverage") + ;; Allow for only 99% test coverage. + ;; TODO: Find out why that is needed. + (("if coverage !=3D '100%':") "if not int(coverage.rstrip('%= ')) >=3D 99:")) (substitute* "test/run" ;; Make it easier to find test failures. (("#!/bin/bash") "#!/bin/bash -x") @@ -417,8 +423,6 @@ also initializes the boards (RAM etc).") (("def test_ctrl_c") "@pytest.mark.skip(reason=3D'Guix has problems with SIGINT') def test_ctrl_c")) =2D (substitute* "tools/binman/binman.py" =2D (("100%") "99%")) ; TODO: Find out why that is needed. #t)) (replace 'configure (lambda* (#:key make-flags #:allow-other-keys) =2D-=20 2.19.1 --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEARYKAB0WIQRlgHNhO/zFx+LkXUXcUY/If5cWqgUCW7rMHwAKCRDcUY/If5cW qrxnAP4yV4oxmAMzPsxEiRBxKGGRnHIWxN2AAYOw+8AQ3+KxVwD/S7oY0gIvZ4NJ zprm963u0e46swWQ+4urpvXXFRAYiQI= =U4ox -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 11 16:23:42 2018 Received: (at 32982) by debbugs.gnu.org; 11 Oct 2018 20:23:42 +0000 Received: from localhost ([127.0.0.1]:45543 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gAhUi-0001kc-9H for submit@debbugs.gnu.org; Thu, 11 Oct 2018 16:23:40 -0400 Received: from wout1-smtp.messagingengine.com ([64.147.123.24]:59569) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gAhUg-0001kU-Bc for 32982@debbugs.gnu.org; Thu, 11 Oct 2018 16:23:38 -0400 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.west.internal (Postfix) with ESMTP id 6A0ADC59; Thu, 11 Oct 2018 16:23:37 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute4.internal (MEProxy); Thu, 11 Oct 2018 16:23:37 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:in-reply-to; s=mesmtp; bh=05XbkTrNSxJ5GEWg5tADX0MD SwBUN3RF59xd3nRd2o0=; b=Nn1pHyowtnB+fiHhIXkUb/o9tQtCNa7Tu8NlbOlK n+yg2qpnTi1g93sB0oK5yk+JfLaOee/aUiFmiKVVtr0fUnKbLbGxJiVBABmSVwkM jOZLoU//588clP6PkNmUVO34xLvPADfo3oLsd9Kf9X+snVqur3rGDE7krvJuw7Fu Chg= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=05XbkT rNSxJ5GEWg5tADX0MDSwBUN3RF59xd3nRd2o0=; b=ydqxBQdKsKQi2hrC4s7skC 88MK2FVgUlS1hnJEWW2H2CsYv39XR7Jxe+CJv2Rp8n88Swd2vqeRuoVEEGOQ2suj aI4D4wh7u8GZEhZDVsDF5dzVl52U5WBkjb5LhBDbYRe4eyZjwnzUqodXHwVxUvce Rmpe9YG+f/gY1OA5WBchtMSbEMllneg//GqqswA1a0oxkRj1CtxcrdaXson3t99u xxI40cwqdLICfiWyztVkT8qqOLC9GSKbsg2fUXxT642VfmuSxlKbPO7lehBxenz0 hQLQGli1UABaUjt15OZAZuqICQPFGY3xHvxcjJrcvO7toxFP2hVDMlftIuJi07zg == X-ME-Sender: X-ME-Proxy: Received: from localhost (unknown [172.58.224.212]) by mail.messagingengine.com (Postfix) with ESMTPA id A74DD102DE; Thu, 11 Oct 2018 16:23:36 -0400 (EDT) Date: Thu, 11 Oct 2018 16:23:35 -0400 From: Leo Famulari To: Vagrant Cascadian Subject: Re: [bug#32982] [PATCH] gnu: u-boot: Update to 2018.09. Message-ID: <20181011202335.GB7201@jasmine.lan> References: <875zydyvog.fsf@aikidev.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="Y7xTucakfITjPcLV" Content-Disposition: inline In-Reply-To: <875zydyvog.fsf@aikidev.net> User-Agent: Mutt/1.10.1 (2018-07-13) X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 32982 Cc: 32982@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 (-) --Y7xTucakfITjPcLV Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Oct 07, 2018 at 08:16:47PM -0700, Vagrant Cascadian wrote: > * gnu/packages/bootloaders.scm (u-boot): Update to 2018.09. > (u-boot-tools): Substitute "coverage" for "python-coverage". > (u-boot-tools): Update workaround for only 99% test coverage. Thanks! > (define u-boot > (package > (name "u-boot") > - (version "2018.07") > + (version "2018.09") For me, u-boot 2018.09 fails to build like this: ------ $ ./pre-inst-env guix build -e '(@@ (gnu packages bootloaders) u-boot)' [...] starting phase `configure' source directory: "/tmp/guix-build-u-boot-2018.09.drv-0/u-boot-2018.09" (re= lative from build: ".") build directory: "/tmp/guix-build-u-boot-2018.09.drv-0/u-boot-2018.09" configure flags: ("CONFIG_SHELL=3D/gnu/store/rbrandv7anzjxqkr40d7fkanzssslk= 4b-bash-minimal-4.4.19/bin/bash" "SHELL=3D/gnu/store/rbrandv7anzjxqkr40d7fk= anzssslk4b-bash-minimal-4.4.19/bin/bash" "--prefix=3D/gnu/store/c7smjwgl5xd= mgcwgr1zf2clg97mln2kl-u-boot-2018.09" "--enable-fast-install" "--build=3Dx8= 6_64-unknown-linux-gnu") /gnu/store/rbrandv7anzjxqkr40d7fkanzssslk4b-bash-minimal-4.4.19/bin/bash: .= /configure: No such file or directory Backtrace: 4 (primitive-load "/gnu/store/z4953ip3kra5rz7abqxn98w66in=E2=80= =A6") In ice-9/eval.scm: 191:35 3 (_ _) In srfi/srfi-1.scm: 640:9 2 (for-each # =E2=80=A6) In /gnu/store/f95ghy8mx00fc22nrvswvnpqlfdkf2nk-module-import/guix/build/gnu= -build-system.scm: 799:31 1 (_ _) In /gnu/store/f95ghy8mx00fc22nrvswvnpqlfdkf2nk-module-import/guix/build/uti= ls.scm: 616:6 0 (invoke _ . _) /gnu/store/f95ghy8mx00fc22nrvswvnpqlfdkf2nk-module-import/guix/build/utils.= scm:616:6: In procedure invoke: Throw to key `srfi-34' with args `(#)'. builder for `/gnu/store/azfpx7n5ds8lwg6jnpwnfgd018d3wc0d-u-boot-2018.09.drv= ' failed with exit code 1 build of /gnu/store/azfpx7n5ds8lwg6jnpwnfgd018d3wc0d-u-boot-2018.09.drv fai= led View build log at '/var/log/guix/drvs/az/fpx7n5ds8lwg6jnpwnfgd018d3wc0d-u-b= oot-2018.09.drv.bz2'. guix build: error: build failed: build of `/gnu/store/azfpx7n5ds8lwg6jnpwnf= gd018d3wc0d-u-boot-2018.09.drv' failed ------ Is that expected? --Y7xTucakfITjPcLV Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEsFFZSPHn08G5gDigJkb6MLrKfwgFAlu/sUcACgkQJkb6MLrK fwiyKQ/9GyPzC8zDxashmQHeHKA/x75qxxXh3k8pEFwwhGe/MDtFoD0pP2HdqWBy GB2JEM7nUxnxJqH42B2wXClnKI0AUZz9XyxDqm0OGuCawKaVF8NM/ohuTszy8mPC Ow8E5PiiNJfogoufF7v7NjTYol4Cl88LrnnYERkakKqz5NQuYyvIY5JLdfFPm8qh 7P6Lwi3cYP64WWGDoxhASyzfWBJk9owSXIKSEbgoo2ri3G86QyH4i9tQ7cOmIy3y BPHvlcRYOxgfC2TNjfszSBpcs48iexRWumqJmvoAIHbFRYmxhxyOPFNWZP8xu++k 0m9DaykukLUWsCqv2WQPc95Z0TCoZPNUWUS08BTAydZ+DazQA908AngwB6DzQR5T By6MbGMaxrdpL/hMuxPjXYileNBnwtaFLEupZF1zX/1kSzfpcYng5gkkuRSeskf4 XfqDd8Bl5kZtZD8dRuOhwWcMGBgKiIj17UYXv9TWBFDtQEfx0osyeJOW+khv+Px+ ZnvPYXXVCDCStLvQgLwiXkWWeJqQ0S9txlqr3E7NrEGX9dLr/WEPei03B+OBQKd/ 9IZ4+CYwzT1kx0/lD+NrHXzVVMA9POmbcxnVP78dpBO2PTOBEbYKDm8I3wp1e1Oy WOYWJSQ7p3eZ2YabPQb584Bse9cdmP3aa43YpHt6Pdf+0EF/MvE= =43df -----END PGP SIGNATURE----- --Y7xTucakfITjPcLV-- From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 11 16:57:33 2018 Received: (at 32982) by debbugs.gnu.org; 11 Oct 2018 20:57:33 +0000 Received: from localhost ([127.0.0.1]:45575 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gAi1V-0002Z4-0d for submit@debbugs.gnu.org; Thu, 11 Oct 2018 16:57:33 -0400 Received: from cascadia.aikidev.net ([173.255.214.101]:34482) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gAi1T-0002Ys-6D for 32982@debbugs.gnu.org; Thu, 11 Oct 2018 16:57: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 091F91AA23; Thu, 11 Oct 2018 13:57:25 -0700 (PDT) From: Vagrant Cascadian To: Leo Famulari Subject: Re: [bug#32982] [PATCH] gnu: u-boot: Update to 2018.09. In-Reply-To: <20181011202335.GB7201@jasmine.lan> References: <875zydyvog.fsf@aikidev.net> <20181011202335.GB7201@jasmine.lan> Date: Thu, 11 Oct 2018 13:57:21 -0700 Message-ID: <875zy842xa.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: 32982 Cc: 32982@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-10-11, Leo Famulari wrote: > On Sun, Oct 07, 2018 at 08:16:47PM -0700, Vagrant Cascadian wrote: >> * gnu/packages/bootloaders.scm (u-boot): Update to 2018.09. >> (u-boot-tools): Substitute "coverage" for "python-coverage". >> (u-boot-tools): Update workaround for only 99% test coverage. > > Thanks! > >> (define u-boot >> (package >> (name "u-boot") >> - (version "2018.07") >> + (version "2018.09") > > For me, u-boot 2018.09 fails to build like this: > > ------ > $ ./pre-inst-env guix build -e '(@@ (gnu packages bootloaders) u-boot)' > [...] > starting phase `configure' > source directory: "/tmp/guix-build-u-boot-2018.09.drv-0/u-boot-2018.09" (relative from build: ".") I think u-boot itself is not a buildable package; there are numerous packages that inherit from u-boot, such as u-boot-tools, u-boot-wandboard, u-boot-novena, u-boot-cubieboard, etc. Since each u-boot build is specific to a given target, I'm not sure what a meaningful build of u-boot would be. live well, vagrant --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEARYKAB0WIQRlgHNhO/zFx+LkXUXcUY/If5cWqgUCW7+5MgAKCRDcUY/If5cW quM0AP91eXtIGaNzCl1bU630fxRfxqrJJ+yW7Pq0VkcGmKVN5QEA+yYkQWjGYH6y OAkFOOMUkGTU06p24OkpgaAwaHJliwo= =3tJ3 -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 11 17:29:55 2018 Received: (at 32982-done) by debbugs.gnu.org; 11 Oct 2018 21:29:56 +0000 Received: from localhost ([127.0.0.1]:45602 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gAiWp-0003NV-LC for submit@debbugs.gnu.org; Thu, 11 Oct 2018 17:29:55 -0400 Received: from wout1-smtp.messagingengine.com ([64.147.123.24]:54745) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gAiWn-0003NL-Un for 32982-done@debbugs.gnu.org; Thu, 11 Oct 2018 17:29:54 -0400 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.west.internal (Postfix) with ESMTP id 799D5B1E; Thu, 11 Oct 2018 17:29:52 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute4.internal (MEProxy); Thu, 11 Oct 2018 17:29:52 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:in-reply-to; s=mesmtp; bh=ArES6KzUBNnKQfdhQVm4zZc/ RGieTCq40JiqMVKm+Bk=; b=wW95eYrmpuMlLjzJovyMS7Cs3/ODLqLa9Y0355eX Y/58q4OBDQw6m6nVHAKV8K67gjeeG75Zi5UaH3H8x282DYXKHZBas2Cjgt4hgSR8 p2Kbt4aGOoJIWTepTlAvL9nVnTHvmp4V8dEDUDgBBeT6Eaqd/DjNSCGoIuZqdqQh cZk= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=ArES6K zUBNnKQfdhQVm4zZc/RGieTCq40JiqMVKm+Bk=; b=rjlCZLp9MCltH3L9Q90b4w BuOsASQBGjD5+GK+PiEQymvKXSI1PZKsTKuinbIxpJumnQlhA8o0Vjk0BLsJ4lwd 4NacZ/BuWZaHHoFy2maYf8TgbMeMH81rcz8/a+7qwDhshyRf2+UmWCCalyiXtELG 8Q++xz1wUZiHRiAZRT9mdjX6HqPk3tpBSHMnG/be/cLGWPJFWxncXT23D9XhvM5W uLG9J76IZKIc9IWxX1QaR6u8PcywUqBVyqowJioYzEi9nYq8YxX2YOunpSJtLBgw 21OrFtsfFvj/wcHp7wFOdioNg4Ke8UAn8vAskXBgnNV0/rEn/lY5LiT4G20bEc2g == X-ME-Sender: X-ME-Proxy: Received: from localhost (unknown [172.58.224.212]) by mail.messagingengine.com (Postfix) with ESMTPA id 713E7E4532; Thu, 11 Oct 2018 17:29:51 -0400 (EDT) Date: Thu, 11 Oct 2018 17:29:50 -0400 From: Leo Famulari To: Vagrant Cascadian Subject: Re: [bug#32982] [PATCH] gnu: u-boot: Update to 2018.09. Message-ID: <20181011212950.GA31470@jasmine.lan> References: <875zydyvog.fsf@aikidev.net> <20181011202335.GB7201@jasmine.lan> <875zy842xa.fsf@aikidev.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="/04w6evG8XlLl3ft" Content-Disposition: inline In-Reply-To: <875zy842xa.fsf@aikidev.net> User-Agent: Mutt/1.10.1 (2018-07-13) X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 32982-done Cc: 32982-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 (-) --/04w6evG8XlLl3ft Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 11, 2018 at 01:57:21PM -0700, Vagrant Cascadian wrote: > I think u-boot itself is not a buildable package; there are numerous > packages that inherit from u-boot, such as u-boot-tools, > u-boot-wandboard, u-boot-novena, u-boot-cubieboard, etc. >=20 > Since each u-boot build is specific to a given target, I'm not sure what > a meaningful build of u-boot would be. Thanks for the explanation. Pushed as e1d1ec143569d35eb3e222e6f49d1db0e5423be9 --/04w6evG8XlLl3ft Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEsFFZSPHn08G5gDigJkb6MLrKfwgFAlu/wM4ACgkQJkb6MLrK fwhIDw/8Cp0ZVmUSLL+JSUR1Zq4V+eUrkyeLdAYnjiA01+owa43bTVujgL6s2Otn fXt3SFoPq5zzQwlzNb6aAOCdghiPuxmJM6uaJWRcIWn+6VohfiJ1TSJyz7uylGlF 8lyWtvWmD8lZEKHNTOI0L0YgMofvPSAXJYQO4oS8hszNukgNTUmBE/1Twv9bazkV GkkTPBTENFSIpc3dYy9gF8sTO4l2FSaand4FCbwyRg2ybuVPAPsAhJxTK9WoSC80 iSgIZiyBiWPTy0OQIQHQG9MThWMkuJIHfZONGyFV2rjaw7PYxAsh7mKVl3qmz3eJ z9W6RvNZ1SSzozZOg/lXiYcaGm9lZwGQD3OuxOc+0JtTgUOyC8CKW+n1D7hjQeiF MHyIVKdZXN9ooxWuZK82NRH9LZxzl9gSiPB9vx+OnSPnPkpqsJcF6EBtJH3xk65I zz2aIGOQL0PCrx8utqO1yqTHTVexRXF+Bq+ZCsh8V3sdsPB/wIW6y9GP1HvHZAwB rXwVEkR6otQJs+Bh9ragEjaUOSoIBo7KYlhFMR1nf56KQdbtjGQ47FiREC9LIuc6 BrMyouJG/gc1LfLBFFNxVYWuG4g2PFK3vIMSKhiSqZcLkPLlDCeP1cKdr66J08fm +2XguEqQpc/wrX30Qcp6G42r6cBoc1Xt3RIzuipL26R69tYexaE= =iNRW -----END PGP SIGNATURE----- --/04w6evG8XlLl3ft-- From unknown Tue Jun 17 22:28:55 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 09 Nov 2018 12:24:09 +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