Already in hard-freeze, so we don't have to worry about breaking changes. Significant changes: - LLVM 15 is used instead of 11 or 13 - /dev/shm has to be manually mounted - Debian 12 uses libdrm 2.4.114 - reworked creating of rootfs, from debootstrap to mmdebstrap - split `create-rootfs.sh` into `lava_build.sh`, `setup-rootfs.sh`, and `strip-rootfs.sh` - dropped winehq repository for now (Debian wine is up-to-date enough) - we use wine now, no need to call explicitly call wine64 - bumped libasan from version 6 to 8 Signed-off-by: David Heidelberg <david.heidelberg@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21977>
48 lines
1.2 KiB
Bash
48 lines
1.2 KiB
Bash
#!/usr/bin/env bash
|
|
# shellcheck disable=SC2154 # arch is assigned in previous scripts
|
|
# When changing this file, you need to bump the following
|
|
# .gitlab-ci/image-tags.yml tags:
|
|
# DEBIAN_BASE_TAG
|
|
# KERNEL_ROOTFS_TAG
|
|
|
|
set -e
|
|
set -o xtrace
|
|
|
|
############### Install packages for baremetal testing
|
|
apt-get install -y ca-certificates
|
|
sed -i -e 's/http:\/\/deb/https:\/\/deb/g' /etc/apt/sources.list.d/*
|
|
apt-get update
|
|
|
|
apt-get install -y --no-remove \
|
|
cpio \
|
|
curl \
|
|
fastboot \
|
|
netcat-openbsd \
|
|
openssh-server \
|
|
procps \
|
|
python3-distutils \
|
|
python3-minimal \
|
|
python3-serial \
|
|
rsync \
|
|
snmp \
|
|
zstd
|
|
|
|
# setup SNMPv2 SMI MIB
|
|
curl -L --retry 4 -f --retry-all-errors --retry-delay 60 \
|
|
https://raw.githubusercontent.com/net-snmp/net-snmp/master/mibs/SNMPv2-SMI.txt \
|
|
-o /usr/share/snmp/mibs/SNMPv2-SMI.txt
|
|
|
|
. .gitlab-ci/container/baremetal_build.sh
|
|
|
|
mkdir -p /baremetal-files/jetson-nano/boot/
|
|
ln -s \
|
|
/baremetal-files/Image \
|
|
/baremetal-files/tegra210-p3450-0000.dtb \
|
|
/baremetal-files/jetson-nano/boot/
|
|
|
|
mkdir -p /baremetal-files/jetson-tk1/boot/
|
|
ln -s \
|
|
/baremetal-files/zImage \
|
|
/baremetal-files/tegra124-jetson-tk1.dtb \
|
|
/baremetal-files/jetson-tk1/boot/
|