Skip to content

Commit

Permalink
installer: also disable GK701HIDDevice on Big Sur
Browse files Browse the repository at this point in the history
  • Loading branch information
osy committed Sep 13, 2020
1 parent 912d19d commit 24e44d9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Installer/scripts/install_kexts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ do
echo "PlistPath: $info"
$PLIST_BUDDY -c "Add :Kernel:Add:$i:PlistPath string $info" "$CONFIG"
base=`basename $kext`
# Brcm4360_Injector should be blocked in Big Sur
if [ $base == "AirPortBrcm4360_Injector.kext" ]; then
# Kexts which should be blocked in Big Sur
if [ $base == "AirPortBrcm4360_Injector.kext" -o $base == "GK701HIDDevice.kext" ]; then
# TODO: better way of doing this
$PLIST_BUDDY -c "Add :Kernel:Add:$i:MaxKernel string 19.9.9" "$CONFIG"
fi
base="${base/.kext/}"
Expand Down

0 comments on commit 24e44d9

Please sign in to comment.