Message ID | 20181214095322.9592-1-takahiro.akashi@linaro.org |
---|---|
State | Accepted |
Delegated to: | Tom Rini |
Headers | show |
Series | None | expand |
On 14.12.18 10:53, AKASHI Takahiro wrote: > With this patch which adds a removable USB mass storage to a list > of bootable devices, USB boot is supported in distro boot if UEFI is > configured. > > Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org> Reviewied-by: Alexander Graf <agraf@suse.de> Alex > --- > 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 fedc4662fa18..392839f7ad59 100644 > --- a/include/configs/qemu-arm.h > +++ b/include/configs/qemu-arm.h > @@ -24,6 +24,7 @@ > #define CONFIG_ENV_SIZE SZ_64K > > #define BOOT_TARGET_DEVICES(func) \ > + func(USB, usb, 0) \ > func(SCSI, scsi, 0) \ > func(DHCP, dhcp, na) > >
On 12/23/18 3:26 AM, Alexander Graf wrote: > > > On 14.12.18 10:53, AKASHI Takahiro wrote: >> With this patch which adds a removable USB mass storage to a list >> of bootable devices, USB boot is supported in distro boot if UEFI is >> configured. >> >> Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org> > > Reviewied-by: Alexander Graf <agraf@suse.de> Hello Tom, this patch is in status new since December. My understanding was that this patch can be merged while patch 1/2 of this series is superseded. Best regards Heinrich > > > Alex > >> --- >> 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 fedc4662fa18..392839f7ad59 100644 >> --- a/include/configs/qemu-arm.h >> +++ b/include/configs/qemu-arm.h >> @@ -24,6 +24,7 @@ >> #define CONFIG_ENV_SIZE SZ_64K >> >> #define BOOT_TARGET_DEVICES(func) \ >> + func(USB, usb, 0) \ >> func(SCSI, scsi, 0) \ >> func(DHCP, dhcp, na) >> >> >
On Fri, Dec 14, 2018 at 06:53:22PM +0900, AKASHI Takahiro wrote: > With this patch which adds a removable USB mass storage to a list > of bootable devices, USB boot is supported in distro boot if UEFI is > configured. > > Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org> Applied to u-boot/master, thanks!
diff --git a/include/configs/qemu-arm.h b/include/configs/qemu-arm.h index fedc4662fa18..392839f7ad59 100644 --- a/include/configs/qemu-arm.h +++ b/include/configs/qemu-arm.h @@ -24,6 +24,7 @@ #define CONFIG_ENV_SIZE SZ_64K #define BOOT_TARGET_DEVICES(func) \ + func(USB, usb, 0) \ func(SCSI, scsi, 0) \ func(DHCP, dhcp, na)
With this patch which adds a removable USB mass storage to a list of bootable devices, USB boot is supported in distro boot if UEFI is configured. Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org> --- include/configs/qemu-arm.h | 1 + 1 file changed, 1 insertion(+)