-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(nvidia): add nvidia script to prepare OS images
Signed-off-by: mudler <[email protected]>
- Loading branch information
Showing
1 changed file
with
141 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
#!/bin/bash | ||
# This script prepares Kairos state, recovery, oem and pesistent partitions as img files. | ||
|
||
set -e | ||
|
||
# Temp dir used during build | ||
WORKDIR=$(mktemp -d --tmpdir arm-builder.XXXXXXXXXX) | ||
TARGET=$(mktemp -d --tmpdir arm-builder.XXXXXXXXXX) | ||
STATEDIR=$(mktemp -d --tmpdir arm-builder.XXXXXXXXXX) | ||
|
||
: "${OEM_LABEL:=COS_OEM}" | ||
: "${RECOVERY_LABEL:=COS_RECOVERY}" | ||
: "${ACTIVE_LABEL:=COS_ACTIVE}" | ||
: "${PASSIVE_LABEL:=COS_PASSIVE}" | ||
: "${PERSISTENT_LABEL:=COS_PERSISTENT}" | ||
: "${SYSTEM_LABEL:=COS_SYSTEM}" | ||
: "${STATE_LABEL:=COS_STATE}" | ||
|
||
size="${SIZE:-7544}" | ||
state_size="${STATE_SIZE:-4992}" | ||
recovery_size="${RECOVERY_SIZE:-2192}" | ||
default_active_size="${DEFAULT_ACTIVE_SIZE:-2400}" | ||
menu_entry="${DEFAULT_MENU_ENTRY:-Kairos}" | ||
|
||
container_image="${container_image:-quay.io/kairos/kairos-opensuse-leap-arm-rpi:v1.5.1-k3sv1.25.6-k3s1}" | ||
|
||
ensure_dir_structure() { | ||
local target=$1 | ||
for mnt in /sys /proc /dev /tmp /boot /usr/local /oem | ||
do | ||
if [ ! -d "${target}${mnt}" ]; then | ||
mkdir -p ${target}${mnt} | ||
fi | ||
done | ||
} | ||
|
||
mkdir -p $WORKDIR/tmpefi | ||
|
||
# Create the EFI partition FAT16 and include the EFI image and a basic grub.cfg | ||
truncate -s $((20*1024*1024)) bootloader/efi.img | ||
cp -rfv /arm/raw/grubefi/* $WORKDIR/tmpefi | ||
cp -rfv /arm/raw/grubartifacts/* $WORKDIR/tmpefi/EFI/BOOT/ | ||
mkdir -p $WORKDIR/tmpefi/EFI/BOOT/fonts | ||
mv $WORKDIR/tmpefi/EFI/BOOT/*pf2 $WORKDIR/tmpefi/EFI/BOOT/fonts | ||
|
||
mkfs.fat -F16 -n COS_GRUB bootloader/efi.img | ||
mcopy -s -i bootloader/efi.img $WORKDIR/tmpefi/EFI ::EFI | ||
|
||
mkdir -p ${STATEDIR}/cOS | ||
|
||
dd if=/dev/zero of=${STATEDIR}/cOS/active.img bs=1M count=$default_active_size | ||
|
||
mkfs.ext2 ${STATEDIR}/cOS/active.img -L ${ACTIVE_LABEL} | ||
|
||
|
||
LOOP=$(losetup --show -f ${STATEDIR}/cOS/active.img) | ||
if [ -z "$LOOP" ]; then | ||
echo "No device" | ||
exit 1 | ||
fi | ||
|
||
mount -t ext2 $LOOP $TARGET | ||
|
||
ensure_dir_structure $TARGET | ||
|
||
# Download the container image | ||
if [ -z "$directory" ]; then | ||
echo ">>> Downloading container image" | ||
luet util unpack $container_image $TARGET | ||
else | ||
echo ">>> Copying files from $directory" | ||
rsync -axq --exclude='host' --exclude='mnt' --exclude='proc' --exclude='sys' --exclude='dev' --exclude='tmp' ${directory}/ $TARGET | ||
fi | ||
|
||
# We copy the grubmenu.cfg to a temporary location to be copied later in the state partition | ||
# https://github.com/kairos-io/kairos/blob/62c67e3e61d49435c362014522e5c6696335376f/overlay/files/system/oem/08_grub.yaml#L105 | ||
# This is a hack and we need a better way: https://github.com/kairos-io/kairos/issues/1427 | ||
tmpgrubconfig=$(mktemp /tmp/grubmeny.cfg.XXXXXX) | ||
cp -rfv $TARGET/etc/kairos/branding/grubmenu.cfg "${tmpgrubconfig}" | ||
|
||
umount $TARGET | ||
sync | ||
|
||
losetup -d $LOOP | ||
|
||
|
||
echo ">> Preparing passive.img" | ||
cp -rfv ${STATEDIR}/cOS/active.img ${STATEDIR}/cOS/passive.img | ||
tune2fs -L ${PASSIVE_LABEL} ${STATEDIR}/cOS/passive.img | ||
|
||
|
||
# Preparing recovery | ||
echo ">> Preparing recovery.img" | ||
RECOVERY=$(mktemp -d --tmpdir arm-builder.XXXXXXXXXX) | ||
mkdir -p ${RECOVERY}/cOS | ||
cp -rfv ${STATEDIR}/cOS/active.img ${RECOVERY}/cOS/recovery.img | ||
tune2fs -L ${SYSTEM_LABEL} ${RECOVERY}/cOS/recovery.img | ||
|
||
# Install real grub config to recovery | ||
cp -rfv /arm/raw/grubconfig/* $RECOVERY | ||
|
||
dd if=/dev/zero of=recovery_partition.img bs=1M count=$recovery_size | ||
dd if=/dev/zero of=state_partition.img bs=1M count=$state_size | ||
|
||
mkfs.ext2 -F -L ${RECOVERY_LABEL} recovery_partition.img | ||
LOOP=$(losetup --show -f recovery_partition.img) | ||
mkdir -p $WORKDIR/recovery | ||
mount $LOOP $WORKDIR/recovery | ||
cp -arf $RECOVERY/* $WORKDIR/recovery | ||
umount $WORKDIR/recovery | ||
losetup -d $LOOP | ||
|
||
mkfs.ext2 -F -L ${STATE_LABEL} state_partition.img | ||
LOOP=$(losetup --show -f state_partition.img) | ||
mkdir -p $WORKDIR/state | ||
mount $LOOP $WORKDIR/state | ||
cp -arf $STATEDIR/* $WORKDIR/state | ||
grub2-editenv $WORKDIR/state/grub_oem_env set "default_menu_entry=$menu_entry" | ||
|
||
# We copy the file we saved earier to the STATE partition | ||
cp -rfv "${tmpgrubconfig}" $WORKDIR/state/grubmenu | ||
|
||
umount $WORKDIR/state | ||
losetup -d $LOOP | ||
|
||
cp -rfv state_partition.img bootloader/ | ||
cp -rfv recovery_partition.img bootloader/ | ||
|
||
## Optional, prepare COS_OEM and COS_PERSISTENT | ||
|
||
# Create the grubenv forcing first boot to be on recovery system | ||
mkdir -p $WORKDIR/oem | ||
cp -rfv /defaults.yaml $WORKDIR/oem/01_defaults.yaml | ||
|
||
# Create a 64MB filesystem for OEM volume | ||
truncate -s $((64*1024*1024)) bootloader/oem.img | ||
mkfs.ext2 -L "${OEM_LABEL}" -d $WORKDIR/oem bootloader/oem.img | ||
|
||
# Create a 2GB filesystem for COS_PERSISTENT volume | ||
truncate -s $((2048*1024*1024)) bootloader/persistent.img | ||
mkfs.ext2 -L "${PERSISTENT_LABEL}" bootloader/persistent.img |