Skip to content
Closed
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 .github/workflows/docker-image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on: workflow_dispatch

jobs:
Build:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
permissions:
packages: write
contents: read
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/kuiper2_0-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ jobs:
include:
- arch: 32
build_type: basic
os: ubuntu-latest
os: ubuntu-24.04-arm
- arch: 64
build_type: basic
os: ubuntu-latest
os: ubuntu-24.04-arm
- arch: 32
build_type: full
os: [self-hosted, kuiper32_full]
os: ubuntu-24.04-arm
- arch: 64
build_type: full
os: ubuntu-latest
os: ubuntu-24.04-arm
fail-fast: false
steps:
- uses: actions/checkout@v3
Expand All @@ -49,7 +49,7 @@ jobs:
echo BRANCH_NAME="$branch_name"_"$type"_"${{ matrix.arch }}" >> $GITHUB_ENV
- name: Build image
run: |
if [ "${{ matrix.os }}" == "ubuntu-latest" ]; then
if [[ "$(uname -m)" != "aarch64" ]]; then
sudo apt-get update
sudo apt-get install -y qemu-user-static
fi
Expand Down
4 changes: 2 additions & 2 deletions stages/05.adi-tools/10.install-scopy/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Copyright (c) 2024 Analog Devices, Inc.
# Author: Larisa Radu <larisa.radu@analog.com>

export SCOPY_RELEASE=v2.0.0-beta-rc2
export SCOPY_RELEASE=v2.1.0
export SCOPY_ARCHIVE=Scopy-${SCOPY_RELEASE}-Linux-${TARGET_ARCHITECTURE}-AppImage.zip
export SCOPY_PATH=https://github.com/analogdevicesinc/scopy/releases/download/${SCOPY_RELEASE}/${SCOPY_ARCHIVE}
export SCOPY=Scopy-${SCOPY_RELEASE}-Linux-${TARGET_ARCHITECTURE}
Expand All @@ -18,7 +18,7 @@ chroot "${BUILD_DIR}" << EOF

# Install Scopy 2
wget -q ${SCOPY_PATH}
unzip ${SCOPY_ARCHIVE} && mv ${SCOPY}/* . && rm ${SCOPY_ARCHIVE}
unzip ${SCOPY_ARCHIVE} && rm ${SCOPY_ARCHIVE}
chmod +x ${SCOPY}.AppImage
mv ${SCOPY}.AppImage /usr/local/bin

Expand Down
6 changes: 3 additions & 3 deletions stages/06.boot-partition/01.adi-boot-files/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@

# Variable that selects if the boot files should be installed from the ADI APT Package Repository or from other source
# For normal use this variable will be left on 'y'
USE_ADI_REPO_CARRIERS_BOOT=y
USE_ADI_REPO_CARRIERS_BOOT=n

SERVER="https://swdownloads.analog.com"
XILINX_INTEL_SPATH="cse/boot_partition_files"
XILINX_INTEL_ARCHIVE_NAME="latest_boot_partition.tar.gz"
XILINX_INTEL_PROPERTIES="latest_boot.txt"
RELEASE_XILINX_INTEL_BOOT_FILES="2023_r2"
RELEASE_XILINX_INTEL_BOOT_FILES="2025_r1"

if [ "${USE_ADI_REPO_CARRIERS_BOOT}" == y ]; then

Expand All @@ -37,7 +37,7 @@ chroot "${BUILD_DIR}" << EOF
EOF

elif [[ ! -z ${ARTIFACTORY_XILINX_INTEL} ]]; then
wget -r -q --progress=bar:force:noscroll -nH --cut-dirs=5 -np -R "index.html*" "-l inf" ${ARTIFACTORY_XILINX_INTEL} -P "${BUILD_DIR}/boot"
wget -r -q --progress=bar:force:noscroll -nH --cut-dirs=6 -np -R "index.html*" "-l inf" ${ARTIFACTORY_XILINX_INTEL} -P "${BUILD_DIR}/boot"
else
# Get Xilinx and Intel boot files
wget --progress=bar:force:noscroll "$SERVER/$XILINX_INTEL_SPATH/$RELEASE_XILINX_INTEL_BOOT_FILES/$XILINX_INTEL_ARCHIVE_NAME"
Expand Down
4 changes: 2 additions & 2 deletions stages/06.boot-partition/02.rpi-boot-files/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
# Copyright (c) 2024 Analog Devices, Inc.
# Author: Larisa Radu <larisa.radu@analog.com>

USE_ADI_REPO_RPI_BOOT=y
USE_ADI_REPO_RPI_BOOT=n

# Variables used for custom downloads from SWDownloads or Artifactory for testing purposes
SERVER="https://swdownloads.analog.com"
RPI_SPATH="cse/linux_rpi"
RPI_PROPERTIES="rpi_archives_properties.txt"
BRANCH_RPI_BOOT_FILES="rpi-6.6.y"
BRANCH_RPI_BOOT_FILES="rpi-6.12.y"

if [ "${TARGET_ARCHITECTURE}" = armhf ]; then
RPI_MODULES_ARCHIVE_NAME="rpi_modules_32bit.tar.gz"
Expand Down