Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add ubuntu jetson orin image #160

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ docker push ttl.sh/ubuntu:k3s-1.25.2-v4.2.3-demo
### Building ARM64 Artifacts for Nvidia Jetson devices
1. Your .arg file should contain these values
```
BASE_IMAGE=quay.io/kairos/ubuntu:20.04-core-arm64-nvidia-jetson-agx-orin-v2.4.3
BASE_IMAGE=gcr.io/spectro-dev-public/stylus/ubuntu-jetson-orin:20.04-v2.4.5
ARCH=arm64
platform=linux/arm64
```
Expand Down
8 changes: 8 additions & 0 deletions jetson-orin/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM --platform=arm64 quay.io/kairos/ubuntu:20.04-core-arm64-nvidia-jetson-agx-orin-v3.0.5

# RUN apt update && \
# apt upgrade -y
# COPY --from=quay.io/kairos/framework:v2.4.5 / /
# RUN kernel=$(ls /boot/Image* 2>/dev/null | head -n1) && if [ -e "$kernel" ]; then ln -sf "$kernel" /boot/vmlinuz; fi || true
# RUN echo 'omit_dracutmodules+=" iscsi "' > /etc/dracut.conf.d/iscsi.conf
COPY iscsi.conf /etc/dracut.conf.d/iscsi.conf
2 changes: 2 additions & 0 deletions jetson-orin/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/bash
docker buildx build --platform linux/arm64 --push . -t gcr.io/spectro-dev-public/stylus/ubuntu-jetson-orin:20.04-v3.0.5 -f Dockerfile
1 change: 1 addition & 0 deletions jetson-orin/iscsi.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
omit_dracutmodules+=" iscsi "