mirror of
https://git.proxmox.com/git/grub2
synced 2025-05-19 15:16:31 +00:00
* grub-core/kern/emu/hostdisk.c (grub_util_biosdisk_iterate): Skip with
non-zero pull.
This commit is contained in:
parent
43526629e5
commit
2bba8cfd55
@ -1,3 +1,8 @@
|
|||||||
|
2011-08-16 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* grub-core/kern/emu/hostdisk.c (grub_util_biosdisk_iterate): Skip with
|
||||||
|
non-zero pull.
|
||||||
|
|
||||||
2011-08-16 Vladimir Serbinenko <phcoder@gmail.com>
|
2011-08-16 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* grub-core/fs/jfs.c (grub_jfs_read_file): New parameter ino.
|
* grub-core/fs/jfs.c (grub_jfs_read_file): New parameter ino.
|
||||||
|
@ -217,6 +217,9 @@ grub_util_biosdisk_iterate (int (*hook) (const char *name),
|
|||||||
{
|
{
|
||||||
unsigned i;
|
unsigned i;
|
||||||
|
|
||||||
|
if (pull != GRUB_DISK_PULL_NONE)
|
||||||
|
return 0;
|
||||||
|
|
||||||
for (i = 0; i < sizeof (map) / sizeof (map[0]); i++)
|
for (i = 0; i < sizeof (map) / sizeof (map[0]); i++)
|
||||||
if (map[i].drive && hook (map[i].drive))
|
if (map[i].drive && hook (map[i].drive))
|
||||||
return 1;
|
return 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user