diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..ca970de --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,16 @@ +OpenCore Changelog +================== + +#### v1.1.0 + +- Including support for Proxmox VE v7 family; +- Fix for remove tmp directory; +- Including git for apt install option in install; +- Optimize procedure in 'Download & Create Recovery Image'; +- Add return code for apt update/install in prereqs section and condition to exit/abort; +- Add support to install Windows 11 with TPM and Secure Boot; +- Update EFI ISO for including support to install Nvidia Web Drivers for High Sierra; + +#### v1.0.0 + +- Initial version of OSX-Proxmox Solution diff --git a/EFI/opencore-osx-proxmox-vm.iso b/EFI/opencore-osx-proxmox-vm.iso index eaa0c23..f97baa1 100644 Binary files a/EFI/opencore-osx-proxmox-vm.iso and b/EFI/opencore-osx-proxmox-vm.iso differ diff --git a/README.md b/README.md index 066cf4e..287b725 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ VoilĂ , install macOS! This is really and magic **easiest way**! * macOS Monterey - 12 ## Versions of Proxmox VE Supported -* 7.0-2 ~ 7.0-11 +* 7.XX ## Opencore version * November/2021 - 0.7.5 with SIP Enabled, DMG only signed by Apple and all features of securities. diff --git a/install.sh b/install.sh index cc32d6e..e8e040d 100755 --- a/install.sh +++ b/install.sh @@ -8,13 +8,37 @@ # ######################################################################################################################### +clear + +if [ -e /root/OSX-PROXMOX ]; then rm -rf /root/OSX-PROXMOX; fi; +if [ -e /etc/apt/sources.list.d/pve-enterprise.list ]; then rm -rf /etc/apt/sources.list.d/pve-enterprise.list; fi; + +echo "Waiting install OSX-PROXMOX..." +echo " " + apt update > /tmp/install-osx-proxmox.log 2>> /tmp/install-osx-proxmox.log + +if [ $? -ne 0 ] +then + echo " " + echo "Error with 'apt-get update' ..." + echo "Trying to change /etc/apt/sources.list" + echo " " + + sed -i 's/ftp.br.debian.org/ftp.debian.org/g' /etc/apt/sources.list + + echo "Retrying 'apt-get update' ..." + echo " " + + apt-get update >> /tmp/install-osx-proxmox.log 2>> /tmp/install-osx-proxmox.log + + if [ $? -ne 0 ]; then echo "Error with 'apt-get update' ..."; exit; fi +fi + apt install git -y >> /tmp/install-osx-proxmox.log 2>> /tmp/install-osx-proxmox.log git clone https://github.com/luchina-gabriel/OSX-PROXMOX.git >> /tmp/install-osx-proxmox.log 2>> /tmp/install-osx-proxmox.log -if [ $? -ne 0 ]; then echo "Problem to clone repository from GitHub"; exit; fi; - if [ ! -e /root/OSX-PROXMOX ]; then mkdir -p /root/OSX-PROXMOX; fi; /root/OSX-PROXMOX/setup diff --git a/setup b/setup index d8bc28f..becc10c 100755 Binary files a/setup and b/setup differ