1CPUINFO2CPUID(1) CPUINFO2CPUID(1)
2
3
4
6 cpuinfo2cpuid
7
9 cpuinfo2cpuid
10
11 or
12
13 cpuinfo2cpuid -help
14
15 or
16
17 cpuinfo2cpuid -vendor=<GenuineIntel|AuthenticAMD> -family=<num>
18 -model=<num> -stepping=<num>
19
21 Expects /proc/cpuinfo data on stdin and converts it to cpuid-like HEX
22 data structure suitable as the input for cpuid -f <file> utility.
23 Alternatively, user can specify CPU vendor, family, model and stepping
24 on the command line.
25
27 -help
28 Displays a brief help message.
29
30 -vendor
31 CPU vendor. Can be either GenuineIntel or AuthenticAMD.
32
33 -family
34 CPU family in decimal notation.
35
36 -model
37 CPU model in decimal notation.
38
39 -stepping
40 CPU stepping in decimal notation.
41
42 -help
43 Displays a brief help message.
44
46 Only Intel & AMD cpuinfo data are supported at the moment.
47
49 cpuinfo2cpuid < /proc/cpuinfo | cpuid -f -
50
51 Specifying CPU vendor, family, model and stepping on command line
52
53 cpuinfo2cpuid.pl -vendor=GenuineIntel -family=6 -model=58 -stepping=9 |
54 cpuid -f -
55
57 Todd Allen <cpuid@etallen.com>, Jirka Hladky <jhladky@gmail.com>
58
59
60
6120160814 2016-08-14 CPUINFO2CPUID(1)