diff options
author | John Marino <marino@FreeBSD.org> | 2014-09-09 19:18:28 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2014-09-09 19:18:28 +0000 |
commit | efd0d5fc6e279984ac610a97d55f4ccd5ce5016b (patch) | |
tree | 48719dd433652ddad1dbe95ebb24f153c6b77090 /emulators/virtualbox-ose-legacy/files/patch-src-VBox-Devices-Bus-DevPciIch9.cpp | |
parent | Add USES=libtool (diff) |
Remove virtualbox-*-legacy due to lack of staging
The virtualbox-ose-kmod-legacy port is staged, but it has no purpose
without the unstaged virtualbox-ose-legacy port, so both ports have
been removed at the same time.
Notes
Notes:
svn path=/head/; revision=367769
Diffstat (limited to 'emulators/virtualbox-ose-legacy/files/patch-src-VBox-Devices-Bus-DevPciIch9.cpp')
-rw-r--r-- | emulators/virtualbox-ose-legacy/files/patch-src-VBox-Devices-Bus-DevPciIch9.cpp | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/emulators/virtualbox-ose-legacy/files/patch-src-VBox-Devices-Bus-DevPciIch9.cpp b/emulators/virtualbox-ose-legacy/files/patch-src-VBox-Devices-Bus-DevPciIch9.cpp deleted file mode 100644 index 6354f1e1ca65..000000000000 --- a/emulators/virtualbox-ose-legacy/files/patch-src-VBox-Devices-Bus-DevPciIch9.cpp +++ /dev/null @@ -1,22 +0,0 @@ -Fix ich9 bios to correctly configure pci bridge1 and pci bridge2 - -avg: I think that it is a valid report, the patch is not perfect, but -avg: it fixes the problem for most configurations and demonstrates the problem well -avg: the explanation for them is that FreeBSD (unlike Linux and maybe other OSes) -avg: entirely relies on platform doing correct bus numbering -avg: currently we can not do any re-numbering/corrections - -See: http://article.gmane.org/gmane.os.freebsd.devel.emulation/10438 -Submitted by: Gustau Perez i Querol <gperez@entel.upc.edu> ---- src/VBox/Devices/Bus/DevPciIch9.cpp.orig 2012-06-15 21:22:15.000000000 +0200 -+++ src/VBox/Devices/Bus/DevPciIch9.cpp 2012-09-02 14:17:49.804118887 +0200 -@@ -1812,7 +1812,8 @@ - PICH9PCIBUS pChildBus = PDMINS_2_DATA(pBridge->pDevIns, PICH9PCIBUS); - ich9pciInitBridgeTopology(pGlobals, pChildBus); - } -- PCIDevSetByte(pBridgeDev, VBOX_PCI_SUBORDINATE_BUS, pGlobals->uBus); -+ PCIDevSetByte(pBridgeDev, VBOX_PCI_PRIMARY_BUS, 0); -+ PCIDevSetByte(pBridgeDev, VBOX_PCI_SUBORDINATE_BUS, (pGlobals->uBus)-1); - Log2(("ich9pciInitBridgeTopology: for bus %p: primary=%d secondary=%d subordinate=%d\n", - pBus, - PCIDevGetByte(pBridgeDev, VBOX_PCI_PRIMARY_BUS), |