I want to detect the cpu type while the kernel is booting (viz. x86 or x86_64) so that I can do a task differently based on the cpu type. Is there a simple way to know the CPU type?
Asked
Active
Viewed 115 times
2 Answers
1
How about the cpuid
instruction ?
There is a module interfacing it, source code is here.
If interested, also have a look here or here or here for other examples.
Also have a look at this question for using cpuid
to know if your system supports SSE.