declare AFFS, CPIO, TAR and XFS as non-installable explicitly

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2010-12-11 18:21:39 +01:00
parent f5ff296240
commit 80113a6258
3 changed files with 9 additions and 0 deletions

View file

@ -535,6 +535,9 @@ static struct grub_fs grub_affs_fs =
.read = grub_affs_read, .read = grub_affs_read,
.close = grub_affs_close, .close = grub_affs_close,
.label = grub_affs_label, .label = grub_affs_label,
#ifdef GRUB_UTIL
.reserved_first_sector = 0,
#endif
.next = 0 .next = 0
}; };

View file

@ -362,6 +362,9 @@ static struct grub_fs grub_cpio_fs = {
.open = grub_cpio_open, .open = grub_cpio_open,
.read = grub_cpio_read, .read = grub_cpio_read,
.close = grub_cpio_close, .close = grub_cpio_close,
#ifdef GRUB_UTIL
.reserved_first_sector = 0,
#endif
}; };
#ifdef MODE_USTAR #ifdef MODE_USTAR

View file

@ -822,6 +822,9 @@ static struct grub_fs grub_xfs_fs =
.close = grub_xfs_close, .close = grub_xfs_close,
.label = grub_xfs_label, .label = grub_xfs_label,
.uuid = grub_xfs_uuid, .uuid = grub_xfs_uuid,
#ifdef GRUB_UTIL
.reserved_first_sector = 0,
#endif
.next = 0 .next = 0
}; };