![]() |
mac startup screen?
I've seen peoples OSX86 machines boot up with the mac boot up screen.
http://i36.tinypic.com/344cwtg.png That one ^^^^^ The logo and everything instead of all that code. Do you need to have a vanilla kernel to do that or is there a way to set your boot up screen that way? Thanks =) |
if you have the flag -v on it will boot up with all that work. otherwise that screen should come up. unless its just booting into that all the time. what installer did you use?
|
Verbose in your com.apple.Boot.plist.
Axhi is correct. If your not manually typing -v on startup then its in your com.apple.Boot.plist.
Its located in: /Library/Preferences/SystemConfiguration/ The syntax goes something like this: <key>Kernel Flags</key> <string>-v -f maxmem=2048</string> You just remove the -v and you will get the graphic startup. Id leave it be until you completely satisfied with your install as it does show useful information not only during startup but also on shutdown. The other flags you see are just to show you the syntax. There is a single space between flags. If your not using any flags then it should look like this. <key>Kernel Flags</key> <string></string> I generally copy com.apple.Boot.plist to the desktop. Make the changes then drag it back over. It will ask you to authenticate. |
after you take out the "-v" flag from the Kernel Flags section you can also specify:
Code:
"Boot Graphics"=Yes Code:
"Boot Graphics"=No |
Quote:
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>Kernel</key> <string>mach_kernel</string> <key>Kernel Flags</key> <string>-v</string> <key>Timeout</key> <string>10</string> </dict> </plist> |
Quote:
|