Skip to content

Commit f4c3286

Browse files
committed
Bump Lilu from 1.3.3 to 1.3.5, add Hackintool
1 parent c680b77 commit f4c3286

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+22789
-2
lines changed

v14/EFIs/GL62 Release/EFI r1.1/CLOVER/kexts/Other/Lilu.kext/Contents/Info.plist

100755100644
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
<key>CFBundlePackageType</key>
1818
<string>KEXT</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>1.3.3</string>
20+
<string>1.3.5</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleSupportedPlatforms</key>
2424
<array>
2525
<string>MacOSX</string>
2626
</array>
2727
<key>CFBundleVersion</key>
28-
<string>1.3.3</string>
28+
<string>1.3.5</string>
2929
<key>DTCompiler</key>
3030
<string>com.apple.compilers.llvm.clang.1_0</string>
3131
<key>DTPlatformBuild</key>
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
/** @file
2+
Lilu specific GUIDs for UEFI Variable Storage, version 1.0.
3+
4+
Copyright (c) 2018, vit9696. All rights reserved.<BR>
5+
This program and the accompanying materials
6+
are licensed and made available under the terms and conditions of the BSD License
7+
which accompanies this distribution. The full text of the license may be found at
8+
http://opensource.org/licenses/bsd-license.php
9+
10+
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12+
13+
**/
14+
15+
//
16+
// 2660DD78-81D2-419D-8138-7B1F363F79A6
17+
// This GUID is specifically used for normal variable access by Lilu kernel extension and its plugins.
18+
//
19+
#define LILU_NORMAL_VARIABLE_GUID \
20+
{ 0x2660DD78, 0x81D2, 0x419D, { 0x81, 0x38, 0x7B, 0x1F, 0x36, 0x3F, 0x79, 0xA6 } }
21+
22+
//
23+
// E09B9297-7928-4440-9AAB-D1F8536FBF0A
24+
// This GUID is specifically used for reading variables by Lilu kernel extension and its plugins.
25+
// Any writes to this GUID should be prohibited via EFI_RUNTIME_SERVICES after EXIT_BOOT_SERVICES.
26+
// The expected return code on variable write is EFI_SECURITY_VIOLATION.
27+
//
28+
#define LILU_READ_ONLY_VARIABLE_GUID \
29+
{ 0xE09B9297, 0x7928, 0x4440, { 0x9A, 0xAB, 0xD1, 0xF8, 0x53, 0x6F, 0xBF, 0x0A } }
30+
31+
//
32+
// F0B9AF8F-2222-4840-8A37-ECF7CC8C12E1
33+
// This GUID is specifically used for reading variables by Lilu and plugins.
34+
// Any reads from this GUID should be prohibited via EFI_RUNTIME_SERVICES after EXIT_BOOT_SERVICES.
35+
// The expected return code on variable read is EFI_SECURITY_VIOLATION.
36+
//
37+
#define LILU_WRITE_ONLY_VARIABLE_GUID \
38+
{ 0xF0B9AF8F, 0x2222, 0x4840, { 0x8A, 0x37, 0xEC, 0xF7, 0xCC, 0x8C, 0x12, 0xE1 } }

0 commit comments

Comments
 (0)