diff options
author | Daniel Drake <drake@endlessm.com> | 2016-09-21 10:38:58 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-21 10:38:58 -0500 |
commit | 041c4b49ad2e7fe5911ca5b87e514514578ade4d (patch) | |
tree | 1396e882383a26923b62e46a2261bfaaa77a1630 | |
parent | 2afe80d1977f8b33ad613dbe5fcc36719e6b9741 (diff) | |
parent | 3a76d4a12e325b8dfffa25fa1d9bd4a2f50c93a8 (diff) | |
download | efi-boot-shim-Release_3.1.0-rc1_debian.tar.gz efi-boot-shim-Release_3.1.0-rc1_debian.zip |
Merge pull request #5 from endlessm/T13374-debianRelease_3.1.0-rc1_debian
Introduce fallback.efi and boot.csv
-rw-r--r-- | debian/BOOT.CSV.utf8 | 1 | ||||
-rwxr-xr-x | debian/rules | 2 | ||||
-rw-r--r-- | debian/shim-efi-image.install | 5 |
3 files changed, 7 insertions, 1 deletions
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 1d46d0c5..7ebe0e6f 100755 --- a/debian/rules +++ b/debian/rules @@ -7,3 +7,5 @@ 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 + 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 368492ba..be39aa40 100644 --- a/debian/shim-efi-image.install +++ b/debian/shim-efi-image.install @@ -1,2 +1,5 @@ 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/ +BOOT.CSV /boot/efi/EFI/endless/ |