qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [SeaBIOS PATCH] boot: fix fw_dev_path pattern for q35-pcihost
@ 2013-05-28 12:28 Amos Kong
  2013-05-28 12:36 ` Paolo Bonzini
  2013-05-28 22:59 ` Kevin O'Connor
  0 siblings, 2 replies; 8+ messages in thread
From: Amos Kong @ 2013-05-28 12:28 UTC (permalink / raw)
  To: kevin; +Cc: pbonzini, seabios, qemu-devel

Bootindex string passed from qemu:
 /q35-pcihost@i0cf8/ethernet@2/ethernet-phy@0

We match pci domain by "/pci@i0cf8" in SeaBIOS, but fw_dev_path prefix
of q35 is "/q35-pcihost@i0cf8". So bootindex in qemu commandline
doesn't work if it uses q35 machine type.

This patch fixes the pattern to match both original pc-i440fx & q35

Signed-off-by: Amos Kong <akong@redhat.com>
---
 src/boot.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/boot.c b/src/boot.c
index cd9d784..f30d47e 100644
--- a/src/boot.c
+++ b/src/boot.c
@@ -97,7 +97,7 @@ find_prio(const char *glob)
     return -1;
 }
 
-#define FW_PCI_DOMAIN "/pci@i0cf8"
+#define FW_PCI_DOMAIN "/*pci*@i0cf8"
 
 static char *
 build_pci_path(char *buf, int max, const char *devname, struct pci_device *pci)
-- 
1.8.1.4

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2013-06-02 15:39 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-05-28 12:28 [Qemu-devel] [SeaBIOS PATCH] boot: fix fw_dev_path pattern for q35-pcihost Amos Kong
2013-05-28 12:36 ` Paolo Bonzini
2013-05-28 22:59 ` Kevin O'Connor
2013-05-29  2:33   ` Amos Kong
2013-05-30  1:25     ` Kevin O'Connor
2013-06-02 14:29     ` [Qemu-devel] [SeaBIOS] " Gleb Natapov
2013-06-02 14:59       ` Michael S. Tsirkin
2013-06-02 15:39         ` Gleb Natapov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).