* util/grub-install.in: Clarify strings.

Fix source dir check.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2012-02-27 21:36:58 +01:00
parent 984b973ffc
commit e1e49678b9
23 changed files with 247 additions and 18 deletions

View file

@ -571,6 +571,7 @@ static struct grub_fs grub_affs_fs =
.label = grub_affs_label,
#ifdef GRUB_UTIL
.reserved_first_sector = 0,
.blocklist_install = 1,
#endif
.next = 0
};

View file

@ -1027,6 +1027,7 @@ static struct grub_fs grub_bfs_fs = {
#endif
#ifdef GRUB_UTIL
.reserved_first_sector = 1,
.blocklist_install = 1,
#endif
};

View file

@ -1656,6 +1656,7 @@ static struct grub_fs grub_btrfs_fs = {
#ifdef GRUB_UTIL
.embed = grub_btrfs_embed,
.reserved_first_sector = 1,
.blocklist_install = 0,
#endif
};

View file

@ -715,6 +715,7 @@ static struct grub_fs grub_cpio_fs = {
.close = grub_cpio_close,
#ifdef GRUB_UTIL
.reserved_first_sector = 0,
.blocklist_install = 0,
#endif
};

View file

@ -972,6 +972,7 @@ static struct grub_fs grub_ext2_fs =
.mtime = grub_ext2_mtime,
#ifdef GRUB_UTIL
.reserved_first_sector = 1,
.blocklist_install = 1,
#endif
.next = 0
};

View file

@ -1154,6 +1154,7 @@ static struct grub_fs grub_fat_fs =
#else
.reserved_first_sector = 1,
#endif
.blocklist_install = 1,
#endif
.next = 0
};

View file

@ -1357,6 +1357,10 @@ static struct grub_fs grub_hfs_fs =
.label = grub_hfs_label,
.uuid = grub_hfs_uuid,
.mtime = grub_hfs_mtime,
#ifdef GRUB_UTIL
.reserved_first_sector = 1,
.blocklist_install = 1,
#endif
.next = 0
};

View file

@ -1108,6 +1108,7 @@ static struct grub_fs grub_hfsplus_fs =
.uuid = grub_hfsplus_uuid,
#ifdef GRUB_UTIL
.reserved_first_sector = 1,
.blocklist_install = 1,
#endif
.next = 0
};

View file

@ -1093,6 +1093,10 @@ static struct grub_fs grub_iso9660_fs =
.label = grub_iso9660_label,
.uuid = grub_iso9660_uuid,
.mtime = grub_iso9660_mtime,
#ifdef GRUB_UTIL
.reserved_first_sector = 1,
.blocklist_install = 1,
#endif
.next = 0
};

View file

@ -913,6 +913,10 @@ static struct grub_fs grub_jfs_fs =
.close = grub_jfs_close,
.label = grub_jfs_label,
.uuid = grub_jfs_uuid,
#ifdef GRUB_UTIL
.reserved_first_sector = 1,
.blocklist_install = 1,
#endif
.next = 0
};

View file

@ -652,6 +652,10 @@ static struct grub_fs grub_minix_fs =
.open = grub_minix_open,
.read = grub_minix_read,
.close = grub_minix_close,
#ifdef GRUB_UTIL
.reserved_first_sector = 1,
.blocklist_install = 1,
#endif
.next = 0
};

View file

@ -1178,6 +1178,7 @@ static struct grub_fs grub_nilfs2_fs = {
.mtime = grub_nilfs2_mtime,
#ifdef GRUB_UTIL
.reserved_first_sector = 1,
.blocklist_install = 0,
#endif
.next = 0
};

View file

@ -1252,6 +1252,7 @@ static struct grub_fs grub_ntfs_fs =
.uuid = grub_ntfs_uuid,
#ifdef GRUB_UTIL
.reserved_first_sector = 1,
.blocklist_install = 1,
#endif
.next = 0
};

View file

@ -1389,6 +1389,10 @@ static struct grub_fs grub_reiserfs_fs =
.close = grub_reiserfs_close,
.label = grub_reiserfs_label,
.uuid = grub_reiserfs_uuid,
#ifdef GRUB_UTIL
.reserved_first_sector = 1,
.blocklist_install = 1,
#endif
.next = 0
};

View file

@ -455,6 +455,7 @@ static struct grub_fs grub_romfs_fs =
.label = grub_romfs_label,
#ifdef GRUB_UTIL
.reserved_first_sector = 0,
.blocklist_install = 0,
#endif
.next = 0
};

View file

@ -616,6 +616,7 @@ static struct grub_fs grub_sfs_fs =
.label = grub_sfs_label,
#ifdef GRUB_UTIL
.reserved_first_sector = 0,
.blocklist_install = 1,
#endif
.next = 0
};

View file

@ -935,6 +935,7 @@ static struct grub_fs grub_squash_fs =
.mtime = grub_squash_mtime,
#ifdef GRUB_UTIL
.reserved_first_sector = 0,
.blocklist_install = 0,
#endif
.next = 0
};

View file

@ -1097,6 +1097,10 @@ static struct grub_fs grub_udf_fs = {
.read = grub_udf_read,
.close = grub_udf_close,
.label = grub_udf_label,
#ifdef GRUB_UTIL
.reserved_first_sector = 1,
.blocklist_install = 1,
#endif
.next = 0
};

View file

@ -791,6 +791,10 @@ static struct grub_fs grub_ufs_fs =
.label = grub_ufs_label,
.uuid = grub_ufs_uuid,
.mtime = grub_ufs_mtime,
/* FIXME: set reserved_first_sector. */
#ifdef GRUB_UTIL
.blocklist_install = 1,
#endif
.next = 0
};

View file

@ -884,6 +884,7 @@ static struct grub_fs grub_xfs_fs =
.uuid = grub_xfs_uuid,
#ifdef GRUB_UTIL
.reserved_first_sector = 0,
.blocklist_install = 1,
#endif
.next = 0
};

View file

@ -3939,6 +3939,7 @@ static struct grub_fs grub_zfs_fs = {
#ifdef GRUB_UTIL
.embed = grub_zfs_embed,
.reserved_first_sector = 1,
.blocklist_install = 0,
#endif
.next = 0
};