mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 19:07:54 +01:00
* chore: First pass of adding secure boot key enrollment * feat: Add secure boot support * feat: Removed Test this media grub entry and set default to install * fix: simplify secureboot scripts --------- Co-authored-by: Kyle Gospodnetich <me@kylegospodneti.ch>
17 lines
590 B
Bash
17 lines
590 B
Bash
#!/bin/bash
|
|
|
|
echo "-indev $(pwd)/boot.iso"
|
|
echo "-outdev $(pwd)/output/@IMAGE_NAME@-@IMAGE_TAG@.iso"
|
|
echo "-boot_image any replay"
|
|
echo "-joliet on"
|
|
echo "-compliance joliet_long_names"
|
|
echo "-map $(pwd)/scripts/ublue-os-akmods-public-key.der ublue-os-akmods-public-key.der"
|
|
echo "-chmod 0444 /ublue-os-akmods-public-key.der"
|
|
echo "-map $(pwd)/scripts/enroll-secureboot-key.sh enroll-secureboot-key.sh"
|
|
echo "-chmod 0777 enroll-secureboot-key.sh"
|
|
cd container
|
|
for file in $(find @IMAGE_NAME@-@IMAGE_TAG@); do
|
|
echo "-map $(pwd)/${file} ${file}"
|
|
echo "-chmod 0444 ${file}"
|
|
done
|
|
echo "-end"
|