Author: nyan Date: Sat Nov 15 03:34:34 2014 New Revision: 274537 URL: https://svnweb.freebsd.org/changeset/base/274537
Log: MFi386: r274398 Move NFS and TFTP filesystems before the synthetic filesystems (bzip, gzip, and split). Modified: head/sys/boot/pc98/loader/conf.c Modified: head/sys/boot/pc98/loader/conf.c ============================================================================== --- head/sys/boot/pc98/loader/conf.c Sat Nov 15 02:58:17 2014 (r274536) +++ head/sys/boot/pc98/loader/conf.c Sat Nov 15 03:34:34 2014 (r274537) @@ -61,19 +61,19 @@ struct fs_ops *file_system[] = { &ext2fs_fsops, &dosfs_fsops, &cd9660_fsops, - &splitfs_fsops, -#ifdef LOADER_GZIP_SUPPORT - &gzipfs_fsops, -#endif -#ifdef LOADER_BZIP2_SUPPORT - &bzipfs_fsops, -#endif #ifdef LOADER_NFS_SUPPORT &nfs_fsops, #endif #ifdef LOADER_TFTP_SUPPORT &tftp_fsops, #endif +#ifdef LOADER_GZIP_SUPPORT + &gzipfs_fsops, +#endif +#ifdef LOADER_BZIP2_SUPPORT + &bzipfs_fsops, +#endif + &splitfs_fsops, NULL }; _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"