Magellan Linux

Contents of /trunk/mkinitrd-magellan/klibc/usr/kinit/fstype/iso9660_sb.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 532 - (show annotations) (download)
Sat Sep 1 22:45:15 2007 UTC (16 years, 8 months ago) by niro
File MIME type: text/plain
File size: 415 byte(s)
-import if magellan mkinitrd; it is a fork of redhats mkinitrd-5.0.8 with all magellan patches and features; deprecates magellan-src/mkinitrd

1 #ifndef __ISO9660_SB_H
2 #define __ISO9660_SB_H
3
4 #define ISO_MAGIC_L 5
5 #define ISO_MAGIC "CD001"
6 #define ISO_HS_MAGIC_L 5
7 #define ISO_HS_MAGIC "CDROM"
8
9 /* ISO9660 Volume Descriptor */
10 struct iso_volume_descriptor {
11 __u8 type;
12 char id[ISO_MAGIC_L];
13 __u8 version;
14 };
15
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;
22 };
23
24 #endif