aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/etdump
Commit message (Collapse)AuthorAgeFilesLines
* etdump: exit on error if section header or entry offset is OOBEd Maste2023-03-221-4/+10
| | | | | | | | | PR: 263663 Reported by: Robert Morris <rtm@lcs.mit.edu> Reviewed by: markj MFC after: 1 week Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D35868
* etdump: Fix the file name included in the could not open error messageJessica Clarke2022-01-161-1/+1
| | | | | | | | | | If only one file is passed, this reads the terminating NULL and so prints (null). If multiple files are passed then this always prints the second file, which may or may not exist (and will be particularly confusing if it does exist since the output will include the dump of the second file). MFC after: 1 week
* Update release version of FreeBSD.Benno Rice2018-04-251-2/+2
| | | | | | | Sponsored by: iXsystems, Inc. Notes: svn path=/head/; revision=333007
* Remove a debugging printf that crept in.Benno Rice2018-04-121-1/+0
| | | | | | | Sponsored by: iXsystems, Inc. Notes: svn path=/head/; revision=332438
* Check the return value of fseek.Benno Rice2018-04-121-1/+3
| | | | | | | | | Reported by: Coverity CID: 1388267 Sponsored by: iXsystems, Inc. Notes: svn path=/head/; revision=332437
* Add the etdump utility for dumping El Torito boot catalog information.Benno Rice2018-04-036-0/+601
This can be used to check existing images but will be used in the future to find EFI ESP images placed in El Torito catalogs so they can be used for hybrid boot purposes. Reviewed by: imp (code), sbruno (man page), bcr (man page) Sponsored by: iXsystems, Inc. Differential Revision: https://reviews.freebsd.org/D14952 Notes: svn path=/head/; revision=331949