From 7092f18ca51bcacac57ea337ed0233c5eac046f6 Mon Sep 17 00:00:00 2001 From: Alex Hornung Date: Sun, 4 Nov 2012 15:53:22 +0000 Subject: [PATCH] boot - some VIA processors also have long mode! --- sys/boot/pc32/libi386/bootinfo64.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/boot/pc32/libi386/bootinfo64.c b/sys/boot/pc32/libi386/bootinfo64.c index 49749048b5..f7d65e47a8 100644 --- a/sys/boot/pc32/libi386/bootinfo64.c +++ b/sys/boot/pc32/libi386/bootinfo64.c @@ -150,7 +150,8 @@ bi_checkcpu(void) /* Check for vendors that support AMD features. */ if (strncmp(cpu_vendor, "GenuineIntel", 12) != 0 && - strncmp(cpu_vendor, "AuthenticAMD", 12) != 0) + strncmp(cpu_vendor, "AuthenticAMD", 12) != 0 && + strncmp(cpu_vendor, "CentaurHauls", 12) != 0) return (0); /* Has to support AMD features. */ -- 2.41.0