* util/grub-install.c (write_to_disk): Add an info message.

This commit is contained in:
Colin Watson 2014-01-23 12:05:36 +00:00
parent eec4237a32
commit d08059309f
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2014-01-23 Colin Watson <cjwatson@ubuntu.com>
* util/grub-install.c (write_to_disk): Add an info message.
2014-01-21 Andrey Borzenkov <arvidjaar@gmail.com>
* Makefile.am: Allow adding extra files to generated Windows ZIP

View File

@ -675,6 +675,7 @@ write_to_disk (grub_device_t dev, const char *fn)
core_img = grub_util_read_image (fn);
grub_util_info ("writing `%s' to `%s'", fn, dev->disk->name);
err = grub_disk_write (dev->disk, 0, 0,
core_size, core_img);
free (core_img);