summaryrefslogtreecommitdiffstats
path: root/arch/openrisc/boards/generic/generic.c
blob: ff6f9f4d42ad69a1ba69d6e565b3abf05abec381 (plain)
1
2
3
4
5
6
7
8
9
10
#include <common.h>
#include <init.h>

static int openrisc_core_init(void)
{
	barebox_set_hostname("or1k");

	return 0;
}
core_initcall(openrisc_core_init);