Deleted Added
full compact
conf.c (201941) conf.c (219691)
1/*-
2 * Copyright (c) 1997
3 * Matthias Drochner. 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

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

27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 *
31 * $NetBSD: conf.c,v 1.2 1997/03/22 09:03:29 thorpej Exp $
32 */
33
34#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1997
3 * Matthias Drochner. 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

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

27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 *
31 * $NetBSD: conf.c,v 1.2 1997/03/22 09:03:29 thorpej Exp $
32 */
33
34#include <sys/cdefs.h>
35__FBSDID("$FreeBSD: head/sys/boot/ia64/efi/conf.c 201941 2010-01-09 22:54:29Z marcel $");
35__FBSDID("$FreeBSD: head/sys/boot/ia64/efi/conf.c 219691 2011-03-16 03:53:18Z marcel $");
36
37#include <stand.h>
38#include <efi.h>
39#include <efilib.h>
40
41/*
42 * We could use linker sets for some or all of these, but
43 * then we would have to control what ended up linked into

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

64};
65
66struct netif_driver *netif_drivers[] = {
67 &efinetif,
68 NULL
69};
70
71/*
36
37#include <stand.h>
38#include <efi.h>
39#include <efilib.h>
40
41/*
42 * We could use linker sets for some or all of these, but
43 * then we would have to control what ended up linked into

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

64};
65
66struct netif_driver *netif_drivers[] = {
67 &efinetif,
68 NULL
69};
70
71/*
72 * Sort formats so that those that can detect based on arguments
73 * rather than reading the file go first.
74 */
75extern struct file_format ia64_elf;
76
77struct file_format *file_formats[] = {
78 &ia64_elf,
79 NULL
80};
81
82/*
83 * Consoles
84 *
85 * We don't prototype these in efiboot.h because they require
86 * data structures from bootstrap.h as well.
87 */
88extern struct console efi_console;
89
90struct console *consoles[] = {
91 &efi_console,
92 NULL
93};
72 * Consoles
73 *
74 * We don't prototype these in efiboot.h because they require
75 * data structures from bootstrap.h as well.
76 */
77extern struct console efi_console;
78
79struct console *consoles[] = {
80 &efi_console,
81 NULL
82};