Skip to content

Commit

Permalink
Merge branch 'docusaurus-version' of https://github.com/Seeed-Studio/…
Browse files Browse the repository at this point in the history
…wiki-documents into docusaurus-version
  • Loading branch information
MatthewJeffson committed Aug 9, 2024
2 parents ede31a3 + c1afc24 commit 6c3f782
Show file tree
Hide file tree
Showing 4 changed files with 482 additions and 76 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
description: A608 Carrier Board
description: This article provides a detailed guide on how to flash the JetPack operating system onto the A608 carrier board, which supports NVIDIA Jetson Orin NX/Nano modules. It covers everything from the prerequisites and entering force recovery mode, to downloading the system image and drivers, and finally flashing the operating system onto an NVMe SSD, USB flash drive, or SD card, ensuring that users can successfully complete the system installation and startup.
title: A608 Carrier Board
keywords:
- Edge
Expand Down Expand Up @@ -182,6 +182,66 @@ You will see the following output if the flashing process is successful.
After flashing, power on Jetson Device again and log into the system.

</TabItem>

<TabItem value="JP6.0" label="JP6.0">

## Download the system image package to the PC host

Here we will use NVIDIA L4T 36.3 to install Jetpack 6.0 on the A608 Carrier Board with Jetson Orin NX module.

**Step 1.** [Download](https://developer.nvidia.com/embedded/jetson-linux-r363) the NVIDIA drivers on the host PC. The required drivers are shown below:
<div align="center"><img width="{800}" src="https://files.seeedstudio.com/wiki/reComputer-Jetson/A608/5.1.2_P1.png" /></div>

**Step 2.** [Download](https://recomputer-jetson.oss-us-west-1.aliyuncs.com/A608/608_jp60.zip) peripheral drivers and put all the drivers in same folder.

Now you will see three compressed files in the same folder:

<div align="center"><img width="{800}" src="https://files.seeedstudio.com/wiki/reComputer-Jetson/A608/6.0.png" /></div>


**Step 3.** Prepare system image.

Open a terminal window on the host PC and run the following command:

```sh
cd <path to drivers>
sudo apt install unzip
tar xf Jetson_Linux_R35.4.1_aarch64.tbz2
sudo tar xpf Tegra_Linux_Sample-Root-Filesystem_R35.4.1_aarch64.tbz2 -C Linux_for_Tegra/rootfs/
cd Linux_for_Tegra/
sudo ./apply_binaries.sh
sudo ./tools/l4t_flash_prerequisites.sh
cd ..
unzip a608_jp60.zip
sudo cp -r ./608_jp60/Linux_for_Tegra/* ./Linux_for_Tegra/
```

**Step 4.** Flash the system to A608.

- Flash to NVMe
```sh
cd Linux_for_Tegra
sudo ./tools/kernel_flash/l4t_initrd_flash.sh --external-device nvme0n1p1 -c tools/kernel_flash/flash_l4t_external.xml -p "-c bootloader/t186ref/cfg/flash_t234_qspi.xml" --showlogs --network usb0 jetson-orin-nano-devkit internal
```
- Flash to USB
```sh
cd Linux_for_Tegra
sudo ./tools/kernel_flash/l4t_initrd_flash.sh --external-device sda1 -c tools/kernel_flash/flash_l4t_external.xml -p "-c bootloader/t186ref/cfg/flash_t234_qspi.xml" --showlogs --network usb0 jetson-orin-nano-devkit internal
```
- Flash to SD
```sh
cd Linux_for_Tegra
sudo ./tools/kernel_flash/l4t_initrd_flash.sh --external-device mmcblk1p1 -c tools/kernel_flash/flash_l4t_external.xml -p "-c bootloader/t186ref/cfg/flash_t234_qspi.xml" --showlogs --network usb0 jetson-orin-nano-devkit internal
```

You will see the following output if the flashing process is successful.

<div align="center"><img width="{800}" src="https://files.seeedstudio.com/wiki/reComputer-Jetson/A608/5.1.2_P3.png" /></div>

After flashing, power on Jetson Device again and log into the system.

</TabItem>

</Tabs>

## Tech Support & Product Discussion
Expand Down
21 changes: 20 additions & 1 deletion docs/Edge/NVIDIA_Jetson/FAQs/Use_IMX477_Camera_with_A603.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,31 @@ last_update:
author: Youjiang
---

If you need to use the IMX477 camera, please download [this driver package](https://nv-jetson-images.oss-us-west-1.aliyuncs.com/A603/A603_JP5.1.2_IMX477.zip?OSSAccessKeyId=LTAI5tKm7UD2hmuFW85cz42T&Expires=2716365967&Signature=YMt2c0DbGhA9S9WOAEJ97HqIXXE%3D) and follow [this tutorial](https://wiki.seeedstudio.com/reComputer_A603_Flash_System/) to reflash the Jetpack system.
## Jetpack 5.1.2

If you need to use the IMX477 camera, please download [this driver package](https://recomputer-jetson.oss-us-west-1.aliyuncs.com/A603/603_imx477_jp512.zip) and follow [this tutorial](https://wiki.seeedstudio.com/reComputer_A603_Flash_System/) to reflash the Jetpack system.

:::caution
Please note that you need to use the BSP for [ **JP5.1.2** ](https://developer.nvidia.com/embedded/jetson-linux-r3541).
:::

## Jetpack 6.0

If you need to use the IMX477 camera, please download [this driver package](https://recomputer-jetson.oss-us-west-1.aliyuncs.com/A603/603_imx477_jp60.zip) and follow [this tutorial](https://wiki.seeedstudio.com/reComputer_A603_Flash_System/) to reflash the Jetpack system.

:::caution
Please note that you need to use the BSP for [ **JP6.0** ](https://developer.nvidia.com/embedded/jetson-linux-r363).
:::

After the system flashing is completed, connect the CSI camera and use the following command to start the camera:

```bash
nvgstcapture-1.0 --sensor-id=0
```

<div align="center"><img width="{800}" src="https://files.seeedstudio.com/wiki/reComputer-Jetson/A608/camera.png" /></div>


## Tech Support & Product Discussion

Thank you for choosing our products! We are here to provide you with different support to ensure that your experience with our products is as smooth as possible. We offer several communication channels to cater to different preferences and needs.
Expand Down
Loading

0 comments on commit 6c3f782

Please sign in to comment.