1 /* SPDX-License-Identifier: GPL-2.0-only */
5 /* basename of this program, as reported by argv[0] */
6 const char prog_name
[] = "nvramtool";
8 /* version of this program */
9 const char prog_version
[] = "2.1";
11 /****************************************************************************
14 * Get a line of input from file 'f'. Store result in 'line' which is an
15 * array of 'line_buf_size' bytes.
16 ****************************************************************************/
17 int get_line_from_file(FILE * f
, char line
[], int line_buf_size
)
19 if (fgets(line
, line_buf_size
, f
) == NULL
)
22 /* If the file contains a line that is too long, then it's best
23 * to let the user know right away rather than passing back a
24 * truncated result that will lead to problems later on.
26 return (strlen(line
) == ((size_t) (line_buf_size
- 1))) ?
30 /****************************************************************************
33 * We ran out of memory. Print an error message and die.
34 ****************************************************************************/
35 noreturn
void out_of_memory(void)
37 fprintf(stderr
, "%s: Out of memory.\n", prog_name
);
41 /****************************************************************************
44 * Write a usage message to 'outfile'. If 'outfile' is 'stderr' then exit
45 * with a value of 1. Otherwise exit with a value of 0.
46 ****************************************************************************/
47 void usage(FILE * outfile
)
50 "Usage: %s [-y LAYOUT_FILE | -t] PARAMETER ...\n\n"
51 " Read/write coreboot parameters or show info from "
53 " -y LAYOUT_FILE: Use CMOS layout specified by "
55 " -t: Use CMOS layout specified by CMOS option "
57 " -C CBFS_FILE: Use CBFS file for layout and CMOS data.\n"
58 " -D CMOS_FILE: Use CMOS file for CMOS data (overrides CMOS of -C).\n"
59 " [-n] -r NAME: Show parameter NAME. If -n is given, "
61 " -e NAME: Show all possible values for parameter "
63 " -a: Show names and values for all "
65 " -w NAME=VALUE: Set parameter NAME to VALUE.\n"
66 " -p INPUT_FILE: Set parameters according to INPUT_FILE.\n"
67 " -i: Same as -p but file contents taken from "
69 " -c [VALUE]: Show CMOS checksum or set checksum to "
71 " -l [ARG]: Show coreboot table info for ARG, or "
73 " -L OUTPUT_BIN Write CMOS layout file in binary format\n"
74 " -H OUTPUT_HDR Write CMOS layout file in header format\n"
75 " -d: Show low-level dump of coreboot table.\n"
76 " -Y: Show CMOS layout info.\n"
77 " -b OUTPUT_FILE: Dump CMOS memory contents to file.\n"
78 " -B INPUT_FILE: Write file contents to CMOS memory.\n"
79 " -x: Show hex dump of CMOS memory.\n"
80 " -X DUMPFILE: Show hex dump of CMOS dumpfile.\n"
81 " -v: Show version info for this program.\n"
82 " -h: Show this message.\n", prog_name
);
83 exit(outfile
== stderr
);