* util/ieee1275/grub-install.in: Don't use empty grub_device.
Reported by: Lennart Sorensen.
This commit is contained in:
parent
0ac33bf5eb
commit
463711215f
2 changed files with 12 additions and 7 deletions
17
ChangeLog
17
ChangeLog
|
@ -1,3 +1,14 @@
|
||||||
|
2010-07-28 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* util/ieee1275/grub-install.in: Don't use empty grub_device.
|
||||||
|
Reported by: Lennart Sorensen.
|
||||||
|
|
||||||
|
2010-07-20 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* util/grub.d/00_header.in: Remove compatibility with terminal.mod
|
||||||
|
prior to terminal_input/terminal_output separation. It's been over 1.5
|
||||||
|
years and those versions weren't widely deployed.
|
||||||
|
|
||||||
2010-07-22 Colin Watson <cjwatson@ubuntu.com>
|
2010-07-22 Colin Watson <cjwatson@ubuntu.com>
|
||||||
|
|
||||||
* disk/raid.c (insert_array): Don't count named arrays when looking
|
* disk/raid.c (insert_array): Don't count named arrays when looking
|
||||||
|
@ -29,12 +40,6 @@
|
||||||
(grub_efi_console_fini): New function.
|
(grub_efi_console_fini): New function.
|
||||||
(grub_console_term_output): Register init and fini methods.
|
(grub_console_term_output): Register init and fini methods.
|
||||||
|
|
||||||
2010-07-20 Vladimir Serbinenko <phcoder@gmail.com>
|
|
||||||
|
|
||||||
* util/grub.d/00_header.in: Remove compatibility with terminal.mod
|
|
||||||
prior to terminal_input/terminal_output separation. It's been over 1.5
|
|
||||||
years and those versions weren't widely deployed.
|
|
||||||
|
|
||||||
2010-07-20 Vladimir Serbinenko <phcoder@gmail.com>
|
2010-07-20 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* tests/util/grub-shell-tester.in: Remove bashism and declare as
|
* tests/util/grub-shell-tester.in: Remove bashism and declare as
|
||||||
|
|
|
@ -212,7 +212,7 @@ fi
|
||||||
# this command is allowed to fail (--target=fs already grants us that the
|
# this command is allowed to fail (--target=fs already grants us that the
|
||||||
# filesystem will be accessible).
|
# filesystem will be accessible).
|
||||||
partmap_module=
|
partmap_module=
|
||||||
for x in `$grub_probe --target=partmap --device ${grub_device} 2> /dev/null`; do
|
for x in `$grub_probe --target=partmap --device-map=${device_map} ${grubdir} 2> /dev/null`; do
|
||||||
partmap_module="$partmap_module part_$x";
|
partmap_module="$partmap_module part_$x";
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue