summaryrefslogtreecommitdiffstats
path: root/usr.sbin/makefs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* disklabel -w doesn't set bstart/bend, so makefs shouldn't do that either.natano2016-11-141-6/+2
|
* Pick up the FS image size, the sector size and the bsize and fsizenatano2016-11-133-20/+49
| | | | | | parameters from the disklabel. discussed with deraadt
* Clean up FFS option handling somewhat; no functional change.natano2016-11-113-22/+11
|
* Optimize for space by default.natano2016-11-112-6/+5
| | | | ok deraadt
* Sync bsize and fsize defaults with newfs.natano2016-11-101-3/+3
|
* Remove the unused cpg field from ffs_opt_t.natano2016-11-102-7/+2
|
* Respect -Ooffset for the disklabel location.natano2016-11-081-2/+2
|
* Describe -o disklabel=name.natano2016-11-081-2/+7
|
* Add a disklabel option that creates a disklabel with the info providednatano2016-11-082-3/+63
| | | | | | | by disktab. This is one piece of the puzzle that will allow use to build install media without vnd. ok deraadt
* pledge for "stdio rpath wpath cpath" promises since it only needs tomestre2016-11-081-1/+4
| | | | | | read/write/create files OK natano@ and tb@, thank you both for noticing the bad indentation
* Remove unused fields from ffs_opt_t.natano2016-11-062-18/+2
|
* s/EXIT_FAILURE/1/natano2016-10-268-40/+36
|
* mac68k is discontinuednatano2016-10-262-6/+4
|
* Add the omit-trailing-period cd9660 option to the manual.natano2016-10-261-3/+3
|
* Remove cd9660's chrp-boot option. deraadt confirmed we don't support anynatano2016-10-264-19/+5
| | | | CHRP hardware.
* Use OPT_BOOL, not OPT_INT32 for boolean cd9660 options.natano2016-10-261-2/+2
|
* Remove FS-specific option descriptions from the source code. We have anatano2016-10-268-134/+82
| | | | | manual for that. While there document the isolevel option and remove some dysfunctional cd9660 options.
* convert usage() to just spit out the normal options list,jmc2016-10-251-16/+7
| | | | | | instead of trying to list all the fs-specific stuff; help/ok natano
* document the options for msdos systems; help/ok natanojmc2016-10-241-5/+57
|
* No verbose flag for cd9660.natano2016-10-235-115/+7
|
* Remove the msdos no_create option.natano2016-10-232-135/+129
|
* Remove cd9660's keep-bad-images option.natano2016-10-234-13/+6
|
* Remove short option names for -o.natano2016-10-236-170/+137
|
* Dedup msdosfs/{bootsect.h,bpb.h}.natano2016-10-227-299/+11
|
* -#include <stdbool.h>natano2016-10-224-16/+13
|
* various cleanup; ok natanojmc2016-10-221-47/+29
|
* Get rid of remaining FFS byteswap function stubs.natano2016-10-227-111/+47
|
* More "debug" code that has to go.natano2016-10-222-39/+2
|
* Clean up timestamp handling code to be less confusing.natano2016-10-225-48/+45
|
* Remove huge amounts of debug code, that make the code nearly unreadable.natano2016-10-229-340/+15
|
* s/panic/errx/ This is userland.natano2016-10-223-24/+8
|
* Include our own <ufs/ufs/dinode.h>, <ufs/ufs/dir.h> and <ufs/ffs/fs.h>natano2016-10-2211-1291/+235
| | | | | | | | header files instead of relying on copies of NetBSD's headers. This required some changes in the .c files, due to renamed fields, functions and preprocessor macros. Also pull in our own ffs_tables.c. As a bonus this diff gets rid of layout compatibility issues in the superblock (position of the fs_flags field).
* Remove unused code for 4.3BSD format filesystems.natano2016-10-221-12/+7
|
* Use deterministic pseudo-random numbers when the -T flag is used; fornatano2016-10-221-5/+6
| | | | repeatable builds.
* Avoid writing pointers to the disk (image).natano2016-10-221-1/+7
|
* Use the superblock passed to ffs_write_superblock() instead of referringnatano2016-10-211-2/+2
| | | | to the global 'sblock' variable for some operations.
* Remove the superfluous 'sbsize' variable & s/sbsize/SBLOCKSIZE/.natano2016-10-211-7/+5
|
* whitespace; no functional changenatano2016-10-211-2/+2
|
* cleanup Makefilederaadt2016-10-181-14/+6
|
* Remove setprogname().natano2016-10-181-6/+3
|
* Only allow epoch timestamps for -T. A shared option for either using thenatano2016-10-182-19/+4
| | | | timestamps from a file or using an epoch timestamp is ridiculous.
* Remove the -B flag. Most of the byteswapping code was tedu'd already.natano2016-10-182-30/+6
|
* Merge ufs/{ufs,ffs}/ into ffs/.natano2016-10-1813-38/+36
|
* Merge fs/msdosfs/ and newfs_msdos/ into msdos/.natano2016-10-1817-57/+58
|
* Merge fs/cd9660/ into cd9660.natano2016-10-186-13/+11
|
* unused variablesnatano2016-10-172-5/+4
|
* Remove apple ufs bits.natano2016-10-173-34/+3
|
* makefs doesn't care about quotas.natano2016-10-173-184/+1
|
* Dedup ffs_extern.h.natano2016-10-173-112/+6
|
* Remove some more unused cd9660 options.natano2016-10-172-17/+2
|