From 7b273c4cfb5efe60d93a2b7aa5e2e2bbf9669c8d Mon Sep 17 00:00:00 2001 From: vit9696 Date: Thu, 11 Apr 2019 16:39:46 +0300 Subject: [PATCH] OcConfigurationLib: Rename BundleName to BundlePath for kexts --- Include/Library/OcConfigurationLib.h | 2 +- Library/OcConfigurationLib/OcConfigurationLib.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Include/Library/OcConfigurationLib.h b/Include/Library/OcConfigurationLib.h index 274c79e5..3b825908 100644 --- a/Include/Library/OcConfigurationLib.h +++ b/Include/Library/OcConfigurationLib.h @@ -123,7 +123,7 @@ _(BOOLEAN , Enabled , , FALSE , () ) \ _(OC_STRING , Comment , , OC_STRING_CONSTR ("", _, __), OC_DESTR (OC_STRING) ) \ _(OC_STRING , MatchKernel , , OC_STRING_CONSTR ("", _, __), OC_DESTR (OC_STRING) ) \ - _(OC_STRING , BundleName , , OC_STRING_CONSTR ("", _, __), OC_DESTR (OC_STRING) ) \ + _(OC_STRING , BundlePath , , OC_STRING_CONSTR ("", _, __), OC_DESTR (OC_STRING) ) \ _(OC_STRING , ExecutablePath , , OC_STRING_CONSTR ("", _, __), OC_DESTR (OC_STRING) ) \ _(OC_STRING , PlistPath , , OC_STRING_CONSTR ("", _, __), OC_DESTR (OC_STRING) ) \ _(UINT8 * , ImageData , , NULL , OcFreePointer ) \ diff --git a/Library/OcConfigurationLib/OcConfigurationLib.c b/Library/OcConfigurationLib/OcConfigurationLib.c index 5bf52b62..9e832869 100644 --- a/Library/OcConfigurationLib/OcConfigurationLib.c +++ b/Library/OcConfigurationLib/OcConfigurationLib.c @@ -163,7 +163,7 @@ mDevicePropertiesSchema[] = { STATIC OC_SCHEMA mKernelAddSchemaEntry[] = { - OC_SCHEMA_STRING_IN ("BundleName", OC_KERNEL_ADD_ENTRY, BundleName), + OC_SCHEMA_STRING_IN ("BundlePath", OC_KERNEL_ADD_ENTRY, BundlePath), OC_SCHEMA_STRING_IN ("Comment", OC_KERNEL_ADD_ENTRY, Comment), OC_SCHEMA_BOOLEAN_IN ("Enabled", OC_KERNEL_ADD_ENTRY, Enabled), OC_SCHEMA_STRING_IN ("ExecutablePath", OC_KERNEL_ADD_ENTRY, ExecutablePath),