Index: trunk/ChameleonPrefPane/Sources/AdvancedSetupController.h =================================================================== --- trunk/ChameleonPrefPane/Sources/AdvancedSetupController.h (revision 0) +++ trunk/ChameleonPrefPane/Sources/AdvancedSetupController.h (revision 37) @@ -0,0 +1,48 @@ +// +// AdvancedSetupController.h +// ChameleonPrefPane +// +// Created by Rekursor on 1/22/10. +// + +#import + + +// TabView subpane controller definition +@interface AdvancedSetupController : NSObject { + IBOutlet NSButton* mKernel; + IBOutlet NSTextField* mKernelText; + IBOutlet NSButton* mDeviceRd; + IBOutlet NSTextField* mDeviceRdText; + + IBOutlet NSButton* mArch; + IBOutlet NSTextField* mArchText; + IBOutlet NSButton* mCPU; + IBOutlet NSTextField* mCPUText; + IBOutlet NSButton* mBusRatio; + IBOutlet NSTextField* mBusRatioText; + + IBOutlet NSButton* mDebug; + IBOutlet NSTextField* mDebugText; + IBOutlet NSButton* mIO; + IBOutlet NSTextField* mIOText; + IBOutlet NSButton* mDisableKextsBlacklisting; + + IBOutlet NSButton* mDSDTFile; + IBOutlet NSTextField* mDSDTFileText; + IBOutlet NSButton* mDSDTDrop; + + IBOutlet NSButton* mSMBIOSFile; + IBOutlet NSTextField* mSMBIOSFileText; + IBOutlet NSButton* mSMBIOSDefaults; + + IBOutlet NSButton* mWake; + IBOutlet NSButton* mForceWake; + IBOutlet NSButton* mWakeImage; + IBOutlet NSTextField* mWakeImageText; +} + +-(IBAction) onCheckButtonChange: (id) sender; +-(IBAction) onTextFiedChange: (id) sender; + +@end Index: trunk/ChameleonPrefPane/Sources/BootSetupController.mm =================================================================== --- trunk/ChameleonPrefPane/Sources/BootSetupController.mm (revision 0) +++ trunk/ChameleonPrefPane/Sources/BootSetupController.mm (revision 37) @@ -0,0 +1,28 @@ +// +// PartitionsSetupController.mm +// ChameleonPrefPane +// +// Created by Rekursor on 1/22/10. +// + +#import "BootSetupController.h" + + +@implementation BootSetupController + + +// TODO implement a smart & reusable option modification, able by all controllers +// these pair of methods in each controller should all rely on a single external class instance (singleton) +// that would implement in an opaque way the options streaming between the panels and the pref. file + +-(IBAction) onCheckButtonChange: (id) sender +{ + +} + +-(IBAction) onTextFiedChange: (id) sender +{ + +} + +@end Index: trunk/ChameleonPrefPane/Sources/AdvancedSetupController.mm =================================================================== --- trunk/ChameleonPrefPane/Sources/AdvancedSetupController.mm (revision 0) +++ trunk/ChameleonPrefPane/Sources/AdvancedSetupController.mm (revision 37) @@ -0,0 +1,27 @@ +// +// AdvancedSetupController.mm +// ChameleonPrefPane +// +// Created by Rekursor on 1/22/10. +// + +#import "AdvancedSetupController.h" + + +@implementation AdvancedSetupController + +// TODO implement a smart & reusable option modification, able by all controllers +// these pair of methods in each controller should all rely on a single external class instance (singleton) +// that would implement in an opaque way the options streaming between the panels and the pref. file + +-(IBAction) onCheckButtonChange: (id) sender +{ + +} + +-(IBAction) onTextFiedChange: (id) sender +{ + +} + +@end Index: trunk/ChameleonPrefPane/Sources/ChameleonPrefPane.mm =================================================================== --- trunk/ChameleonPrefPane/Sources/ChameleonPrefPane.mm (revision 36) +++ trunk/ChameleonPrefPane/Sources/ChameleonPrefPane.mm (revision 37) @@ -1,5 +1,5 @@ // -// StartupPrefPanePref.m +// StartupPrefPanePref.mm // // Created by Rekursor on 1/16/10. // Index: trunk/ChameleonPrefPane/Sources/PeripheralsController.h =================================================================== --- trunk/ChameleonPrefPane/Sources/PeripheralsController.h (revision 0) +++ trunk/ChameleonPrefPane/Sources/PeripheralsController.h (revision 37) @@ -0,0 +1,35 @@ +// +// PeripheralsController.h +// ChameleonPrefPane +// +// Created by Rekursor on 1/22/10. +// + +#import + + +// TabView subpane controller definition +@interface PeripheralsController : NSObject { + + IBOutlet NSButton* mLegacyLogo; + IBOutlet NSButton* mBootBanner; + IBOutlet NSButton* mVBIOS; + IBOutlet NSButton* mVideoROM; + IBOutlet NSTextField* mVideoROMText; + + IBOutlet NSButton* mGraphicsMode; + IBOutlet NSTextField* mGraphicsModeText; + IBOutlet NSButton* mGraphicsEnabler; + + IBOutlet NSButton* mUSBBusFix; + IBOutlet NSButton* mEHCIacquire; + IBOutlet NSButton* mUHCIreset; + + IBOutlet NSButton* mEthernetBuiltIn; + +} + +-(IBAction) onCheckButtonChange: (id) sender; +-(IBAction) onTextFiedChange: (id) sender; + +@end Index: trunk/ChameleonPrefPane/Sources/BootFlagsController.h =================================================================== --- trunk/ChameleonPrefPane/Sources/BootFlagsController.h (revision 0) +++ trunk/ChameleonPrefPane/Sources/BootFlagsController.h (revision 37) @@ -0,0 +1,34 @@ +// +// BootFlagsController.h +// ChameleonPrefPane +// +// Created by Rekursor on 1/22/10. +// + +#import + + +// TabView subpane controller definition +@interface BootFlagsController : NSObject { + + IBOutlet NSButton* mVerbose; + IBOutlet NSButton* mSafeBoot; + IBOutlet NSButton* mIgnoreBootConfig; + + IBOutlet NSButton* mTimeOut; + IBOutlet NSTextField* mTimeOutText; + IBOutlet NSButton* mSingleUser; + + IBOutlet NSButton* mQuietBoot; + IBOutlet NSButton* mInstantMenu; + IBOutlet NSButton* mWait; + + IBOutlet NSButton* mRescan; + IBOutlet NSButton* mRescanPrompt; + IBOutlet NSButton* mRescanSingleDrive; +} + +-(IBAction) onCheckButtonChange: (id) sender; +-(IBAction) onTextFiedChange: (id) sender; + +@end Index: trunk/ChameleonPrefPane/Sources/PeripheralsController.mm =================================================================== --- trunk/ChameleonPrefPane/Sources/PeripheralsController.mm (revision 0) +++ trunk/ChameleonPrefPane/Sources/PeripheralsController.mm (revision 37) @@ -0,0 +1,27 @@ +// +// PeripheralsController.mm +// ChameleonPrefPane +// +// Created by Rekursor on 1/22/10. +// + +#import "PeripheralsController.h" + + +@implementation PeripheralsController + +// TODO implement a smart & reusable option modification, able by all controllers +// these pair of methods in each controller should all rely on a single external class instance (singleton) +// that would implement in an opaque way the options streaming between the panels and the pref. file + +-(IBAction) onCheckButtonChange: (id) sender +{ + +} + +-(IBAction) onTextFiedChange: (id) sender +{ + +} + +@end Index: trunk/ChameleonPrefPane/Sources/BootFlagsController.mm =================================================================== --- trunk/ChameleonPrefPane/Sources/BootFlagsController.mm (revision 0) +++ trunk/ChameleonPrefPane/Sources/BootFlagsController.mm (revision 37) @@ -0,0 +1,27 @@ +// +// BootFlagsController.mm +// ChameleonPrefPane +// +// Created by Rekursor on 1/22/10. +// + +#import "BootFlagsController.h" + + +@implementation BootFlagsController + +// TODO implement a smart & reusable option modification, able by all controllers +// these pair of methods in each controller should all rely on a single external class instance (singleton) +// that would implement in an opaque way the options streaming between the panels and the pref. file + +-(IBAction) onCheckButtonChange: (id) sender +{ + +} + +-(IBAction) onTextFiedChange: (id) sender +{ + +} + +@end Index: trunk/ChameleonPrefPane/Sources/BootSetupController.h =================================================================== --- trunk/ChameleonPrefPane/Sources/BootSetupController.h (revision 0) +++ trunk/ChameleonPrefPane/Sources/BootSetupController.h (revision 37) @@ -0,0 +1,30 @@ +// +// PartitionsSetupController.h +// ChameleonPrefPane +// +// Created by Rekursor on 1/22/10. +// + +#import + + +// TabView subpane controller definition +@interface BootSetupController : NSObject { + + // TODO move swap hds and freeze buttons to this class + + IBOutlet NSButton* mDefaultPartition; + IBOutlet NSTextField* mDefaultPartitionText; + + IBOutlet NSButton* mHidePartition; + IBOutlet NSTextField* mHidePartitionText; + + IBOutlet NSButton* mRenamePartition; + IBOutlet NSTextField* mRenamePartitionText; + +} + +-(IBAction) onCheckButtonChange: (id) sender; +-(IBAction) onTextFiedChange: (id) sender; + +@end Index: trunk/ChameleonPrefPane/ChameleonPrefPane.xcodeproj/project.pbxproj =================================================================== --- trunk/ChameleonPrefPane/ChameleonPrefPane.xcodeproj/project.pbxproj (revision 36) +++ trunk/ChameleonPrefPane/ChameleonPrefPane.xcodeproj/project.pbxproj (revision 37) @@ -12,6 +12,14 @@ 01466C2A110408CC00088464 /* SecurityInterface.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 01466C29110408CC00088464 /* SecurityInterface.framework */; }; 01466C381104091400088464 /* SecurityFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 01466C371104091400088464 /* SecurityFoundation.framework */; }; 0196529B11066CC0009E8F2F /* README in Resources */ = {isa = PBXBuildFile; fileRef = 0196529A11066CC0009E8F2F /* README */; }; + 019930E1110A0CB4003B056E /* BootSetupController.h in Headers */ = {isa = PBXBuildFile; fileRef = 019930DF110A0CB4003B056E /* BootSetupController.h */; }; + 019930E2110A0CB4003B056E /* BootSetupController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 019930E0110A0CB4003B056E /* BootSetupController.mm */; }; + 019930E8110A0D80003B056E /* BootFlagsController.h in Headers */ = {isa = PBXBuildFile; fileRef = 019930E6110A0D80003B056E /* BootFlagsController.h */; }; + 019930E9110A0D80003B056E /* BootFlagsController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 019930E7110A0D80003B056E /* BootFlagsController.mm */; }; + 019930FE110A0E6F003B056E /* PeripheralsController.h in Headers */ = {isa = PBXBuildFile; fileRef = 019930FC110A0E6F003B056E /* PeripheralsController.h */; }; + 019930FF110A0E6F003B056E /* PeripheralsController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 019930FD110A0E6F003B056E /* PeripheralsController.mm */; }; + 01993115110A0EB9003B056E /* AdvancedSetupController.h in Headers */ = {isa = PBXBuildFile; fileRef = 01993113110A0EB9003B056E /* AdvancedSetupController.h */; }; + 01993116110A0EB9003B056E /* AdvancedSetupController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 01993114110A0EB9003B056E /* AdvancedSetupController.mm */; }; 01A40F75110550F4002A74CD /* CHANGES in Resources */ = {isa = PBXBuildFile; fileRef = 01A40F74110550F4002A74CD /* CHANGES */; }; 01B0E8141108B85A00ACF21B /* ChameleonPrefPane.h in Headers */ = {isa = PBXBuildFile; fileRef = 01B0E80E1108B85A00ACF21B /* ChameleonPrefPane.h */; }; 01B0E8151108B85A00ACF21B /* ChameleonPrefPane.mm in Sources */ = {isa = PBXBuildFile; fileRef = 01B0E80F1108B85A00ACF21B /* ChameleonPrefPane.mm */; }; @@ -41,6 +49,14 @@ 01466C29110408CC00088464 /* SecurityInterface.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SecurityInterface.framework; path = System/Library/Frameworks/SecurityInterface.framework; sourceTree = SDKROOT; }; 01466C371104091400088464 /* SecurityFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SecurityFoundation.framework; path = System/Library/Frameworks/SecurityFoundation.framework; sourceTree = SDKROOT; }; 0196529A11066CC0009E8F2F /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = ""; }; + 019930DF110A0CB4003B056E /* BootSetupController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BootSetupController.h; path = Sources/BootSetupController.h; sourceTree = ""; }; + 019930E0110A0CB4003B056E /* BootSetupController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = BootSetupController.mm; path = Sources/BootSetupController.mm; sourceTree = ""; }; + 019930E6110A0D80003B056E /* BootFlagsController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BootFlagsController.h; path = Sources/BootFlagsController.h; sourceTree = ""; }; + 019930E7110A0D80003B056E /* BootFlagsController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = BootFlagsController.mm; path = Sources/BootFlagsController.mm; sourceTree = ""; }; + 019930FC110A0E6F003B056E /* PeripheralsController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PeripheralsController.h; path = Sources/PeripheralsController.h; sourceTree = ""; }; + 019930FD110A0E6F003B056E /* PeripheralsController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = PeripheralsController.mm; path = Sources/PeripheralsController.mm; sourceTree = ""; }; + 01993113110A0EB9003B056E /* AdvancedSetupController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AdvancedSetupController.h; path = Sources/AdvancedSetupController.h; sourceTree = ""; }; + 01993114110A0EB9003B056E /* AdvancedSetupController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AdvancedSetupController.mm; path = Sources/AdvancedSetupController.mm; sourceTree = ""; }; 01A40F74110550F4002A74CD /* CHANGES */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CHANGES; sourceTree = ""; }; 01B0E80E1108B85A00ACF21B /* ChameleonPrefPane.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ChameleonPrefPane.h; path = Sources/ChameleonPrefPane.h; sourceTree = ""; }; 01B0E80F1108B85A00ACF21B /* ChameleonPrefPane.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = ChameleonPrefPane.mm; path = Sources/ChameleonPrefPane.mm; sourceTree = ""; }; @@ -127,6 +143,14 @@ children = ( 01B0E80E1108B85A00ACF21B /* ChameleonPrefPane.h */, 01B0E80F1108B85A00ACF21B /* ChameleonPrefPane.mm */, + 019930DF110A0CB4003B056E /* BootSetupController.h */, + 019930E0110A0CB4003B056E /* BootSetupController.mm */, + 019930E6110A0D80003B056E /* BootFlagsController.h */, + 019930E7110A0D80003B056E /* BootFlagsController.mm */, + 019930FC110A0E6F003B056E /* PeripheralsController.h */, + 019930FD110A0E6F003B056E /* PeripheralsController.mm */, + 01993113110A0EB9003B056E /* AdvancedSetupController.h */, + 01993114110A0EB9003B056E /* AdvancedSetupController.mm */, 01B0E8111108B85A00ACF21B /* process.h */, 01B0E8101108B85A00ACF21B /* process.cpp */, 01B0E8131108B85A00ACF21B /* property_list.h */, @@ -188,6 +212,10 @@ 01B0E8141108B85A00ACF21B /* ChameleonPrefPane.h in Headers */, 01B0E8171108B85A00ACF21B /* process.h in Headers */, 01B0E8191108B85A00ACF21B /* property_list.h in Headers */, + 019930E1110A0CB4003B056E /* BootSetupController.h in Headers */, + 019930E8110A0D80003B056E /* BootFlagsController.h in Headers */, + 019930FE110A0E6F003B056E /* PeripheralsController.h in Headers */, + 01993115110A0EB9003B056E /* AdvancedSetupController.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -274,6 +302,10 @@ 01B0E8151108B85A00ACF21B /* ChameleonPrefPane.mm in Sources */, 01B0E8161108B85A00ACF21B /* process.cpp in Sources */, 01B0E8181108B85A00ACF21B /* property_list.cpp in Sources */, + 019930E2110A0CB4003B056E /* BootSetupController.mm in Sources */, + 019930E9110A0D80003B056E /* BootFlagsController.mm in Sources */, + 019930FF110A0E6F003B056E /* PeripheralsController.mm in Sources */, + 01993116110A0EB9003B056E /* AdvancedSetupController.mm in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; Index: trunk/ChameleonPrefPane/English.lproj/Chameleon.xib =================================================================== --- trunk/ChameleonPrefPane/English.lproj/Chameleon.xib (revision 36) +++ trunk/ChameleonPrefPane/English.lproj/Chameleon.xib (revision 37) @@ -12,8 +12,7 @@ YES - - + YES @@ -59,7 +58,7 @@ 268 - {{13, 13}, {579, 38}} + {{13, 13}, {610, 38}} SFAuthorizationView @@ -80,7 +79,7 @@ 268 - {{484, 246}, {147, 19}} + {{484, 238}, {147, 19}} YES @@ -112,7 +111,7 @@ 268 - {{546, 45}, {91, 32}} + {{546, 37}, {91, 32}} YES @@ -136,7 +135,7 @@ 268 - {{484, 93}, {147, 140}} + {{484, 85}, {147, 140}} YES @@ -672,7 +671,7 @@ - {{7, 10}, {467, 256}} + {{7, 2}, {467, 256}} 562 @@ -686,7 +685,7 @@ 268 - {{479, 2}, {158, 32}} + {{479, -6}, {158, 32}} YES @@ -706,7 +705,7 @@ 268 - {{481, 45}, {67, 32}} + {{481, 37}, {67, 32}} YES @@ -724,10 +723,10 @@ - {{10, 25}, {640, 275}} + {{10, 33}, {640, 267}} - Boot From + Boot From ... @@ -738,32 +737,32 @@ 256 YES - + 12 YES - - + + 256 YES - - - 268 - {{12, 13}, {128, 18}} - + + + 12 + {{16, 80}, {125, 23}} + 2 YES - + 67239424 0 - Swap hd 0<->1 + Default Partition - + 1211912703 2 - + NSImage NSSwitch @@ -776,22 +775,50 @@ 25 - - - 268 - {{150, 13}, {124, 18}} - + + + 12 + {{174, 79}, {60, 22}} + 2 YES - + + 611450433 + 272630784 + hd(0,2) + + + YES + + 6 + System + textBackgroundColor + + + + 6 + System + textColor + + + + + + + 12 + {{16, 47}, {125, 23}} + + 2 + YES + 67239424 0 - Swap hd 0<->2 + Hide Partitions - + 1211912703 2 - + @@ -799,22 +826,40 @@ 25 - - - 268 - {{297, 13}, {161, 18}} - + + + 12 + {{174, 49}, {403, 22}} + 2 YES - + + 611450433 + 272630784 + hd(0,2) + + + YES + + + + + + + 12 + {{16, 17}, {136, 23}} + + 2 + YES + 67239424 0 - Use Freezed Parts List + Rename Partitions - + 1211912703 2 - + @@ -822,34 +867,31 @@ 25 - - - 268 - {{459, 7}, {159, 28}} - + + + 12 + {{174, 19}, {403, 22}} + 2 YES - - 67239424 - 134348800 - Inject Parts in Freeze File - - - -2038284033 - 129 - - - 200 - 25 + + 611450433 + 272630784 + hd(0,2) + + + YES + + - {{1, 1}, {626, 47}} - + {{1, 1}, {626, 114}} + 2 - {{7, 181}, {628, 63}} + {{6, 122}, {628, 130}} YES 2 @@ -857,51 +899,46 @@ 67239424 0 - Boot Selector Fixes + Partitions Management - - 6 - System - textBackgroundColor - - + 3 MCAwLjgwMDAwMDAxAA - + 1 0 2 NO - + 12 YES - - + + 256 YES - - - 12 - {{16, 80}, {125, 23}} - + + + 268 + {{12, 13}, {128, 18}} + 2 YES - + 67239424 0 - Default Partition + Swap hd 0<->1 - + 1211912703 - 130 - + 2 + @@ -909,45 +946,22 @@ 25 - - - 12 - {{205, 79}, {60, 22}} - + + + 268 + {{150, 13}, {124, 18}} + 2 YES - - 74579521 - 272630784 - hd(0,2) - - - YES - - - 6 - System - textColor - - - - - - - 12 - {{16, 47}, {125, 23}} - - 2 - YES - + 67239424 0 - Hide Partitions + Swap hd 0<->2 - + 1211912703 - 130 - + 2 + @@ -955,40 +969,22 @@ 25 - - - 12 - {{205, 49}, {403, 22}} - + + + 268 + {{297, 13}, {161, 18}} + 2 YES - - 74579521 - 272630784 - hd(0,2) - - - YES - - - - - - - 12 - {{16, 17}, {136, 23}} - - 2 - YES - + 67239424 0 - Rename Partitions + Use Freezed Parts List - + 1211912703 - 130 - + 2 + @@ -996,31 +992,34 @@ 25 - - - 12 - {{205, 19}, {403, 22}} - + + + 268 + {{459, 7}, {159, 28}} + 2 YES - - 74579521 - 272630784 - hd(0,2) - - - YES - - + + 67239424 + 134348800 + Inject Parts in Freeze File + + + -2038284033 + 129 + + + 200 + 25 - {{1, 1}, {626, 114}} - + {{1, 1}, {626, 47}} + 2 - {{7, 28}, {628, 130}} + {{6, 40}, {628, 63}} YES 2 @@ -1028,7 +1027,7 @@ 67239424 0 - Partitions Management + Boot Selector Fixes @@ -1036,16 +1035,16 @@ MCAwLjgwMDAwMDAxAA - + 1 0 2 NO - {{10, 25}, {640, 275}} + {{10, 33}, {640, 267}} - Partitions + Boot Setup @@ -1069,7 +1068,7 @@ 12 - {{21, 104}, {116, 23}} + {{21, 73}, {116, 23}} YES @@ -1079,8 +1078,8 @@ 1211912703 - 130 - + 2 + @@ -1091,7 +1090,7 @@ 12 - {{312, 100}, {170, 23}} + {{312, 73}, {170, 23}} YES @@ -1101,8 +1100,8 @@ 1211912703 - 130 - + 2 + @@ -1113,7 +1112,7 @@ 12 - {{312, 60}, {133, 23}} + {{312, 41}, {133, 23}} YES @@ -1123,8 +1122,8 @@ 1211912703 - 130 - + 2 + @@ -1135,7 +1134,7 @@ 12 - {{21, 62}, {116, 23}} + {{21, 41}, {92, 23}} YES @@ -1145,8 +1144,8 @@ 1211912703 - 130 - + 2 + @@ -1157,11 +1156,11 @@ 12 - {{143, 62}, {33, 22}} + {{143, 41}, {33, 22}} YES - -2072904127 + -1536033215 272630784 8 @@ -1174,7 +1173,7 @@ 12 - {{21, 23}, {125, 23}} + {{21, 12}, {100, 23}} YES @@ -1184,8 +1183,8 @@ 1211912703 - 130 - + 2 + @@ -1196,7 +1195,7 @@ 12 - {{145, 23}, {125, 23}} + {{145, 12}, {125, 23}} YES @@ -1206,8 +1205,8 @@ 1211912703 - 130 - + 2 + @@ -1215,21 +1214,21 @@ 25 - + 12 - {{141, 104}, {125, 23}} + {{312, 12}, {59, 23}} YES - + 67239424 0 - Safe Boot (-x) + Wait - + 1211912703 - 130 - + 2 + @@ -1237,21 +1236,21 @@ 25 - + - 12 - {{312, 23}, {125, 23}} + 268 + {{141, 75}, {109, 18}} YES - + 67239424 0 - Wait + Safe Boot (-x) - + 1211912703 - 130 - + 2 + @@ -1260,11 +1259,11 @@ - {{1, 1}, {510, 146}} + {{1, 1}, {510, 115}} - {{53, 66}, {512, 162}} + {{66, 118}, {512, 131}} {0, 0} @@ -1284,45 +1283,31 @@ 2 NO - - {{10, 25}, {640, 275}} - - Boot - - - - - Item 7 - - - 256 - - YES - - + + 36 YES - - + + 256 YES - - + + 12 - {{16, 48}, {125, 23}} - + {{16, 12}, {94, 23}} + YES - + 67239424 0 Rescan - + 1211912703 - 130 - + 2 + @@ -1330,21 +1315,21 @@ 25 - - + + 12 - {{16, 12}, {133, 23}} - + {{298, 12}, {133, 23}} + YES - + 67239424 0 Scan Single Drive - + 1211912703 - 130 - + 2 + @@ -1352,21 +1337,21 @@ 25 - - + + 12 - {{150, 48}, {125, 23}} - + {{150, 12}, {125, 23}} + YES - + 67239424 0 Rescan Prompt - + 1211912703 - 130 - + 2 + @@ -1375,12 +1360,12 @@ - {{1, 1}, {291, 88}} - + {{1, 1}, {510, 52}} + - {{170, 108}, {293, 104}} - + {{66, 22}, {512, 68}} + {0, 0} 67239424 @@ -1393,51 +1378,51 @@ MCAwLjgwMDAwMDAxMTkAA - + 1 0 2 NO - {{10, 25}, {640, 275}} + {{10, 33}, {640, 267}} - CD + Boot Flags - - Item 8 - + + Item 6 + 256 YES - - + + 36 YES - - + + 256 YES - - + + 12 - {{307, 134}, {90, 23}} - + {{136, 42}, {100, 23}} + YES - + 67239424 0 - Device (rd) + Boot Banner - + 1211912703 - 130 - + 2 + @@ -1445,43 +1430,21 @@ 25 - - - 268 - {{16, 12}, {69, 23}} - - YES - - 67239424 - 0 - debug - - - 1211912703 - 130 - - - - - 200 - 25 - - - - + + 12 - {{16, 136}, {90, 23}} - + {{16, 14}, {116, 23}} + YES - + 67239424 0 - Kernel + Graphics Mode - + 1211912703 - 130 - + 2 + @@ -1489,38 +1452,38 @@ 25 - - + + 12 - {{430, 133}, {104, 22}} - + {{138, 14}, {151, 22}} + YES - - 74579521 + + -1536033215 272630784 - disk0s2 + 1920x1080x32@60 - + YES - - + + 268 - {{307, 12}, {42, 23}} - + {{316, 13}, {134, 23}} + YES - + 67239424 0 - io + Graphics Enabler - + 1211912703 - 130 - + 2 + @@ -1528,38 +1491,21 @@ 25 - - - 12 - {{101, 136}, {151, 22}} - - YES - - 74579521 - 272630784 - mach_kernel - - - YES - - - - - - + + 268 - {{16, 52}, {69, 23}} - + {{240, 42}, {72, 23}} + YES - + 67239424 0 - cpus + VBIOS - + 1211912703 - 130 - + 2 + @@ -1567,60 +1513,38 @@ 25 - - + + 268 - {{307, 49}, {74, 23}} - + {{420, 42}, {178, 22}} + YES - - 67239424 - 0 - busratio - - - 1211912703 - 130 - - - - - 200 - 25 - - - - - 268 - {{101, 96}, {70, 22}} - - YES - - -2072904127 + + 611450433 272630784 - x86_64 + - + YES - - - 268 - {{16, 94}, {69, 23}} - + + + 12 + {{16, 42}, {109, 23}} + YES - + 67239424 0 - arch + Legacy Logo - + 1211912703 - 130 - + 2 + @@ -1628,21 +1552,21 @@ 25 - - + + 268 - {{307, 97}, {190, 23}} - + {{316, 44}, {98, 18}} + YES - + 67239424 0 - disable kexts blacklisting + Video ROM - + 1211912703 - 130 - + 2 + @@ -1650,86 +1574,18 @@ 25 - - - 268 - {{101, 14}, {58, 22}} - - YES - - -2072904127 - 272630784 - 0x144 - - - YES - - - - - - - 268 - {{367, 14}, {69, 22}} - - YES - - 74579521 - 272630784 - 0xffffffff - - - YES - - - - - - - 268 - {{101, 52}, {28, 22}} - - YES - - -2072904127 - 272630784 - 1 - - - YES - - - - - - - 268 - {{393, 49}, {43, 22}} - - YES - - 74579521 - 272630784 - 20 - - - YES - - - - - {{1, 1}, {552, 168}} - + {{1, 1}, {610, 76}} + - {{46, 60}, {554, 184}} - + {{14, 150}, {612, 92}} + {0, 0} 67239424 0 - Kernel + Graphics @@ -1737,51 +1593,37 @@ MCAwLjgwMDAwMDAxMTkAA - + 1 0 2 NO - - {{10, 25}, {640, 275}} - - Kernel - - - - - Item 3 - - - 256 - - YES - - - 12 + + + 36 YES - - + + 256 YES - - + + 268 - {{16, 62}, {81, 23}} - + {{254, 12}, {101, 23}} + YES - + 67239424 0 - DSDT file + UHCI reset - + 1211912703 - 130 - + 2 + @@ -1789,21 +1631,21 @@ 25 - - + + 268 - {{316, 62}, {126, 23}} - + {{16, 13}, {104, 23}} + YES - + 67239424 0 - Drop SSDT + USB Bus Fix - + 1211912703 - 130 - + 2 + @@ -1811,38 +1653,21 @@ 25 - - + + 268 - {{115, 64}, {188, 22}} - + {{134, 12}, {103, 23}} + YES - - 74579521 - 272630784 - - - - YES - - - - - - - 268 - {{16, 12}, {92, 23}} - - YES - + 67239424 0 - SMBIOS file + EHCI acquire - + 1211912703 - 130 - + 2 + @@ -1850,21 +1675,56 @@ 25 - - + + {{1, 1}, {433, 44}} + + + + {{14, 52}, {435, 60}} + + {0, 0} + + 67239424 + 0 + USB + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 36 + + YES + + + 256 + + YES + + 268 - {{316, 13}, {126, 23}} - + {{16, 12}, {135, 23}} + YES - + 67239424 0 - SMBIOS defaults + Ethernet Built-In - + 1211912703 - 130 - + 2 + @@ -1872,87 +1732,70 @@ 25 - - - 268 - {{114, 14}, {189, 22}} - - YES - - 74579521 - 272630784 - - - - YES - - - - - {{1, 1}, {458, 103}} - + {{1, 1}, {158, 43}} + - {{88, 91}, {460, 119}} - + {{466, 52}, {160, 59}} + {0, 0} 67239424 0 - DSDT / SMBIOS + Ethernet 3 - MCAwLjgwMDAwMDAxAA + MCAwLjgwMDAwMDAxMTkAA - + 1 0 2 NO - {{10, 25}, {640, 275}} + {{10, 33}, {640, 267}} - DSDT / SMBIOS + Peripherals - - Item 6 - + + Item 8 + 256 YES - - + + 36 YES - - + + 256 YES - - + + 12 - {{316, 102}, {125, 23}} - + {{307, 77}, {90, 23}} + YES - + 67239424 0 - Boot Banner + Device (rd) - + 1211912703 - 130 - + 2 + @@ -1960,21 +1803,43 @@ 25 - - + + + 268 + {{16, 12}, {69, 23}} + + YES + + 67239424 + 0 + debug + + + 1211912703 + 2 + + + + + 200 + 25 + + + + 12 - {{16, 74}, {116, 23}} - + {{16, 78}, {69, 23}} + YES - + 67239424 0 - Graphics Mode + Kernel - + 1211912703 - 130 - + 2 + @@ -1982,38 +1847,38 @@ 25 - - + + 12 - {{138, 74}, {151, 22}} - + {{431, 77}, {104, 22}} + YES - - -2072904127 + + 611450433 272630784 - 1920x1080x32@60 + disk0s2 - + YES - - + + 268 - {{16, 44}, {134, 23}} - + {{177, 13}, {42, 23}} + YES - + 67239424 0 - Graphics Enabler + io - + 1211912703 - 130 - + 2 + @@ -2021,21 +1886,38 @@ 25 - - + + + 12 + {{102, 78}, {151, 22}} + + YES + + 611450433 + 272630784 + mach_kernel + + + YES + + + + + + 268 - {{316, 44}, {82, 23}} - + {{177, 46}, {58, 23}} + YES - + 67239424 0 - VBIOS + cpus - + 1211912703 - 130 - + 2 + @@ -2043,21 +1925,21 @@ 25 - - + + 268 - {{16, 16}, {92, 23}} - + {{307, 45}, {74, 23}} + YES - + 67239424 0 - Video ROM + busratio - + 1211912703 - 130 - + 2 + @@ -2065,38 +1947,38 @@ 25 - - + + 268 - {{138, 16}, {276, 22}} - + {{102, 48}, {70, 22}} + YES - - 74579521 + + -1536033215 272630784 - + x86_64 - + YES - - - 12 - {{16, 102}, {125, 23}} - + + + 268 + {{16, 47}, {69, 23}} + YES - + 67239424 0 - Legacy Logo + arch - + 1211912703 - 130 - + 2 + @@ -2104,18 +1986,108 @@ 25 + + + 268 + {{102, 13}, {58, 22}} + + YES + + -1536033215 + 272630784 + 0x144 + + + YES + + + + + + + 268 + {{226, 14}, {69, 22}} + + YES + + 611450433 + 272630784 + 0xffffffff + + + YES + + + + + + + 268 + {{248, 46}, {28, 22}} + + YES + + -1536033215 + 272630784 + 1 + + + YES + + + + + + + 268 + {{431, 48}, {43, 22}} + + YES + + 611450433 + 272630784 + 20 + + + YES + + + + + + + 268 + {{307, 15}, {184, 18}} + + YES + + 67239424 + 0 + Disable kexts blacklisting + + + 1211912703 + 2 + + + + + 200 + 25 + + - {{1, 1}, {432, 136}} - + {{1, 1}, {626, 111}} + - {{103, 75}, {434, 152}} - + {{6, 140}, {628, 127}} + {0, 0} 67239424 0 - Graphics + Kernel @@ -2123,51 +2095,37 @@ MCAwLjgwMDAwMDAxMTkAA - + 1 0 2 NO - - {{10, 25}, {640, 275}} - - Graphics - - - - - Item 4 - - - 256 - - YES - - - 36 + + + 12 YES - - + + 256 YES - - + + 268 - {{317, 12}, {125, 23}} - + {{16, 13}, {47, 23}} + YES - + 67239424 0 - UHCI reset + File - + 1211912703 - 130 - + 2 + @@ -2175,21 +2133,21 @@ 25 - - + + 268 - {{16, 13}, {125, 23}} - + {{228, 13}, {126, 22}} + YES - + 67239424 0 - USB Bus Fix + Drop - + 1211912703 - 130 - + 2 + @@ -2197,78 +2155,90 @@ 25 - - + + 268 - {{156, 12}, {125, 23}} - + {{69, 14}, {153, 22}} + YES - - 67239424 - 0 - EHCI acquire + + 611450433 + 272630784 + - - 1211912703 - 130 - - - - - 200 - 25 + + YES + + - {{1, 1}, {458, 44}} - + {{1, 1}, {302, 46}} + - {{90, 175}, {460, 60}} - + {{6, 74}, {304, 62}} + {0, 0} 67239424 0 - USB + DSDT 3 - MCAwLjgwMDAwMDAxMTkAA + MCAwLjgwMDAwMDAxAA - + 1 0 2 NO - - + + 36 YES - - + + 256 YES - - + + 268 - {{16, 12}, {126, 23}} - + {{71, 14}, {146, 22}} + YES - + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{224, 13}, {80, 23}} + + YES + 67239424 0 - Ethernet Built-In + Defaults - + 1211912703 - 130 - + 2 + @@ -2276,18 +2246,40 @@ 25 + + + 268 + {{16, 15}, {49, 23}} + + YES + + 67239424 + 0 + File + + + 1211912703 + 2 + + + + + 200 + 25 + + - {{1, 1}, {458, 43}} - + {{1, 1}, {320, 46}} + - {{90, 90}, {460, 59}} - + {{312, 74}, {322, 62}} + {0, 0} 67239424 0 - Ethernet + SMBIOS @@ -2295,51 +2287,37 @@ MCAwLjgwMDAwMDAxMTkAA - + 1 0 2 NO - - {{10, 25}, {640, 275}} - - USB/Ethernet - - - - - Item 5 - - - 256 - - YES - - + + 36 YES - - + + 256 YES - - + + 268 - {{176, 62}, {126, 23}} - + {{152, 9}, {100, 23}} + YES - + 67239424 0 Force Wake - + 1211912703 - 130 - + 2 + @@ -2347,21 +2325,21 @@ 25 - - + + 268 - {{16, 20}, {104, 23}} - + {{308, 9}, {98, 23}} + YES - + 67239424 0 Wake Image - + 1211912703 - 130 - + 2 + @@ -2369,21 +2347,38 @@ 25 - - + + 268 - {{16, 62}, {126, 23}} - + {{412, 11}, {201, 22}} + YES - + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{16, 12}, {63, 18}} + + YES + 67239424 0 Wake - + 1211912703 - 130 - + 2 + @@ -2391,30 +2386,13 @@ 25 - - - 268 - {{126, 20}, {304, 22}} - - YES - - 74579521 - 272630784 - - - - YES - - - - - {{1, 1}, {448, 93}} - + {{1, 1}, {626, 43}} + - {{97, 118}, {450, 109}} - + {{6, 11}, {628, 59}} + {0, 0} 67239424 @@ -2427,23 +2405,23 @@ MCAwLjgwMDAwMDAxMTkAA - + 1 0 2 NO - {{10, 25}, {640, 275}} + {{10, 33}, {640, 267}} - Wake + Advanced - - 134217728 + + 0 YES YES @@ -2487,55 +2465,32 @@ {224.664, 32} {1.79769e+308, 1.79769e+308} - - ChameleonPrefPane - - - YES - - - 271 - 2 - {{235, 250}, {480, 270}} - 611844096 - Window - NSWindow - - - - 256 - {480, 270} - - - - {{0, 0}, {1920, 1058}} - {1.79769e+308, 1.79769e+308} - - + 8223 2 - {{235, 294}, {408, 226}} + {{235, 265}, {464, 255}} 611844096 - About The Chameleon Preferences Pane ... + About the Chameleon Preferences Pane NSPanel - + 256 YES - - + + 268 - {{214, 189}, {38, 17}} - + {{245, 218}, {38, 17}} + + YES - + 68288064 272630784 2.0.0 - + 1 @@ -2543,36 +2498,38 @@ - - + + 268 - {{151, 189}, {52, 17}} - + {{182, 218}, {52, 17}} + + YES - + 68288064 272630784 Version - + - - + + 268 - {{15, 20}, {373, 154}} - + {{46, 49}, {373, 154}} + + YES - + -1805517311 272629760 ICBJbml0aWFsIENvbmNlcHRpb24gJiBEZXNpZ246ICAKCVJla3Vyc29yCiAgCiAgQ3JldyBNZW1iZXJz OiAgCglSZWt1cnNvciwgICBEaWVCdWNoZQogIAogIENvbnRyaWJ1dG9ycyAmIFRlc3RlcnM6ICAKCUJs YWNrT1NYLCAgTWFzdGVyQ2hpZWYsICBkaWdpdGFsX2RyZWFtZXIsICBzbWl0aEBAA - + 1 MCAwIDAAA @@ -2581,12 +2538,28 @@ - {408, 226} + {464, 255} + {{0, 0}, {1920, 1058}} {1.79769e+308, 1.79769e+308} + + ChameleonPrefPane + + + BootSetupController + + + BootFlagsController + + + PeripheralsController + + + AdvancedSetupController + @@ -2673,22 +2646,6 @@ - onSwapHD: - - - - 184 - - - - onSwapHD: - - - - 185 - - - onRestart: @@ -2737,52 +2694,612 @@ - mSwapHD01 - - + mDefaultPartition + + - 198 + 600 - mSwapHD02 - - + mHidePartition + + - 199 + 601 - mFreezeParts + mRenamePartition + + + + 602 + + + + onSwapHD: - + - 217 + 612 - - mInjectFrozenParts + + onSwapHD: - + - 218 + 613 onUseFrozenParts: - + - 219 + 614 onInjectPartsToFreeze: - + - 220 + 615 + + + mVerbose + + + + 616 + + + + mSafeBoot + + + + 617 + + + + mIgnoreBootConfig + + + + 618 + + + + mTimeOut + + + + 619 + + + + mTimeOutText + + + + 620 + + + + mSingleUser + + + + 621 + + + + mQuietBoot + + + + 622 + + + + mInstantMenu + + + + 623 + + + + mWait + + + + 624 + + + + mRescan + + + + 625 + + + + mRescanPrompt + + + + 626 + + + + mRescanSingleDrive + + + + 627 + + + + mLegacyLogo + + + + 628 + + + + mBootBanner + + + + 629 + + + + mVBIOS + + + + 631 + + + + mVideoROM + + + + 632 + + + + mGraphicsMode + + + + 633 + + + + mGraphicsModeText + + + + 634 + + + + mGraphicsEnabler + + + + 635 + + + + mUSBBusFix + + + + 636 + + + + mEHCIacquire + + + + 637 + + + + mUHCIreset + + + + 638 + + + + mEthernetBuiltIn + + + + 639 + + + + mKernel + + + + 640 + + + + mKernelText + + + + 641 + + + + mDeviceRd + + + + 642 + + + + mVideoROMText + + + + 643 + + + + mHidePartitionText + + + + 644 + + + + mRenamePartitionText + + + + 645 + + + + mDefaultPartitionText + + + + 646 + + + + mDeviceRdText + + + + 647 + + + + mArch + + + + 648 + + + + mArchText + + + + 649 + + + + mCPU + + + + 650 + + + + mCPUText + + + + 651 + + + + mBusRatio + + + + 652 + + + + mBusRatioText + + + + 653 + + + + mDebug + + + + 654 + + + + mDebugText + + + + 655 + + + + mIO + + + + 656 + + + + mIOText + + + + 657 + + + + mDisableKextsBlacklisting + + + + 658 + + + + mDSDTFile + + + + 659 + + + + mDSDTFileText + + + + 660 + + + + mDSDTDrop + + + + 661 + + + + mSMBIOSFile + + + + 662 + + + + mSMBIOSFileText + + + + 663 + + + + mSMBIOSDefaults + + + + 664 + + + + mWake + + + + 665 + + + + mForceWake + + + + 666 + + + + mWakeImage + + + + 667 + + + + mWakeImageText + + + + 668 + + + + onCheckButtonChange: + + + + 669 + + + + onTextFiedChange: + + + + 670 + + + + onCheckButtonChange: + + + + 671 + + + + onTextFiedChange: + + + + 672 + + + + onCheckButtonChange: + + + + 673 + + + + onCheckButtonChange: + + + + 674 + + + + onTextFiedChange: + + + + 675 + + + + onCheckButtonChange: + + + + 676 + + + + onCheckButtonChange: + + + + 677 + + + + onCheckButtonChange: + + + + 678 + + + + onTextFiedChange: + + + + 679 + + + + onCheckButtonChange: + + + + 680 + + + + onTextFiedChange: + + + + 681 + + + + onCheckButtonChange: + + + + 682 + + + + onTextFiedChange: + + + + 683 + + + + onCheckButtonChange: + + + + 684 + + + + onTextFiedChange: + + + + 685 + @@ -2821,8 +3338,8 @@ YES + - @@ -2850,13 +3367,9 @@ YES - - - - @@ -2897,8 +3410,8 @@ YES - + @@ -3040,46 +3553,6 @@ - 179 - - - YES - - - - - - - - - 180 - - - YES - - - - - - 181 - - - YES - - - - - - 182 - - - - - 183 - - - - 186 @@ -3108,34 +3581,6 @@ - 200 - - - YES - - - - - - 201 - - - - - 203 - - - YES - - - - - - 204 - - - - 284 @@ -3150,6 +3595,7 @@ YES + @@ -3158,15 +3604,15 @@ YES + + + - - - - + @@ -3234,20 +3680,6 @@ - 307 - - - YES - - - - - - 308 - - - - 309 @@ -3283,33 +3715,15 @@ - 351 - - - YES - - - - - - 352 - - - YES - - - - - 355 YES + + - - @@ -3357,109 +3771,6 @@ - 374 - - - YES - - - - - - - - - - - 377 - - - YES - - - - - - 378 - - - YES - - - - - - 384 - - - YES - - - - - - 385 - - - YES - - - - - - 386 - - - YES - - - - - - 392 - - - YES - - - - - - 393 - - - - - 399 - - - - - 400 - - - - - 401 - - - - - 407 - - - - - 408 - - - - - 421 - - - - 423 @@ -3530,119 +3841,6 @@ - 433 - - - YES - - - - - - 434 - - - - - 435 - - - YES - - - - - - 436 - - - YES - - - - - - - - 417 - - - YES - - - - - - 418 - - - - - 419 - - - YES - - - - - - 420 - - - - - 413 - - - YES - - - - - - 414 - - - - - 437 - - - YES - - - - - - 438 - - - YES - - - - - - - 439 - - - YES - - - - - - 440 - - - YES - - - - - 441 @@ -3656,76 +3854,25 @@ YES + + - 449 - - - YES - - - - - - - - 445 - - - YES - - - - - - 446 - - - - - 443 - - - YES - - - - - - 448 - - - - - 444 - - - YES - - - - - - 447 - - - - 456 YES + + - - - + + - @@ -3800,20 +3947,6 @@ - 459 - - - YES - - - - - - 462 - - - - 460 @@ -3828,92 +3961,6 @@ - 471 - - - YES - - - - - - - - - 465 - - - YES - - - - - - 470 - - - - - 466 - - - YES - - - - - - 469 - - - - - 467 - - - YES - - - - - - 468 - - - - - 472 - - - YES - - - - - - 473 - - - - - 476 - - - YES - - - - - - 477 - - - YES - - - - - 478 @@ -3928,63 +3975,13 @@ YES + + + - 486 - - - YES - - - - - - - - 481 - - - YES - - - - - - 484 - - - - - 480 - - - YES - - - - - - 485 - - - - - 482 - - - YES - - - - - - 483 - - - - 487 @@ -4004,20 +4001,20 @@ YES + + + + + - - - - - + + - - @@ -4162,20 +4159,6 @@ - 499 - - - YES - - - - - - 500 - - - - 512 @@ -4232,28 +4215,500 @@ - 522 - + 523 + YES - + + + - + - 520 - + 527 + YES - + - + - 521 - - + 528 + + + YES + + + + + 529 + + + YES + + + + + + 530 + + + + + 531 + + + + + 532 + + + + + 536 + + + YES + + + + + + + + 537 + + + YES + + + + + + 538 + + + YES + + + + + + 539 + + + + + 540 + + + YES + + + + + + 541 + + + YES + + + + + + 542 + + + YES + + + + + + 543 + + + + + 544 + + + + + 545 + + + + + 559 + + + YES + + + + + + + + 555 + + + YES + + + + + + 556 + + + + + 554 + + + YES + + + + + + 557 + + + + + 553 + + + YES + + + + + + 558 + + + + + 560 + + + YES + + + + + + + + + 561 + + + YES + + + + + + 562 + + + YES + + + + + + 563 + + + YES + + + + + + 566 + + + + + 567 + + + + + 568 + + + + + 569 + + + YES + + + + + + + + 570 + + + YES + + + + + + 571 + + + YES + + + + + + 572 + + + YES + + + + + + 573 + + + + + 574 + + + + + 575 + + + + + 576 + + + YES + + + + + + 577 + + + YES + + + + + + + + 580 + + + YES + + + + + + 581 + + + + + 579 + + + YES + + + + + + 582 + + + + + 578 + + + YES + + + + + + 583 + + + + + 584 + + + YES + + + + + + 585 + + + + + 586 + + + YES + + + + + + 587 + + + + + 588 + + + YES + + + + + + 589 + + + + + 590 + + + YES + + + + + + 591 + + + + + 596 + + + + + 597 + + + + + 598 + + + + + 599 + + + + + 603 + + + YES + + + + + + + + + 604 + + + YES + + + + + + 605 + + + YES + + + + + + 606 + + + YES + + + + + + 607 + + + YES + + + + + + 608 + + + + + 609 + + + + + 610 + + + + + 611 + + + @@ -4293,25 +4748,12 @@ 175.IBPluginDependency 176.IBAttributePlaceholdersKey 176.IBPluginDependency - 179.IBPluginDependency - 180.IBAttributePlaceholdersKey - 180.IBPluginDependency - 181.IBAttributePlaceholdersKey - 181.IBPluginDependency - 182.IBPluginDependency - 183.IBPluginDependency 186.IBAttributePlaceholdersKey 186.IBPluginDependency 187.IBPluginDependency 189.IBAttributePlaceholdersKey 189.IBPluginDependency 190.IBPluginDependency - 200.IBAttributePlaceholdersKey - 200.IBPluginDependency - 201.IBPluginDependency - 203.IBAttributePlaceholdersKey - 203.IBPluginDependency - 204.IBPluginDependency 284.IBPluginDependency 285.IBPluginDependency 286.IBPluginDependency @@ -4328,10 +4770,6 @@ 302.IBAttributePlaceholdersKey 302.IBPluginDependency 306.IBPluginDependency - 307.IBAttributePlaceholdersKey - 307.IBPluginDependency - 308.IBAttributePlaceholdersKey - 308.IBPluginDependency 309.IBPluginDependency 313.IBPluginDependency 314.IBPluginDependency @@ -4339,8 +4777,6 @@ 321.IBPluginDependency 322.IBPluginDependency 323.IBPluginDependency - 351.IBPluginDependency - 352.IBPluginDependency 355.IBPluginDependency 368.IBAttributePlaceholdersKey 368.IBPluginDependency @@ -4350,30 +4786,6 @@ 372.IBAttributePlaceholdersKey 372.IBPluginDependency 373.IBPluginDependency - 374.IBPluginDependency - 377.IBAttributePlaceholdersKey - 377.IBPluginDependency - 378.IBAttributePlaceholdersKey - 378.IBPluginDependency - 384.IBPluginDependency - 385.IBAttributePlaceholdersKey - 385.IBPluginDependency - 386.IBPluginDependency - 392.IBAttributePlaceholdersKey - 392.IBPluginDependency - 393.IBPluginDependency - 399.IBPluginDependency - 400.IBPluginDependency - 401.IBPluginDependency - 407.IBPluginDependency - 408.IBPluginDependency - 413.IBPluginDependency - 414.IBPluginDependency - 417.IBPluginDependency - 418.IBPluginDependency - 419.IBPluginDependency - 420.IBPluginDependency - 421.IBPluginDependency 423.IBAttributePlaceholdersKey 423.IBPluginDependency 424.IBPluginDependency @@ -4386,25 +4798,8 @@ 430.IBPluginDependency 431.IBPluginDependency 432.IBPluginDependency - 433.IBEditorWindowLastContentRect - 433.IBPluginDependency - 433.IBWindowTemplateEditedContentRect - 433.NSWindowTemplate.visibleAtLaunch - 434.IBPluginDependency - 435.IBEditorWindowLastContentRect - 435.IBPluginDependency - 435.IBWindowTemplateEditedContentRect - 435.NSWindowTemplate.visibleAtLaunch - 436.IBPluginDependency - 443.IBAttributePlaceholdersKey - 443.IBPluginDependency - 444.IBAttributePlaceholdersKey - 444.IBPluginDependency - 445.IBAttributePlaceholdersKey - 445.IBPluginDependency - 446.IBPluginDependency - 447.IBPluginDependency - 448.IBPluginDependency + 441.IBPluginDependency + 442.IBPluginDependency 450.IBAttributePlaceholdersKey 450.IBPluginDependency 451.IBPluginDependency @@ -4413,37 +4808,17 @@ 453.IBPluginDependency 454.IBPluginDependency 455.IBPluginDependency + 456.IBPluginDependency 457.IBAttributePlaceholdersKey 457.IBPluginDependency 458.IBAttributePlaceholdersKey 458.IBPluginDependency - 459.IBPluginDependency 460.IBPluginDependency 461.IBPluginDependency - 462.IBAttributePlaceholdersKey - 462.IBPluginDependency 463.IBPluginDependency 464.IBPluginDependency - 465.IBAttributePlaceholdersKey - 465.IBPluginDependency - 466.IBAttributePlaceholdersKey - 466.IBPluginDependency - 467.IBPluginDependency - 468.IBAttributePlaceholdersKey - 468.IBPluginDependency - 469.IBPluginDependency - 470.IBPluginDependency - 472.IBPluginDependency - 473.IBPluginDependency - 480.IBAttributePlaceholdersKey - 480.IBPluginDependency - 481.IBAttributePlaceholdersKey - 481.IBPluginDependency - 482.IBAttributePlaceholdersKey - 482.IBPluginDependency - 483.IBPluginDependency - 484.IBPluginDependency - 485.IBPluginDependency + 478.IBPluginDependency + 479.IBPluginDependency 487.IBAttributePlaceholdersKey 487.IBPluginDependency 488.IBPluginDependency @@ -4464,9 +4839,6 @@ 497.IBAttributePlaceholdersKey 497.IBPluginDependency 498.IBPluginDependency - 499.IBPluginDependency - 500.IBAttributePlaceholdersKey - 500.IBPluginDependency 501.IBPluginDependency 502.IBPluginDependency 503.IBPluginDependency @@ -4477,6 +4849,7 @@ 508.IBPluginDependency 509.IBPluginDependency 510.IBPluginDependency + 511.IBPluginDependency 512.IBPluginDependency 513.IBAttributePlaceholdersKey 513.IBPluginDependency @@ -4486,11 +4859,98 @@ 517.IBPluginDependency 518.IBPluginDependency 519.IBPluginDependency - 520.IBAttributePlaceholdersKey - 520.IBPluginDependency - 521.IBPluginDependency + 523.IBPluginDependency + 527.IBPluginDependency + 528.IBAttributePlaceholdersKey + 528.IBPluginDependency + 529.IBAttributePlaceholdersKey + 529.IBPluginDependency + 530.IBPluginDependency + 531.IBPluginDependency + 532.IBPluginDependency + 536.IBPluginDependency + 537.IBPluginDependency + 538.IBAttributePlaceholdersKey + 538.IBPluginDependency + 539.IBPluginDependency + 540.IBAttributePlaceholdersKey + 540.IBPluginDependency + 541.IBAttributePlaceholdersKey + 541.IBPluginDependency + 542.IBAttributePlaceholdersKey + 542.IBPluginDependency + 543.IBPluginDependency + 544.IBPluginDependency + 545.IBPluginDependency + 553.IBAttributePlaceholdersKey + 553.IBPluginDependency + 554.IBAttributePlaceholdersKey + 554.IBPluginDependency + 555.IBPluginDependency + 556.IBPluginDependency + 557.IBPluginDependency + 558.IBPluginDependency + 559.IBPluginDependency + 560.IBPluginDependency + 561.IBPluginDependency + 562.IBAttributePlaceholdersKey + 562.IBPluginDependency + 563.IBAttributePlaceholdersKey + 563.IBPluginDependency + 566.IBPluginDependency + 567.IBPluginDependency + 568.IBPluginDependency + 569.IBPluginDependency + 570.IBAttributePlaceholdersKey + 570.IBPluginDependency + 571.IBAttributePlaceholdersKey + 571.IBPluginDependency + 572.IBAttributePlaceholdersKey + 572.IBPluginDependency + 573.IBPluginDependency + 574.IBPluginDependency + 575.IBPluginDependency + 576.IBEditorWindowLastContentRect + 576.IBPluginDependency + 576.IBWindowTemplateEditedContentRect + 576.NSWindowTemplate.visibleAtLaunch + 577.IBPluginDependency + 578.IBPluginDependency + 579.IBPluginDependency + 580.IBPluginDependency + 581.IBPluginDependency + 582.IBPluginDependency + 583.IBPluginDependency + 584.IBAttributePlaceholdersKey + 584.IBPluginDependency + 585.IBPluginDependency + 586.IBAttributePlaceholdersKey + 586.IBPluginDependency + 587.IBPluginDependency + 588.IBAttributePlaceholdersKey + 588.IBPluginDependency + 589.IBPluginDependency + 590.IBPluginDependency + 591.IBPluginDependency + 596.IBPluginDependency + 597.IBPluginDependency + 598.IBPluginDependency + 599.IBPluginDependency 6.IBPluginDependency 6.ImportedFromIB2 + 603.IBPluginDependency + 604.IBAttributePlaceholdersKey + 604.IBPluginDependency + 605.IBAttributePlaceholdersKey + 605.IBPluginDependency + 606.IBAttributePlaceholdersKey + 606.IBPluginDependency + 607.IBAttributePlaceholdersKey + 607.IBPluginDependency + 608.IBPluginDependency + 609.IBPluginDependency + 610.IBPluginDependency + 611.IBPluginDependency 99.IBAttributePlaceholdersKey 99.IBPluginDependency @@ -4515,9 +4975,9 @@ com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin - {{89, 248}, {668, 368}} + {{175, 271}, {668, 368}} com.apple.InterfaceBuilder.CocoaPlugin - {{89, 248}, {668, 368}} + {{175, 271}, {668, 368}} {224.664, 10} @@ -4543,31 +5003,10 @@ com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin ToolTip ToolTip - - Swap disks indexes 0<->2, use this option if your disk sequence in osx does not match the chameleon boot disk sequence - - - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Swap disks indexes 0<->1, use this option if your disk sequence in osx does not match the chameleon boot disk sequence - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip Restart the sytem @@ -4584,29 +5023,9 @@ com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Use the freezed partitions list in located in the preference file for locking and manual handling purpose - - com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Use this feature to initially inject the current dynamically listed partitions. Then you can change manually the partition disk numbers and labels in the preference file - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin ToolTip @@ -4662,23 +5081,7 @@ com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Force displaying the partition selection menu (default=No) - - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Boot in Safe Mode (default: No) - - com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin @@ -4686,10 +5089,6 @@ com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin ToolTip @@ -4713,32 +5112,42 @@ com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin ToolTip ToolTip - - Use an alternate DSDT.aml file (default path: /DSDT.aml /Extra/DSDT.aml) + + U2V0cyB0aGUgZGVmYXVsdCBib290IHBhcnRpdGlvbiBoZCh4LHkpICAgICAgICAgICAgICAgICAgd2hl +cmUgJ3gnIGlzIHRoZSBkaXNrIG51bWJlciwgJ3knIHRoZSBwYXJ0aXRpb24gbnVtYmVyCg com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin ToolTip ToolTip - - Don't use the Default values for SMBIOS overriding. If smbios.plist doesn't exist, factory values are kept (default=Yes) + + U2V0cyB0aGUgZGVmYXVsdCBib290IHBhcnRpdGlvbiBoZCh4LHkpICAgICAgICAgICAgICAgICAgd2hl +cmUgJ3gnIGlzIHRoZSBkaXNrIG51bWJlciwgJ3knIHRoZSBwYXJ0aXRpb24gbnVtYmVyCg com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin ToolTip ToolTip - - Use an alternate smbios.plist file (default path: /smbios.plist /Extra/smbios.plist) + + Graphics Mode="WIDTHxHEIGHTxDEPTH@FREQ). Works only if you have a VESA 3.0 compliant card (default= No custom resolution is selected) com.apple.InterfaceBuilder.CocoaPlugin @@ -4747,8 +5156,8 @@ ToolTip ToolTip - - Skip the SSDT tables while relocating the ACPI tables (default=No) + + Show boot banner in GUI mode (default=Yes) com.apple.InterfaceBuilder.CocoaPlugin @@ -4756,35 +5165,21 @@ com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin ToolTip ToolTip - - U2V0cyB0aGUgZGVmYXVsdCBib290IHBhcnRpdGlvbiBoZCh4LHkpICAgICAgICAgICAgICAgICAgd2hl -cmUgJ3gnIGlzIHRoZSBkaXNrIG51bWJlciwgJ3knIHRoZSBwYXJ0aXRpb24gbnVtYmVyCg + + Automatic device-properties generation for graphics cards (default=No) com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin ToolTip ToolTip - - U2V0cyB0aGUgZGVmYXVsdCBib290IHBhcnRpdGlvbiBoZCh4LHkpICAgICAgICAgICAgICAgICAgd2hl -cmUgJ3gnIGlzIHRoZSBkaXNrIG51bWJlciwgJ3knIHRoZSBwYXJ0aXRpb24gbnVtYmVyCg + + Inject VBIOS to device-properties (default=No) com.apple.InterfaceBuilder.CocoaPlugin @@ -4793,74 +5188,70 @@ com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin - {{688, 545}, {480, 270}} com.apple.InterfaceBuilder.CocoaPlugin - {{688, 545}, {480, 270}} - + + ToolTip + + ToolTip + + Use the legacy grey apple logo (default=No) + + com.apple.InterfaceBuilder.CocoaPlugin - {{785, 661}, {408, 226}} com.apple.InterfaceBuilder.CocoaPlugin - {{785, 661}, {408, 226}} - - com.apple.InterfaceBuilder.CocoaPlugin ToolTip ToolTip - - Enable the EHCI and UHCI fixes (default=No) + + Usage: rd=<BSD device name> (e.g. rd=disk0s2) | rd=*<IODeviceTree path> (e.g. rd=*/PCI0@0/CHN0@0/@0:1) com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin ToolTip ToolTip - - Enable the EHCI fix (default=No) + + Select a custom mach_kernel (/mach_kernel is used by default) com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin ToolTip ToolTip - - Enable the UHCI fix (default=No) + + Enable kernel debug mode flags com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin ToolTip ToolTip - - Graphics Mode="WIDTHxHEIGHTxDEPTH@FREQ). Works only if you have a VESA 3.0 compliant card (default= No custom resolution is selected) + + io filtering mask associated with the debug mode. Warning: some io debug modes can crash your boot. com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin ToolTip ToolTip - - Show boot banner in GUI mode (default=Yes) + + Force physical cpus count (automatically detected by default) com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin ToolTip ToolTip - - Automatic device-properties generation for graphics cards (default=No) + + Force busratio multiplier, such as CPUFreq=FSB freq x busratio (automatically detected by default) com.apple.InterfaceBuilder.CocoaPlugin @@ -4868,31 +5259,47 @@ ToolTip ToolTip - - Inject VBIOS to device-properties (default=No) + + Default kernel architecture boot mode (i386 | x86_64 | ppc). On intel platforms, select either i386 or x86_64 com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin ToolTip ToolTip - - Use an alternate ROM image (default path: /NVIDIA.ROM) + + selects the io mask to filter for debug mode com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin ToolTip ToolTip - - Force using the sleepimage (default=No) + + Skip the SSDT tables while relocating the ACPI tables (default=No) com.apple.InterfaceBuilder.CocoaPlugin @@ -4900,31 +5307,32 @@ ToolTip ToolTip - - Use an alternate sleepimage file (default path is /private/var/vm/sleepimage) + + Use an alternate DSDT.aml file (default path: /DSDT.aml /Extra/DSDT.aml) com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin ToolTip ToolTip - - Disable wake up after hibernation (Default=Yes) + + Automatic "built-in" device-properties generation for ethernet interfaces (default=No) com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin ToolTip ToolTip - - Scan the drive only where the booter got loaded from (default=No) + + Enable the EHCI fix (default=No) com.apple.InterfaceBuilder.CocoaPlugin @@ -4932,8 +5340,8 @@ ToolTip ToolTip - - Enable CD-ROM rescan mode (default=No) + + Enable the EHCI and UHCI fixes (default=No) com.apple.InterfaceBuilder.CocoaPlugin @@ -4941,8 +5349,8 @@ ToolTip ToolTip - - Prompts for enable CD-ROM rescan mode (default=No) + + Enable the UHCI fix (default=No) com.apple.InterfaceBuilder.CocoaPlugin @@ -4953,47 +5361,55 @@ ToolTip ToolTip - - Use the legacy grey apple logo (default=No) + + Use an alternate smbios.plist file (default path: /smbios.plist /Extra/smbios.plist) com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin ToolTip ToolTip - - Usage: rd=<BSD device name> (e.g. rd=disk0s2) | rd=*<IODeviceTree path> (e.g. rd=*/PCI0@0/CHN0@0/@0:1) + + Don't use the Default values for SMBIOS overriding. If smbios.plist doesn't exist, factory values are kept (default=Yes) com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin ToolTip ToolTip - - Select a custom mach_kernel (/mach_kernel is used by default) + + Use an alternate sleepimage file (default path is /private/var/vm/sleepimage) com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin ToolTip ToolTip - - Enable kernel debug mode flags + + Force using the sleepimage (default=No) com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin ToolTip ToolTip - - io filtering mask associated with the debug mode. Warning: some io debug modes can crash your boot. + + Scan the drive only where the booter got loaded from (default=No) com.apple.InterfaceBuilder.CocoaPlugin @@ -5001,8 +5417,8 @@ ToolTip ToolTip - - Force physical cpus count (automatically detected by default) + + Prompts for enable CD-ROM rescan mode (default=No) com.apple.InterfaceBuilder.CocoaPlugin @@ -5010,32 +5426,53 @@ ToolTip ToolTip - - Force busratio multiplier, such as CPUFreq=FSB freq x busratio (automatically detected by default) + + Enable CD-ROM rescan mode (default=No) com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{724, 590}, {464, 255}} + com.apple.InterfaceBuilder.CocoaPlugin + {{724, 590}, {464, 255}} + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin ToolTip ToolTip - - Default kernel architecture boot mode (i386 | x86_64 | ppc). On intel platforms, select either i386 or x86_64 + + Define the GFX card video ROM file that should be loaded at boot com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin ToolTip ToolTip - + Disable the blacklist kexts filtering in voodoo based kernels. Has no effect on vanilla kernels. (Enabled by default) com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Force displaying the partition selection menu (default=No) + + com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin @@ -5045,34 +5482,48 @@ com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin ToolTip ToolTip - - selects the io mask to filter for debug mode + + Use the freezed partitions list in located in the preference file for locking and manual handling purpose com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Swap disks indexes 0<->2, use this option if your disk sequence in osx does not match the chameleon boot disk sequence + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use this feature to initially inject the current dynamically listed partitions. Then you can change manually the partition disk numbers and labels in the preference file + + com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin ToolTip ToolTip - - Automatic "built-in" device-properties generation for ethernet interfaces (default=No) + + Swap disks indexes 0<->1, use this option if your disk sequence in osx does not match the chameleon boot disk sequence com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin - + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin ToolTip @@ -5100,12 +5551,188 @@ - 522 + 685 YES + AdvancedSetupController + NSObject + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + id + id + + + + YES + + YES + mArch + mArchText + mBusRatio + mBusRatioText + mCPU + mCPUText + mDSDTDrop + mDSDTFile + mDSDTFileText + mDebug + mDebugText + mDeviceRd + mDeviceRdText + mDisableKextsBlacklisting + mForceWake + mIO + mIOText + mKernel + mKernelText + mSMBIOSDefaults + mSMBIOSFile + mSMBIOSFileText + mWake + mWakeImage + mWakeImageText + + + YES + NSButton + NSTextField + NSButton + NSTextField + NSButton + NSTextField + NSButton + NSButton + NSTextField + NSButton + NSTextField + NSButton + NSTextField + NSButton + NSButton + NSButton + NSTextField + NSButton + NSTextField + NSButton + NSButton + NSTextField + NSButton + NSButton + NSTextField + + + + IBProjectSource + Sources/AdvancedSetupController.h + + + + BootFlagsController + NSObject + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + id + id + + + + YES + + YES + mIgnoreBootConfig + mInstantMenu + mQuietBoot + mRescan + mRescanPrompt + mRescanSingleDrive + mSafeBoot + mSingleUser + mTimeOut + mTimeOutText + mVerbose + mWait + + + YES + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSTextField + NSButton + NSButton + + + + IBProjectSource + Sources/BootFlagsController.h + + + + BootSetupController + NSObject + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + id + id + + + + YES + + YES + mDefaultPartition + mDefaultPartitionText + mHidePartition + mHidePartitionText + mRenamePartition + mRenamePartitionText + + + YES + NSButton + NSTextField + NSButton + NSTextField + NSButton + NSTextField + + + + IBProjectSource + Sources/BootSetupController.h + + + ChameleonPrefPane NSPreferencePane @@ -5189,6 +5816,60 @@ + + PeripheralsController + NSObject + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + id + id + + + + YES + + YES + mBootBanner + mEHCIacquire + mEthernetBuiltIn + mGraphicsEnabler + mGraphicsMode + mGraphicsModeText + mLegacyLogo + mUHCIreset + mUSBBusFix + mVBIOS + mVideoROM + mVideoROMText + + + YES + NSButton + NSButton + NSButton + NSButton + NSButton + NSTextField + NSButton + NSButton + NSButton + NSButton + NSButton + NSTextField + + + + IBProjectSource + Sources/PeripheralsController.h + + YES @@ -5284,14 +5965,6 @@ - NSController - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSController.h - - - NSFormatter NSObject @@ -5698,14 +6371,6 @@ - NSUserDefaultsController - NSController - - IBFrameworkSource - AppKit.framework/Headers/NSUserDefaultsController.h - - - NSView IBFrameworkSource @@ -5771,7 +6436,7 @@ com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - + YES ../ChameleonPrefPane.xcodeproj