From: "Michael S. Tsirkin" <mst@redhat.com>
To: "Daniel P. Berrangé" <berrange@redhat.com>
Cc: "Philippe Mathieu-Daudé" <philmd@redhat.com>,
"Laszlo Ersek" <lersek@redhat.com>,
imammedo@redhat.com, kraxel@redhat.com, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 00/10] bundle edk2 platform firmware with QEMU
Date: Mon, 11 Mar 2019 08:57:04 -0400 [thread overview]
Message-ID: <20190311085449-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <20190311102801.GM12393@redhat.com>
On Mon, Mar 11, 2019 at 10:28:01AM +0000, Daniel P. Berrangé wrote:
> On Sat, Mar 09, 2019 at 02:20:06AM +0100, Philippe Mathieu-Daudé wrote:
> > On 3/9/19 1:48 AM, Laszlo Ersek wrote:
> > > Repo: https://github.com/lersek/qemu.git
> > > Branch: edk2_build
> > >
> > > This series advances the roms/edk2 submodule to the "edk2-stable201903"
> > > release, and builds and captures platform firmware binaries from that
> > > release. At this point they are meant to be used by both end-users and
> > > by Igor's ACPI unit tests in qtest ("make check").
> > >
> > > Previous discussion:
> > >
> > > [Qemu-devel] bundling edk2 platform firmware images with QEMU
> > > http://mid.mail-archive.com/80f0bae3-e79a-bb68-04c4-1c9c684d95b8@redhat.com
> > > https://lists.gnu.org/archive/html/qemu-devel/2019-03/msg02601.html
> > >
> > > Note that the series was formatted with "--no-binary" (affecting patch
> > > #8), therefore it cannot be applied with "git-am". See the remote
> > > repo/branch reference near the top instead.
> > >
> > > Thanks,
> > > Laszlo
> > >
> > > Laszlo Ersek (10):
> > > roms: lift "edk2-funcs.sh" from "tests/uefi-test-tools/build.sh"
> > > roms/edk2-funcs.sh: require gcc-4.8+ for building i386 and x86_64
> > > tests/uefi-test-tools/build.sh: work around TianoCore#1607
> > > roms/edk2: advance to tag edk2-stable201903
> > > roms/edk2-funcs.sh: add the qemu_edk2_get_thread_count() function
> > > roms/Makefile: replace the $(EFIROM) target with "edk2-basetools"
> > > roms: build edk2 firmware binaries and variable store templates
> > > pc-bios: add edk2 firmware binaries and variable store templates
> > > pc-bios: document the edk2 firmware images; add firmware descriptors
> > > Makefile: install the edk2 firmware images and their descriptors
> > >
> > > Makefile | 17 +-
> > > pc-bios/README | 11 +
> > > pc-bios/descriptors/50-edk2-i386-secure.json | 34 +++
> > > pc-bios/descriptors/50-edk2-x86_64-secure.json | 35 +++
> > > pc-bios/descriptors/60-edk2-aarch64.json | 31 +++
> > > pc-bios/descriptors/60-edk2-arm.json | 31 +++
> > > pc-bios/descriptors/60-edk2-i386.json | 33 +++
> > > pc-bios/descriptors/60-edk2-x86_64.json | 34 +++
> > > pc-bios/edk2-aarch64-code.fd | Bin 0 -> 67108864 bytes
> > > pc-bios/edk2-arm-code.fd | Bin 0 -> 67108864 bytes
> > > pc-bios/edk2-arm-vars.fd | Bin 0 -> 67108864 bytes
> >
> > GitHub moans here:
> >
> > remote: warning: GH001: Large files detected. You may want to try Git
> > Large File Storage - https://git-lfs.github.com.
> > remote: warning: See http://git.io/iEPt8g for more information.
> > remote: warning: File pc-bios/edk2-arm-vars.fd is 64.00 MB; this is
> > larger than GitHub's recommended maximum file size of 50.00 MB
> > remote: warning: File pc-bios/edk2-arm-code.fd is 64.00 MB; this is
> > larger than GitHub's recommended maximum file size of 50.00 MB
> > remote: warning: File pc-bios/edk2-aarch64-code.fd is 64.00 MB; this is
> > larger than GitHub's recommended maximum file size of 50.00 MB
>
> I wonder if this is a such that github isn't handling sparse files
> well, or if they just blindly do this check before they look at the
> actual required storage for the files.
>
> Regards,
> Daniel
Right. But really: can we keep these around compressed?
People's disk space isn't completely free either
(even though it's getting cheaper).
> --
> |: https://berrange.com -o- https://www.flickr.com/photos/dberrange :|
> |: https://libvirt.org -o- https://fstop138.berrange.com :|
> |: https://entangle-photo.org -o- https://www.instagram.com/dberrange :|
next prev parent reply other threads:[~2019-03-11 13:18 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-03-09 0:48 [Qemu-devel] [PATCH 00/10] bundle edk2 platform firmware with QEMU Laszlo Ersek
2019-03-09 0:48 ` [Qemu-devel] [PATCH 01/10] roms: lift "edk2-funcs.sh" from "tests/uefi-test-tools/build.sh" Laszlo Ersek
2019-03-10 15:17 ` Philippe Mathieu-Daudé
2019-03-10 17:23 ` Philippe Mathieu-Daudé
2019-03-11 12:07 ` Eric Blake
2019-03-11 12:11 ` Eric Blake
2019-03-09 0:48 ` [Qemu-devel] [PATCH 02/10] roms/edk2-funcs.sh: require gcc-4.8+ for building i386 and x86_64 Laszlo Ersek
2019-03-10 15:11 ` Philippe Mathieu-Daudé
2019-03-09 0:48 ` [Qemu-devel] [PATCH 03/10] tests/uefi-test-tools/build.sh: work around TianoCore#1607 Laszlo Ersek
2019-03-09 0:48 ` [Qemu-devel] [PATCH 04/10] roms/edk2: advance to tag edk2-stable201903 Laszlo Ersek
2019-03-10 22:10 ` Philippe Mathieu-Daudé
2019-03-09 0:48 ` [Qemu-devel] [PATCH 05/10] roms/edk2-funcs.sh: add the qemu_edk2_get_thread_count() function Laszlo Ersek
2019-03-10 15:13 ` Philippe Mathieu-Daudé
2019-03-09 0:48 ` [Qemu-devel] [PATCH 06/10] roms/Makefile: replace the $(EFIROM) target with "edk2-basetools" Laszlo Ersek
2019-03-09 1:32 ` Philippe Mathieu-Daudé
2019-03-09 1:53 ` Philippe Mathieu-Daudé
2019-03-10 15:16 ` Philippe Mathieu-Daudé
2019-03-09 0:48 ` [Qemu-devel] [PATCH 07/10] roms: build edk2 firmware binaries and variable store templates Laszlo Ersek
2019-03-09 16:48 ` Philippe Mathieu-Daudé
2019-03-10 15:10 ` Philippe Mathieu-Daudé
2019-03-11 12:09 ` Eric Blake
2019-03-10 11:26 ` Philippe Mathieu-Daudé
2019-03-09 0:48 ` [Qemu-devel] [PATCH 08/10] pc-bios: add " Laszlo Ersek
2019-03-09 0:48 ` [Qemu-devel] [PATCH 09/10] pc-bios: document the edk2 firmware images; add firmware descriptors Laszlo Ersek
2019-03-09 0:48 ` [Qemu-devel] [PATCH 10/10] Makefile: install the edk2 firmware images and their descriptors Laszlo Ersek
2019-03-09 1:20 ` [Qemu-devel] [PATCH 00/10] bundle edk2 platform firmware with QEMU Philippe Mathieu-Daudé
2019-03-11 10:28 ` Daniel P. Berrangé
2019-03-11 12:57 ` Michael S. Tsirkin [this message]
2019-03-11 13:00 ` Daniel P. Berrangé
2019-03-11 13:04 ` Michael S. Tsirkin
2019-03-11 13:15 ` Philippe Mathieu-Daudé
2019-03-09 13:10 ` Michal Prívozník
2019-03-11 10:23 ` Daniel P. Berrangé
2019-03-10 3:56 ` Michael S. Tsirkin
2019-03-10 11:21 ` Philippe Mathieu-Daudé
2019-03-11 10:35 ` Daniel P. Berrangé
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190311085449-mutt-send-email-mst@kernel.org \
--to=mst@redhat.com \
--cc=berrange@redhat.com \
--cc=imammedo@redhat.com \
--cc=kraxel@redhat.com \
--cc=lersek@redhat.com \
--cc=philmd@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).