On Fri, Oct 04, 2019 at 11:37:50AM +0200, Sergio Lopez wrote: > qboot is a minimalist x86 firmware for booting Linux kernels. It does > the mininum amount of work required for the task, and it's able to > boot both PVH images and bzImages without relying on option roms. > > This characteristics make it an ideal companion for the microvm > machine type. > > Signed-off-by: Sergio Lopez <s...@redhat.com> > --- > .gitmodules | 3 +++ > pc-bios/bios-microvm.bin | Bin 0 -> 65536 bytes > roms/Makefile | 6 ++++++ > roms/qboot | 1 + > 4 files changed, 10 insertions(+) > create mode 100755 pc-bios/bios-microvm.bin > create mode 160000 roms/qboot > > diff --git a/.gitmodules b/.gitmodules > index c5c474169d..19792c9a11 100644 > --- a/.gitmodules > +++ b/.gitmodules > @@ -58,3 +58,6 @@ > [submodule "roms/opensbi"] > path = roms/opensbi > url = https://git.qemu.org/git/opensbi.git > +[submodule "roms/qboot"] > + path = roms/qboot > + url = https://github.com/bonzini/qboot > diff --git a/pc-bios/bios-microvm.bin b/pc-bios/bios-microvm.bin > new file mode 100755
Others rom have 644 permissions, should we be aligned or doesn't matter? Anyway this patch LGTM: Reviewed-by: Stefano Garzarella <sgarz...@redhat.com>