mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
Update to 5.1.12.
This commit is contained in:
parent
3208be4eb7
commit
55eb3c678e
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=429084
@ -2,7 +2,7 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= virtualbox-ose
|
||||
PORTVERSION= 5.1.10
|
||||
PORTVERSION= 5.1.12
|
||||
CATEGORIES= emulators
|
||||
MASTER_SITES= http://download.virtualbox.org/virtualbox/${PORTVERSION}/
|
||||
PKGNAMESUFFIX?= -additions
|
||||
|
@ -1,3 +1,3 @@
|
||||
TIMESTAMP = 1479993983
|
||||
SHA256 (VirtualBox-5.1.10.tar.bz2) = 98073b1b2adee4e6553df73cb5bb6ea8ed7c3a41a475757716fd9400393bea40
|
||||
SIZE (VirtualBox-5.1.10.tar.bz2) = 114912508
|
||||
TIMESTAMP = 1482296738
|
||||
SHA256 (VirtualBox-5.1.12.tar.bz2) = e6f10b1b6f3eb1be2c5223f60569f8ce35468a4354ed53db12f4c9b419393d0d
|
||||
SIZE (VirtualBox-5.1.12.tar.bz2) = 114950292
|
||||
|
@ -2,7 +2,7 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= virtualbox-ose
|
||||
PORTVERSION= 5.1.10
|
||||
PORTVERSION= 5.1.12
|
||||
CATEGORIES= emulators
|
||||
MASTER_SITES= http://download.virtualbox.org/virtualbox/${PORTVERSION}/
|
||||
PKGNAMESUFFIX= -kmod
|
||||
|
@ -1,3 +1,3 @@
|
||||
TIMESTAMP = 1479993983
|
||||
SHA256 (VirtualBox-5.1.10.tar.bz2) = 98073b1b2adee4e6553df73cb5bb6ea8ed7c3a41a475757716fd9400393bea40
|
||||
SIZE (VirtualBox-5.1.10.tar.bz2) = 114912508
|
||||
TIMESTAMP = 1482296738
|
||||
SHA256 (VirtualBox-5.1.12.tar.bz2) = e6f10b1b6f3eb1be2c5223f60569f8ce35468a4354ed53db12f4c9b419393d0d
|
||||
SIZE (VirtualBox-5.1.12.tar.bz2) = 114950292
|
||||
|
@ -2,7 +2,7 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= virtualbox-ose
|
||||
PORTVERSION= 5.1.10
|
||||
PORTVERSION= 5.1.12
|
||||
CATEGORIES= emulators
|
||||
MASTER_SITES= http://download.virtualbox.org/virtualbox/${PORTVERSION}/
|
||||
DISTFILES= VirtualBox-${PORTVERSION}${EXTRACT_SUFX} ${GUESTADDITIONS}
|
||||
|
@ -1,5 +1,5 @@
|
||||
TIMESTAMP = 1479993983
|
||||
SHA256 (VirtualBox-5.1.10.tar.bz2) = 98073b1b2adee4e6553df73cb5bb6ea8ed7c3a41a475757716fd9400393bea40
|
||||
SIZE (VirtualBox-5.1.10.tar.bz2) = 114912508
|
||||
SHA256 (VBoxGuestAdditions_5.1.10.iso) = 29fa0af66a3dd273b0c383c4adee31a52061d52f57d176b67f444698300b8c41
|
||||
SIZE (VBoxGuestAdditions_5.1.10.iso) = 59408384
|
||||
TIMESTAMP = 1482296738
|
||||
SHA256 (VirtualBox-5.1.12.tar.bz2) = e6f10b1b6f3eb1be2c5223f60569f8ce35468a4354ed53db12f4c9b419393d0d
|
||||
SIZE (VirtualBox-5.1.12.tar.bz2) = 114950292
|
||||
SHA256 (VBoxGuestAdditions_5.1.12.iso) = 13a0265cab971ac3e31e83959a68e377c7f014f429fa3a168c86fb2399df4321
|
||||
SIZE (VBoxGuestAdditions_5.1.12.iso) = 59369472
|
||||
|
@ -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),
|
Loading…
Reference in New Issue
Block a user