mirror of
https://github.com/mvallim/live-custom-ubuntu-from-scratch.git
synced 2025-08-13 13:42:16 +00:00
feat: enable secureboot
This commit is contained in:
@ -21,6 +21,8 @@ See also the list of [contributors](CONTRIBUTORS.txt) who participated in this p
|
||||
|
||||
[](https://github.com/mvallim/live-custom-ubuntu-from-scratch/actions/workflows/build-bionic.yml)
|
||||
[](https://github.com/mvallim/live-custom-ubuntu-from-scratch/actions/workflows/build-focal.yml)
|
||||
[](https://github.com/mvallim/live-custom-ubuntu-from-scratch/actions/workflows/build-jammy.yml)
|
||||
[](https://github.com/mvallim/live-custom-ubuntu-from-scratch/actions/workflows/build-noble.yml)
|
||||
|
||||
## Terms
|
||||
|
||||
|
@ -117,6 +117,7 @@ function install_pkg() {
|
||||
grub2-common \
|
||||
grub-efi-amd64-signed \
|
||||
shim-signed \
|
||||
memtest86+ \
|
||||
mtools \
|
||||
binutils
|
||||
|
||||
@ -179,7 +180,14 @@ function build_image() {
|
||||
cp /boot/initrd.img-**-**-generic casper/initrd
|
||||
|
||||
# memtest86
|
||||
cp /boot/memtest86+.bin install/memtest86+
|
||||
case $TARGET_UBUNTU_VERSION in
|
||||
"noble")
|
||||
cp /boot/memtest86+x64.bin install/memtest86+
|
||||
;;
|
||||
*)
|
||||
cp /boot/memtest86+.bin install/memtest86+
|
||||
;;
|
||||
esac
|
||||
|
||||
# memtest86++
|
||||
wget --progress=dot https://www.memtest86.com/downloads/memtest86-usb.zip -O install/memtest86-usb.zip
|
||||
|
Reference in New Issue
Block a user