]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
Fix typos in ChangeLog and comments
authorproski <proski@localhost>
Sun, 13 Jul 2008 18:13:36 +0000 (18:13 +0000)
committerproski <proski@localhost>
Sun, 13 Jul 2008 18:13:36 +0000 (18:13 +0000)
ChangeLog
include/grub/aout.h
util/i386/efi/grub-install.in
util/i386/pc/grub-install.in
util/update-grub_lib.in

index 9dc5f5e4f519075d66b14a343da4de26f3385745..d8d20cb574467fa4a55f72cd94edd9bc13000e6d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -15,7 +15,7 @@
        * boot/i386/pc/lnxboot.S: #include <config.h>.
 
        * include/grub/i386/pc/kernel.h (GRUB_KERNEL_MACHINE_RAW_SIZE): Change
-       its value accordding to the compression algorithm used, lzo or lzma.
+       its value according to the compression algorithm used, lzo or lzma.
 
        * util/i386/pc/grub-mkimage.c (compress_kernel): Use different
        compression algorithm according to configure macro.
 
        This fixes a performance issue when pc & gpt partmap iterators
        didn't abort iteration even after our hook found what it was
-       looking for (often causing expensive probes of non-existant drives).
+       looking for (often causing expensive probes of non-existent drives).
 
        Some callers relied on previous buggy behaviour, since they would
        rise an error when their own hooks caused early abortion of its
 
 2008-06-19  Robert Millan  <rmh@aybabtu.com>
 
-       * kern/main.c (grub_main): Export `prefix' variable inmediately
+       * kern/main.c (grub_main): Export `prefix' variable immediately
        after it has been set by grub_machine_set_prefix().
 
 2008-06-19  Robert Millan  <rmh@aybabtu.com>
 
        * util/update-grub_lib.in (prepare_grub_to_access_device): Issue
        "insmod" command directly when abstraction modules are needed,
-       instead of reliing on GRUB_PRELOAD_MODULES (which had no effect
+       instead of relying on GRUB_PRELOAD_MODULES (which had no effect
        since it had already been processed).
 
 2008-06-19  Pavel Roskin  <proski@gnu.org>
 
 2008-06-16  Bean  <bean123ch@gmail.com>
 
-       * fs/ext2.c (grub_ext2_blockgroup): Revert to pre journal state.
+       * fs/ext2.c (grub_ext2_blockgroup): Revert to pre-journal state.
        (grub_ext2_read_block): Likewise.
        (grub_ext2_read_inode): Likewise.
        (grub_ext2_mount): Likewise.
        (grub_ext2_close): Likewise.
        (grub_ext3_get_journal): Removed.
 
-       * fs/reiserfs.c (grub_reiserfs_get_item): Revert to pre journal state.
+       * fs/reiserfs.c (grub_reiserfs_get_item): Revert to pre-journal state.
        (grub_reiserfs_read_symlink): Likewise.
        (grub_reiserfs_mount): Likewise.
        (grub_reiserfs_open): Likewise.
        * loader/i386/pc/multiboot.c (grub_multiboot): Handle a.out format.
 
        * loader/multiboot2.c (grub_multiboot2): Reset grub_errno so that it
-       can test othe formats.
+       can test other formats.
 
 2008-02-19  Robert Millan  <rmh@aybabtu.com>
 
        function.
        * term/ieee1275/ofconsole.c (grub_ofconsole_init): Avoid use of
        grub_ieee1275_decode_int_4(), by obtaining integer properties directly
-       in native endianess from grub_ieee1275_get_integer_property().
+       in native endianness from grub_ieee1275_get_integer_property().
 
 2008-01-19  Robert Millan  <rmh@aybabtu.com>
 
 
        * kern/ieee1275/ieee1275.c: Include `<grub/types.h>'.
        (grub_ieee1275_get_integer_property): New function.  Wraps around
-       grub_ieee1275_get_property() to handle endianess.
+       grub_ieee1275_get_property() to handle endianness.
 
        * kern/powerpc/ieee1275/cmain.c (grub_ieee1275_find_options): Replace
        grub_ieee1275_get_property() with grub_ieee1275_get_integer_property()
 
        * boot/i386/pc/boot.S (force_lba): Removed.
        (boot_drive): Moved to under KERNEL_SECTOR.
-       (kernel_sector): Moved to under KENREL_SEGMENT. Allocate 64-bit
+       (kernel_sector): Moved to under KERNEL_SEGMENT. Allocate 64-bit
        space.
        (real_start): Set %si earlier. Remove code for FORCE_LBA, since it
        is useless.
        (grub_normal_menu_addentry): New function.
        (read_config_file): Rewritten.
        * normal/menu.c (run_menu_entry): Mainly rewritten.
-       * normal/menu_entry.c (make_screen): Rewritten te code to insert
+       * normal/menu_entry.c (make_screen): Rewritten the code to insert
        the menu entry.
        (run): Mainly rewritten.
        * normal/parser.y (menu_entry): New variable.
        endian to the host endian.
        (grub_fat_utf16_to_utf8): Move function from there...
        * kern/misc.c (grub_utf16_to_utf8): ...to here.  Do not convert
-       the endianess of the source string anymore.
+       the endianness of the source string anymore.
        * include/grub/misc.h (grub_utf16_to_utf8): New prototype.
 
 2004-08-24  Marco Gerards  <metgerards@student.han.nl>
index 3243b82ff9474366de9c3c0e6711619f600d312f..c5650ddf8a2849abab607e4daf78d288019c912b 100644 (file)
@@ -74,7 +74,7 @@ union grub_aout_header
 #define        AOUT_MID_HPUX           0x20C   /* hp200/300 HP-UX binary */
 #define        AOUT_MID_HPUX800        0x20B   /* hp800 HP-UX binary */
 
-#define AOUT_FLAG_PIC          0x10    /* contains position independant code */
+#define AOUT_FLAG_PIC          0x10    /* contains position independent code */
 #define AOUT_FLAG_DYNAMIC      0x20    /* contains run-time link-edit info */
 #define AOUT_FLAG_DPMASK       0x30    /* mask for the above */
 
index 645190da291c62611307a45c369cd556565cef5b..a5f97e3462cf35a661f5e963e40ae338ccdf72c5 100644 (file)
@@ -193,7 +193,7 @@ partmap_module=`$grub_probe --target=partmap --device-map=${device_map} ${grubdi
 # Device abstraction module, if any (lvm, raid).
 devabstraction_module=`$grub_probe --target=abstraction --device-map=${device_map} ${grubdir}`
 
-# The order in this list is critical.  Be careful when modifiing it.
+# The order in this list is critical.  Be careful when modifying it.
 modules="$modules $fs_module $partmap_module $devabstraction_module"
 
 $grub_mkimage --output=${grubdir}/grub.efi $modules || exit 1
index 36e0f887f8e5d8bdf30c61915880a69c0cdb5ece..1b2bccbb87604b0e7bcb2358bab2fd416cdbb618 100644 (file)
@@ -237,7 +237,7 @@ else
     prefix_drive=`$grub_probe --target=drive --device ${grub_device}`
 fi
 
-# The order in this list is critical.  Be careful when modifiing it.
+# The order in this list is critical.  Be careful when modifying it.
 modules="$modules $fs_module $partmap_module biosdisk $devabstraction_module"
 
 $grub_mkimage --output=${grubdir}/core.img \
index 036a676609d75bcd3da4d898e2cff32de8dda657..c488a85d02b7c41b36d80628c0b5bab8470f306f 100644 (file)
@@ -120,7 +120,7 @@ prepare_grub_to_access_device ()
     echo "insmod ${abstraction}"
   fi
 
-  # If there's a filesystem UUID that GRUB is capable of identifiing, use it;
+  # If there's a filesystem UUID that GRUB is capable of identifying, use it;
   # otherwise set root as per value in device.map.
   echo "set root=`${grub_probe} --device ${device} --target=drive`"
   if fs_uuid="`${grub_probe} --device ${device} --target=fs_uuid 2> /dev/null`" ; then