2
0
mirror of https://github.com/xcat2/confluent.git synced 2026-06-16 16:40:54 +00:00
Files
confluent/confluent_osdeploy/ubuntu22.04/profiles/default/initprofile.sh
T
Jarrod Johnson b22c17208a Stop preferring HWE for now
The HWE has some missing hardware support, ironically...
2025-10-16 18:30:46 -04:00

24 lines
623 B
Bash

#!/bin/bash
set -e
sed -i 's/label: ubuntu/label: Ubuntu/' $2/profile.yaml
#if [ -e $1/casper/hwe-vmlinuz ]; then
# ln -s $1/casper/hwe-vmlinuz $2/boot/kernel
#else
ln -s $1/casper/vmlinuz $2/boot/kernel
#fi
#if [ -e $1/casper/hwe-initrd ]; then
# ln -s $1/casper/hwe-initrd $2/boot/initramfs/distribution
#else
ln -s $1/casper/initrd $2/boot/initramfs/distribution
#fi
mkdir -p $2/boot/efi/boot
if [ -d $1/EFI/boot/ ]; then
ln -s $1/EFI/boot/* $2/boot/efi/boot
elif [ -d $1/efi/boot/ ]; then
ln -s $1/efi/boot/* $2/boot/efi/boot
else
echo "Unrecognized boot contents in media" >&2
exit 1
fi