Skip to content

Commit d3a4cea

Browse files
committed
feat: secure boot noble
1 parent 2ad9be1 commit d3a4cea

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ remove packages specified in `filesystem.manifest` that are *not* listed in `fil
536536
6. Generate md5sum.txt
537537
538538
```shell
539-
/bin/bash -c "(find . -type f -print0 | xargs -0 md5sum | grep -v -e 'md5sum.txt' -e 'bios.img' -e 'efiboot.img' > md5sum.txt)"
539+
/bin/bash -c "(find . -type f -print0 | xargs -0 md5sum | grep -v -e 'isolinux' > md5sum.txt)"
540540
```
541541
542542
### Cleanup the chroot environment

scripts/chroot_build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ EOF
279279
cat /usr/lib/grub/i386-pc/cdboot.img isolinux/core.img > isolinux/bios.img
280280

281281
# generate md5sum.txt
282-
/bin/bash -c "(find . -type f -print0 | xargs -0 md5sum | grep -v -e 'md5sum.txt' -e 'bios.img' -e 'efiboot.img' > md5sum.txt)"
282+
/bin/bash -c "(find . -type f -print0 | xargs -0 md5sum | grep -v -e 'isolinux' > md5sum.txt)"
283283

284284
popd # return initial directory
285285
}

scripts/default_config.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
# The version of Ubuntu to generate. Successfully tested LTS: bionic, focal, jammy, noble
99
# See https://wiki.ubuntu.com/DevelopmentCodeNames for details
10-
export TARGET_UBUNTU_VERSION="noble"
10+
export TARGET_UBUNTU_VERSION="focal"
1111

1212
# The Ubuntu Mirror URL. It's better to change for faster download.
1313
# More mirrors see: https://launchpad.net/ubuntu/+archivemirrors

0 commit comments

Comments
 (0)