aboutsummaryrefslogtreecommitdiff
path: root/src/boot.c
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2015-06-30 11:07:58 -0400
committerKevin O'Connor <kevin@koconnor.net>2015-07-04 14:22:56 -0400
commit1202f03583f3b8b46e2de6b82630054d53e24801 (patch)
treea7bad11706e8f86ed577511becb42effacbf8a99 /src/boot.c
parent6cfebb4eb13411783b52804999ed6f748e4ad013 (diff)
downloadseabios-hppa-1202f03583f3b8b46e2de6b82630054d53e24801.zip
seabios-hppa-1202f03583f3b8b46e2de6b82630054d53e24801.tar.gz
seabios-hppa-1202f03583f3b8b46e2de6b82630054d53e24801.tar.bz2
bootorder: Update "extra pci root" buses bootorder format to match qemu
The QEMU code will use the prefix "/pci@i0cf8,%x/" for devices on extra pci root buses, so change the SeaBIOS code to match that. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/boot.c')
-rw-r--r--src/boot.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/boot.c b/src/boot.c
index ec59c37..e0f73a3 100644
--- a/src/boot.c
+++ b/src/boot.c
@@ -112,9 +112,9 @@ build_pci_path(char *buf, int max, const char *devname, struct pci_device *pci)
if (pci->parent) {
p = build_pci_path(p, max, "pci-bridge", pci->parent);
} else {
- if (pci->rootbus)
- p += snprintf(p, max, "/pci-root@%x", pci->rootbus);
p += snprintf(p, buf+max-p, "%s", FW_PCI_DOMAIN);
+ if (pci->rootbus)
+ p += snprintf(p, buf+max-p, ",%x", pci->rootbus);
}
int dev = pci_bdf_to_dev(pci->bdf), fn = pci_bdf_to_fn(pci->bdf);