cpuinfo2cpuid (1)
Leading comments
Automatically generated by Pod::Man 4.07 (Pod::Simple 3.32) Standard preamble: ========================================================================
NAME
cpuinfo2cpuidSYNOPSIS
cpuinfo2cpuid
or
cpuinfo2cpuid -help
or
cpuinfo2cpuid -vendor=<GenuineIntel|AuthenticAMD> -family=<num> -model=<num> -stepping=<num>
DESCRIPTION
Expects /proc/cpuinfo data on stdin and converts it to cpuid-likeHEX
data structure suitable as the input for cpuid -f <file> utility.
Alternatively, user can specify CPU
vendor, family, model and stepping on the command line.
OPTIONS
- -help
- Displays a brief help message.
- -vendor
-
CPUvendor. Can be either GenuineIntel or AuthenticAMD.
- -family
-
CPUfamily in decimal notation.
- -model
-
CPUmodel in decimal notation.
- -stepping
-
CPUstepping in decimal notation.
- -help
- Displays a brief help message.
LIMITATIONS
Only Intel &AMD
cpuinfo data are supported at the moment.
EXAMPLES
cpuinfo2cpuid < /proc/cpuinfo | cpuid -f - | grep '(synth)'Specifying
CPU
vendor, family, model and stepping on command line
cpuinfo2cpuid.pl -vendor=GenuineIntel -family=6 -model=58 -stepping=9 | cpuid -f - | grep '(synth)'