mirror of
https://github.com/luchina-gabriel/OSX-PROXMOX.git
synced 2024-10-31 08:30:57 +01:00
New version of OSX-PROXMOX (v1.3.0) - Please read CHANGELOG for details
This commit is contained in:
parent
a8c2a78c29
commit
7d4443f40f
@ -1,6 +1,13 @@
|
|||||||
OpenCore Changelog
|
OpenCore Changelog
|
||||||
==================
|
==================
|
||||||
|
|
||||||
|
#### 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
|
#### v1.2.0
|
||||||
|
|
||||||
- Remove PVE/Kernel version from ```osx-setup``` menu;
|
- Remove PVE/Kernel version from ```osx-setup``` menu;
|
||||||
|
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
|
Loading…
Reference in New Issue
Block a user