Deleted Added
full compact
adm5120_machdep.c (202175) adm5120_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.

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

20 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
21 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
22 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23 * THE POSSIBILITY OF SUCH DAMAGE.
24 *
25 */
26
27#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.

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

20 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
21 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
22 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23 * THE POSSIBILITY OF SUCH DAMAGE.
24 *
25 */
26
27#include <sys/cdefs.h>
28__FBSDID("$FreeBSD: head/sys/mips/adm5120/adm5120_machdep.c 202175 2010-01-12 21:36:08Z imp $");
28__FBSDID("$FreeBSD: head/sys/mips/adm5120/adm5120_machdep.c 202849 2010-01-23 00:18:12Z imp $");
29
30#include "opt_ddb.h"
31
32#include <sys/param.h>
33#include <sys/conf.h>
34#include <sys/kernel.h>
35#include <sys/systm.h>
36#include <sys/imgact.h>

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

100 physmem = realmem;
101
102 init_param1();
103 init_param2(physmem);
104 mips_cpu_init();
105 pmap_bootstrap();
106 mips_proc0_init();
107 mutex_init();
29
30#include "opt_ddb.h"
31
32#include <sys/param.h>
33#include <sys/conf.h>
34#include <sys/kernel.h>
35#include <sys/systm.h>
36#include <sys/imgact.h>

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

100 physmem = realmem;
101
102 init_param1();
103 init_param2(physmem);
104 mips_cpu_init();
105 pmap_bootstrap();
106 mips_proc0_init();
107 mutex_init();
108#ifdef DDB
109 kdb_init();
108 kdb_init();
109#ifdef KDB
110 if (boothowto & RB_KDB)
111 kdb_enter(KDB_WHY_BOOTFLAGS, "Boot flags requested debugger");
110#endif
111}
112
113void
114platform_halt(void)
115{
116
117}

--- 46 unchanged lines hidden ---
112#endif
113}
114
115void
116platform_halt(void)
117{
118
119}

--- 46 unchanged lines hidden ---