Module Name:    src
Committed By:   msaitoh
Date:           Tue Jul  8 19:35:36 UTC 2014

Modified Files:
        src/sys/arch/x86/x86: identcpu.c

Log Message:
Add Vortex86EX.


To generate a diff of this commit:
cvs rdiff -u -r1.44 -r1.45 src/sys/arch/x86/x86/identcpu.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/x86/x86/identcpu.c
diff -u src/sys/arch/x86/x86/identcpu.c:1.44 src/sys/arch/x86/x86/identcpu.c:1.45
--- src/sys/arch/x86/x86/identcpu.c:1.44	Mon Mar 24 20:06:33 2014
+++ src/sys/arch/x86/x86/identcpu.c	Tue Jul  8 19:35:36 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: identcpu.c,v 1.44 2014/03/24 20:06:33 christos Exp $	*/
+/*	$NetBSD: identcpu.c,v 1.45 2014/07/08 19:35:36 msaitoh Exp $	*/
 
 /*-
  * Copyright (c) 1999, 2000, 2001, 2006, 2007, 2008 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: identcpu.c,v 1.44 2014/03/24 20:06:33 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: identcpu.c,v 1.45 2014/07/08 19:35:36 msaitoh Exp $");
 
 #include "opt_xen.h"
 
@@ -667,6 +667,9 @@ cpu_probe_vortex86(struct cpu_info *ci)
 	case 0x33504d44:
 		strcpy(cpu_brand_string, "Vortex86MX");
 		break;
+	case 0x37504d44:
+		strcpy(cpu_brand_string, "Vortex86EX");
+		break;
 	default:
 		strcpy(cpu_brand_string, "Unknown Vortex86");
 		break;

Reply via email to