From 6574283ff5bca9cd663254a88b6fb3b1259a2672 Mon Sep 17 00:00:00 2001 From: jdolecek Date: Mon, 12 Feb 2001 21:50:02 +0000 Subject: [PATCH] sort more by priority, sligh rewording --- sys/ntfs/TODO | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/sys/ntfs/TODO b/sys/ntfs/TODO index 2b08730dc59c..bd6f97ef6cec 100644 --- a/sys/ntfs/TODO +++ b/sys/ntfs/TODO @@ -1,20 +1,4 @@ -$NetBSD: TODO,v 1.16 2001/02/12 21:25:30 jdolecek Exp $ - -- Windows 2000 NTFS support - -- basic sysinst support for NTFS - -- handle Unicode chars more inteligently - currently only iso-8859-1 - chars are supported, it should be possible to get the filename - converted into koi-8, iso-8859-2 & utf-8 at least - there is a set - of patches for FreeBSD adding Unicode support for Joliet CDs worth - adopting: - http://triaez.kaisei.org/~mzaki/joliet/ - [almost done] - -- better support for writing; tricky is crash recovery - -- cleanup the mess with several *readattr*() functions if possible +$NetBSD: TODO,v 1.17 2001/02/12 21:50:02 jdolecek Exp $ - convert the code to do caching in buffer cache indexed by file-vnode/file-offset so that NTFS would take advantage of UBC; @@ -26,9 +10,23 @@ $NetBSD: TODO,v 1.16 2001/02/12 21:25:30 jdolecek Exp $ - working VOP_BALLOC() (new in UBC) (from Chuq) +- Windows 2000 NTFS support (need windows 2000 machine to test) + +- handle Unicode chars more inteligently - the code now mangles filenames + to something close to iso-8859-1, the default should be to encode them + to utf-8 with option to use other character sets like iso-8859-[12], koi-8 + and the like. + There is a set of patches for FreeBSD adding Unicode support for Joliet CDs + worth adopting: + http://triaez.kaisei.org/~mzaki/joliet/ + +- cleanup the mess with several *readattr*() functions if possible + - implement writing into resident attributes, so it would be possible to write into "small" files (<30KB) too (from Semen Ustimenko ) + generally, better write support + - support mount update @@ -39,4 +37,6 @@ $NetBSD: TODO,v 1.16 2001/02/12 21:25:30 jdolecek Exp $ - write necessary bits to support NTFS in libsa +- basic sysinst support for NTFS + - NTFS ACL support (though usefullness of such feature is arguable)