Message ID | 1542084684-24893-1-git-send-email-sumit.garg@linaro.org |
---|---|
State | Accepted |
Commit | 5266db16eeba3318e2d0a6e27eb91c0b494d0de4 |
Headers | show |
Series | [v2] qemu-arm: Enable VirtIO distro target | expand |
On 13.11.18 05:51, Sumit Garg wrote: > With -device virtio-blk-device,drive=hd0, it could detect distro boot > target. > > Signed-off-by: Sumit Garg <sumit.garg@linaro.org> Reviewed-by: Alexander Graf <agraf@suse.de> > --- > > Changes in v2: > Change boot order to SCSI; VIRTIO; DHCP as DHCP is quiet slow, so kept quite :) Alex > as last boot option. > > Depends on https://patchwork.ozlabs.org/patch/995524/ which adds VirtIO > distro boot command. > > include/configs/qemu-arm.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/include/configs/qemu-arm.h b/include/configs/qemu-arm.h > index fedc466..33dcce0 100644 > --- a/include/configs/qemu-arm.h > +++ b/include/configs/qemu-arm.h > @@ -25,6 +25,7 @@ > > #define BOOT_TARGET_DEVICES(func) \ > func(SCSI, scsi, 0) \ > + func(VIRTIO, virtio, 0) \ > func(DHCP, dhcp, na) > > #include <config_distro_bootcmd.h> >
Hi Tom, On Tue, 13 Nov 2018 at 14:33, Alexander Graf <agraf@suse.de> wrote: > > > > On 13.11.18 05:51, Sumit Garg wrote: > > With -device virtio-blk-device,drive=hd0, it could detect distro boot > > target. > > > > Signed-off-by: Sumit Garg <sumit.garg@linaro.org> > > Reviewed-by: Alexander Graf <agraf@suse.de> > > > --- > > > > Changes in v2: > > Change boot order to SCSI; VIRTIO; DHCP as DHCP is quiet slow, so kept > > quite :) > > > Alex > > > as last boot option. > > > > Depends on https://patchwork.ozlabs.org/patch/995524/ which adds VirtIO > > distro boot command. > > With above dependency patch merged in upstream, I think it should be ok to merge this one too. -Sumit > > include/configs/qemu-arm.h | 1 + > > 1 file changed, 1 insertion(+) > > > > diff --git a/include/configs/qemu-arm.h b/include/configs/qemu-arm.h > > index fedc466..33dcce0 100644 > > --- a/include/configs/qemu-arm.h > > +++ b/include/configs/qemu-arm.h > > @@ -25,6 +25,7 @@ > > > > #define BOOT_TARGET_DEVICES(func) \ > > func(SCSI, scsi, 0) \ > > + func(VIRTIO, virtio, 0) \ > > func(DHCP, dhcp, na) > > > > #include <config_distro_bootcmd.h> > >
On Tue, Nov 13, 2018 at 10:21:24AM +0530, Sumit Garg wrote: > With -device virtio-blk-device,drive=hd0, it could detect distro boot > target. > > Signed-off-by: Sumit Garg <sumit.garg@linaro.org> > Reviewed-by: Alexander Graf <agraf@suse.de> Applied to u-boot/master, thanks! -- Tom
diff --git a/include/configs/qemu-arm.h b/include/configs/qemu-arm.h index fedc466..33dcce0 100644 --- a/include/configs/qemu-arm.h +++ b/include/configs/qemu-arm.h @@ -25,6 +25,7 @@ #define BOOT_TARGET_DEVICES(func) \ func(SCSI, scsi, 0) \ + func(VIRTIO, virtio, 0) \ func(DHCP, dhcp, na) #include <config_distro_bootcmd.h>
With -device virtio-blk-device,drive=hd0, it could detect distro boot target. Signed-off-by: Sumit Garg <sumit.garg@linaro.org> --- Changes in v2: Change boot order to SCSI; VIRTIO; DHCP as DHCP is quiet slow, so kept as last boot option. Depends on https://patchwork.ozlabs.org/patch/995524/ which adds VirtIO distro boot command. include/configs/qemu-arm.h | 1 + 1 file changed, 1 insertion(+)