From: Gerd Hoffmann Date: Tue, 13 Oct 2020 09:10:19 +0000 (+0200) Subject: usb boot: add xhci mmio example X-Git-Tag: rel-1.15.0~19 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=58a44be024f69d2e4d2b58553529230abdd3935e;p=seabios.git usb boot: add xhci mmio example Signed-off-by: Gerd Hoffmann Message-id: 20201013091019.22029-1-kraxel@redhat.com --- diff --git a/src/boot.c b/src/boot.c index bd78fb9..1effd80 100644 --- a/src/boot.c +++ b/src/boot.c @@ -423,7 +423,9 @@ int bootprio_find_usb(struct usbdevice_s *usbdev, int lun) { if (!CONFIG_BOOTORDER) return -1; - // Find usb - for example: /pci@i0cf8/usb@1,2/storage@1/channel@0/disk@0,0 + // Find usb - examples: + // pci: /pci@i0cf8/usb@1,2/storage@1/channel@0/disk@0,0 + // mmio: /sysbus-xhci@00000000fe900000/storage@1/channel@0/disk@0,0 char desc[256], *p; if (usbdev->hub->cntl->pci)