diff options
| author | Alexander Graf <[email protected]> | 2022-02-27 13:20:32 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-04-04 14:53:26 -0400 |
| commit | 5c9b420ada3b4f2a08da4789571f0ea373881565 (patch) | |
| tree | 0cd006b3f21cdfea248b839ab950fd81ad36aaee /include | |
| parent | 01f1ab67f38882dc7665a0a6eca4bbeba6d84f81 (diff) | |
qemu-arm: Enable NVMe for distro boot
We already support the NVMe commands and PCIe backend in the QEMU target,
so let's make it easy for anyone to consume them and enable NVMe distro
boot along the way!
With this patch, I can put an NVMe backed disk image into my QEMU VM and
have it automatically load a UEFI target blob.
Signed-off-by: Alexander Graf <[email protected]>
Reviewed-by: Mark Kettenis <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/qemu-arm.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/configs/qemu-arm.h b/include/configs/qemu-arm.h index 4f042e52cb7..3ad1cf3232d 100644 --- a/include/configs/qemu-arm.h +++ b/include/configs/qemu-arm.h @@ -39,6 +39,12 @@ # define BOOT_TARGET_VIRTIO(func) #endif +#if CONFIG_IS_ENABLED(CMD_NVME) +# define BOOT_TARGET_NVME(func) func(NVME, nvme, 0) +#else +# define BOOT_TARGET_NVME(func) +#endif + #if CONFIG_IS_ENABLED(CMD_DHCP) # define BOOT_TARGET_DHCP(func) func(DHCP, dhcp, na) #else @@ -49,6 +55,7 @@ BOOT_TARGET_USB(func) \ BOOT_TARGET_SCSI(func) \ BOOT_TARGET_VIRTIO(func) \ + BOOT_TARGET_NVME(func) \ BOOT_TARGET_DHCP(func) #include <config_distro_bootcmd.h> |
