diff --git a/debian/changelog b/debian/changelog index 511603f..0859d1a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -calamares-settings-ubuntu (24) UNRELEASED; urgency=medium +calamares-settings-ubuntu (24) cosmic; urgency=medium [ Wendy Hill ] * Rework the Lubuntu slideshow. @@ -6,7 +6,10 @@ calamares-settings-ubuntu (24) UNRELEASED; urgency=medium [ Simon Quigley ] * Add -E to the desktop icon so that our nice theming carries over. - -- Simon Quigley Tue, 09 Oct 2018 13:32:45 -0500 + [ Walter Lapchynski ] + * Generalize installation of GRUB for EFI. + + -- Walter Lapchynski Tue, 09 Oct 2018 21:51:55 -0700 calamares-settings-ubuntu (23) cosmic; urgency=medium diff --git a/lubuntu/modules/before_bootloader_context.conf b/lubuntu/modules/before_bootloader_context.conf index 6bf40ed..8b54c83 100644 --- a/lubuntu/modules/before_bootloader_context.conf +++ b/lubuntu/modules/before_bootloader_context.conf @@ -2,16 +2,17 @@ # Also pull in shim so secureboot has a chance at working. --- firmwareType: - efi: - - command: apt-cdrom add -m -d=/media/cdrom/ - timeout: 10 - - command: apt-get update - timeout: 120 - - command: apt install -y --no-upgrade -o Acquire::gpgv::Options::=--ignore-time-conflict grub-efi-amd64-signed - timeout: 300 - - command: apt install -y --no-upgrade -o Acquire::gpgv::Options::=--ignore-time-conflict shim-signed - timeout: 300 - - command: sed -i '/deb cdrom/d' /etc/apt/sources.list - timeout: 10 - - command: apt-get update - timeout: 120 + bios: /bin/false + "*": + - command: apt-cdrom add -m -d=/media/cdrom/ + timeout: 10 + - command: apt-get update + timeout: 120 + - command: apt install -y --no-upgrade -o Acquire::gpgv::Options::=--ignore-time-conflict grub-efi-$(if [ "$(grep -q 64 /sys/firmware/efi/fw_platform_size)" ]; then echo amd64-signed; else echo ia32; fi) + timeout: 300 + - command: apt install -y --no-upgrade -o Acquire::gpgv::Options::=--ignore-time-conflict shim-signed + timeout: 300 + - command: sed -i '/deb cdrom/d' /etc/apt/sources.list + timeout: 10 + - command: apt-get update + timeout: 120