diff options
author | jlemon <jlemon@FreeBSD.org> | 2000-04-29 20:49:33 +0000 |
---|---|---|
committer | jlemon <jlemon@FreeBSD.org> | 2000-04-29 20:49:33 +0000 |
commit | c1672ab1ede5b120876596cd10edce25d5d69adc (patch) | |
tree | 0a622b9799ca049338205ee613c53d498728ed74 /sys/boot/powerpc/ofw | |
parent | 9f5d586c97f0c69480f51fa40d06e6720f36dd6d (diff) | |
download | FreeBSD-src-c1672ab1ede5b120876596cd10edce25d5d69adc.zip FreeBSD-src-c1672ab1ede5b120876596cd10edce25d5d69adc.tar.gz |
Teach the loader about the ext2fs filesystem, extended partitions, and
the new readdir function.
Diffstat (limited to 'sys/boot/powerpc/ofw')
-rw-r--r-- | sys/boot/powerpc/ofw/conf.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/boot/powerpc/ofw/conf.c b/sys/boot/powerpc/ofw/conf.c index d243399..5f2f519 100644 --- a/sys/boot/powerpc/ofw/conf.c +++ b/sys/boot/powerpc/ofw/conf.c @@ -59,6 +59,9 @@ struct fs_ops *file_system[] = { #ifdef LOADER_CDROM_SUPPORT &cd9660_fsops, #endif +#ifdef LOADER_EXT2FS_SUPPORT + &ext2fs_fsops, +#endif #ifdef LOADER_NET_SUPPORT &nfs_fsops, #endif |