How to determine which Jetson type I use using command line? Xavier or Nano or something else?
Hi
You can check the eeprom layout to get it.
Hi,
Is there a way to get EEPROM layout using command line? Or only so: “from the 256-byte block at I2C bus 2, address 0x50”?
Hi @dgordenin, you can more easily read the chip ID with:
$ cat /sys/module/tegra_fuse/parameters/tegra_chip_id
-
25- Xavier -
24- TX2 -
33- TX1/Nano -
64- TK1
You can also read the board type using jtop: GitHub - rbonghi/jetson_stats: 📊 Simple package for monitoring and control your NVIDIA Jetson [Xavier NX, Nano, AGX Xavier, TX1, TX2]
If you want the code used to parse this information, see here: jetson_stats/jetson_variables at master · rbonghi/jetson_stats · GitHub
Thank you @dusty_nv!
When you install jetson-stats there are available new ENV variables to use quickly to detect your board:
I suggest to use JETSON_TYPE, JETSON_SOC or JETSON_CHIP_ID
calling from your command line or bash script using:
echo $JETSON_TYPE
echo $JETSON_SOC
echo $JETSON_CHIP_ID