diff options
author | jhb <jhb@FreeBSD.org> | 2001-11-05 18:59:13 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2001-11-05 18:59:13 +0000 |
commit | a4fb7c09670600cf6a6d1ccdfa8f95fa97d3fca2 (patch) | |
tree | 21133bf6ab70edeaf43715c951246b53f2995bd4 /sys | |
parent | a08a119cfc5cdcc2e9aa2e6a8e257da8df5db914 (diff) | |
download | FreeBSD-src-a4fb7c09670600cf6a6d1ccdfa8f95fa97d3fca2.zip FreeBSD-src-a4fb7c09670600cf6a6d1ccdfa8f95fa97d3fca2.tar.gz |
Hook up the bioscd driver and the cd9660 filesystem.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/boot/i386/loader/conf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/boot/i386/loader/conf.c b/sys/boot/i386/loader/conf.c index ba8ebf6..67c8c95 100644 --- a/sys/boot/i386/loader/conf.c +++ b/sys/boot/i386/loader/conf.c @@ -47,6 +47,7 @@ /* Exported for libstand */ struct devsw *devsw[] = { + &bioscd, &biosdisk, #if defined(LOADER_NFS_SUPPORT) || defined(LOADER_TFTP_SUPPORT) &pxedisk, @@ -58,6 +59,7 @@ struct fs_ops *file_system[] = { &ufs_fsops, &ext2fs_fsops, &dosfs_fsops, + &cd9660_fsops, #ifdef LOADER_GZIP_SUPPORT &zipfs_fsops, #endif |