2 * GRUB -- GRand Unified Bootloader
3 * Copyright (C) 2000,2001,2002,2003,2004,2005,2007,2008,2009 Free Software Foundation, Inc.
5 * GRUB is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * GRUB is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
22 #include <grub/types.h>
26 grub_uint8_t jmp_boot
[3];
27 grub_uint8_t oem_name
[8];
28 grub_uint16_t bytes_per_sector
;
29 grub_uint8_t sectors_per_cluster
;
30 grub_uint16_t num_reserved_sectors
;
31 grub_uint8_t num_fats
;
33 grub_uint16_t num_root_entries
;
34 grub_uint16_t num_total_sectors_16
;
37 grub_uint16_t sectors_per_fat_16
;
38 grub_uint16_t sectors_per_track
;
40 grub_uint16_t num_heads
;
42 grub_uint32_t num_hidden_sectors
;
44 grub_uint32_t num_total_sectors_32
;
49 grub_uint8_t num_ph_drive
;
50 grub_uint8_t reserved
;
51 grub_uint8_t boot_sig
;
52 grub_uint32_t num_serial
;
53 grub_uint8_t label
[11];
54 grub_uint8_t fstype
[8];
55 } GRUB_PACKED fat12_or_fat16
;
58 grub_uint32_t sectors_per_fat_32
;
59 grub_uint16_t extended_flags
;
60 grub_uint16_t fs_version
;
61 grub_uint32_t root_cluster
;
62 grub_uint16_t fs_info
;
63 grub_uint16_t backup_boot_sector
;
64 grub_uint8_t reserved
[12];
65 grub_uint8_t num_ph_drive
;
66 grub_uint8_t reserved1
;
67 grub_uint8_t boot_sig
;
68 grub_uint32_t num_serial
;
69 grub_uint8_t label
[11];
70 grub_uint8_t fstype
[8];
72 } GRUB_PACKED version_specific
;
76 #include <grub/disk.h>
79 grub_fat_get_cluster_sector (grub_disk_t disk
, grub_uint64_t
*sec_per_lcn
);