Disable grid gui module
[qi-bootmenu.git] / fstype / iso9660_sb.h
blobefe0733ee577165c0c9b5b07956eb9cf0a383b61
1 #ifndef __ISO9660_SB_H
2 #define __ISO9660_SB_H
4 #define ISO_MAGIC_L 5
5 #define ISO_MAGIC "CD001"
6 #define ISO_HS_MAGIC_L 5
7 #define ISO_HS_MAGIC "CDROM"
9 /* ISO9660 Volume Descriptor */
10 struct iso_volume_descriptor {
11 __u8 type;
12 char id[ISO_MAGIC_L];
13 __u8 version;
16 /* High Sierra Volume Descriptor */
17 struct iso_hs_volume_descriptor {
18 char foo[8];
19 __u8 type;
20 char id[ISO_HS_MAGIC_L];
21 __u8 version;
24 #endif