Skip to content

Commit

Permalink
feat: secure boot noble
Browse files Browse the repository at this point in the history
  • Loading branch information
mvallim committed Sep 11, 2024
1 parent 2ad9be1 commit d3a4cea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ remove packages specified in `filesystem.manifest` that are *not* listed in `fil
6. Generate md5sum.txt
```shell
/bin/bash -c "(find . -type f -print0 | xargs -0 md5sum | grep -v -e 'md5sum.txt' -e 'bios.img' -e 'efiboot.img' > md5sum.txt)"
/bin/bash -c "(find . -type f -print0 | xargs -0 md5sum | grep -v -e 'isolinux' > md5sum.txt)"
```
### Cleanup the chroot environment
Expand Down
2 changes: 1 addition & 1 deletion scripts/chroot_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ EOF
cat /usr/lib/grub/i386-pc/cdboot.img isolinux/core.img > isolinux/bios.img

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

popd # return initial directory
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/default_config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

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

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

0 comments on commit d3a4cea

Please sign in to comment.