Skip to content

Commit

Permalink
Support for JetPack 4.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jetsonhacks committed Nov 10, 2018
1 parent 186317e commit 2260bfd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
This repository holds utilities for working with NVIDIA Jetson Development Kit

# jetsonInfo
Get information about the NVIDIA Jetson OS environment on NVIDIA Jetson Development Kits (TK1, TX1, TX2, Xavier)
Get information about the NVIDIA Jetson OS environment on NVIDIA Jetson Development Kits (TK1, TX1, TX2, AGX Xavier)

The information about the NVIDIA Jetson Development Kit operating system is spread over a few files. This is a handy tool to use for reference.

Expand All @@ -23,6 +23,10 @@ The Ubuntu version is derived from the file: '/etc/os-release'
The Linux kernel version is derived from the file: '/proc/version'

Release Notes:
November, 2018
* v1.1.2
* Add support for JetPack 4.1.1 (L4T 31.1.0)

October, 2018
* v1.1.1
* Add support for JetPack 4.1 (L4T 31.0.2)
Expand Down
6 changes: 4 additions & 2 deletions scripts/jetson_variables
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ if [ -f /sys/module/tegra_fuse/parameters/tegra_chip_id ]; then
24)
JETSON_BOARD="TX2" ;;
25)
JETSON_BOARD="Xavier" ;;
JETSON_BOARD="AGX Xavier" ;;
*)
JETSON_BOARD="UNKNOWN" ;;
esac
Expand All @@ -67,12 +67,14 @@ if [ -f /etc/nv_tegra_release ]; then

# Write version of jetpack installed
# https://developer.nvidia.com/embedded/jetpack-archive
if [ "$JETSON_BOARD" = "Xavier" ] ; then
if [ "$JETSON_BOARD" = "AGX Xavier" ] ; then
case $JETSON_L4T in
"31.0.1")
JETSON_JETPACK="4.0 DP" ;;
"31.0.2")
JETSON_JETPACK="4.1 DP" ;;
"31.1.0")
JETSON_JETPACK="4.1.1 DP" ;;
*)
JETSON_JETPACK="UNKNOWN" ;;
esac
Expand Down

0 comments on commit 2260bfd

Please sign in to comment.