Migrate to Opencore 0.8.7 and update to support PVE v7.3

This commit is contained in:
Gabriel 2022-12-06 14:05:30 -03:00
parent 9aa6ea1c60
commit 3293601ff8
3 changed files with 9 additions and 8 deletions

Binary file not shown.

View File

@ -1,6 +1,6 @@
# OSX-PROXMOX - Run macOS on ANY Computer - AMD & Intel
Install `** FRESH/CLEAN **` Proxmox VE v7.0.XX ~ 7.2.XX - Next, Next & Finish (NNF).
Install `** FRESH/CLEAN **` Proxmox VE v7.0.XX ~ 7.3.XX - Next, Next & Finish (NNF).
Open Proxmox Web Console -> Datacenter > NAME OF YOUR HOST > Shell.
@ -29,10 +29,11 @@ sudo spctl --master-disable
* macOS Ventura - 13
## Versions of Proxmox VE Supported
* v7.0.XX ~ 7.1.XX
* v7.0.XX ~ 7.3.XX
* v7.3 not fully tested yet
## Opencore version
* November/2022 - 0.8.6 with SIP Enabled, DMG only signed by Apple and all features of securities.
* December/2022 - 0.8.7 with SIP Enabled, DMG only signed by Apple and all features of securities.
## Cloud Support (Yes, install your Hackintosh in Cloud Environment)
- [VultR](https://www.vultr.com/?ref=9035565-8H)
@ -46,7 +47,7 @@ sudo spctl --master-disable
## Demonstration (in Portuguese/Brazil)
https://youtu.be/G51z390XYMA
https://youtu.be/dil6iRWiun0
\* Please use CC with Auto Translate to English for your convenience.

8
setup
View File

@ -48,8 +48,8 @@ SCRIPT_DIR=/root/OSX-PROXMOX
LOGDIR=${SCRIPT_DIR}/logs
TMPDIR=${SCRIPT_DIR}/tmp
ISODIR=/var/lib/vz/template/iso/
HACKPXVERSION="202211091136"
OCVERSION="0.8.6"
HACKPXVERSION="202212061400"
OCVERSION="0.8.7"
DEFAULT_VM_PREFIX="HACK-"
DEFAULT_RAM_SIZE=4096
@ -108,7 +108,7 @@ then
if [ ${OSX_PLATFORM} == "AMD" ]
then
if [ `pveversion | grep -i 7.2 | wc -l` -eq 1 ]
if [ `pveversion | grep -i '7.2\|7.3' | wc -l` -eq 1 ]
then
sed -i 's/GRUB_CMDLINE_LINUX_DEFAULT="quiet"/GRUB_CMDLINE_LINUX_DEFAULT="quiet amd_iommu=on iommu=pt video=vesafb:off video=efifb:off initcall_blacklist=sysfb_init"/g' /etc/default/grub
else
@ -118,7 +118,7 @@ then
if [ ${OSX_PLATFORM} == "INTEL" ]
then
if [ `pveversion | grep -i 7.2 | wc -l` -eq 1 ]
if [ `pveversion | grep -i '7.2\|7.3' | wc -l` -eq 1 ]
then
sed -i 's/GRUB_CMDLINE_LINUX_DEFAULT="quiet"/GRUB_CMDLINE_LINUX_DEFAULT="quiet intel_iommu=on iommu=pt video=vesafb:off video=efifb:off initcall_blacklist=sysfb_init"/g' /etc/default/grub
else