Skip to content

Commit e5a49b5

Browse files
authored
Merge pull request #997 from goodbest/featureUnlock
Add FeatureUnlock and update Kext to 2022.04
2 parents 452de8e + 73d08dc commit e5a49b5

File tree

18 files changed

+903
-224
lines changed

18 files changed

+903
-224
lines changed

Installer/Package.pkgproj

Lines changed: 866 additions & 199 deletions
Large diffs are not rendered by default.

Installer/build.sh

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,13 @@ do
3838
fi
3939
echo "Extracting $file to $output"
4040
unzip -o "$file" -d "$output"
41-
# strip single directory unzips
42-
mv "$output/${file%.*}/"* "$output" 2> /dev/null || true
41+
# strip single directory unzips; special path case for OpenIntelWireless
42+
if [[ "$output" == *"OpenIntelWireless"* ]]
43+
then
44+
mv "$output/"*/*.kext "$output" 2> /dev/null || true
45+
else
46+
mv "$output/${file%.*}/"* "$output" 2> /dev/null || true
47+
fi
4348
done
4449

4550
echo "Compiling ASL..."
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
https://github.com/acidanthera/AirportBrcmFixup/releases/download/2.1.3/AirportBrcmFixup-2.1.3-RELEASE.zip
2-
9363226025c6a0aeeddf8c48afb3e74b255ea585b46222e03b5b3e7c6dcd7428
1+
https://github.com/acidanthera/AirportBrcmFixup/releases/download/2.1.4/AirportBrcmFixup-2.1.4-RELEASE.zip
2+
7c140117fc48e654173a45acba69124442d5b6424bd8e54497a011087dc613ba

Installer/data/AppleALC/source.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
https://github.com/acidanthera/AppleALC/releases/download/1.6.6/AppleALC-1.6.6-RELEASE.zip
2-
f0ca5f5787cb81c04791411f113cdf67a15c1dafccfb930d73a536276e7073bf
1+
https://github.com/acidanthera/AppleALC/releases/download/1.7.1/AppleALC-1.7.1-RELEASE.zip
2+
69d1e4bbbefed8fc631ae06ee42ff347b5aa3d7f8f32ad5f5ae271d3ee7ea7c2
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
21.0.0
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
10010
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
https://github.com/acidanthera/FeatureUnlock/releases/download/1.0.8/FeatureUnlock-1.0.8-RELEASE.zip
2+
af69b6221e546799abc057d6cc77f7f538e90fbcfdd949825cc6a90e9d3fa63d
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
https://github.com/OpenIntelWireless/IntelBluetoothFirmware/releases/download/v2.0.1/IntelBluetoothFirmware-v2.0.1.zip
2-
99c4ef9808b2d9e52afff3129a0ad16e7ae42e16f201dc156dfa55bc99bb3102
1+
https://github.com/OpenIntelWireless/IntelBluetoothFirmware/releases/download/v2.1.0/IntelBluetoothFirmware-v2.1.0.zip
2+
fa3a2a579de64db614258a35d6b2c457efb10bc8e1e3f900254e5233b20fe29f

Installer/data/Lilu/source.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
https://github.com/acidanthera/Lilu/releases/download/1.5.7/Lilu-1.5.7-RELEASE.zip
2-
5637f9f03680c4c2dec4c54d92acbda65e70009090b404d28b2a266e113d9ee8
1+
https://github.com/acidanthera/Lilu/releases/download/1.6.0/Lilu-1.6.0-RELEASE.zip
2+
4bb10bf5e4cedea08f3ec3c2ab178790a676e9903f24a45b8d9617952425d3f5

Installer/data/OpenCore/source.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
https://github.com/acidanthera/OpenCorePkg/releases/download/0.7.5/OpenCore-0.7.5-RELEASE.zip
2-
57480902cc78120fb2c09ba7dda3730862bd59924e9b227933186195e51e148f
1+
https://github.com/acidanthera/OpenCorePkg/releases/download/0.8.0/OpenCore-0.8.0-RELEASE.zip
2+
4fb70cf255f16e49586f989f09cb049335ec3efab91c0f8349552fabfc8b9948

0 commit comments

Comments
 (0)