diff options
Diffstat (limited to 'config')
-rwxr-xr-x | config/binary_local-hooks/grub2-efi | 2 | ||||
-rwxr-xr-x | config/binary_local-hooks/grub2-hotfixes | 19 | ||||
-rw-r--r-- | config/repositories/grub2 | 3 |
3 files changed, 23 insertions, 1 deletions
diff --git a/config/binary_local-hooks/grub2-efi b/config/binary_local-hooks/grub2-efi index 12af93b..6043206 100755 --- a/config/binary_local-hooks/grub2-efi +++ b/config/binary_local-hooks/grub2-efi @@ -36,7 +36,7 @@ workdir="$(mktemp -d efi-image.XXXXXX)" mkdir -p "$workdir/boot/grub" cat >"$workdir/boot/grub/grub.cfg" <<EOF search --file --set=root /.disk/info -set prefix=(\$root)/boot/grub/$platform +set prefix=(\$root)/boot/grub source \$prefix/grub.cfg EOF diff --git a/config/binary_local-hooks/grub2-hotfixes b/config/binary_local-hooks/grub2-hotfixes new file mode 100755 index 0000000..0be01b8 --- /dev/null +++ b/config/binary_local-hooks/grub2-hotfixes @@ -0,0 +1,19 @@ +#!/bin/sh +# hotfixes for grub2.00: +# * move modules to binary/boot/grub/i386-pc + +case "$LB_BOOTLOADER" in +grub2|burg) + ;; +*) + exit 0 + ;; +esac + +if [ -d binary/boot/grub ] +then + mkdir -p binary/boot/grub/i386-pc + mv binary/boot/grub/*.mod binary/boot/grub/*.lst binary/boot/grub/efiemu??.o binary/boot/grub/*.pf2 binary/boot/grub/i386-pc/ +fi + +exit 0 diff --git a/config/repositories/grub2 b/config/repositories/grub2 new file mode 100644 index 0000000..8b30ad6 --- /dev/null +++ b/config/repositories/grub2 @@ -0,0 +1,3 @@ +# Grub 2.00 +deb http://kanotix.com/files/fix/grub2.wheezy ./ +deb-src http://kanotix.com/files/fix/grub2.wheezy ./ |