Newer
Older
barebox / arch / openrisc / boards / generic / generic.c
@Antony Pavlov Antony Pavlov on 9 Sep 2014 157 bytes openrisc: generic board: reduce platform code
#include <common.h>
#include <init.h>

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

	return 0;
}
core_initcall(openrisc_core_init);