File tree 2 files changed +11
-1
lines changed
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ See also the list of [contributors](CONTRIBUTORS.txt) who participated in this p
21
21
22
22
[ ![ build-bionic] ( https://github.com/mvallim/live-custom-ubuntu-from-scratch/actions/workflows/build-bionic.yml/badge.svg )] ( https://github.com/mvallim/live-custom-ubuntu-from-scratch/actions/workflows/build-bionic.yml )
23
23
[ ![ build-focal] ( https://github.com/mvallim/live-custom-ubuntu-from-scratch/actions/workflows/build-focal.yml/badge.svg )] ( https://github.com/mvallim/live-custom-ubuntu-from-scratch/actions/workflows/build-focal.yml )
24
+ [ ![ build-jammy] ( https://github.com/mvallim/live-custom-ubuntu-from-scratch/actions/workflows/build-jammy.yml/badge.svg )] ( https://github.com/mvallim/live-custom-ubuntu-from-scratch/actions/workflows/build-jammy.yml )
25
+ [ ![ build-noble] ( https://github.com/mvallim/live-custom-ubuntu-from-scratch/actions/workflows/build-noble.yml/badge.svg )] ( https://github.com/mvallim/live-custom-ubuntu-from-scratch/actions/workflows/build-noble.yml )
24
26
25
27
## Terms
26
28
Original file line number Diff line number Diff line change @@ -117,6 +117,7 @@ function install_pkg() {
117
117
grub2-common \
118
118
grub-efi-amd64-signed \
119
119
shim-signed \
120
+ memtest86+ \
120
121
mtools \
121
122
binutils
122
123
@@ -179,7 +180,14 @@ function build_image() {
179
180
cp /boot/initrd.img-** -** -generic casper/initrd
180
181
181
182
# memtest86
182
- cp /boot/memtest86+.bin install/memtest86+
183
+ case $TARGET_UBUNTU_VERSION in
184
+ " noble" )
185
+ cp /boot/memtest86+x64.bin install/memtest86+
186
+ ;;
187
+ * )
188
+ cp /boot/memtest86+.bin install/memtest86+
189
+ ;;
190
+ esac
183
191
184
192
# memtest86++
185
193
wget --progress=dot https://www.memtest86.com/downloads/memtest86-usb.zip -O install/memtest86-usb.zip
You can’t perform that action at this time.
0 commit comments