aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/ofwdump
Commit message (Collapse)AuthorAgeFilesLines
* - Add a reference to eeprom(8).Marius Strobl2004-05-221-2/+4
| | | | | | | | - Spell Open Firmware as "Open Firmware", the way it's done on OpenFirmware.org. Notes: svn path=/head/; revision=129593
* - Change ofwdump(8) to use sysexits(3) exit codes.Marius Strobl2004-05-224-142/+185
| | | | | | | | | | | | | | | | | | | | | | | | | - Make the code use the new OFIOCMAXVALUE instead of defining the maximum length of property values locally. - Move the application specific parts from ofw_util.c to ofwdump.c in order to make ofw_util.c more library-like. While ofw_dump_properties() could be made non-specific to ofwdump(8) it's currently optimized for use in ofwdump(8) and making it a library-like function would just complicate the code unnecessarily. - Minor clean-up in ofw_util.c, e.g. make its use of getopt(3) the way it's described in style(9), make its usage() static, etc. - Add a comment in ofw_util.c about why it doesn't call usage() when neither the "-a" option nor a node-name where given. - Add ofw_optnode() and ofw_setprop(), helper functions for the OFIOCGETOPTNODE and OFIOCSET ioctls respectively, to ofw_util.[c,h]. - Be consistent with the use of 'const' in ofw_util.[c,h] and add 'const' to the function arguments that are acutally const but weren't declared as such. - Mark WARNS=6 clean. Approved by: tmm Notes: svn path=/head/; revision=129589
* Use void * instead of char * to avoid violating C99 strict aliasing rules.Dag-Erling Smørgrav2004-03-161-17/+12
| | | | Notes: svn path=/head/; revision=127092
* This is Sparc64-only.Ruslan Ermilov2004-01-212-1/+2
| | | | Notes: svn path=/head/; revision=124788
* Autosize the property buffer instead of limiting it to 8192, andThomas Moestl2003-06-112-7/+76
| | | | | | | exiting if a property happens to be larger. Notes: svn path=/head/; revision=116212
* style.Makefile(5)David E. O'Brien2003-04-041-0/+1
| | | | Notes: svn path=/head/; revision=113091
* Increase the size of the property buffer to 8192. 1024 wasn't enough toJake Burkholder2003-03-141-1/+1
| | | | | | | retrieve certain nodes. Notes: svn path=/head/; revision=112238
* mdoc(7) police: tiny markup nits.Ruslan Ermilov2002-12-121-6/+7
| | | | | | | Approved by: re Notes: svn path=/head/; revision=107777
* Add a utility to examine the OpenFirmware device tree (on sparc64). ThisThomas Moestl2002-10-186-0/+555
allows access to detailed machine configuration information, and should be especially useful to gather information for driver-related bug reports. Notes: svn path=/head/; revision=105401