2008-02-09 Robert Millan <rmh@aybabtu.com>
* util/grub-probe.c (main): When `verbosity > 1', set `debug' environment variable to 'all' in order to obtain debug output from non-util/ code. * util/i386/pc/grub-setup.c (main): Likewise.
This commit is contained in:
parent
a96f9caa1d
commit
91a4bf68ff
3 changed files with 13 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
|||
2008-02-09 Robert Millan <rmh@aybabtu.com>
|
||||
|
||||
* util/grub-probe.c (main): When `verbosity > 1', set `debug'
|
||||
environment variable to 'all' in order to obtain debug output from
|
||||
non-util/ code.
|
||||
* util/i386/pc/grub-setup.c (main): Likewise.
|
||||
|
||||
2008-02-08 Robert Millan <rmh@aybabtu.com>
|
||||
|
||||
* disk/raid.c (grub_raid_scan_device): Check for
|
||||
|
|
|
@ -295,6 +295,9 @@ main (int argc, char *argv[])
|
|||
}
|
||||
}
|
||||
|
||||
if (verbosity > 1)
|
||||
grub_env_set ("debug", "all");
|
||||
|
||||
/* Obtain PATH. */
|
||||
if (optind >= argc)
|
||||
{
|
||||
|
|
|
@ -653,6 +653,9 @@ main (int argc, char *argv[])
|
|||
}
|
||||
}
|
||||
|
||||
if (verbosity > 1)
|
||||
grub_env_set ("debug", "all");
|
||||
|
||||
/* Obtain DEST_DEV. */
|
||||
if (optind >= argc)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue