blob: 9ba711dba3d19cc18fa0b20e284549322e6d6a6a [file] [log] [blame]
Gabor Juhos5a4dcfa2013-05-22 03:57:37 +00001/*
2 * Copyright (C) 2013 Gabor Juhos <juhosg@openwrt.org>
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License version 2 as published
6 * by the Free Software Foundation.
7 */
8
9#include <common.h>
10
11phys_size_t initdram(int board_type)
12{
13 return CONFIG_SYS_MEM_SIZE;
14}
15
16int checkboard(void)
17{
18 puts("Board: MIPS Malta CoreLV (Qemu)\n");
19 return 0;
20}