Linksprite-Yuki Posted September 1, 2016 Report Posted September 1, 2016 In cases, we would like to track down the pcDuino in the field. This can be achieved by check the CPU serial number of pcDuino. In this post, we show how to check the CPU serial number information. We can get CPU ID by loading cpu_id.ko (this is built for pcDuino 2). The following are the commands we typed at the terminal of pcDuino: ? 1 2 3 4 $ sudo insmod cpu_id.ko $ cat /proc/cpu_id VER:C ID:165166c380485370515248480301dc8b The source code can be found at: https://github.com/pcduino/modules/tree/master/sun4i-cpu-id The ko file for pcDuino3 can be downloaded here. To buiild the ko file for pcDuino3, we need to first install the dependency software package: $sudo apt-get install pcduino-linux-headers-3.4.79+ Then we need to change the kernel location in Makefile to 3.4.79+, and comment out: /* case MAGIC_VER_A: ver=’A’; break; case MAGIC_VER_B: ver=’B’; break; case MAGIC_VER_C: ver=’C’; break; */ in file cpu_id.c. Quote
M Salman Sarwar Khan Posted January 29, 2022 Report Posted January 29, 2022 thanks fro sharing.. it definitly help me. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.