diff options
author | marcel <marcel@FreeBSD.org> | 2011-06-11 02:22:11 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2011-06-11 02:22:11 +0000 |
commit | 41adb82a218f4b2d4a8314decfe6d7da934bb38c (patch) | |
tree | dbb750240d06afefb2a758697e79f3a6e5bdbdc0 /sys | |
parent | 94028a97090df3960a54d737fdf17e56e68c91fa (diff) | |
download | FreeBSD-src-41adb82a218f4b2d4a8314decfe6d7da934bb38c.zip FreeBSD-src-41adb82a218f4b2d4a8314decfe6d7da934bb38c.tar.gz |
Add the model number for the Montvale processor (marketed as Itanium 2 9100).
At this time we're missing just one: Tukwila (Itanium 2 9300).
Diffstat (limited to 'sys')
-rw-r--r-- | sys/ia64/ia64/machdep.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/ia64/ia64/machdep.c b/sys/ia64/ia64/machdep.c index 1463fb5..f3105fc 100644 --- a/sys/ia64/ia64/machdep.c +++ b/sys/ia64/ia64/machdep.c @@ -232,6 +232,9 @@ identifycpu(void) case 0x00: model_name = "Montecito"; break; + case 0x01: + model_name = "Montvale"; + break; } break; } |