I can confirm that this bug is still present in Hardy (development
release). I also have a PIII Dell Inspiron 8100 just like those above.
Here's some info:

:~$ cat /proc/cpuinfo
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 11
model name      : Intel(R) Pentium(R) III Mobile CPU      1000MHz
stepping        : 1
cpu MHz         : 733.000
cache size      : 512 KB
fdiv_bug        : no
hlt_bug         : no
f00f_bug        : no
coma_bug        : no
fpu             : yes
fpu_exception   : yes
cpuid level     : 2
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 sep mtrr pge mca cmov pat 
pse36 mmx fxsr sse up
bogomips        : 1462.43
clflush size    : 32

: ~$ grep -q 'Intel .*ICH' $IOPORTS ; echo $?
130

here's the cpu part of dmidecode:

Handle 0x0400, DMI type 4, 32 bytes
Processor Information
        Socket Designation: Microprocessor
        Type: Central Processor
        Family: Pentium II
        Manufacturer: Intel
        ID: B1 06 00 00 FF F9 83 03
        Signature: Type 0, Family 6, Model 11, Stepping 1
        Flags:
                FPU (Floating-point unit on-chip)
                VME (Virtual mode extension)
                DE (Debugging extension)
                PSE (Page size extension)
                TSC (Time stamp counter)
                MSR (Model specific registers)
                PAE (Physical address extension)
                MCE (Machine check exception)
                CX8 (CMPXCHG8 instruction supported)
                SEP (Fast system call)
                MTRR (Memory type range registers)
                PGE (Page global enable)
                MCA (Machine check architecture)
                CMOV (Conditional move instruction supported)
                PAT (Page attribute table)
                PSE-36 (36-bit page size extension)
                MMX (MMX technology supported)
                FXSR (Fast floating-point save and restore)
                SSE (Streaming SIMD extensions)
        Version: Not Specified
        Voltage: 3.3 V
        External Clock: 133 MHz
        Max Speed: 1200 MHz
        Current Speed: 733 MHz
        Status: Populated, Enabled
        Upgrade: None
        L1 Cache Handle: 0x0700
        L2 Cache Handle: 0x0701
        L3 Cache Handle: Not Provided

finally,

:~$ cat /proc/ioports | grep CPU
    0810-0815 : ACPI CPU throttle

Here is how I solved it.

:~$ sudo gedit /usr/share/powernowd/cpufreq-detect.sh

then scroll down a bit until you see this if statement:

if [ -f $IOPORTS ] && grep -q 'Intel .*ICH' $IOPORTS ; then
  PIII_MODULE=speedstep-ich
else
  PIII_MODULE=speedstep-smi
fi

and change it to:

if [ -f $IOPORTS ] && grep -q 'Intel .*ICH' $IOPORTS ; then
  PIII_MODULE=speedstep-ich
else
  PIII_MODULE=speedstep-ich
fi

save and reboot, presto.

-- 
Incorrect module loaded on Pentium III Mobile
https://bugs.launchpad.net/bugs/24353
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to