rpmrc.c (is_pentium4): Add new p4 models

http://download.intel.com/design/processor/applnots/24161832.pdf page 23
Patch from alexander@npo-inform.com
This commit is contained in:
Дмитрий Левин 2008-06-05 19:48:49 +00:00
parent 52b2499aff
commit 669c2e04c2

View File

@ -1052,6 +1052,10 @@ static int is_pentium4(void)
// Pentium 4 Xeon, Pentium 4 Xeon MP,
// Celeron, Mobile Celron (0.13um)
case 3: // Pentium 4, Celeron (0.09um)
case 4: // Pentium 4, Pentium 4 Extream Edition,
// Pentium D, Celeron D (0.09um)
case 6: // Pentium 4, Pentium 4 Extream Edition,
// Pentium D, Celeron D (0.065um)
return 1;
}
return 0;