bbee0f2b56
xnu support * conf/i386-efi.rmk (kernel_mod_HEADERS): added i386/pit.h (pkglib_MODULES): add xnu.mod (xnu_mod_SOURCES): new variable (xnu_mod_CFLAGS): likewise (xnu_mod_LDFLAGS): likewise (xnu_mod_ASFLAGS): likewise * conf/i386-pc.rmk: likewise * conf/x86_64-efi.rmk: likewise * include/grub/efi/efi.h (grub_efi_finish_boot_services): new declaration * include/grub/i386/macho.h: new file * include/grub/i386/xnu.h: likewise * include/grub/macho.h: likewise * include/grub/machoload.h: likewise * include/grub/x86_64/macho.h: likewise * include/grub/x86_64/xnu.h: likewise * include/grub/xnu.h: likewise * kern/efi/efi.c (grub_efi_finish_boot_services): new function * kern/efi/mm.c (MAX_HEAP_SIZE): increase * loader/i386/efi/xnu.c: new file * loader/i386/pc/xnu.c: likewise * loader/i386/xnu.c: likewise * loader/i386/xnu_helper.S: likewise * loader/macho.c: likewise * loader/xnu.c: likewise * loader/xnu_resume.c: likewise * util/grub-dumpdevtree: likewise * include/grub/i386/pit.h: include grub/err.h (grub_pit_wait): export * util/grub.d/30_os-prober.in: support Darwin/Mac OS X
62 lines
2 KiB
C
62 lines
2 KiB
C
/*
|
|
* GRUB -- GRand Unified Bootloader
|
|
* Copyright (C) 2009 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_MACHOLOAD_HEADER
|
|
#define GRUB_MACHOLOAD_HEADER 1
|
|
|
|
#include <grub/err.h>
|
|
#include <grub/elf.h>
|
|
#include <grub/file.h>
|
|
#include <grub/symbol.h>
|
|
#include <grub/types.h>
|
|
|
|
struct grub_macho_file
|
|
{
|
|
grub_file_t file;
|
|
grub_ssize_t offset32;
|
|
grub_ssize_t end32;
|
|
int ncmds32;
|
|
grub_size_t cmdsize32;
|
|
grub_uint8_t *cmds32;
|
|
grub_ssize_t offset64;
|
|
grub_ssize_t end64;
|
|
int ncmds64;
|
|
grub_size_t cmdsize64;
|
|
grub_uint8_t *cmds64;
|
|
};
|
|
typedef struct grub_macho_file *grub_macho_t;
|
|
|
|
grub_macho_t grub_macho_open (const char *);
|
|
grub_macho_t grub_macho_file (grub_file_t);
|
|
grub_err_t grub_macho_close (grub_macho_t);
|
|
|
|
int grub_macho_contains_macho32 (grub_macho_t);
|
|
grub_err_t grub_macho32_size (grub_macho_t macho, grub_addr_t *segments_start,
|
|
grub_addr_t *segments_end, int flags);
|
|
grub_uint32_t grub_macho32_get_entry_point (grub_macho_t macho);
|
|
|
|
/* Ignore BSS segments when loading. */
|
|
#define GRUB_MACHO_NOBSS 0x1
|
|
grub_err_t grub_macho32_load (grub_macho_t macho, char *offset, int flags);
|
|
|
|
/* Like filesize and file_read but take only 32-bit part
|
|
for current architecture. */
|
|
grub_size_t grub_macho32_filesize (grub_macho_t macho);
|
|
grub_err_t grub_macho32_readfile (grub_macho_t macho, void *dest);
|
|
|
|
#endif /* ! GRUB_MACHOLOAD_HEADER */
|