71acf5e54b
* partmap/pc.c: Rename to ... * partmap/msdos.c: ... this. Update all users. (grub_pc_partition_map): Rename to ... (grub_msdos_partition_map): ... this. Update all users. * parttool/pcpart.c: Rename to ... * parttool/msdospart.c: ... this. Update all users. * include/grub/pc_partition.h: Rename to ... * include/grub/msdos_partition.h: ... this. Update all users. (grub_pc_partition_bsd_entry): Rename to ... (grub_msdos_partition_bsd_entry): ... this. Update all users. (grub_pc_partition_disk_label): Rename to ... (grub_msdos_partition_disk_label): ... this. Update all users. (grub_pc_partition_entry): Rename to ... (grub_msdos_partition_entry): ... this. Update all users. (grub_pc_partition_mbr): Rename to ... (grub_msdos_partition_mbr): ... this. Update all users. (grub_pc_partition): Rename to ... (grub_msdos_partition): ... this. Update all users. (grub_pc_partition_is_empty): Rename to ... (grub_msdos_partition_is_empty): ... this. Update all users. (grub_pc_partition_is_extended): Rename to ... (grub_msdos_partition_is_extended): ... this. Update all users. (grub_pc_partition_is_bsd): Rename to ... (grub_msdos_partition_is_bsd): ... this. Update all users. * conf/common.rmk (amiga_mod_SOURCES, amiga_mod_CFLAGS) (amiga_mod_LDFLAGS, apple_mod_SOURCES, apple_mod_CFLAGS) (apple_mod_LDFLAGS, msdos_mod_SOURCES, msdos_mod_CFLAGS) (msdos_mod_LDFLAGS, sun_mod_SOURCES, sun_mod_CFLAGS) (sun_mod_LDFLAGS, acorn_mod_SOURCES, acorn_mod_CFLAGS) (acorn_mod_LDFLAGS, gpt_mod_SOURCES, gpt_mod_CFLAGS) (gpt_mod_LDFLAGS): Rename to ... (part_amiga_mod_SOURCES, part_amiga_mod_CFLAGS, part_amiga_mod_LDFLAGS) (part_apple_mod_SOURCES, part_apple_mod_CFLAGS, part_apple_mod_LDFLAGS) (part_msdos_mod_SOURCES, part_msdos_mod_CFLAGS, part_msdos_mod_LDFLAGS) (part_sun_mod_SOURCES, part_sun_mod_CFLAGS, part_sun_mod_LDFLAGS) (part_acorn_mod_SOURCES, part_acorn_mod_CFLAGS, part_acorn_mod_LDFLAGS) (part_gpt_mod_SOURCES, part_gpt_mod_CFLAGS) (part_gpt_mod_LDFLAGS): ... this. (pkglib_MODULES): Prefix partition modules with `part_'. Rename `pcpart.mod' to `msdospart.mod'. (pcpart_mod_SOURCES, pcpart_mod_CFLAGS, pcpart_mod_LDFLAGS): Rename to ... (msdospart_mod_SOURCES, msdospart_mod_CFLAGS) (msdospart_mod_LDFLAGS): ... this.
113 lines
3.4 KiB
C
113 lines
3.4 KiB
C
/*
|
||
* GRUB -- GRand Unified Bootloader
|
||
* Copyright (C) 1999,2000,2001,2002,2004,2006,2007 Free Software Foundation, Inc.
|
||
*
|
||
* GRUB is free software: you can redistribute it and/or modify
|
||
* it under the terms of the GNU General Public License as published by
|
||
* the Free Software Foundation, either version 3 of the License, or
|
||
* (at your option) any later version.
|
||
*
|
||
* GRUB is distributed in the hope that it will be useful,
|
||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
* GNU General Public License for more details.
|
||
*
|
||
* You should have received a copy of the GNU General Public License
|
||
* along with GRUB. If not, see <http://www.gnu.org/licenses/>.
|
||
*/
|
||
|
||
#ifndef GRUB_PART_HEADER
|
||
#define GRUB_PART_HEADER 1
|
||
|
||
#include <grub/dl.h>
|
||
|
||
struct grub_disk;
|
||
|
||
typedef struct grub_partition *grub_partition_t;
|
||
|
||
/* Partition map type. */
|
||
struct grub_partition_map
|
||
{
|
||
/* The name of the partition map type. */
|
||
const char *name;
|
||
|
||
/* Call HOOK with each partition, until HOOK returns non-zero. */
|
||
grub_err_t (*iterate) (struct grub_disk *disk,
|
||
int (*hook) (struct grub_disk *disk,
|
||
const grub_partition_t partition));
|
||
|
||
/* Return the partition named STR on the disk DISK. */
|
||
grub_partition_t (*probe) (struct grub_disk *disk,
|
||
const char *str);
|
||
|
||
/* Return the name of the partition PARTITION. */
|
||
char *(*get_name) (const grub_partition_t partition);
|
||
|
||
/* The next partition map type. */
|
||
struct grub_partition_map *next;
|
||
};
|
||
typedef struct grub_partition_map *grub_partition_map_t;
|
||
|
||
/* Partition description. */
|
||
struct grub_partition
|
||
{
|
||
/* The start sector. */
|
||
grub_disk_addr_t start;
|
||
|
||
/* The length in sector units. */
|
||
grub_uint64_t len;
|
||
|
||
/* The offset of the partition table. */
|
||
grub_disk_addr_t offset;
|
||
|
||
/* The index of this partition in the partition table. */
|
||
int index;
|
||
|
||
/* Partition map type specific data. */
|
||
void *data;
|
||
|
||
/* The type partition map. */
|
||
grub_partition_map_t partmap;
|
||
};
|
||
|
||
grub_partition_t EXPORT_FUNC(grub_partition_probe) (struct grub_disk *disk,
|
||
const char *str);
|
||
int EXPORT_FUNC(grub_partition_iterate) (struct grub_disk *disk,
|
||
int (*hook) (struct grub_disk *disk,
|
||
const grub_partition_t partition));
|
||
char *EXPORT_FUNC(grub_partition_get_name) (const grub_partition_t partition);
|
||
|
||
int EXPORT_FUNC(grub_partition_map_iterate) (int (*hook) (const grub_partition_map_t partmap));
|
||
|
||
void EXPORT_FUNC(grub_partition_map_register) (grub_partition_map_t partmap);
|
||
|
||
void EXPORT_FUNC(grub_partition_map_unregister) (grub_partition_map_t partmap);
|
||
|
||
#ifdef GRUB_UTIL
|
||
void grub_msdos_partition_map_init (void);
|
||
void grub_msdos_partition_map_fini (void);
|
||
void grub_amiga_partition_map_init (void);
|
||
void grub_amiga_partition_map_fini (void);
|
||
void grub_apple_partition_map_init (void);
|
||
void grub_apple_partition_map_fini (void);
|
||
void grub_sun_partition_map_init (void);
|
||
void grub_sun_partition_map_fini (void);
|
||
void grub_gpt_partition_map_init (void);
|
||
void grub_gpt_partition_map_fini (void);
|
||
void grub_apple_partition_map_init (void);
|
||
void grub_apple_partition_map_fini (void);
|
||
#endif
|
||
|
||
static inline grub_disk_addr_t
|
||
grub_partition_get_start (const grub_partition_t p)
|
||
{
|
||
return p->start;
|
||
}
|
||
|
||
static inline grub_uint64_t
|
||
grub_partition_get_len (const grub_partition_t p)
|
||
{
|
||
return p->len;
|
||
}
|
||
|
||
#endif /* ! GRUB_PART_HEADER */
|