summaryrefslogtreecommitdiffstats
path: root/src/mainboard/scaleway/tagada/bootblock.c
blob: 1823dd9c4ec282e8d5c8297437db61d6bf08f538 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#include <bootblock_common.h>
#include <console/console.h>
#include "bmcinfo.h"

/*
 * Display board serial early
 */

void bootblock_mainboard_init(void)
{
	if (CONFIG(BOOTBLOCK_CONSOLE))
		printk(BIOS_SPEW, "Board Serial: %s.\n", bmcinfo_serial());
}