From f0aa7c202673fe831c07ad6cb3a1c5751e682a37 Mon Sep 17 00:00:00 2001 From: dlg Date: Wed, 13 Dec 2017 00:12:03 +0000 Subject: [PATCH] report Oracle as the vendor is the produce starts with ORCL, makes it consistent with reporting Sun or Fujitsu based on produce prefixes. ok kettenis@ --- sys/arch/sparc64/sparc64/autoconf.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/arch/sparc64/sparc64/autoconf.c b/sys/arch/sparc64/sparc64/autoconf.c index fee9fbc8b89..b9e92593c2a 100644 --- a/sys/arch/sparc64/sparc64/autoconf.c +++ b/sys/arch/sparc64/sparc64/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.129 2017/12/06 16:20:53 kettenis Exp $ */ +/* $OpenBSD: autoconf.c,v 1.130 2017/12/13 00:12:03 dlg Exp $ */ /* $NetBSD: autoconf.c,v 1.51 2001/07/24 19:32:11 eeh Exp $ */ /* @@ -947,6 +947,8 @@ extern bus_space_tag_t mainbus_space_tag; hw_vendor = "Tadpole"; if (strncmp(buf, "NATE,", 5) == 0) hw_vendor = "Naturetech"; + if (strncmp(buf, "ORCL,", 5) == 0) + hw_vendor = "Oracle"; /* * The Momentum Leopard-V advertises itself as -- 2.20.1