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: ffsv1.c,v 1.6 2012/05/21 21:34:16 dsl Exp $ */
|
|
|
|
#define LIBSA_FFSv1
|
|
|
|
#define ufs_open ffsv1_open
|
|
#define ufs_close ffsv1_close
|
|
#define ufs_read ffsv1_read
|
|
#define ufs_write ffsv1_write
|
|
#define ufs_seek ffsv1_seek
|
|
#define ufs_stat ffsv1_stat
|
|
#if defined(LIBSA_ENABLE_LS_OP)
|
|
#define ufs_ls ffsv1_ls
|
|
#endif
|
|
|
|
#define ufs_dinode ufs1_dinode
|
|
#define indp_t int32_t
|
|
|
|
#include "ufs.c"
|