Deleted Added
full compact
idt_machdep.c (202175) idt_machdep.c (202849)
1/*-
2 * Copyright (C) 2007 by Oleksandr Tymoshenko. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

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

22 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23 * THE POSSIBILITY OF SUCH DAMAGE.
24 *
25 * $Id: $
26 *
27 */
28
29#include <sys/cdefs.h>
1/*-
2 * Copyright (C) 2007 by Oleksandr Tymoshenko. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

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

22 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23 * THE POSSIBILITY OF SUCH DAMAGE.
24 *
25 * $Id: $
26 *
27 */
28
29#include <sys/cdefs.h>
30__FBSDID("$FreeBSD: head/sys/mips/idt/idt_machdep.c 202175 2010-01-12 21:36:08Z imp $");
30__FBSDID("$FreeBSD: head/sys/mips/idt/idt_machdep.c 202849 2010-01-23 00:18:12Z imp $");
31
32#include "opt_ddb.h"
33
34#include <sys/param.h>
35#include <sys/conf.h>
36#include <sys/kernel.h>
37#include <sys/systm.h>
38#include <sys/imgact.h>

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

186 printf("%s ", argv[i]);
187 printf("\n");
188
189 init_param2(physmem);
190 mips_cpu_init();
191 pmap_bootstrap();
192 mips_proc0_init();
193 mutex_init();
31
32#include "opt_ddb.h"
33
34#include <sys/param.h>
35#include <sys/conf.h>
36#include <sys/kernel.h>
37#include <sys/systm.h>
38#include <sys/imgact.h>

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

186 printf("%s ", argv[i]);
187 printf("\n");
188
189 init_param2(physmem);
190 mips_cpu_init();
191 pmap_bootstrap();
192 mips_proc0_init();
193 mutex_init();
194#ifdef DDB
195 kdb_init();
194 kdb_init();
195#ifdef KDB
196 if (boothowto & RB_KDB)
197 kdb_enter(KDB_WHY_BOOTFLAGS, "Boot flags requested debugger");
196#endif
197}
198#endif
199}