华硕H81M-K奔腾G3250.zip


华硕H81M-K奔腾G3250.zip
资源截图
代码片段和文件信息
//
//  plugin_start.cpp
//  Lilu
//
//  Copyright © 2016-2017 vit9696. All rights reserved.
//

#include 
#include 
#include 

#ifndef LILU_CUSTOM_KMOD_INIT
bool ADDPR(startSuccess) = false;
#else
// Workaround custom kmod code and enable by default
bool ADDPR(startSuccess) = true;
#endif

bool ADDPR(debugEnabled) = false;
uint32_t ADDPR(debugPrintDelay) = 0;

#if !defined(LILU_CUSTOM_KMOD_INIT) || !defined(LILU_CUSTOM_IOKIT_INIT)

static const char kextVersion[] {
#ifdef DEBUG
‘D‘ ‘B‘ ‘G‘ ‘-‘
#else
‘R‘ ‘E‘ ‘L‘ ‘-‘
#endif
xStringify(MODULE_VERSION)[0] xStringify(MODULE_VERSION)[2] xStringify(MODULE_VERSION)[4] ‘-‘
getBuildYear<0>() getBuildYear<1>() getBuildYear<2>() getBuildYear<3>() ‘-‘
getBuildMonth<0>() getBuildMonth<1>() ‘-‘ getBuildDay<0>() getBuildDay<1>() ‘‘
};

#endif

#ifndef LILU_CUSTOM_IOKIT_INIT

OSDefinemetaClassAndStructors(PRODUCT_NAME IOService)

PRODUCT_NAME *ADDPR(selfInstance) = nullptr;

IOService *PRODUCT_NAME::probe(IOService *provider SInt32 *score) {
ADDPR(selfInstance) = this;
setProperty(“VersionInfo“ kextVersion);
auto service = IOService::probe(provider score);
return ADDPR(startSuccess) ? service : nullptr;
}

bool PRODUCT_NAME::start(IOService *provider) {
ADDPR(selfInstance) = this;
if (!IOService::start(provider)) {
SYSLOG(“init“ “failed to start the parent“);
return false;
}

return ADDPR(startSuccess);
}

void PRODUCT_NAME::stop(IOService *provider) {
ADDPR(selfInstance) = nullptr;
IOService::stop(provider);
}

#endif /* LILU_CUSTOM_IOKIT_INIT */

#ifndef LILU_CUSTOM_KMOD_INIT

EXPORT extern “C“ kern_return_t ADDPR(kern_start)(kmod_info_t * void *) {
// This is an ugly hack necessary on some systems where buffering kills most of debug output.
PE_parse_boot_argn(“liludelay“ &ADDPR(debugPrintDelay) sizeof(ADDPR(debugPrintDelay)));

auto error = lilu.requestAccess();
if (error == LiluAPI::Error::NoError) {
error = lilu.shouldLoad(ADDPR(config).product ADDPR(config).version ADDPR(config).runmode ADDPR(config).disableArg ADDPR(config).disableArgNum
ADDPR(config).debugArg ADDPR(config).debugArgNum ADDPR(config).betaArg ADDPR(config).betaArgNum ADDPR(config).minKernel
ADDPR(config).maxKernel ADDPR(debugEnabled));

if (error == LiluAPI::Error::NoError) {
DBGLOG(“init“ “%s bootstrap %s“ xStringify(PRODUCT_NAME) kextVersion);
(void)kextVersion;
ADDPR(startSuccess) = true;
ADDPR(config).pluginStart();
} else {
SYSLOG(“init“ “parent said we should not continue %d“ error);
}

lilu.releaseAccess();
} else {
SYSLOG(“init“ “failed to call parent %d“ error);
}

// Report success but actually do not start and let I/O Kit unload us.
// This works better and increases boot speed in some cases.
return KERN_SUCCESS;
}

EXPORT extern “C“ kern_return_t ADDPR(kern_stop)(kmod_info_t * void *) {
// It is not safe to unload Lilu plugins unless 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2019-10-02 03:11  EFI
     目录           0  2019-09-27 18:55  EFIAPPLE
     文件        6148  2019-04-06 13:05  EFI.DS_Store
     目录           0  2019-10-02 03:11  EFIBOOT
     目录           0  2019-10-04 10:01  EFICLOVER
     文件        2015  2019-10-02 03:11  EFIClover_Install_Log.txt
     目录           0  2019-09-30 22:54  EFICLOVER11
     目录           0  2019-10-01 08:59  EFIAPPLEFIRMWARE
     目录           0  2019-09-27 18:55  EFIAPPLEEXTENSIONS
     目录           0  2019-09-27 18:55  EFIAPPLEUPDATERS
     文件      929920  2019-09-28 09:48  EFIBOOTBOOTX64.efi
     目录           0  2019-10-02 03:11  EFICLOVERmisc
     目录           0  2019-10-02 03:11  EFICLOVERACPI
     目录           0  2019-10-02 03:11  EFICLOVER ools
     目录           0  2019-09-30 22:54  EFICLOVERdrivers64UEFI
     目录           0  2019-09-30 22:54  EFICLOVERdrivers64
     目录           0  2019-10-02 03:11  EFICLOVERkexts
     目录           0  2019-09-30 22:54  EFICLOVEROEM
     目录           0  2019-10-02 03:11  EFICLOVERROM
     目录           0  2019-10-02 03:11  EFICLOVERdoc
     文件       13121  2019-10-04 11:34  EFICLOVERconfig.plist
     文件         333  2019-10-04 11:35  __MACOSXEFICLOVER._config.plist
     目录           0  2019-10-04 10:02  EFICLOVER hemes
     文件      929920  2019-09-28 09:48  EFICLOVERCLOVERX64.efi
     文件        4096  2019-10-04 11:35  EFICLOVER._config.plist
     目录           0  2019-10-02 03:00  EFICLOVERdrivers
     目录           0  2019-09-30 22:54  EFICLOVER11ACPI
     目录           0  2019-09-30 22:54  EFICLOVER11 ools
     文件        8196  2019-04-06 13:06  EFICLOVER11.DS_Store
     目录           0  2019-09-30 22:54  EFICLOVER11drivers64UEFI
     目录           0  2019-09-30 22:54  EFICLOVER11drivers64
............此处省略1005个文件信息

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)