add check for "A4000 bonus" (small b)

This commit is contained in:
chopps 1996-01-28 20:01:10 +00:00
parent ab86728e62
commit 2684692a5a
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: loadbsd.c,v 1.17 1995/11/30 00:57:29 jtc Exp $ */
/* $NetBSD: loadbsd.c,v 1.18 1996/01/28 20:01:10 chopps Exp $ */
/*
* Copyright (c) 1994 Michael L. Hitch
@ -484,7 +484,8 @@ get_cpuid()
exit(1);
}
}
if (FindResident("A4000 Bonus") || FindResident("A1000 Bonus"))
if (FindResident("A4000 Bonus") || FindResident("A4000 bonus")
|| FindResident("A1000 Bonus"))
cpuid |= 4000 << 16;
else if (FindResident("A3000 Bonus") || FindResident("A3000 bonus"))
cpuid |= 3000 << 16;