* kern/i386/pc/init.c (make_install_device): Fix a leftover usage of old
partition naming style.
This commit is contained in:
parent
21717c8fca
commit
228cfa97ca
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2010-05-21 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* kern/i386/pc/init.c (make_install_device): Fix a leftover usage of old
|
||||
partition naming style.
|
||||
|
||||
2010-05-21 Colin Watson <cjwatson@ubuntu.com>
|
||||
|
||||
* util/grub-mkconfig.in: Fix handling of -o so that it works when
|
||||
|
|
|
@ -75,8 +75,8 @@ make_install_device (void)
|
|||
ptr += grub_strlen (ptr);
|
||||
|
||||
if (grub_install_bsd_part >= 0)
|
||||
grub_snprintf (ptr, sizeof (dev) - (ptr - dev), ",%c",
|
||||
grub_install_bsd_part + 'a');
|
||||
grub_snprintf (ptr, sizeof (dev) - (ptr - dev), ",%u",
|
||||
grub_install_bsd_part + 1);
|
||||
ptr += grub_strlen (ptr);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue