[Lldb-commits] [lldb] r179348 - Change the default for PlatformDarwinKernel to be enabled a la

Jason Molenda jmolenda at apple.com
Thu Apr 11 17:23:57 PDT 2013


Author: jmolenda
Date: Thu Apr 11 19:23:57 2013
New Revision: 179348

URL: http://llvm.org/viewvc/llvm-project?rev=179348&view=rev
Log:
Change the default for PlatformDarwinKernel to be enabled a la
settings set platform.plugin.darwin-kernel.search-locally-for-kexts true

Modified:
    lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp

Modified: lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp?rev=179348&r1=179347&r2=179348&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp (original)
+++ lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp Thu Apr 11 19:23:57 2013
@@ -172,7 +172,7 @@ PlatformDarwinKernel::GetDescriptionStat
 static PropertyDefinition
 g_properties[] =
 {
-    { "search-locally-for-kexts" , OptionValue::eTypeBoolean,      true, false, NULL, NULL, "Automatically search for kexts on the local system when doing kernel debugging." },
+    { "search-locally-for-kexts" , OptionValue::eTypeBoolean,      true, true, NULL, NULL, "Automatically search for kexts on the local system when doing kernel debugging." },
     { "kext-directories",          OptionValue::eTypeFileSpecList, false, 0,   NULL, NULL, "Directories/KDKs to search for kexts in when starting a kernel debug session." },
     {  NULL        , OptionValue::eTypeInvalid, false, 0  , NULL, NULL, NULL  }
 };





More information about the lldb-commits mailing list