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/alpha | |
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/alpha')
-rw-r--r-- | sys/boot/alpha/common/conf.c | 3 | ||||
-rw-r--r-- | sys/boot/alpha/loader/Makefile | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/sys/boot/alpha/common/conf.c b/sys/boot/alpha/common/conf.c index d243399..5f2f519 100644 --- a/sys/boot/alpha/common/conf.c +++ b/sys/boot/alpha/common/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 diff --git a/sys/boot/alpha/loader/Makefile b/sys/boot/alpha/loader/Makefile index dbb75dd..470562d 100644 --- a/sys/boot/alpha/loader/Makefile +++ b/sys/boot/alpha/loader/Makefile @@ -8,6 +8,6 @@ INSTALL_HELP= yes LOAD_ADDRESS= ${SECONDARY_LOAD_ADDRESS} # Only disk support -CFLAGS+= -DLOADER_DISK_SUPPORT +CFLAGS+= -DLOADER_DISK_SUPPORT # -DLOADER_EXT2FS_SUPPORT .include <${.CURDIR}/../common/Makefile.common> |