From: visa Date: Tue, 5 Dec 2017 15:39:26 +0000 (+0000) Subject: Show board ID and revision in dmesg to ease the identification X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=2827814c6073c6a91ed56d191be8af58a84cd964;p=openbsd Show board ID and revision in dmesg to ease the identification of system model. The early boot code already prints them, but that output is not buffered and tends to be left out from dmesg submissions. --- diff --git a/sys/arch/octeon/dev/mainbus.c b/sys/arch/octeon/dev/mainbus.c index 76616ce9991..ed9ff5e9c0a 100644 --- a/sys/arch/octeon/dev/mainbus.c +++ b/sys/arch/octeon/dev/mainbus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mainbus.c,v 1.10 2017/07/31 14:53:56 visa Exp $ */ +/* $OpenBSD: mainbus.c,v 1.11 2017/12/05 15:39:26 visa Exp $ */ /* * Copyright (c) 2001-2003 Opsycon AB (www.opsycon.se / www.opsycon.com) @@ -65,7 +65,9 @@ mainbus_attach(struct device *parent, struct device *self, void *aux) int cpuid; #endif - printf("\n"); + printf(": board %u rev %u.%u\n", octeon_boot_info->board_type, + octeon_boot_info->board_rev_major, + octeon_boot_info->board_rev_minor); bzero(&caa, sizeof caa); caa.caa_maa.maa_name = "cpu";