History log of /dragonfly/usr.sbin/makefs/msdos/msdosfs_vfsops.c (Results 1 – 2 of 2)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# cbbc68fd 30-Jan-2022 Tomohiro Kusumi <tkusumi@netbsd.org>

usr.sbin/makefs: Remove set but not used variables

These were leftovers from the port from NetBSD (where they are used).

taken-from FreeBSD 093cf790569775b80662926efea6d9d3464bde94


Revision tags: v6.2.1, v6.2.0, v6.3.0
# 20f6ddd0 26-Oct-2021 Tomohiro Kusumi <tkusumi@netbsd.org>

usr.sbin/makefs: Add FAT support (taken from FreeBSD)

Basically same as FreeBSD version, except that several denode
functions (that makefs(8) is trying to override kernel ones using
the same name) h

usr.sbin/makefs: Add FAT support (taken from FreeBSD)

Basically same as FreeBSD version, except that several denode
functions (that makefs(8) is trying to override kernel ones using
the same name) have slightly different arguments in DragonFly.

This commit adds #ifdef MAKEFS here and there in
sys/vfs/msdosfs/*.h, which is the same in FreeBSD makefs(8).

FreeBSD makefs(8) now uses m_buf and m_vnode instead of overriding
kernel structs (using that they can't be included in userspace),
but DragonFly still uses buf and vnode defined in makefs(8).

show more ...