Skip to content

Commit

Permalink
feat: update OC version to 0.9.3, update kexts and drivers (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
picopock authored Jun 16, 2023
1 parent cd08e91 commit 3699c51
Show file tree
Hide file tree
Showing 129 changed files with 3,451 additions and 132 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: release

on:
push:
tags:
- 'v*.*.*'

permissions:
contents: write

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Get Version
id: get_version
run: echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT

- name: Package files
run: |
mkdir hackintosh-EFI-ASUS-ROG-Z390-${{ steps.get_version.outputs.VERSION }}
tar -zcvf hackintosh-EFI-ASUS-ROG-Z390-${{ steps.get_version.outputs.VERSION }}.tar.gz ./EFI-OpenCore ./usbMap ./frameBufferPatch.md ./README.md ./smalltree.png ./ventura.png
zip -r hackintosh-EFI-ASUS-ROG-Z390-${{ steps.get_version.outputs.VERSION }}.zip ./EFI-OpenCore ./usbMap ./frameBufferPatch.md ./README.md ./smalltree.png ./ventura.png
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: ./hackintosh-EFI-ASUS-ROG-Z390-*
draft: false
Binary file modified EFI-OpenCore/APPLE/FIRMWARE/IM191.fd
Binary file not shown.
1 change: 1 addition & 0 deletions EFI-OpenCore/BOOT/.contentFlavour
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
OpenCore
1 change: 1 addition & 0 deletions EFI-OpenCore/BOOT/.contentVisibility
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Disabled
Binary file modified EFI-OpenCore/OC/Drivers/AudioDxe.efi
Binary file not shown.
Binary file modified EFI-OpenCore/OC/Drivers/CrScreenshotDxe.efi
Binary file not shown.
Binary file removed EFI-OpenCore/OC/Drivers/HfsPlus.efi
Binary file not shown.
Binary file modified EFI-OpenCore/OC/Drivers/OpenCanopy.efi
Binary file not shown.
Binary file added EFI-OpenCore/OC/Drivers/OpenHfsPlus.efi
Binary file not shown.
Binary file modified EFI-OpenCore/OC/Drivers/OpenRuntime.efi
Binary file not shown.
Binary file modified EFI-OpenCore/OC/Drivers/ResetNvramEntry.efi
Binary file not shown.
Binary file modified EFI-OpenCore/OC/Drivers/ToggleSipEntry.efi
Binary file not shown.
20 changes: 11 additions & 9 deletions EFI-OpenCore/OC/Kexts/AirportItlwm.kext/Contents/Info.plist
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>19H1419</string>
<string>21G531</string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
Expand All @@ -17,27 +17,29 @@
<key>CFBundlePackageType</key>
<string>KEXT</string>
<key>CFBundleShortVersionString</key>
<string>2.1.0</string>
<string>2.2.0</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>MacOSX</string>
</array>
<key>CFBundleVersion</key>
<string>2.1.0</string>
<string>2.2.0</string>
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTPlatformBuild</key>
<string>11A420a</string>
<string>14C18</string>
<key>DTPlatformName</key>
<string>macosx</string>
<key>DTPlatformVersion</key>
<string>GM</string>
<string>13.1</string>
<key>DTSDKBuild</key>
<string>19A547</string>
<string>22C55</string>
<key>DTSDKName</key>
<string>macosx10.15</string>
<string>macosx13.1</string>
<key>DTXcode</key>
<string>1100</string>
<string>1420</string>
<key>DTXcodeBuild</key>
<string>11A420a</string>
<string>14C18</string>
<key>IOKitPersonalities</key>
<dict>
<key>itlwm</key>
Expand Down
Binary file not shown.
Loading

0 comments on commit 3699c51

Please sign in to comment.