summaryrefslogtreecommitdiff
path: root/dmiopt.c
Commit message (Collapse)AuthorAgeFilesLines
* dmidecode: Add --no-sysfs option to disable use of sysfskhali2015-04-211-0/+4
| | | | | | | | This option forces any SMBIOS information in sysfs to be ignored, resulting in dmidecode using /dev/mem for SMBIOS access. This is likely most useful for debugging. Contributed by Roy Franz.
* Update my e-mail addresskhali2014-02-031-1/+1
|
* Include entry type 41 in --type baseboard.khali2008-11-071-1/+1
|
* Make options --dump-bin and --quiet work together.khali2008-10-301-2/+0
|
* Option --dump is only a modifier as --quiet is, so it's not actuallykhali2008-10-301-3/+3
| | | | mutually exclusive with the output format options.
* Don't use function pointers for special string cases. Each special case iskhali2008-10-281-22/+22
| | | | | itself special and needs to call a function with its own prototype, so better have dedicated code to handle it all.
* Coding style fixes.khali2008-10-271-1/+1
|
* Mass coding-style change: add spaces around operators.khali2008-10-261-56/+56
|
* Simplify the handling and documentation of mutually exclusive outputkhali2008-10-261-18/+6
| | | | format options.
* New option --from-dump, read the DMI data from a binary file.khali2008-10-251-0/+11
|
* Write binary dump to a compact file rather than a sparse file.khali2008-10-251-1/+1
|
* Update copyright statements.khali2008-02-161-1/+1
|
* Drop trailing whitespace.khali2008-02-161-1/+1
|
* New option --dump-bin, dump the DMI data to a sparse binary file.khali2008-02-161-0/+11
|
* Define an ARRAY_SIZE macro which computes the size of a static array, andkhali2007-02-111-4/+5
| | | | use it where relevant.
* Fix incorrect header include. The strcasecmp function is defined inkhali2005-09-241-1/+1
| | | | <strings.h>, not <string.h>.
* Modify the opt structure to handle the string option more efficiently.khali2005-09-141-16/+4
|
* Make it possible for --string to print decoded binary data rather thankhali2005-09-141-18/+27
| | | | only DMI strings. Add four such string keywords.
* Complain about unknown options again.khali2005-08-251-4/+2
|
* Options --dump and --quiet are mutually exclusive.khali2005-08-021-0/+6
|
* Options --dump and --string are mutually exclusive.khali2005-06-231-1/+7
|
* Add string keyword "bios-release-date".khali2005-06-221-0/+1
|
* Display the list of all valid type or string keywords when --type orkhali2005-06-221-3/+39
| | | | | --string, respectievely, is used without an argument or with an invalid one.
* Add option -s, --string. It prints one selected DMI string instead ofkhali2005-06-211-1/+73
| | | | the regular output.
* Miscellaneous comments and reordering.khali2005-06-211-3/+14
|
* Add option -q, --quiet. It makes the output less verbose.khali2005-06-171-1/+6
|
* Define keywords to be used with --type (instead of numeric values).khali2005-06-151-1/+45
|
* Move the command line handling of dmidecode to a separate source file.khali2005-06-151-0/+131