summaryrefslogtreecommitdiffstats
path: root/arch/openrisc/boards/generic/generic.c
blob: 1129a7d52e48be7e39f8257bf4ac474ee38cf11f (plain)
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: GPL-2.0-only
#include <common.h>
#include <init.h>

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

	return 0;
}
core_initcall(openrisc_core_init);