--- main/TOOLS/cpuinfo.c 2006-04-25 16:19:42.000000000 +0800 +++ main.new/TOOLS/cpuinfo.c 2006-04-25 16:17:23.000000000 +0800 @@ -228,7 +228,7 @@ family += (regs.eax >> 20) & 0xff; model += ((regs.eax >> 16) & 0xf) << 4; } - + printf("cpu family\t: %d\n" "model\t\t: %d\n" "stepping\t: %d\n" , @@ -236,7 +236,7 @@ model, stepping); - if (strstr(idstr, "Intel")) { + if (strstr(idstr, "Intel") && !model_name) { if (family == 6 && model == 0xb && stepping == 1) model_name = "Intel (R) Celeron (R) processor"; else