Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e7bb086f2b | ||
|
|
49e099034c | ||
|
|
169c468e4a | ||
|
|
e648dd8da8 | ||
|
|
0d503fe8c7 | ||
|
|
7d4443f40f |
32
CHANGELOG.md
32
CHANGELOG.md
@@ -1,6 +1,38 @@
|
||||
OpenCore Changelog
|
||||
==================
|
||||
|
||||
#### v2.0.1
|
||||
|
||||
- Fixed Opencore ISO disk size which was making booting impossible to install new virtual machines;
|
||||
|
||||
#### v2.0.0
|
||||
|
||||
- Upgrade to Opencore 0.7.6 (December/2021);
|
||||
- Update Lilu (kext);
|
||||
- Update VirtualSMC (kext);
|
||||
- Fully compatible with Intel 12th and activate of all cores (P+E) and HT (Hyper-Threading);
|
||||
|
||||
#### v1.5.1
|
||||
|
||||
- Fix Menu Option - # 200;
|
||||
- Cleaning some codes unnecessary in setup;
|
||||
|
||||
#### v1.5.0
|
||||
|
||||
- Fix QEMU 6.1 Passthrough in PVE 7.1+;
|
||||
- Add option to "only ENTER" for exit osx-setup;
|
||||
|
||||
#### v1.4.0
|
||||
|
||||
- Add option to skip download and create recovery image of macOS;
|
||||
|
||||
#### v1.3.0
|
||||
|
||||
- Add script ```IOMMU-Groups.sh``` in tools;
|
||||
- Add option 'Fix issues to start macOS (stuck at Apple logo) for Proxmox VE v7.1.XX';
|
||||
- Add option 'Add Proxmox VE NO Subscription repository - for beta/non production upgrades';
|
||||
- Remove option 'Activate support for Windows 11 natively'.
|
||||
|
||||
#### v1.2.0
|
||||
|
||||
- Remove PVE/Kernel version from ```osx-setup``` menu;
|
||||
|
||||
Binary file not shown.
@@ -8,7 +8,7 @@ Copy, paste and execute.
|
||||
|
||||
Voilà, install macOS! This is really and magic **easiest way**!
|
||||
|
||||
## COPY & PASTE - in shell of Proxmox
|
||||
## COPY & PASTE - in shell of Proxmox (for Install or Update this solution)
|
||||
|
||||
```
|
||||
/bin/bash -c "$(curl -fsSL https://install.osx-proxmox.com)"
|
||||
|
||||
19
tools/IOMMU-Groups.sh
Executable file
19
tools/IOMMU-Groups.sh
Executable file
@@ -0,0 +1,19 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Script: IOMMU-Groups.sh
|
||||
# Goal: List PCI devices in IOMMU Groups
|
||||
#
|
||||
# Author: Gabriel Luchina
|
||||
# https://luchina.com.br
|
||||
# 20211118T0010
|
||||
|
||||
shopt -s nullglob
|
||||
|
||||
for group in `ls /sys/kernel/iommu_groups/ | sort -V`
|
||||
do
|
||||
echo "IOMMU Group ${group##*/}:"
|
||||
for device in /sys/kernel/iommu_groups/$group/devices/*
|
||||
do
|
||||
echo -e "\t$(lspci -nns ${device##*/})"
|
||||
done
|
||||
done
|
||||
Reference in New Issue
Block a user