Deleted Added
full compact
bootinfo64.c (72640) bootinfo64.c (85376)
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/libi386/bootinfo64.c 72640 2001-02-18 10:25:42Z asmodai $
26 * $FreeBSD: head/sys/boot/i386/libi386/bootinfo64.c 85376 2001-10-23 20:27:48Z jlemon $
27 */
28
29#include <stand.h>
30#include <sys/param.h>
31#include <sys/reboot.h>
32#include <sys/linker.h>
33#include <machine/bootinfo.h>
34#include "bootstrap.h"

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

83 howto |= RB_CONFIG;
84 break;
85 case 'C':
86 howto |= RB_CDROM;
87 break;
88 case 'd':
89 howto |= RB_KDB;
90 break;
27 */
28
29#include <stand.h>
30#include <sys/param.h>
31#include <sys/reboot.h>
32#include <sys/linker.h>
33#include <machine/bootinfo.h>
34#include "bootstrap.h"

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

83 howto |= RB_CONFIG;
84 break;
85 case 'C':
86 howto |= RB_CDROM;
87 break;
88 case 'd':
89 howto |= RB_KDB;
90 break;
91 case 'D':
92 howto |= RB_MULTIPLE;
93 break;
91 case 'm':
92 howto |= RB_MUTE;
93 break;
94 case 'g':
95 howto |= RB_GDB;
96 break;
97 case 'h':
98 howto |= RB_SERIAL;

--- 250 unchanged lines hidden ---
94 case 'm':
95 howto |= RB_MUTE;
96 break;
97 case 'g':
98 howto |= RB_GDB;
99 break;
100 case 'h':
101 howto |= RB_SERIAL;

--- 250 unchanged lines hidden ---