// SPDX-License-Identifier: GPL-2.0-only // SPDX-FileCopyrightText: 2014 Antony Pavlov /* This file is part of barebox. */ #include #include static int hostname_init(void) { barebox_set_hostname("virt2real"); return 0; } core_initcall(hostname_init);