Version 3.2.0 - Open source code, new scripts, etc
This commit is contained in:
parent
7ae07eb6e2
commit
35f073149c
|
@ -1,6 +1,15 @@
|
||||||
OpenCore Changelog
|
OpenCore Changelog
|
||||||
==================
|
==================
|
||||||
|
|
||||||
|
#### v3.2.0
|
||||||
|
|
||||||
|
- Open SOURCE CODE of BINARY \o/
|
||||||
|
- Alter function '201 - Update Opencore ISO file' to download .ISO directly from repository;
|
||||||
|
- Add script in tools - CHECK-IOMMU.sh - Check if your IOMMU are ENABLED;
|
||||||
|
- Update macrecovery tool for Opencore 0.7.7;
|
||||||
|
- Update README;
|
||||||
|
- Adjustments to copyright terms.
|
||||||
|
|
||||||
#### v3.1.0
|
#### v3.1.0
|
||||||
|
|
||||||
- Add support to run macOS in Cloud using this solution with VultR Provider;
|
- Add support to run macOS in Cloud using this solution with VultR Provider;
|
||||||
|
|
|
@ -4,7 +4,7 @@ Install `** FRESH/CLEAN **` Proxmox VE v7.XX - Next, Next & Finish (NNF).
|
||||||
|
|
||||||
Open Proxmox Web Console -> Datacenter > NAME OF YOUR HOST > Shell.
|
Open Proxmox Web Console -> Datacenter > NAME OF YOUR HOST > Shell.
|
||||||
|
|
||||||
Copy, paste and execute.
|
Copy, paste and execute (code below).
|
||||||
|
|
||||||
Voilà, install macOS! This is really and magic **easiest way**!
|
Voilà, install macOS! This is really and magic **easiest way**!
|
||||||
|
|
||||||
|
@ -34,7 +34,8 @@ Voilà, install macOS! This is really and magic **easiest way**!
|
||||||
## Disclaimer
|
## Disclaimer
|
||||||
|
|
||||||
- FOR DEV/STUDENT/TEST ONLY PURPOSES.
|
- FOR DEV/STUDENT/TEST ONLY PURPOSES.
|
||||||
- I'm not responsible for any problem and/or equipment damage or loss of files. Always back up everything before any changes to your computer.
|
- I'm not responsible for any problem and/or equipment damage or loss of files.
|
||||||
|
- Always back up everything before any changes to your computer.
|
||||||
|
|
||||||
## Demonstration (in Portuguese/Brazil)
|
## Demonstration (in Portuguese/Brazil)
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
#!/bin/bash
|
||||||
|
#
|
||||||
|
# Script: check-iommu-enabled.sh
|
||||||
|
# Goal: Check if IOMMU are Enabled in your system
|
||||||
|
#
|
||||||
|
# Author: Gabriel Luchina
|
||||||
|
# https://luchina.com.br
|
||||||
|
# 20220128T1112
|
||||||
|
|
||||||
|
if [ `dmesg | grep -e DMAR -e IOMMU | wc -l` -gt 0 ]
|
||||||
|
then
|
||||||
|
echo "IOMMU Enabled"
|
||||||
|
else
|
||||||
|
echo "IOMMU NOT Enabled"
|
||||||
|
echo "Check file /etc/default/grub contains 'intel_iommu=on' in 'GRUB_CMDLINE_LINUX_DEFAULT' line"
|
||||||
|
fi
|
Loading…
Reference in New Issue