Skip to content

Commit 3f67669

Browse files
authored
Merge pull request #382 from NVIDIA-AI-IOT/v0.4.3
[WIP] V0.4.3
2 parents 7b371eb + 5afa9ca commit 3f67669

File tree

7 files changed

+32
-21
lines changed

7 files changed

+32
-21
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Master]
44

5+
## [0.4.3]
6+
57
### Added
68

79
- Added ``LocalController`` class which allows users to directly connect controller to JetBot

docker/base/build.sh

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,7 @@
11
cp /etc/apt/trusted.gpg.d/jetson-ota-public.asc ../.. # copy to jetbot root
22

3-
if [[ "$L4T_VERSION" == "32.4.3" ]]
4-
then
5-
BASE_IMAGE=nvcr.io/nvidia/l4t-pytorch:r32.4.3-pth1.6-py3
6-
elif [[ "$L4T_VERSION" == "32.4.4" ]]
7-
then
8-
BASE_IMAGE=nvcr.io/nvidia/l4t-pytorch:r32.4.4-pth1.6-py3
9-
fi
10-
113
sudo docker build \
12-
--build-arg BASE_IMAGE=$BASE_IMAGE \
4+
--build-arg BASE_IMAGE=$JETBOT_BASE_IMAGE \
135
-t $JETBOT_DOCKER_REMOTE/jetbot:base-$JETBOT_VERSION-$L4T_VERSION \
146
-f Dockerfile \
157
../.. # jetbot repo root as context

docker/configure.sh

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,26 @@
11
#!/bin/bash
22

3-
export JETBOT_VERSION=0.4.2
3+
export JETBOT_VERSION=0.4.3
44

55
L4T_VERSION_STRING=$(head -n 1 /etc/nv_tegra_release)
66
L4T_RELEASE=$(echo $L4T_VERSION_STRING | cut -f 2 -d ' ' | grep -Po '(?<=R)[^;]+')
77
L4T_REVISION=$(echo $L4T_VERSION_STRING | cut -f 2 -d ',' | grep -Po '(?<=REVISION: )[^;]+')
88

9+
910
export L4T_VERSION="$L4T_RELEASE.$L4T_REVISION"
1011

11-
if [[ "$L4T_VERSION" == "32.4.3" ]]
12+
if [[ $L4T_VERSION = "32.4.3" ]]
1213
then
13-
# docker hub
14-
export JETBOT_DOCKER_REMOTE=jetbot
14+
JETBOT_BASE_IMAGE=nvcr.io/nvidia/l4t-pytorch:r32.4.3-pth1.6-py3
1515
elif [[ "$L4T_VERSION" == "32.4.4" ]]
1616
then
17-
export JETBOT_DOCKER_REMOTE=jetbot
17+
JETBOT_BASE_IMAGE=nvcr.io/nvidia/l4t-pytorch:r32.4.4-pth1.6-py3
18+
else
19+
echo "JETBOT_BASE_IMAGE not found for ${L4T_VERSION}. Please manually set the JETBOT_BASE_IMAGE environment variable. (ie: export JETBOT_BASE_IMAGE=...)"
1820
fi
1921

22+
export JETBOT_DOCKER_REMOTE=jetbot
23+
2024
./set_nvidia_runtime.sh
2125
sudo systemctl enable docker
2226

@@ -29,5 +33,3 @@ then
2933
export JETBOT_JUPYTER_MEMORY_SWAP=3G
3034
fi
3135

32-
33-
55.9 KB
Loading

docs/reference/docker_tips.md

+13
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
This page provides various information related to using docker with JetBot.
44

5+
## Establishing access to the Docker host terminal
6+
7+
The Jupyter Lab is running in the Docker container, thus the **Terminal** you open on Jupyter Lab only have access to the container environment.<br>
8+
This means you cannot use commands like `nvpmodel`, `tegrastats`, `journalctl`, `systemctl` and others.
9+
10+
To get around this limitation, you can actually SSH in to the Docker host machine by;
11+
12+
```
13+
14+
```
15+
16+
<img src="../images/docker_host_ssh_login_cropped.png" >
17+
518
## Using Nvidia GPU Cloud (NGC)
619

720
The standard JetBot containers are hosted on docker hub, but for development or testing purposes, you may wish to use Nvidia GPU Cloud. To access containers on NGC, you need to sign into the NGC registry. To do this:

docs/software_setup/sd_card.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,17 @@ Download the pre-built JetBot SD card image from the table below. Make sure to
99

1010
### Latest Release
1111

12-
| Platform | JetPack Version | JetBot Version | Download |
13-
|--------|-----------------|----------------|--------|
14-
| Jetson Nano 2GB | 4.4.1 | 0.4.2 | [jetbot-042_nano-2gb-jp441.zip](https://drive.google.com/file/d/1uiWz6QTcqB3wzN81gdv_zY8t_V3ZzkNE/view) |
15-
| Jetson Nano (4GB) | 4.4.1 | 0.4.2 | [jetbot-042_nano-4gb-jp441.zip](https://drive.google.com/file/d/1MAX1ibJvcLulKQeMtxbjMhsrOevBfUJd/view) |
12+
| Platform | JetPack Version | JetBot Version | Download | MD5 Checksum |
13+
|--------|-----------------|----------------|--------|----|
14+
| Jetson Nano 2GB | 4.5 | 0.4.3 | [jetbot-043_nano-2gb-jp45.zip](https://drive.google.com/file/d/1tsuSY3iZrfiKu4ww-RX-eCPcwuT2DPwJ/view?usp=sharing) | e6dda4d13b1b1b31f648402b9b742152 |
15+
| Jetson Nano (4GB) | 4.5 | 0.4.3 | [jetbot-043_nano-4gb-jp45.zip](https://drive.google.com/file/d/1o08RPDRZuDloP_o76tCoSngvq1CVuCDh/view?usp=sharing) | 760b1885646bfad8590633acca014289 |
1616

1717
### Old releases
1818

1919
| Platform | JetPack Version | JetBot Version | Download |
2020
|--------|-----------------|----------------|--------|
21+
| Jetson Nano 2GB | 4.4.1 | 0.4.2 | [jetbot-042_nano-2gb-jp441.zip](https://drive.google.com/file/d/1uiWz6QTcqB3wzN81gdv_zY8t_V3ZzkNE/view) |
22+
| Jetson Nano (4GB) | 4.4.1 | 0.4.2 | [jetbot-042_nano-4gb-jp441.zip](https://drive.google.com/file/d/1MAX1ibJvcLulKQeMtxbjMhsrOevBfUJd/view) |
2123
| Jetson Nano 2GB | 4.4.1 | 0.4.1 | [jetbot-041_nano-2gb-jp441.zip](https://drive.google.com/file/d/1d03TOrQyffxFsv_Nhp-XQ7Q3-nCHbT9a/view) |
2224
| Jetson Nano (4GB) | 4.4.1 | 0.4.1 | [jetbot-041_nano-4gb-jp441.zip](https://drive.google.com/file/d/1yQ5MEiiBxbytCXHFPPBi-5SAxWklhZQA/view) |
2325
| Jetson Nano (4GB) | 4.3 | 0.4.0 | [jetbot_image_v0p4p0.zip](https://drive.google.com/open?id=1G5nw0o3Q6E08xZM99ZfzQAe7-qAXxzHN) |

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def build_libs():
1313

1414
setup(
1515
name='jetbot',
16-
version='0.4.1',
16+
version='0.4.3',
1717
description='An open-source robot based on NVIDIA Jetson Nano',
1818
packages=find_packages(),
1919
install_requires=[

0 commit comments

Comments
 (0)