Merge pull request #30 from makinbacon21/main

add proxmox v8 support
This commit is contained in:
Gabriel Luchina 2023-07-02 22:16:08 -03:00 committed by GitHub
commit 5348342086
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
# OSX-PROXMOX - Run macOS on ANY Computer - AMD & Intel
Install `** FRESH/CLEAN **` Proxmox VE v7.0.XX ~ 7.4.XX - Next, Next & Finish (NNF).
Install `** FRESH/CLEAN **` Proxmox VE v7.0.XX ~ 8.0.XX - Next, Next & Finish (NNF).
Open Proxmox Web Console -> Datacenter > NAME OF YOUR HOST > Shell.
@ -30,7 +30,7 @@ sudo spctl --master-disable
* macOS Sonoma - 14 (coming soon)
## Versions of Proxmox VE Supported
* v7.0.XX ~ 7.4.XX
* v7.0.XX ~ 8.0.XX
## Opencore version
* May/2023 - 0.9.3 with SIP Enabled, DMG only signed by Apple and all features of securities.

8
setup
View File

@ -33,10 +33,10 @@
clear
if [ `pveversion | grep "pve-manager/7" | wc -l` -ne 1 ]
if [ `pveversion | grep "pve-manager/[7,8]" | wc -l` -ne 1 ]
then
echo "This version of Proxmox Virtual Environment are not supported"
echo "Please, utilize version: 7.XX"
echo "Please, utilize version: 7.XX or 8.XX"
exit
fi
@ -108,7 +108,7 @@ then
if [ ${OSX_PLATFORM} == "AMD" ]
then
if [ `pveversion | grep -i '7.2\|7.3\|7.4' | wc -l` -eq 1 ]
if [ `pveversion | grep -i '7.2\|7.3\|7.4\|8.0' | 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\|7.3\|7.4' | wc -l` -eq 1 ]
if [ `pveversion | grep -i '7.2\|7.3\|7.4\|8.0' | 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