Add module loading and parsing boot time checkpoints.
This commit is contained in:
parent
37f617c025
commit
313fb3cef8
2 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2013-12-22 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
Add module loading and parsing boot time checkpoints.
|
||||
|
||||
2013-12-22 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* grub-core/loader/arm/linux.c: Pass arguments through on ATAG
|
||||
|
|
|
@ -657,6 +657,8 @@ grub_dl_load_core (void *addr, grub_size_t size)
|
|||
{
|
||||
grub_dl_t mod;
|
||||
|
||||
grub_boot_time ("Parsing module");
|
||||
|
||||
mod = grub_dl_load_core_noinit (addr, size);
|
||||
|
||||
if (!mod)
|
||||
|
@ -678,6 +680,8 @@ grub_dl_load_file (const char *filename)
|
|||
void *core = 0;
|
||||
grub_dl_t mod = 0;
|
||||
|
||||
grub_boot_time ("Loading module %s", filename);
|
||||
|
||||
file = grub_file_open (filename);
|
||||
if (! file)
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue