summaryrefslogtreecommitdiff
path: root/usr.sbin/makefs/msdos
AgeCommit message (Collapse)Author
2019-09-04msdosfs: remove timezone supportcheloha
This support is undocumented, only works if you're using the kernel timezone, and breaks during a DST shift. It also preferences file systems managed by a Windows installation: many implementations, like ours, use UTC by default (think: phones, digital cameras). No complaints on tech@. "good riddance" tedu@, "Yep." deraadt@
2018-04-26Use <fcntl.h> instead of <sys/file.h> for open() and friends.Philip Guenther
Delete a bunch of unnecessary #includes and sort to match style(9) while doing the above cleanup. ok deraadt@ krw@
2017-11-02Use emalloc, like in the rest of makefsJeremie Courreges-Anglas
From Michael W. Bombardieri
2017-08-31assorted warning fixes; ok millert@Otto Moerbeek
2017-03-28add missing braces around a multi line if statementJonathan Gray
ok patrick@ deraadt@
2016-12-17While here nuke some more annoying whitespace nits.Kenneth R Westerback
2016-10-26Remove FS-specific option descriptions from the source code. We have aMartin Natano
manual for that. While there document the isolevel option and remove some dysfunctional cd9660 options.
2016-10-23No verbose flag for cd9660.Martin Natano
2016-10-23Remove the msdos no_create option.Martin Natano
2016-10-23Remove short option names for -o.Martin Natano
2016-10-22Dedup msdosfs/{bootsect.h,bpb.h}.Martin Natano
2016-10-22-#include <stdbool.h>Martin Natano
2016-10-22Remove huge amounts of debug code, that make the code nearly unreadable.Martin Natano
2016-10-18Merge fs/msdosfs/ and newfs_msdos/ into msdos/.Martin Natano
2016-10-17unused variablesMartin Natano
2016-10-17makefs doesn't care about quotas.Martin Natano
2016-10-17mechanical rename of vnode to mkfsvnode and buf to mkfsbuf to avoidTed Unangst
collisions with the kernel structures of the same name. caught one bug where the wrong header was being included.
2016-10-16we're not going to be using kauth_credsTed Unangst
2016-10-16remove GEMDOS codeTed Unangst
2016-10-16Add OpenBSD RCS tags; reminded by tbMartin Natano
2016-10-16Replace fs/msdosfs/{msdosfs_conv.c,direntry.h} with stripped-downMartin Natano
versions from our own tree. This allows to remove the clock_subr.c tentacle.
2016-10-16Import makefs - a tool to create filesystem images from a directory.Martin Natano
This is a rough port of the NetBSD tool with some features removed we don't need. It compiles, but I don't promise anything more. Importing now, so we can hack on it in tree. The supported filesystem types are: cd9660, ffs and msdosfs. ok deraadt