From d6d701c8169ac4bdb7845767368d2c314658b56a Mon Sep 17 00:00:00 2001 From: Carlo Caione Date: Fri, 16 Sep 2016 15:30:11 +0200 Subject: shim: Ship fallback.efi and introduce /$ESP/endless/ We want to ship fallback.efi end reorganize the ESP content. We want: /boot/efi/EFI/BOOT/bootx64.efi /boot/efi/EFI/BOOT/fallback.efi /boot/efi/EFI/endless/MokManager.efi /boot/efi/EFI/endless/shim.efi Signed-off-by: Carlo Caione --- debian/rules | 1 + debian/shim-efi-image.install | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index 1d46d0c5..d67a6a38 100755 --- a/debian/rules +++ b/debian/rules @@ -7,3 +7,4 @@ override_dh_auto_build: dh_auto_build -- EFI_PATH=/usr/lib VENDOR_CERT_FILE=debian/endless-ca.cer cp -v shim.efi bootx64.efi cp -v MokManager.efi.signed MokManager.efi + cp -v fallback.efi.signed fallback.efi diff --git a/debian/shim-efi-image.install b/debian/shim-efi-image.install index 368492ba..f7abe8bb 100644 --- a/debian/shim-efi-image.install +++ b/debian/shim-efi-image.install @@ -1,2 +1,4 @@ bootx64.efi /boot/efi/EFI/BOOT/ -MokManager.efi /boot/efi/EFI/BOOT/ +fallback.efi /boot/efi/EFI/BOOT/ +MokManager.efi /boot/efi/EFI/endless/ +shim.efi /boot/efi/EFI/endless/ -- cgit v1.2.3 From 3a76d4a12e325b8dfffa25fa1d9bd4a2f50c93a8 Mon Sep 17 00:00:00 2001 From: Carlo Caione Date: Fri, 16 Sep 2016 15:43:47 +0200 Subject: shim: Introduce BOOT.CSV Signed-off-by: Carlo Caione --- debian/BOOT.CSV.utf8 | 1 + debian/rules | 1 + debian/shim-efi-image.install | 1 + 3 files changed, 3 insertions(+) create mode 100644 debian/BOOT.CSV.utf8 diff --git a/debian/BOOT.CSV.utf8 b/debian/BOOT.CSV.utf8 new file mode 100644 index 00000000..097496a4 --- /dev/null +++ b/debian/BOOT.CSV.utf8 @@ -0,0 +1 @@ +shim.efi,Endless,,This is the boot entry for Endless OS diff --git a/debian/rules b/debian/rules index d67a6a38..7ebe0e6f 100755 --- a/debian/rules +++ b/debian/rules @@ -8,3 +8,4 @@ override_dh_auto_build: cp -v shim.efi bootx64.efi cp -v MokManager.efi.signed MokManager.efi cp -v fallback.efi.signed fallback.efi + iconv -t utf-16le debian/BOOT.CSV.utf8 > BOOT.CSV diff --git a/debian/shim-efi-image.install b/debian/shim-efi-image.install index f7abe8bb..be39aa40 100644 --- a/debian/shim-efi-image.install +++ b/debian/shim-efi-image.install @@ -2,3 +2,4 @@ bootx64.efi /boot/efi/EFI/BOOT/ fallback.efi /boot/efi/EFI/BOOT/ MokManager.efi /boot/efi/EFI/endless/ shim.efi /boot/efi/EFI/endless/ +BOOT.CSV /boot/efi/EFI/endless/ -- cgit v1.2.3