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:
robertmh 2008-02-09 10:46:37 +00:00
parent a96f9caa1d
commit 91a4bf68ff
3 changed files with 13 additions and 0 deletions

View file

@ -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

View file

@ -295,6 +295,9 @@ main (int argc, char *argv[])
}
}
if (verbosity > 1)
grub_env_set ("debug", "all");
/* Obtain PATH. */
if (optind >= argc)
{

View file

@ -653,6 +653,9 @@ main (int argc, char *argv[])
}
}
if (verbosity > 1)
grub_env_set ("debug", "all");
/* Obtain DEST_DEV. */
if (optind >= argc)
{