mirror of
https://git.proxmox.com/git/grub2
synced 2025-08-06 23:31:47 +00:00
* util/grub-mkimage.c (main): Explicitely flush and sync the output
before closing to ensure that it will be readable by grub-setup.
This commit is contained in:
parent
072b5d315a
commit
ea75312f31
@ -1,3 +1,8 @@
|
|||||||
|
2011-05-09 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* util/grub-mkimage.c (main): Explicitely flush and sync the output
|
||||||
|
before closing to ensure that it will be readable by grub-setup.
|
||||||
|
|
||||||
2011-05-05 Vladimir Serbinenko <phcoder@gmail.com>
|
2011-05-05 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* grub-core/loader/efi/appleloader.c (MAKE_PIWG_PATH): New macro.
|
* grub-core/loader/efi/appleloader.c (MAKE_PIWG_PATH): New macro.
|
||||||
|
@ -1609,6 +1609,8 @@ main (int argc, char *argv[])
|
|||||||
argv + optind, memdisk, config,
|
argv + optind, memdisk, config,
|
||||||
image_target, note, comp);
|
image_target, note, comp);
|
||||||
|
|
||||||
|
fflush (fp);
|
||||||
|
fsync (fileno (fp));
|
||||||
fclose (fp);
|
fclose (fp);
|
||||||
|
|
||||||
if (dir)
|
if (dir)
|
||||||
|
Loading…
Reference in New Issue
Block a user