To turn on Verbose booting, at a Terminal window
sudo nvram -p |grep boot-args #display current setting (may not be present)
sudo nvram boot-args="-v" #display new setting
sudo nvram -p |grep boot-args
Disabling Verbose booting sudo nvram boot-args=
If you're curious what the current firmware nvram settings are: sudo nvram -p
nvramrc scroll-lock true boot-command mac-boot pci-probe-mask -1 skip-netboot? false default-client-ip default-subnet-mask default-gateway-ip default-server-ip default-router-ip diag-device enet default-mac-address? false boot-device pci2/ata-6@D/@0:3,\\:tbxi real-size -1 logger-size -1 auto-boot? true use-generic? false |
aapl,pci /@f0000000/@10%00MVAD%00\%01%82%ff%81?%ff%81%0e%ba%0c%07%82%ff%01%07%17%ff%018%19d%04%ff%01%05@%ff%01%18%ff%01%88%03%ff%01%03&%ff%01%03%ff%01%06%03%ff%01%04%ff%03%19d%04%ff%01%05@%ff%01%08%ff%01 %03%ff%01%03&%ff%01%01%ff%01%02%03%ff%01%04%ff%01<%ff%05%00 platform-uuid %00%00%00%00%00%00%10%00%80%00%00%11$G?%aa
nvram - manipulate Open Firmware NVRAM variables
nvram [ -p ] [ -f filename ] [ -d name ] [ name [= value ]] ...
manipulates of Open Firmware NVRAM variables. It can be used to get or set a variable. It can also be used to print all of the variables or set a list of variables from a file. Changes to NVRAM variables are only saved by clean restart or shutdown. In principle, name can be any string. In practice, not all strings will be accepted. New World machines can create new variables as desired. Some variables require administrator privilege to get or set. The value must match the data type required for name. Binary data can be set using the %xx notation, where xx is the hex value of the byte. The type for new variables is always binary data.
-p |
> nvram boot-args="-s rd=*hd:10"
Set the boot-args variable to "-s rd=*hd:10". This would specify single user mode with the root device in hard drive partition 10.
> nvram my-variable="String One%00String Two%00%00"
Create a new variable, my-variable, containing a list of two C-strings that is terminated by a NUL.
> nvram -d my-variable
Deletes the variable named my-variable.
October 28, 2003