2009-05-04 Pavel Roskin <proski@gnu.org>
* disk/ata.c: Spelling fixes. * disk/raid.c: Likewise. * disk/usbms.c: Likewise. * disk/dmraid_nvidia.c: Likewise. * kern/ieee1275/openfw.c: Likewise. * kern/ieee1275/init.c: Likewise. * kern/ieee1275/cmain.c: Likewise. * boot/i386/pc/cdboot.S: Likewise. * video/readers/png.c: Likewise. * video/i386/pc/vbe.c: Likewise. * fs/udf.c: Likewise. * fs/hfs.c: Likewise. * fs/reiserfs.c: Likewise. * efiemu/runtime/efiemu.c: Likewise. * efiemu/main.c: Likewise. * efiemu/mm.c: Likewise. * include/grub/elf.h: Likewise. * include/grub/xnu.h: Likewise. * include/grub/usbdesc.h: Likewise. * include/grub/usb.h: Likewise. * include/grub/script_sh.h: Likewise. * include/grub/lib/LzmaEnc.h: Likewise. * include/grub/efiemu/efiemu.h: Likewise. * include/grub/command.h: Likewise. * normal/menu.c: Likewise. * normal/main.c: Likewise. * normal/datetime.c: Likewise. * bus/usb/uhci.c: Likewise. * mmap/i386/uppermem.c: Likewise. * mmap/mmap.c: Likewise. * commands/acpi.c: Likewise. * commands/test.c: Likewise. * partmap/apple.c: Likewise. * font/font.c: Likewise. * loader/sparc64/ieee1275/linux.c: Likewise. * loader/macho.c: Likewise. * loader/i386/bsd_trampoline.S: Likewise. * loader/i386/bsd.c: Likewise. * loader/xnu.c: Likewise. * term/i386/pc/vesafb.c: Likewise. * term/usb_keyboard.c: Likewise. * util/resolve.c: Likewise. * util/getroot.c: Likewise.
This commit is contained in:
parent
0cfc0083de
commit
4241d2b13a
44 changed files with 130 additions and 84 deletions
|
@ -394,7 +394,7 @@ grub_freebsd_list_modules (void)
|
|||
}
|
||||
}
|
||||
|
||||
/* This function would be here but it's under different licence. */
|
||||
/* This function would be here but it's under different license. */
|
||||
#include "bsd_pagetable.c"
|
||||
|
||||
struct gdt_descriptor
|
||||
|
|
|
@ -98,7 +98,7 @@ VARIABLE(grub_bsd64_trampoline_start)
|
|||
orl $CR0_PG, %eax
|
||||
movl %eax, %cr0
|
||||
|
||||
/* Now we're in compatability mode. set %cs for long mode. */
|
||||
/* Now we're in compatibility mode. set %cs for long mode. */
|
||||
/* lgdt */
|
||||
.byte 0x0f
|
||||
.byte 0x01
|
||||
|
|
|
@ -121,7 +121,7 @@ grub_macho32_readfile (grub_macho_t macho, void *dest)
|
|||
grub_ssize_t read;
|
||||
if (! grub_macho_contains_macho32 (macho))
|
||||
return grub_error (GRUB_ERR_BAD_OS,
|
||||
"Couldn't read arcitecture-specific part");
|
||||
"Couldn't read architecture-specific part");
|
||||
|
||||
if (grub_file_seek (macho->file, macho->offset32) == (grub_off_t) -1)
|
||||
{
|
||||
|
@ -136,7 +136,7 @@ grub_macho32_readfile (grub_macho_t macho, void *dest)
|
|||
{
|
||||
grub_error_push ();
|
||||
return grub_error (GRUB_ERR_BAD_OS,
|
||||
"Couldn't read arcitecture-specific part");
|
||||
"Couldn't read architecture-specific part");
|
||||
}
|
||||
return GRUB_ERR_NONE;
|
||||
}
|
||||
|
|
|
@ -97,7 +97,7 @@ grub_linux_boot (void)
|
|||
|
||||
hp = (struct linux_hdrs *) linux_addr;
|
||||
|
||||
/* Any pointer we derefence in the kernel image must be relocated
|
||||
/* Any pointer we dereference in the kernel image must be relocated
|
||||
to where we actually loaded the kernel. */
|
||||
addr = (grub_addr_t) hp->bootstr_info;
|
||||
addr += (linux_addr - linux_entry);
|
||||
|
@ -474,7 +474,7 @@ fetch_translations (void)
|
|||
|
||||
if (grub_ieee1275_get_property (node, "translations", of_trans, actual, &actual))
|
||||
{
|
||||
grub_printf ("Cannot fetch /vritual-memory/translations property.\n");
|
||||
grub_printf ("Cannot fetch /virtual-memory/translations property.\n");
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -1053,7 +1053,7 @@ grub_xnu_scan_dir_for_kexts (char *dirname, char *osbundlerequired,
|
|||
return GRUB_ERR_NONE;
|
||||
}
|
||||
|
||||
/* Load extension DIRNAME. (extensions are directoris in xnu) */
|
||||
/* Load extension DIRNAME. (extensions are directories in xnu) */
|
||||
grub_err_t
|
||||
grub_xnu_load_kext_from_dir (char *dirname, char *osbundlerequired,
|
||||
int maxrecursion)
|
||||
|
@ -1226,7 +1226,7 @@ grub_cmd_xnu_kext (grub_command_t cmd __attribute__ ((unused)),
|
|||
grub_file_t binfile = 0;
|
||||
if (argc == 2)
|
||||
{
|
||||
/* User explicitely specified plist and binary. */
|
||||
/* User explicitly specified plist and binary. */
|
||||
if (grub_strcmp (args[1], "-") != 0)
|
||||
{
|
||||
binfile = grub_gzfile_open (args[1], 1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue