2 .\" Copyright (c) 2000-2003 Apple Computer, Inc. All rights reserved.
4 .TH nvram 8 "October 28, 2003"
6 nvram \- manipulate firmware NVRAM variables
25 command allows manipulation of firmware NVRAM variables. It
26 can be used to get or set a variable. It can also be used to print
27 all of the variables or set a list of variables from a file.
28 Changes to NVRAM variables are only saved by clean restart or shutdown.
32 can be any string. In practice, not all strings will be accepted.
33 New World machines can create new variables as desired. Some variables
34 require administrator privilege to get or set.
38 must match the data type required for
40 Binary data can be set using the %xx notation, where xx is the hex
41 value of the byte. The type for new variables is always binary
47 Deletes the named firmware variable.
51 Set firmware variables from a text file. The file must be a
52 list of "name value" statements. The first space on each line
53 is taken to be the separator between "name" and "value". If
54 the last character of a line is \\, the value extends to the next line.
58 Use XML format for reading and writing variables.
59 This option must be used before the
63 options, since arguments are processed in order.
66 Print all of the firmware variables.
70 example% nvram boot-args="-s rd=*hd:10"
73 Set the boot-args variable to "-s rd=*hd:10". This would specify
74 single user mode with the root device in hard drive partition 10.
77 example% nvram my-variable="String One%00String Two%00%00"
80 Create a new variable, my-variable, containing a list of two
81 C-strings that is terminated by a NUL.
84 example% nvram -d my-variable
87 Deletes the variable named my-variable.