* grub-core/normal/misc.c (grub_normal_print_device_info): Dsiplay
ext* instead of ext2.
This commit is contained in:
parent
c2a51adee8
commit
7026b0e278
2 changed files with 9 additions and 1 deletions
|
@ -61,7 +61,10 @@ grub_normal_print_device_info (const char *name)
|
|||
|
||||
if (fs)
|
||||
{
|
||||
grub_printf_ (N_("Filesystem type %s"), fs->name);
|
||||
const char *fsname = fs->name;
|
||||
if (grub_strcmp (fsname, "ext2") == 0)
|
||||
fsname = "ext*";
|
||||
grub_printf_ (N_("Filesystem type %s"), fsname);
|
||||
if (fs->label)
|
||||
{
|
||||
char *label;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue