diff options
author | Andreas Loibl <andreas@andreas-loibl.de> | 2012-02-09 04:22:58 +0100 |
---|---|---|
committer | Andreas Loibl <andreas@andreas-loibl.de> | 2012-02-09 04:22:58 +0100 |
commit | f9709968ac068f7c394bd3c85ed1d2d16ccf8409 (patch) | |
tree | d8385a7ea863c0f0c4bcf3451f5bc3aa980307ae /config/binary_local-hooks/grub2-efi | |
parent | 34c0add469090e1a995e0de8597e13e17b58489a (diff) | |
download | kanotix-f9709968ac068f7c394bd3c85ed1d2d16ccf8409.zip kanotix-f9709968ac068f7c394bd3c85ed1d2d16ccf8409.tar.gz |
only include efi-stuff into binary if bootloader is grub2
Diffstat (limited to 'config/binary_local-hooks/grub2-efi')
-rwxr-xr-x | config/binary_local-hooks/grub2-efi | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config/binary_local-hooks/grub2-efi b/config/binary_local-hooks/grub2-efi index f786f3c..cd922e1 100755 --- a/config/binary_local-hooks/grub2-efi +++ b/config/binary_local-hooks/grub2-efi @@ -1,5 +1,13 @@ #!/bin/bash +case "$LB_BOOTLOADER" in +grub2|burg) + ;; +*) + exit 0 + ;; +esac + platform=x86_64-efi efi_name=x64 modules="search iso9660 configfile normal memdisk tar part_msdos fat" |