NetBSD/usr.sbin/makefs/TODO

37 lines
936 B
Plaintext
Raw Normal View History

$NetBSD: TODO,v 1.5 2002/01/24 03:21:34 lukem Exp $
2001-10-29 08:18:25 +03:00
todo
----
- finish makefs.8
- testing
- even more testing
2001-10-28 16:12:50 +03:00
- add support for converting a tar file (instead of a directory tree);
suggested by kpneal@pobox.com
2001-10-29 08:18:25 +03:00
outstanding bugs
----------------
- size estimation is still out (need to take into account indirect blocks!)
- mkfs.c parameter checking when density is rather high or low (dumps core)
e.g, a large directory with a small number of files dumps core with a
floating exception i.e, density is too high such as 21886635 or too
2002-01-23 05:14:19 +03:00
low such as 30.
update: lukem, 2001/01/23. not sure if this is still an issue.
2001-10-29 08:18:25 +03:00
discuss
-------
- consider replacing ffs_balloc() et al with own code that doesn't
need hacked-up buf.c code
2002-01-23 05:14:19 +03:00
- whacking on newfs/mkfs.c to allow .PATH-ing directly into makefs(8).
this would involve passing all of mkfs()'s parameters in a single
struct rather than a lot of global vars, etc.