debian-uki/build-uki.sh

30 lines
947 B
Bash
Raw Normal View History

2023-06-25 12:28:34 +02:00
#!/usr/bin/env bash
run_directory=$(dirname $(readlink -f "$0"))
source "$run_directory/variables.conf"
2023-07-02 16:25:03 +02:00
user=$(whoami)
2023-06-25 12:28:34 +02:00
2023-06-25 15:19:30 +02:00
if [[ $user != 'root' ]]; then
sudo="sudo"
else
sudo=""
fi
2023-06-25 12:28:34 +02:00
# Build UKI
2023-06-25 15:19:30 +02:00
$sudo objcopy \
2023-06-25 12:28:34 +02:00
--add-section .osrel=/etc/os-release --change-section-vma .osrel=0x20000 \
--add-section .cmdline="/etc/kernel/cmdline" --change-section-vma .cmdline=0x30000 \
--add-section .linux="$path_to_vmlinuz_link/vmlinuz" --change-section-vma .linux=0x40000 \
--add-section .initrd="$path_to_vmlinuz_link/initrd.img" --change-section-vma .initrd=0x3000000 \
/usr/lib/systemd/boot/efi/linuxx64.efi.stub $path_to_uki
2023-06-30 13:20:16 +02:00
# Sign UKI
2023-06-30 13:24:12 +02:00
$sudo sbsign --key /etc/secureboot/full/db.key --cert /etc/secureboot/full/db.crt --output $path_to_uki $path_to_uki
2023-06-25 12:28:34 +02:00
2023-07-22 12:37:17 +02:00
# if needed, copy UKI to EFI default boot path
2023-07-22 12:45:00 +02:00
if [[ -v set_efi_default_image ]] && [[ $set_efi_default_image = "yes" ]]; then
2023-07-22 12:37:17 +02:00
$sudo cp $path_to_uki /efi/EFI/BOOT/BOOTX64.EFI
fi
2023-06-25 12:28:34 +02:00
exit 0