feat: enable secureboot
This commit is contained in:
parent
61ca760f79
commit
b0748bf30b
|
|
@ -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-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-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
|
## Terms
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -117,6 +117,7 @@ function install_pkg() {
|
||||||
grub2-common \
|
grub2-common \
|
||||||
grub-efi-amd64-signed \
|
grub-efi-amd64-signed \
|
||||||
shim-signed \
|
shim-signed \
|
||||||
|
memtest86+ \
|
||||||
mtools \
|
mtools \
|
||||||
binutils
|
binutils
|
||||||
|
|
||||||
|
|
@ -179,7 +180,14 @@ function build_image() {
|
||||||
cp /boot/initrd.img-**-**-generic casper/initrd
|
cp /boot/initrd.img-**-**-generic casper/initrd
|
||||||
|
|
||||||
# memtest86
|
# 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++
|
# memtest86++
|
||||||
wget --progress=dot https://www.memtest86.com/downloads/memtest86-usb.zip -O install/memtest86-usb.zip
|
wget --progress=dot https://www.memtest86.com/downloads/memtest86-usb.zip -O install/memtest86-usb.zip
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue