[Lldb-commits] [lldb] r178951 - Change the default of 'platform.plugin.darwin-kernel.search-locally-for-kexts'

Jason Molenda jmolenda at apple.com
Fri Apr 5 22:25:38 PDT 2013


Author: jmolenda
Date: Sat Apr  6 00:25:38 2013
New Revision: 178951

URL: http://llvm.org/viewvc/llvm-project?rev=178951&view=rev
Log:
Change the default of 'platform.plugin.darwin-kernel.search-locally-for-kexts'
to 'off' for a week or so while we test the behavior in different environments.

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=178951&r1=178950&r2=178951&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp (original)
+++ lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp Sat Apr  6 00:25:38 2013
@@ -172,7 +172,7 @@ PlatformDarwinKernel::GetDescriptionStat
 static PropertyDefinition
 g_properties[] =
 {
-    { "search-locally-for-kexts" , OptionValue::eTypeBoolean,      true, true, NULL, NULL, "Automatically search for kexts on the local system when doing kernel debugging." },
+    { "search-locally-for-kexts" , OptionValue::eTypeBoolean,      true, false, 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