6a03bb6b37
This is in line with the core decision than even modular kernels should contain the ffs code. I've left in the code that tries to load "nfs" and "ext2fs", but it isn't clear that is necessary. Removes a warning message that (usually) flashes past to fast to read. AFAICT all the relevant kernels contain ffs (and nfs for that matter).
19 lines
391 B
C
19 lines
391 B
C
/* $NetBSD: ffsv2.c,v 1.6 2012/05/21 21:34:16 dsl Exp $ */
|
|
|
|
#define LIBSA_FFSv2
|
|
|
|
#define ufs_open ffsv2_open
|
|
#define ufs_close ffsv2_close
|
|
#define ufs_read ffsv2_read
|
|
#define ufs_write ffsv2_write
|
|
#define ufs_seek ffsv2_seek
|
|
#define ufs_stat ffsv2_stat
|
|
#if defined(LIBSA_ENABLE_LS_OP)
|
|
#define ufs_ls ffsv2_ls
|
|
#endif
|
|
|
|
#define ufs_dinode ufs2_dinode
|
|
#define indp_t int64_t
|
|
|
|
#include "ufs.c"
|