Deleted Added
full compact
conf.c (66133) conf.c (83616)
1/*-
2 * Copyright (c) 1998 Michael Smith <msmith@freebsd.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 1998 Michael Smith <msmith@freebsd.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/boot/i386/loader/conf.c 66133 2000-09-20 18:13:36Z archie $
26 * $FreeBSD: head/sys/boot/i386/loader/conf.c 83616 2001-09-18 14:52:36Z sobomax $
27 */
28
29#include <stand.h>
30#include <bootstrap.h>
31#include "libi386/libi386.h"
32
33/*
34 * We could use linker sets for some or all of these, but

--- 18 unchanged lines hidden (view full) ---

53#endif
54 NULL
55};
56
57struct fs_ops *file_system[] = {
58 &ufs_fsops,
59 &ext2fs_fsops,
60 &dosfs_fsops,
27 */
28
29#include <stand.h>
30#include <bootstrap.h>
31#include "libi386/libi386.h"
32
33/*
34 * We could use linker sets for some or all of these, but

--- 18 unchanged lines hidden (view full) ---

53#endif
54 NULL
55};
56
57struct fs_ops *file_system[] = {
58 &ufs_fsops,
59 &ext2fs_fsops,
60 &dosfs_fsops,
61#ifdef LOADER_GZIP_SUPPORT
61 &zipfs_fsops,
62 &zipfs_fsops,
63#endif
64#ifdef LOADER_BZIP2_SUPPORT
65 &bzipfs_fsops,
66#endif
62#ifdef LOADER_NFS_SUPPORT
63 &nfs_fsops,
64#endif
65#ifdef LOADER_TFTP_SUPPORT
66 &tftp_fsops,
67#endif
68 NULL
69};

--- 42 unchanged lines hidden ---
67#ifdef LOADER_NFS_SUPPORT
68 &nfs_fsops,
69#endif
70#ifdef LOADER_TFTP_SUPPORT
71 &tftp_fsops,
72#endif
73 NULL
74};

--- 42 unchanged lines hidden ---