Compare commits
9 Commits
master
...
4.4.1/tx2-
Author | SHA1 | Date | |
---|---|---|---|
d7fbb18720 | |||
3e3f5e299d | |||
27d8aef475 | |||
5f98e9589d | |||
188c0964e1 | |||
309af96cce | |||
c599451ca7 | |||
45a171140f | |||
80012ad119 |
@ -1,3 +0,0 @@
|
|||||||
README.md
|
|
||||||
Dockerfile
|
|
||||||
.git
|
|
63
.github/workflows/build-docker.yaml
vendored
63
.github/workflows/build-docker.yaml
vendored
@ -1,63 +0,0 @@
|
|||||||
name: Create and publish a Docker image
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
|
|
||||||
# Defines two custom environment variables for the workflow. These are used for the Container registry domain, and a name for the Docker image that this workflow builds.
|
|
||||||
env:
|
|
||||||
REGISTRY: git.spirirobotics.com
|
|
||||||
IMAGE_NAME: ${{ github.repository }}
|
|
||||||
|
|
||||||
# There is a single job in this workflow. It's configured to run on the latest available version of Ubuntu.
|
|
||||||
jobs:
|
|
||||||
build-and-push-image:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
container: ghcr.io/catthehacker/ubuntu:act-latest
|
|
||||||
|
|
||||||
# Sets the permissions granted to the `GITHUB_TOKEN` for the actions in this job.
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
packages: write
|
|
||||||
#
|
|
||||||
steps:
|
|
||||||
#- name: install docker
|
|
||||||
# run: apt install moby-cli -y
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
lfs: true
|
|
||||||
submodules: true
|
|
||||||
# Uses the `docker/login-action` action to log in to the Container registry registry using the account and password that will publish the packages. Once published, the packages are scoped to the account defined here.
|
|
||||||
- name: Log in to the Container registry
|
|
||||||
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
|
|
||||||
with:
|
|
||||||
registry: ${{ env.REGISTRY }}
|
|
||||||
username: ${{ github.actor }}
|
|
||||||
password: ${{ secrets.WORKFLOW_REGISTRY_TOKEN }}
|
|
||||||
# This step uses [docker/metadata-action](https://github.com/docker/metadata-action#about) to extract tags and labels that will be applied to the specified image. The `id` "meta" allows the output of this step to be referenced in a subsequent step. The `images` value provides the base name for the tags and labels.
|
|
||||||
- name: Extract metadata (tags, labels) for Docker
|
|
||||||
id: meta
|
|
||||||
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
|
|
||||||
with:
|
|
||||||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
|
||||||
|
|
||||||
# - name: Set up QEMU
|
|
||||||
# uses: docker/setup-qemu-action@v2
|
|
||||||
- name: Set up Docker Buildx
|
|
||||||
uses: docker/setup-buildx-action@v3
|
|
||||||
|
|
||||||
# This step uses the `docker/build-push-action` action to build the image, based on your repository's `Dockerfile`. If the build succeeds, it pushes the image to GitHub Packages.
|
|
||||||
# It uses the `context` parameter to define the build's context as the set of files located in the specified path. For more information, see "[Usage](https://github.com/docker/build-push-action#usage)" in the README of the `docker/build-push-action` repository.
|
|
||||||
# It uses the `tags` and `labels` parameters to tag and label the image with the output from the "meta" step.
|
|
||||||
- name: Build Docker image
|
|
||||||
uses: docker/build-push-action@v5
|
|
||||||
env:
|
|
||||||
#Hack for gitea/github weirdness.
|
|
||||||
ACTIONS_RUNTIME_TOKEN: ''
|
|
||||||
with:
|
|
||||||
context: .
|
|
||||||
platforms: linux/arm64
|
|
||||||
push: true
|
|
||||||
tags: ${{ steps.meta.outputs.tags }}
|
|
||||||
labels: ${{ steps.meta.outputs.labels }}
|
|
||||||
|
|
8
.gitmodules
vendored
8
.gitmodules
vendored
@ -1,16 +1,16 @@
|
|||||||
[submodule "source/Jetpack"]
|
[submodule "source/Jetpack"]
|
||||||
path = source/Jetpack
|
path = source/Jetpack
|
||||||
url = https://git.spirirobotics.com/dchvs/Jetpack.git
|
url = https://git.spirirobotics.com/dchvs/Jetpack.git
|
||||||
branch = master
|
branch = cti-jetpack-4.4.1
|
||||||
[submodule "source/drivers/li-mt9m021"]
|
[submodule "source/drivers/li-mt9m021"]
|
||||||
path = source/drivers/li-mt9m021
|
path = source/drivers/li-mt9m021
|
||||||
url = https://git.spirirobotics.com/dchvs/li-mt9m021.git
|
url = https://git.spirirobotics.com/dchvs/li-mt9m021.git
|
||||||
branch = master
|
branch = jetpack-4.4.1
|
||||||
[submodule "CTI-L4T"]
|
[submodule "CTI-L4T"]
|
||||||
path = CTI-L4T
|
path = CTI-L4T
|
||||||
url = https://git.spirirobotics.com/dchvs/CTI-L4T.git
|
url = https://git.spirirobotics.com/dchvs/CTI-L4T.git
|
||||||
branch = master
|
branch = 4.4.1/feature/install-script-on-level2-directory
|
||||||
[submodule "source/drivers/eg25-g"]
|
[submodule "source/drivers/eg25-g"]
|
||||||
path = source/drivers/eg25-g
|
path = source/drivers/eg25-g
|
||||||
url = https://git.spirirobotics.com/dchvs/eg25-g.git
|
url = https://git.spirirobotics.com/dchvs/eg25-g.git
|
||||||
branch = master
|
branch = 4.4.1/tx2-cti/quectel-module
|
||||||
|
36
Dockerfile
36
Dockerfile
@ -1,36 +0,0 @@
|
|||||||
from --platform=linux/amd64 git.spirirobotics.com/spiri/tx2-flashing-tool:main as kernel-build
|
|
||||||
|
|
||||||
RUN apt-get update
|
|
||||||
RUN apt-get install -y ripgrep
|
|
||||||
|
|
||||||
ADD ./source/gcc-linaro-7.3.1-2018.05-x86_64_aarch64-linux-gnu.tar.xz /opt/gcc-linaro-7.3.1/
|
|
||||||
ENV CROSS_COMPILE /opt/gcc-linaro-7.3.1/gcc-linaro-7.3.1-2018.05-x86_64_aarch64-linux-gnu/bin/aarch64-linux-gnu-
|
|
||||||
|
|
||||||
ENV LINUX_FOR_TEGRA /jetson/Linux_for_Tegra
|
|
||||||
ENV KERNEL_LOCATION_FROM_BUILD_DIR ../../spiri-project/source/Jetpack/kernel/kernel-4.9/
|
|
||||||
ENV KERNEL_LOCATION $KERNEL_LOCATION_FROM_BUILD_DIR
|
|
||||||
|
|
||||||
COPY ./ /jetson/Linux_for_Tegra/spiri-project
|
|
||||||
|
|
||||||
WORKDIR /jetson/Linux_for_Tegra/spiri-project/CTI-L4T/
|
|
||||||
RUN ./install.sh
|
|
||||||
|
|
||||||
RUN mkdir -p /jetson/Linux_for_Tegra/builds/build_tx2/build
|
|
||||||
|
|
||||||
WORKDIR /jetson/Linux_for_Tegra/builds/build_tx2/
|
|
||||||
RUN make -C $KERNEL_LOCATION ARCH=arm64 O=$PWD/build/ tegra_defconfig
|
|
||||||
RUN nice make -C $KERNEL_LOCATION ARCH=arm64 O=$PWD/build/ CROSS_COMPILE=${CROSS_COMPILE} -j$(nproc --ignore 2) --output-sync=target zImage dtbs modules
|
|
||||||
|
|
||||||
#Fail if we're missing either of these kenel module
|
|
||||||
RUN rg mt9m021 build/arch/arm64/boot/Image
|
|
||||||
RUN rg eg25-g build/arch/arm64/boot/Image
|
|
||||||
|
|
||||||
RUN mkdir -p /build/boot/
|
|
||||||
RUN mkdir -p /build/lib/modules/
|
|
||||||
|
|
||||||
FROM --platform=linux/arm64 scratch
|
|
||||||
# FROM kernel-build
|
|
||||||
|
|
||||||
COPY --from=kernel-build /jetson/Linux_for_Tegra/builds/build_tx2/build/arch/arm64/boot/Image /build/boot/spiriImage
|
|
||||||
COPY --from=kernel-build /jetson/Linux_for_Tegra/builds/build_tx2/build/arch/arm64/boot/dts/tegra186-tx2-spiri-revF+.dtb /build/boot/
|
|
||||||
COPY ./extlinux.conf /build/boot/extlinux/extlinux.conf
|
|
42
README.md
42
README.md
@ -1,4 +1,5 @@
|
|||||||
The installation consists on creating a build area locatated at:
|
The installation consists on creating a build area locatated at:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
Linux_for_Tegra/builds/build_<spiri>
|
Linux_for_Tegra/builds/build_<spiri>
|
||||||
```
|
```
|
||||||
@ -23,14 +24,10 @@ source ~/.bashrc
|
|||||||
### 2. Clone recursively the repository to the workspace's root to add the Jetpack+CTI 4.4.1 and Drivers MT9M021 and EG25-G
|
### 2. Clone recursively the repository to the workspace's root to add the Jetpack+CTI 4.4.1 and Drivers MT9M021 and EG25-G
|
||||||
```bash
|
```bash
|
||||||
LINUX_FOR_TEGRA=<Linux_for_Tegra/ path>
|
LINUX_FOR_TEGRA=<Linux_for_Tegra/ path>
|
||||||
KERNEL_LOCATION_FROM_BUILD_DIR=../../spiri-project/source/Jetpack/kernel/kernel-4.9/
|
|
||||||
KERNEL_LOCATION=$KERNEL_LOCATION_FROM_BUILD_DIR
|
|
||||||
|
|
||||||
cd $LINUX_FOR_TEGRA
|
cd $LINUX_FOR_TEGRA
|
||||||
|
|
||||||
git clone --recurse-submodules https://git.spirirobotics.com/dchvs/spiri-project.git
|
git clone --recurse-submodules https://git.spirirobotics.com/dchvs/spiri-project.git
|
||||||
cd spiri-project
|
cd spiri-project
|
||||||
|
|
||||||
git checkout master
|
git checkout master
|
||||||
git submodule update --init --recursive --remote
|
git submodule update --init --recursive --remote
|
||||||
```
|
```
|
||||||
@ -46,14 +43,14 @@ sudo ./install.sh
|
|||||||
cd $LINUX_FOR_TEGRA/
|
cd $LINUX_FOR_TEGRA/
|
||||||
|
|
||||||
mkdir -p builds/build_<this build name> && cd builds/build_<this build name>
|
mkdir -p builds/build_<this build name> && cd builds/build_<this build name>
|
||||||
mkdir build
|
mkdir build modules
|
||||||
|
|
||||||
# Create the Kernel configuration file
|
# Create the Kernel configuration file
|
||||||
make -C $KERNEL_LOCATION ARCH=arm64 O=$PWD/build/ tegra_defconfig
|
make -C ../../spiri-project/source/Jetpack/kernel/kernel-4.9/ ARCH=arm64 O=$PWD/build/ tegra_defconfig
|
||||||
```
|
```
|
||||||
```bash
|
```bash
|
||||||
# Check for the Drivers with the "spiri" keyword
|
# Check for the Drivers with the "spiri" keyword
|
||||||
make -C $KERNEL_LOCATION ARCH=arm64 O=$PWD/build/ menuconfig
|
make -C ../../spiri-project/source/Jetpack/kernel/kernel-4.9/ ARCH=arm64 O=$PWD/build/ menuconfig
|
||||||
```
|
```
|
||||||
|
|
||||||
By default the Drivers are installed, the tegra_defconfig include them as:
|
By default the Drivers are installed, the tegra_defconfig include them as:
|
||||||
@ -72,7 +69,8 @@ You can review it on the Kernel Menuconfig, and find it out in the following pat
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Build the Kernel, DTBs and modules
|
# Build the Kernel, DTBs and modules
|
||||||
make -C $KERNEL_LOCATION ARCH=arm64 O=$PWD/build/ CROSS_COMPILE=${CROSS_COMPILE} -j8 --output-sync=target zImage dtbs modules
|
make -C ../../spiri-project/source/Jetpack/kernel/kernel-4.9/ ARCH=arm64 O=$PWD/build/ CROSS_COMPILE=${CROSS_COMPILE} -j8 --output-sync=target zImage dtbs modules
|
||||||
|
make -C ../../spiri-project/source/Jetpack/kernel/kernel-4.9/ ARCH=arm64 O=$PWD/build/ modules_install INSTALL_MOD_PATH=$PWD/modules
|
||||||
```
|
```
|
||||||
|
|
||||||
The deployed Kernel binaries after compilation could check if it has the Drivers in it, inspecting on it with rgrep:
|
The deployed Kernel binaries after compilation could check if it has the Drivers in it, inspecting on it with rgrep:
|
||||||
@ -86,25 +84,29 @@ Once the Kernel it's compiled, the output binaries should get installed on the J
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Location for the Kernel files to be found by Tegra flash.sh script in full image installation
|
# Location for the Kernel files to be found by Tegra flash.sh script in full image installation
|
||||||
+------------------------------------+ +---------------------+
|
+-----------------------------+ +--------------+
|
||||||
| build/arch/arm64/boot/Image | --> | kernel/Image |
|
| build/arch/arm64/boot/Image | --> | kernel/Image |
|
||||||
+------------------------------------+ +---------------------+
|
+-----------------------------+ +--------------+
|
||||||
+------------------------------------+ +---------------------+
|
|
||||||
| build/arch/arm64/boot/dts/* | --> | kernel/dtb/ |
|
+-----------------------------+ +-------------+
|
||||||
+------------------------------------+ +---------------------+
|
| build/arch/arm64/boot/dts/* | --> | kernel/dtb/ |
|
||||||
|
+-----------------------------+ +-------------+
|
||||||
|
|
||||||
+------------------------------------+ +---------------------+
|
+------------------------------------+ +---------------------+
|
||||||
| modules/lib/modules/4.9.140-tegra/ | --> | rootfs/lib/modules/ |
|
| modules/lib/modules/4.9.140-tegra/ | --> | rootfs/lib/modules/ |
|
||||||
+------------------------------------+ +---------------------+
|
+------------------------------------+ +---------------------+
|
||||||
```
|
```
|
||||||
|
|
||||||
```
|
```
|
||||||
|
# Backup the default Kernel
|
||||||
|
cp -r ../../kernel/dtb/ ../../kernel/backup_dtb/
|
||||||
|
cp ../../kernel/Image ../../kernel/backup_Image
|
||||||
|
sudo mv ../../rootfs/lib/modules/4.9.140-tegra/ ../../rootfs/lib/modules/backup_4.9.140-tegra/
|
||||||
|
|
||||||
# Add the Kernel files for full image installation
|
# Add the Kernel files for full image installation
|
||||||
|
cp build/arch/arm64/boot/dts/* ../../kernel/dtb/
|
||||||
# Install the Kernel Image and DTBs
|
cp build/arch/arm64/boot/Image ../../kernel/
|
||||||
make -C $KERNEL_LOCATION ARCH=arm64 O=$PWD/build/ kernel_install INSTALL_PATH=$PWD/../../kernel/
|
sudo make -C ../../spiri-project/source/Jetpack/kernel/kernel-4.9/ ARCH=arm64 O=$PWD/build/ modules_install INSTALL_MOD_PATH=$PWD/../../rootfs/
|
||||||
|
|
||||||
# Install the Drivers modules
|
|
||||||
sudo make -C $KERNEL_LOCATION ARCH=arm64 O=$PWD/build/ modules_install INSTALL_MOD_PATH=$PWD/../../rootfs/
|
|
||||||
```
|
```
|
||||||
|
|
||||||
In order to flash the target device, do the following commands from the workspace's root:
|
In order to flash the target device, do the following commands from the workspace's root:
|
||||||
|
@ -1,12 +0,0 @@
|
|||||||
TIMEOUT 2
|
|
||||||
DEFAULT primary
|
|
||||||
|
|
||||||
MENU TITLE L4T boot options
|
|
||||||
|
|
||||||
LABEL primary
|
|
||||||
MENU LABEL primary kernel
|
|
||||||
LINUX /boot/spiriImage
|
|
||||||
FDT /boot/tegra186-tx2-spiri-revF+.dtb
|
|
||||||
INITRD /boot/initrd
|
|
||||||
APPEND ${cbootargs} quiet
|
|
||||||
|
|
1
source/.gitattributes
vendored
1
source/.gitattributes
vendored
@ -1 +0,0 @@
|
|||||||
gcc-linaro-7.3.1-2018.05-x86_64_aarch64-linux-gnu.tar.xz filter=lfs diff=lfs merge=lfs -text
|
|
@ -1 +1 @@
|
|||||||
Subproject commit 10faeae40c2ec8147da5dc141ba5f0d5ceafed37
|
Subproject commit 95c069085f35530c71e4d216cbb298a917532e4b
|
@ -1 +1 @@
|
|||||||
Subproject commit 771948b95dcd4ffb14abf0eb3cbf5f103e89c364
|
Subproject commit 8ef1521acd107421302ce1c39dbf3b15e9c69da4
|
@ -1 +1 @@
|
|||||||
Subproject commit a324c5b05e26adeab2d48bbcac04b7ba534415fc
|
Subproject commit 14da17d421c75dcbb9731c7a5bf103fdddf7e154
|
BIN
source/gcc-linaro-7.3.1-2018.05-x86_64_aarch64-linux-gnu.tar.xz
(Stored with Git LFS)
BIN
source/gcc-linaro-7.3.1-2018.05-x86_64_aarch64-linux-gnu.tar.xz
(Stored with Git LFS)
Binary file not shown.
Loading…
Reference in New Issue
Block a user