Skip to content

Commit

Permalink
2019.01.24
Browse files Browse the repository at this point in the history
* Update Clover to r4861 (add Boot Chime)
* Update Theme
* Update Kexts
* Update sleep/wake scripts to remove kextunload
  • Loading branch information
tluck committed Jan 24, 2019
1 parent e831fbc commit ccaeaca
Show file tree
Hide file tree
Showing 18 changed files with 517 additions and 45 deletions.
Binary file modified EFI/BOOT/BOOTX64.efi
Binary file not shown.
Binary file modified EFI/CLOVER/CLOVERX64.efi
Binary file not shown.
Binary file added EFI/CLOVER/drivers64UEFI/AudioDxe-64.efi
Binary file not shown.
Binary file modified EFI/CLOVER/drivers64UEFI/SMCHelper-64.efi
Binary file not shown.
Binary file modified EFI/CLOVER/drivers64UEFI/apfs.efi
Binary file not shown.
536 changes: 504 additions & 32 deletions EFI/CLOVER/kexts/Other/AppleALC.kext/Contents/Info.plist

Large diffs are not rendered by default.

Binary file modified EFI/CLOVER/kexts/Other/AppleALC.kext/Contents/MacOS/AppleALC
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>BuildMachineOSBuild</key>
<string>18D32a</string>
<string>18D42</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
Expand Down Expand Up @@ -33,9 +33,9 @@
<key>DTPlatformVersion</key>
<string>GM</string>
<key>DTSDKBuild</key>
<string>18B71</string>
<string>16E185</string>
<key>DTSDKName</key>
<string>macosx10.14</string>
<string>macosx10.12</string>
<key>DTXcode</key>
<string>1010</string>
<key>DTXcodeBuild</key>
Expand All @@ -59,9 +59,9 @@
<key>enableCSO6</key>
<true/>
<key>enableTSO4</key>
<false/>
<true/>
<key>enableTSO6</key>
<false/>
<true/>
<key>maxIntrRate</key>
<integer>7000</integer>
</dict>
Expand Down
Binary file not shown.
Binary file modified EFI/CLOVER/themes/ThinkPad/icons/os_hsierra.icns
Binary file not shown.
Binary file modified EFI/CLOVER/themes/ThinkPad/icons/os_moja.icns
Binary file not shown.
Binary file modified EFI/CLOVER/themes/ThinkPad/icons/os_sierra.icns
Binary file not shown.
4 changes: 2 additions & 2 deletions EFI/CLOVER/themes/ThinkPad/theme.plist
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<key>Font</key>
<dict>
<key>CharWidth</key>
<integer>9</integer>
<integer>8</integer>
<key>Path</key>
<string>font.png</string>
<key>Type</key>
Expand All @@ -55,6 +55,6 @@
</dict>
</dict>
<key>Year</key>
<string>2016</string>
<string>2019</string>
</dict>
</plist>
Binary file added EFI/CLOVER/tools/BootChimeCfg.efi
Binary file not shown.
Binary file not shown.
6 changes: 6 additions & 0 deletions Utilities/root/etc/rc.boot.d/20.mount_ESP.local
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@ function mountESP {
if [[ "$ESPDevice" == "" ]]; then
ESPDevice=$(LC_ALL=C diskutil info / 2>/dev/null | \
sed -n 's/.*Part [Oo]f Whole: *//p')
fi
# When ${ESPDevice} is an "Apple_APFS Container" on expected "Boot Volume" (ie. "Volume de démarrage")
# at "Force mount selected ESP at startup:"(ie. "Forcer le montage de l'ESP sélectionné au démarrage")
if [[ $(diskutil info / | sed -n 's/.*File System Personality: *//p' | tr "[:upper:]" "[:lower:]") = "apfs" ]] ; then
ESPDevice=$(diskutil list | grep "Apple_APFS Container ${ESPDevice}" | \
awk '{ print $NF}' | sed -E 's@^.*/?(disk[0-9]*).*@\1@')
fi
elif [[ "$arg" =~ $guidRegExp ]]; then
ESPDevice=$(LC_ALL=C diskutil info "$arg" 2>/dev/null | \
Expand Down
3 changes: 0 additions & 3 deletions Utilities/root/etc/rc.sleep
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
#!/bin/bash

# reset TrackPad
kextunload -p /Library/Extensions/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext &

# turn off eth and wifi

#ethd=$( networksetup -listallhardwareports | awk '$3=="Ethernet" {getline; print $2}')
Expand Down
3 changes: 0 additions & 3 deletions Utilities/root/etc/rc.wakeup
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
#!/bin/bash

# reload TrackPad
kextload /Library/Extensions/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext &

# turn off eth and wifi

#ethd=$( networksetup -listallhardwareports | awk '$3=="Ethernet" {getline; print $2}')
Expand Down

0 comments on commit ccaeaca

Please sign in to comment.