Deleted Added
full compact
malta_machdep.c (202175) malta_machdep.c (202849)
1/*-
2 * Copyright (c) 2006 Wojciech A. Koszek <wkoszek@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) 2006 Wojciech A. Koszek <wkoszek@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/mips/malta/malta_machdep.c 202175 2010-01-12 21:36:08Z imp $
26 * $FreeBSD: head/sys/mips/malta/malta_machdep.c 202849 2010-01-23 00:18:12Z imp $
27 */
28#include <sys/cdefs.h>
27 */
28#include <sys/cdefs.h>
29__FBSDID("$FreeBSD: head/sys/mips/malta/malta_machdep.c 202175 2010-01-12 21:36:08Z imp $");
29__FBSDID("$FreeBSD: head/sys/mips/malta/malta_machdep.c 202849 2010-01-23 00:18:12Z imp $");
30
31#include "opt_ddb.h"
32
33#include <sys/param.h>
34#include <sys/conf.h>
35#include <sys/kernel.h>
36#include <sys/systm.h>
37#include <sys/imgact.h>

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

184 physmem = realmem;
185
186 init_param1();
187 init_param2(physmem);
188 mips_cpu_init();
189 pmap_bootstrap();
190 mips_proc0_init();
191 mutex_init();
30
31#include "opt_ddb.h"
32
33#include <sys/param.h>
34#include <sys/conf.h>
35#include <sys/kernel.h>
36#include <sys/systm.h>
37#include <sys/imgact.h>

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

184 physmem = realmem;
185
186 init_param1();
187 init_param2(physmem);
188 mips_cpu_init();
189 pmap_bootstrap();
190 mips_proc0_init();
191 mutex_init();
192#ifdef DDB
193 kdb_init();
192 kdb_init();
193#ifdef KDB
194 if (boothowto & RB_KDB)
195 kdb_enter(KDB_WHY_BOOTFLAGS, "Boot flags requested debugger");
194#endif
195}
196
197void
198platform_halt(void)
199{
200
201}

--- 121 unchanged lines hidden ---
196#endif
197}
198
199void
200platform_halt(void)
201{
202
203}

--- 121 unchanged lines hidden ---