View Single Post
 
Old 09-18-2009, 09:00 AM
thorazine74 thorazine74 is offline
 
Join Date: May 2009
Location: Spain
Posts: 411
com.apple.boot.plist in Extra is the main config file for Chameleon, you can specify many options that affect mostly how the system boots, you can see all the available options in Chameleon's BootHelp.txt. Here is mine for example:

Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>Default Partition</key>
    <string>hd(0,2)</string>
    <key>Graphics Mode</key>
    <string>1680x1050x32</string>
    <key>Kernel</key>
    <string>mach_kernel</string>
    <key>Kernel Flags</key>
    <string>"Graphics Mode"="1680x1050x32"</string>
    <key>Legacy Logo</key>
    <string>yes</string>
    <key>Timeout</key>
    <string>10</string>
    <key>Wait</key>
    <string>y</string>
</dict>
</plist>
SMBIOS.plist affects what info will be reported to the system to be used for identification purposes mostly for System Profiler. Basically you put some info to mimic a specific Mac model close to your system (a MacBook if you have a laptop or a iMac or MacPro in a desktop). This is mine:

Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>SMbiosversion</key>
    <string>IM91.88Z.008D.B00.0901142258</string>
    <key>SMboardmanufacter</key>
    <string>Apple Inc.</string>
    <key>SMboardproduct</key>
    <string>Mac-F2218EC8</string>
    <key>SMexternalclock</key>
    <string>400</string>
    <key>SMmanufacter</key>
    <string>Apple Inc.</string>
    <key>SMmaximalclock</key>
    <string>3200</string>
    <key>SMmemmanufacter_1</key>
    <string>Kingston</string>
    <key>SMmemmanufacter_2</key>
    <string>Kingston</string>
    <key>SMmemmanufacter_3</key>
    <string>Kingston</string>
    <key>SMmemmanufacter_4</key>
    <string>Kingston</string>
    <key>SMmempart_1</key>
    <string>99U5316-028.A00LF</string>
    <key>SMmempart_2</key>
    <string>KTC1G-UDIMM</string>
    <key>SMmempart_3</key>
    <string>99U5316-028.A00LF</string>
    <key>SMmempart_4</key>
    <string>KTC1G-UDIMM</string>
    <key>SMmemserial_1</key>
    <string>0x651C52C8h</string>
    <key>SMmemserial_2</key>
    <string>0xD51C1E0Ah</string>
    <key>SMmemserial_3</key>
    <string>0x651C52C8h</string>
    <key>SMmemserial_4</key>
    <string>0xD51C1E0Ah</string>
    <key>SMmemspeed</key>
    <string>800</string>
    <key>SMmemtype</key>
    <string>19</string>
    <key>SMproductname</key>
    <string>iMac9,1</string>
    <key>SMserial</key>
    <string>W87234JHYA4</string>
    <key>SMsystemversion</key>
    <string>1.0</string>
</dict>
</plist>
If you are looking for specific settings for your system I cant help...

AsRock P45TS | C2D E8200 | GeForce 8600GTS
Mac OS X Snow Leopard 10.6.1 + Windows 7 Ultimate 6.1.7600 + Fedora 11
Reply With Quote