]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
Unify memory types.
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Sat, 18 Sep 2010 22:04:31 +0000 (00:04 +0200)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Sat, 18 Sep 2010 22:04:31 +0000 (00:04 +0200)
* grub-core/Makefile.am (KERNEL_HEADER_FILES): Include memory.h.
* grub-core/commands/lsmmap.c (grub_cmd_lsmmap): Output user-readable
types.
* grub-core/kern/i386/multiboot_mmap.c (grub_lower_mem): Removed.
(grub_upper_mem): Likewise.
* grub-core/kern/ieee1275/init.c (grub_upper_mem): Likewise.
* include/grub/memory.h (grub_memory_type_t): New enum.
All users updated.

16 files changed:
1  2 
ChangeLog
grub-core/Makefile.am
grub-core/commands/acpi.c
grub-core/commands/i386/pc/drivemap.c
grub-core/disk/i386/pc/biosdisk.c
grub-core/kern/i386/pc/init.c
grub-core/kern/i386/pc/mmap.c
grub-core/loader/i386/bsd.c
grub-core/loader/i386/linux.c
grub-core/loader/i386/multiboot_mbi.c
grub-core/loader/i386/pc/chainloader.c
grub-core/loader/i386/pc/linux.c
grub-core/loader/mips/linux.c
grub-core/loader/multiboot.c
grub-core/loader/multiboot_mbi2.c
grub-core/loader/sparc64/ieee1275/linux.c

diff --cc ChangeLog
index 5b4f61e44f1cce28a9455bfb53a952c11b035923,dcd16e8e9498f0dc83a15a0329d5d37b94ea2259..03d4ee52f6aa56c855589c17b165fd5fa836a3f4
+++ b/ChangeLog
++2010-09-18  Vladimir Serbinenko  <phcoder@gmail.com>
++
++      Unify memory types.
++
++      * grub-core/Makefile.am (KERNEL_HEADER_FILES): Include memory.h.
++      * grub-core/commands/lsmmap.c (grub_cmd_lsmmap): Output user-readable
++      types.
++      * grub-core/kern/i386/multiboot_mmap.c (grub_lower_mem): Removed.
++      (grub_upper_mem): Likewise.
++      * grub-core/kern/ieee1275/init.c (grub_upper_mem): Likewise.
++      * include/grub/memory.h (grub_memory_type_t): New enum.
++      All users updated.
++
 +2010-09-18  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * grub-core/Makefile.core.def (lsapm): New module.
 +      * grub-core/commands/i386/pc/lsapm.c: New file.
 +      * grub-core/loader/i386/multiboot_mbi.c (make_mbi) [GRUB_MACHINE_PCBIOS]: Pass APM info.
 +      * grub-core/loader/multiboot_mbi2.c (make_mbi) [GRUB_MACHINE_PCBIOS]:
 +      Likewise.
 +      * include/grub/i386/pc/apm.h: New file.
 +      * include/multiboot.h (multiboot_apm_info): New struct.
 +
 +2010-09-18  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      GRUB-legacy configuration file support.
 +
 +      * Makefile.util.def (grub-menulst2cfg): New util.
 +      * docs/man/grub-menulst2cfg.h2m: New file.
 +      * grub-core/Makefile.core.def (legacycfg): New module.
 +      * grub-core/commands/legacycfg.c: New file.
 +      * grub-core/commands/menuentry.c (append_menu_entry): Rename to ...
 +      (grub_normal_add_menu_entry): ... this.
 +      * grub-core/commands/password.c (grub_cmd_password): Split main part to ...
 +      (grub_normal_set_password): ...this.
 +      * grub-core/commands/videoinfo.c (grub_cmd_videoinfo): Support MODE.
 +      * grub-core/loader/i386/linux.c (linux_vesafb_res): Move to ..,
 +      * grub-core/lib/i386/pc/vesa_modes_table.c: ... here.
 +      * grub-core/lib/legacy_parse.c: New file.
 +      * grub-core/normal/auth.c (grub_cmd_authenticate): New command.
 +      * include/grub/i386/pc/vesa_modes_table.h: New file.
 +      * include/grub/legacy_parse.h: Likewise.
 +      * include/grub/normal.h (grub_normal_add_menu_entry): New proto.
 +      * util/grub-menulst2cfg.c: New file.
 +
 +2010-09-17  Colin Watson  <cjwatson@ubuntu.com>
 +
 +      * grub-core/kern/emu/hostdisk.c
 +      (convert_system_partition_to_system_disk): Initialise node.
 +
 +2010-09-17  Colin Watson  <cjwatson@ubuntu.com>
 +
 +      * grub-core/kern/emu/hostdisk.c
 +      (convert_system_partition_to_system_disk): Fix devmapper memory pool
 +      leak.
 +      Reported and based on patch by: Modestas Vainius.
 +
 +2010-09-17  Colin Watson  <cjwatson@ubuntu.com>
 +
 +      Fix DM-RAID probing with recent versions of device-mapper udev
 +      rules.
 +
 +      * grub-core/kern/emu/hostdisk.c (read_device_map): Don't
 +      canonicalise device paths under /dev/mapper/.
 +      (convert_system_partition_to_system_disk): Compare the
 +      uncanonicalised path to /dev/mapper/ rather than the canonicalised
 +      path, since device nodes under /dev/mapper/ are often symlinks.
 +
 +2010-09-17  Yves Blusseau  <blusseau@zetam.org>
 +
 +      * .bzrignore: *.d removed (old rule), add *.image and symlist.h.
 +
 +2010-09-16  Yves Blusseau  <blusseau@zetam.org>
 +
 +      * configure.ac: Avoid some annoying error messages if freetype-config
 +      program is not found.
 +
 +2010-09-16  Colin Watson  <cjwatson@ubuntu.com>
 +
 +      Support RAID on virtio devices, and others.
 +
 +      * grub-core/kern/emu/getroot.c [__MINGW32__] (find_root_device):
 +      Rename to ...
 +      [__MINGW32__] (grub_find_device): ... this.
 +      [! __MINGW32__ && ! __CYGWIN__] (find_root_device): Rename to ...
 +      [! __MINGW32__ && ! __CYGWIN__] (grub_find_device): ... this.  Use a
 +      reasonable default if dir is NULL.
 +      [! __MINGW32__ && __CYGWIN__] (find_cygwin_root_device): Rename to
 +      ...
 +      [! __MINGW32__ && __CYGWIN__] (grub_find_device): ... this.
 +      (grub_guess_root_device): Update callers.
 +      * include/grub/emu/getroot.h (grub_find_device): Add prototype.
 +
 +      * util/raid.c (grub_util_getdiskname): Remove.
 +      (grub_util_raid_getmembers): Use grub_find_device rather than
 +      grub_util_getdiskname.
 +
 +2010-09-16  Colin Watson  <cjwatson@ubuntu.com>
 +
 +      * docs/grub.texi (serial): Remove obsolete comment about GRUB
 +      needing to be compiled with serial support.
 +      (ls): Indicate that multiple files are accepted.
 +      * grub-core/commands/ls.c (GRUB_MOD_INIT): Update help text to
 +      indicate that multiple files are accepted.
 +
 +2010-09-16  Colin Watson  <cjwatson@ubuntu.com>
 +
 +      * .bzrignore: Add *.1, *.8, grub-shell, grub-shell-tester,
 +      libgrub_a_init.c, and util/bash-completion.d/grub.
 +
 +2010-09-15  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * util/grub-setup.c (setup): Fix incorrect container semantics.
 +
 +2010-09-15  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * grub-core/commands/parttool.c (grub_cmd_parttool): Fix a variable
 +      misusage.
 +      Reported by: J. Nick Terry
 +
 +2010-09-15  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      Move embedding routines to partmap sources files.
 +
 +      * grub-core/partmap/gpt.c (grub_gpt_partition_type_bios_boot)
 +      [GRUB_UTIL]: New variable.
 +      (gpt_partition_map_iterate): Set part.parent.
 +      (gpt_partition_map_embed) [GRUB_UTIL]: New function.
 +      (grub_gpt_partition_map) [GRUB_UTIL]: Set .embed.
 +      * grub-core/partmap/msdos.c (pc_partition_map_embed) [GRUB_UTIL]:
 +      New function.
 +      (grub_msdos_partition_map) [GRUB_UTIL]: Set .embed.
 +      * include/grub/partition.h (grub_embed_type_t) [GRUB_UTIL]: New type.
 +      (grub_partition_map) [GRUB_UTIL]: New field embed.
 +      * util/grub-setup.c (grub_gpt_partition_type_bios_boot): Removed.
 +      (setup): Use ->embed.
 +
 +2010-09-15  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * grub-core/kern/emu/hostdisk.c (grub_util_biosdisk_is_floppy): New
 +      function.
 +      * include/grub/emu/hostdisk.h (grub_util_biosdisk_is_floppy): New proto.
 +      * util/grub-setup.c (setup): Use grub_util_biosdisk_is_floppy.
 +
 +2010-09-15  Yves Blusseau  <blusseau@zetam.org>
 +
 +      Add function to get completions from usage.
 +
 +      * util/bash-completion.d/grub-completion.bash.in: Add function to get
 +      completions from usage. Use LC_ALL=C to get options properly.
 +
 +2010-09-15  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * grub-core/gnulib/basename-lgpl.c: Imported.
 +      * grub-core/gnulib/basename.c: Likewise.
 +      * grub-core/gnulib/dirname-lgpl.c: Likewise.
 +      * grub-core/gnulib/dirname.c: Likewise.
 +      * grub-core/gnulib/dirname.h: Likewise.
 +      * grub-core/gnulib/stripslash.c: Likewise.
 +
 +2010-09-15  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * grub-core/gnulib/error.c: Resynced.
 +      * grub-core/gnulib/getopt.c: Likewise.
 +      * grub-core/gnulib/getopt_int.h: Likewise.
 +      * grub-core/gnulib/regex.h: Likewise.
 +      * grub-core/gnulib/regex_internal.c: Likewise.
 +      * grub-core/gnulib/regex_internal.h: Likewise.
 +
 +2010-09-15  Szymon Janc <szymon@janc.net.pl>
 +
 +      * grub-core/lib/xzembed/xz_dec_stream.c (dec_main): Fix index and block
 +      CRC calculations and validity checks.
 +      * grub-core/lib/xzembed/xz_dec_stream.c (dec_index): Fix index CRC
 +      calculations.
 +
 +2010-09-15  Szymon Janc <szymon@janc.net.pl>
 +
 +      * grub-core/lib/xzembed/xz_dec_stream.c (xz_dec_end): Fix memory leak.
 +
 +2010-09-14  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      Fix incorrect echo options handling.
 +      Reported by: Yves Blusseau.
 +
 +      * include/grub/command.h (grub_command_flags_t): New flags
 +      GRUB_COMMAND_ACCEPT_DASH and GRUB_COMMAND_OPTIONS_AT_START.
 +      * grub-core/lib/arg.c (grub_arg_parse): Handle new flags.
 +      * grub-core/commands/echo.c (GRUB_MOD_INIT): Use new flags.
 +
 +2010-09-14  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * include/grub/command.h (GRUB_COMMAND_FLAG_CMDLINE): Removed. All
 +      users updated.
 +      (GRUB_COMMAND_FLAG_MENU): Likewise.
 +      (GRUB_COMMAND_FLAG_BOTH): Likewise.
 +      (GRUB_COMMAND_FLAG_TITLE): Removed.
 +      (GRUB_COMMAND_FLAG_NO_ECHO): Likewise.
 +      (GRUB_COMMAND_FLAG_EXTCMD): Moved into enum.
 +      (GRUB_COMMAND_FLAG_DYNCMD): Likewise.
 +      (GRUB_COMMAND_FLAG_BLOCKS): Likewise.
 +      (grub_command_flags_t): New enum. All users updated.
 +
 +2010-09-14  Seth Goldberg <seth.goldberg@oracle.com>
 +
 +      Fix solaris compilation.
 +
 +      * grub-core/Makefile.core.def (kernel): Include gnulib/error.c on emu.
 +      (grub-emu): Add LIBZFS and LIBNVPAIR to ldadd.
 +      (grub-emu-list): Likewise.
 +
 +2010-09-14  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      Remove deprecated root command.
 +
 +      * grub-core/commands/minicmd.c (grub_mini_cmd_root): Removed. All users
 +      updated.
 +
 +2010-09-14  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * util/i386/pc/grub-setup.c: Merge this ...
 +      * util/sparc64/ieee1275/grub-setup.c:  ... and this ...
 +      * util/grub-setup.c: ... into this.
 +      * include/grub/sparc64/ieee1275/boot.h (grub_boot_blocklist) [ASM_FILE]:
 +      New struct.
 +
 +2010-09-14  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * grub-core/fs/ext2.c (grub_ext2_open): Use return error value when
 +      possible.
 +
 +2010-09-14  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * grub-core/partmap/sun.c (sun_partition_map_iterate): Don't needlesly
 +      allocate p.
 +
 +2010-09-14  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * util/grub-mkconfig_lib.in (prepare_grub_to_access_device): Add
 +      explicit root argument to set to prevent UUID to be interpreted as
 +      argument to set.
 +
 +2010-09-14  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * grub-core/kern/sparc64/ieee1275/crt0.S: Align stack.
 +
 +2010-09-14  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      Don't export grub_gate_a20.
 +
 +      * grub-core/kern/i386/pc/init.c: Remove leftovers.
 +      * grub-core/kern/i386/pc/startup.S (FUNCTION(grub_gate_a20)): Rename
 +      to ...
 +      (grub_gate_a20): ... this. All users updated.
 +      * include/grub/i386/pc/init.h: Removed. All users updated.
 +
 +2010-09-14  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      Create euro.pf2 which supports most European languages.
 +
 +      * Makefile.am (grubdata_DATA): Add euro.pf2.
 +      (euro.pf2): New target.
 +      (CLEANFILES): Add euro.pf2.
 +
 +2010-09-14  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * configure.ac: Disable emu-usb by default to prevent inadvertent
 +      device takeover.
 +
 +2010-09-13  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      Disable usbserial on grub-emu since our libusb code isn't good enough
 +      yet.
 +
 +      * grub-core/Makefile.core.def (usbserial_common): Disable on emu.
 +      (usbserial_pl2303): Likewise.
 +      (usbserial_ftdi): Likewise.
 +
 +2010-09-13  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * include/grub/disk.h (grub_disk): Remove has_partitions.
 +      All users updated.
 +      * disk/loopback.c (grub_loopback): Remove has_partitions.
 +      All users updated.
 +      (options): Remove partitions. All users updated.
 +      * util/grub-fstest.c (fstest): Don't pass "-p" to loopback.
 +      * util/i386/pc/grub-setup.c (setup): copy partition table only when
 +      actual partition table is found.
 +
 +2010-09-13  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      Remove readability checks (too many false negatives).
 +
 +      * util/grub-install.in: Remove readability checks.
 +      * util/grub-mkconfig.in: Likewise.
 +      * util/grub.d/10_hurd.in: Likewise.
 +      * util/grub.d/10_kfreebsd.in: Likewise.
 +      * util/grub.d/10_linux.in: Likewise.
 +      * util/grub-mkconfig_lib.in (is_path_readable_by_grub): Revert to old
 +      way.
 +
 +2010-09-13  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      Enable acpi shutdown on all ACPI platforms.
 +
 +      * grub-core/Makefile.core.def (halt): Inlude commands/acpihalt.c
 +      on coreboo, multiboot and EFI.
 +      * grub-core/commands/acpihalt.c (get_sleep_type): Add missing casts.
 +      (grub_acpi_halt): Likewise.
 +      * grub-core/commands/i386/pc/halt.c (grub_halt): Call grub_acpi_halt.
 +      (grub_cmd_halt): Don't call grub_acpi_halt directly.
 +      * grub-core/lib/efi/halt.c (grub_halt): Call grub_acpi_halt.
 +      * grub-core/lib/i386/halt.c (grub_halt)
 +      [GRUB_MACHINE_COREBOOT || GRUB_MACHINE_MULTIBOOT]: Likewise.
 +
 +2010-09-13  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * grub-core/commands/iorw.c (grub_cmd_read): Declare buf in smallest
 +      context.
 +
 +2010-09-13  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * grub-core/video/efi_gop.c: Fix over-80-chars line.
 +      * grub-core/video/efi_uga.c: Likewise.
 +
 +2010-09-13  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      Filter devaliases and never open same device twice.
 +
 +      * grub-core/disk/ieee1275/ofdisk.c (last_devpath): New variable.
 +      (last_ihandle): Likewise.
 +      (ofdisk_hash_ent): New member shortest.
 +      (ofdisk_hash_add): Add canonical path too.
 +      (scan): New function.
 +      (grub_ofdisk_iterate): Iterate over hashed entries.
 +      (compute_dev_path): Don't add :0.
 +      (grub_ofdisk_open): Don't really open the disk.
 +      (grub_ofdisk_close): Avoid closing unrelated disk.
 +      (grub_ofdisk_read): Implement reopen logic.
 +      * grub-core/kern/ieee1275/openfw.c (grub_ieee1275_canonicalise_devname):
 +      New function.
 +      * include/grub/ieee1275/ieee1275.h (grub_ieee1275_canonicalise_devname):
 +      New proto.
 +
 +2010-09-13  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      Fix sparc64.
 +
 +      * configure.ac (GRUB_KERNEL_MACHINE_LINK_ADDR): Removed.
 +      * grub-core/Makefile.core.def (kernel): Make ldflags just use the
 +      right address. Add sparc64_ieee1275_ldflags.
 +      * grub-core/loader/sparc64/ieee1275/linux.c: Remove leftover include.
 +      * util/grub-mkimagexx.c (locate_sections): Correct grub_host_to_target32
 +      to grub_host_to_target_addr
 +      (load_image): Likewise.
 +
 +2010-09-13  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * grub-core/normal/completion.c (complete_file): Handle device
 +      containing slash.
 +      Fix based on patch by Doug Nazar.
 +
 +2010-09-13  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      grub-mknetdir script.
 +
 +      * Makefile.util.def (grub-mknetdir): New module.
 +      * tests/util/grub-shell.in: Support boot=net
 +      * util/grub-mknetdir.in: New file.
 +
 +2010-09-13  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      videoinfo on non-vbe.
 +
 +      * grub-core/Makefile.core.def (vbeinfo): Removed.
 +      (vbetest): Removed.
 +      (videoinfo): New module.
 +      * grub-core/commands/i386/pc/vbeinfo.c: Removed.
 +      * grub-core/commands/i386/pc/vbetest.c: Removed.
 +      * grub-core/commands/videoinfo.c: New file.
 +      * grub-core/commands/videotest.c (grub_cmd_videotest): Support mode
 +      specification.
 +      (grub_cmd_videotest) [GRUB_MACHINE_PCBIOS]: Load vbe.mod when invoked
 +      as vbetest.
 +      (GRUB_MOD_INIT) [GRUB_MACHINE_PCBIOS]: New command vbetest.
 +      (GRUB_MOD_FINI) [GRUB_MACHINE_PCBIOS]: Unregister vbetest.
 +      * grub-core/video/efi_gop.c (grub_video_gop_fill_mode_info): Fill
 +      mode_number. New parameter mode. All users updated.
 +      (grub_video_gop_iterate): New function.
 +      (grub_video_efi_gop): New member iterate.
 +      * grub-core/video/i386/pc/vbe.c (framebuffer): Removed leftover fields.
 +      (grub_vbe_set_video_mode): Remove setting useless fields.
 +      (vbe2videoinfo): New function.
 +      (grub_video_vbe_iterate): Likewise.
 +      (grub_video_vbe_setup): Use vbe2videoinfo.
 +      (grub_video_vbe_print_adapter_specific_info): New function.
 +      (grub_video_vbe_adapter): New fields iterate and
 +      print_adapter_specific_info.
 +      * include/grub/video.h (GRUB_VIDEO_MODE_*): Transform into enum.
 +      All users updated.
 +      (grub_video_mode_info): New field mode_number.
 +      (grub_video_adapter): New fields iterate and
 +      print_adapter_specific_info.
 +
 +2010-09-13  Tristan Gingold  <gingold@free.fr>
 +2010-09-13  Robert Millan  <rmh.grub@aybabtu.com>
 +2010-09-13  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * grub-core/commands/efi/lsefisystab.c: New file.
 +      * grub-core/commands/efi/lssal.c: Likewise.
 +      * grub-core/Makefile.core.def (lsacpi): New module.
 +      (lsefisystab): Likewise.
 +      * include/grub/efi/api.h (GRUB_EFI_SAL_TABLE_GUID): New definition.
 +      (GRUB_EFI_HCDP_TABLE_GUID): Likewise.
 +      (grub_efi_sal_system_table): New struct.
 +      (grub_efi_sal_system_table_entrypoint_descriptor): Likewise.
 +      (grub_efi_sal_system_table_memory_descriptor): Likewise.
 +      (grub_efi_sal_system_table_platform_features): Likewise.
 +      (grub_efi_sal_system_table_translation_register_descriptor): Likewise.
 +      (grub_efi_sal_system_table_purge_translation_coherence): Likewise.
 +      (grub_efi_sal_system_table_ap_wakeup): Likewise.
 +      * include/grub/types.h (PRIuGRUB_UINT64_T): New definition.
 +
 +2010-09-13  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      Support explicit user claim that a device is BIOS-visible.
 +
 +      * grub-core/kern/emu/getroot.c (grub_util_get_dev_abstraction):
 +      Return GRUB_DEV_ABSTRACTION_NONE if device is in device.map.
 +      * grub-core/kern/emu/hostdisk.c
 +      (convert_system_partition_to_system_disk): Support mdX.
 +      (find_system_device): New parameter add. All users updated.
 +      (grub_util_biosdisk_is_present): New function.
 +      * include/grub/emu/hostdisk.h (grub_util_biosdisk_is_present): New
 +      proto.
 +
 +2010-09-13  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      Search hints support.
 +
 +      * commands/search.c (FUNC_NAME): New arguments hints and nhints.
 +      All users updated.
 +
 +2010-09-13  Yves Blusseau  <blusseau@zetam.org>
 +
 +      Bash completion script for util commands
 +
 +      * Makefile.am:  Add util/bash-completion.d directory
 +      * configure.ac: Likewise.
 +      * util/bash-completion.d/Makefile.am: New file.
 +      * util/bash-completion.d/grub-completion.bash.in: Likewise.
 +
 +2010-09-12  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * grub-core/normal/term.c (put_glyphs_terminal): Correct sign.
 +      (print_backlog): set backlog_ucs4 and backlog_glyphs.
 +      Reported by: Yves Blusseau.
 +
 +2010-09-12  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * grub-core/normal/misc.c (grub_normal_print_device_info): Show
 +      partition size and offset.
 +
 +2010-09-12  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * grub-core/commands/wildcard.c (make_regex): Escape brackets.
 +
 +2010-09-12  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * grub-core/commands/ls.c (grub_cmd_ls): Accept multiple files.
 +
 +2010-09-12  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * grub-core/kern/misc.c (grub_vprintf): Use va_copy when necessary.
 +      (grub_xvasprintf): Likewise.
 +
 +2010-09-12  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * grub-core/kern/emu/main.c (main): Call hostfs_init only after init_all.
 +
 +2010-09-12  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * grub-core/commands/menuentry.c (append_menu_entry): Don't rely on
 +      args ending with NULL.
 +
 +2010-09-12  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * grub-core/lib/xzembed/xz_dec_stream.c (xz_dec_reset): Preserve context
 +      pointer.
 +
 +2010-09-11  Szymon Janc <szymon@janc.net.pl>
 +
 +      * grub-core/commands/lsacpi.c (grub_cmd_lsacpi): Fix prototype.
 +
 +2010-09-11  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      Shutdown using ACPI.
 +
 +      * grub-core/Makefile.core.def (halt): Add commands/acpihalt.c on i386-pc.
 +      * grub-core/commands/acpihalt.c: New file.
 +      * grub-core/commands/i386/pc/halt.c (grub_cmd_halt): Call grub_acpi_halt.
 +      * include/grub/acpi.h (grub_acpi_fadt): New member pm1a.
 +      (grub_acpi_halt): New proto.
 +      (GRUB_ACPI_SLP_EN): New const.
 +      (GRUB_ACPI_SLP_TYP_OFFSET): Likewise.
 +      (GRUB_ACPI_OPCODE_*): New enum.
 +      (GRUB_ACPI_EXTOPCODE_*): Likewise.
 +
 +2010-09-11  Tristan Gingold  <gingold@free.fr>
 +2010-09-11  Robert Millan  <rmh.grub@aybabtu.com>
 +2010-09-11  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * commands/lsacpi.c: New file.
 +      * grub-core/Makefile.core.def (lsacpi): New module.
 +      * include/grub/acpi.h (GRUB_ACPI_FADT_SIGNATURE): New definition.
 +      (GRUB_ACPI_MADT_SIGNATURE): Likewise.
 +      (grub_acpi_madt_entry_header): New struct.
 +      (grub_acpi_madt): Likewise.
 +      (grub_acpi_madt_entry_interrupt_override): Likewise.
 +      (grub_acpi_madt_entry_sapic): Likewise.
 +      (grub_acpi_madt_entry_lsapic): Likewise.
 +      (grub_acpi_madt_entry_platform_int_source): Likewise.
 +      * include/grub/types.h (PRIxGRUB_UINT32_T): New definition.
 +      (PRIuGRUB_UINT32_T): Likewise.
 +      (PRIxGRUB_UINT64_T): Likewise.
 +
 +2010-09-11  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      Implement loading palette on ieee1275_fb.
 +
 +      * grub-core/video/ieee1275.c (stdout_ihandle): New variable.
 +      (have_setcolors): Likewise.
 +      (grub_video_ieee1275_init): Fill stdout_ihandle and have_setcolors.
 +      (grub_video_ieee1275_setup): Use grub_video_ieee1275_set_palette.
 +      (grub_video_ieee1275_set_palette): Implement.
 +
 +2010-09-11  Vladimir Serbinenko  <phcoder@gmail.com>
 +2010-09-11  Colin Watson  <cjwatson@ubuntu.com>
 +
 +      * util/grub-install.in (grub_partition): New variable.
 +      Set prefix_drive on EFI and PC to (,$grub_partition) as last resort.
 +      * util/i386/pc/grub-setup.c (setup): Don't touch prefix.
 +      Fixes a bug reported by Yves Blusseau.
 +
 +2010-09-11  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      Fix emu on mipsel.
 +
 +      * conf/Makefile.common (CFLAGS_PLATFORM): Add -mflush-func
 +      =grub_cpu_flush_cache on all mips and not only yeeloong.
 +      * configure.ac (COND_mips): New conditional.
 +      * grub-core/Makefile.am (KERNEL_HEADER_FILES): Add libgcc on all
 +      platforms.
 +      * grub-core/kern/emu/cache.S (__mips__): Use _flush_cache.
 +      * grub-core/kern/emu/full.c (grub_arch_dl_init_linker)
 +      [GRUB_LINKER_HAVE_INIT]: New function.
 +      (grub_emu_post_init): Likewise.
 +      * grub-core/kern/emu/lite.c (grub_emu_post_init): Likewise.
 +      * grub-core/kern/emu/main.c: Use grub_emu_post_init.
 +      * include/grub/cache.h (_mips): Include mips/cache.h.
 +      * include/grub/disk.h [GRUB_UTIL || GRUB_MACHINE_EMU]: Add missing
 +      LVM and RAID prototypes.
 +      * include/grub/emu/misc.h (grub_emu_post_init): New proto.
 +      * include/grub/mips/time.h (grub_cpu_idle) [GRUB_MACHINE_EMU]: New
 +      function.
 +
 +2010-09-10  Colin Watson  <cjwatson@ubuntu.com>
 +
 +      * util/grub-install.in: Don't try to verify core.img until after
 +      running grub-mkimage to create it.
 +
 +2010-09-10  Robert Millan  <rmh@gnu.org>
 +
 +      * util/grub.d/10_hurd.in: Add misc readability checks.
 +      * util/grub.d/10_kfreebsd.in: Likewise.
 +      * util/grub.d/10_linux.in: Likewise.
 +
 +2010-09-10  Colin Watson  <cjwatson@ubuntu.com>
 +
 +      * util/grub-install.in: ${imgext} won't be defined here until the
 +      install branch is merged.  For the meantime, only verify core.img on
 +      i386-pc and sparc64-ieee1275 platforms.
 +
 +2010-09-10  Robert Millan  <rmh@gnu.org>
 +
 +      Solaris support in grub_find_zpool_from_dir().  Thanks
 +      Seth Goldberg for referring to getextmntent() facility.
 +
 +      * configure.ac: Check for getextmntent(), `sys/mnttab.h' and
 +      `sys/mkdev.h'.
 +      * grub-core/kern/emu/misc.c [HAVE_SYS_MNTTAB_H]: Include
 +      `<sys/mnttab.h>'.
 +      [HAVE_SYS_MKDEV_H]: Include `<sys/mkdev.h>'.
 +      [HAVE_GETEXTMNTENT] (grub_find_zpool_from_dir): Add getextmntent()
 +      method for finding zpool name.
 +
 +2010-09-10  Colin Watson  <cjwatson@ubuntu.com>
 +
 +      grub-fstest needs the host and hostfs modules while other utilities
 +      actively require those modules to be absent, so grub-fstest needs
 +      its own initialisation and finalisation code.
 +
 +      * Makefile.am (grub_fstest.pp): New target.
 +      (grub_fstest_init.lst): Likewise.
 +      (grub_fstest_init.c): Likewise.
 +      * Makefile.util.def (grub-fstest): Add grub_fstest_init.c.
 +
 +2010-09-10  Robert Millan  <rmh@gnu.org>
 +
 +      * configure.ac: Check for `struct statfs.f_fstypename' and
 +      `struct statfs.f_mntfromname'.
 +
 +      * grub-core/kern/emu/misc.c (grub_find_zpool_from_dir): Conditionalize
 +      kFreeBSD-specific code.
 +
 +2010-09-10  Robert Millan  <rmh@gnu.org>
 +
 +      * util/grub.d/10_kfreebsd.in: Fix ${kfreebsd_device} initialization
 +      on ZFS.  Now non-main filesystems are supported as / too.
 +
 +2010-09-09  Colin Watson  <cjwatson@ubuntu.com>
 +
 +      * Makefile.util.def (libgrub.a): Move grub-core/kern/emu/hostfs.c
 +      and grub-core/disk/host.c to ...
 +      (grub-fstest): ... here.  Having the host disk implementation
 +      present confuses grub-probe and other utility programs.
 +
 +      * util/grub-mkconfig.in: Only verify readability of grub.cfg.new
 +      when writing to a file, not when writing to stdout.
 +
 +2010-09-09  BVK Chaitanya  <bvk.groups@gmail.com>
 +
 +      * tests/partmap_test.in: New test for partitions.
 +      * Makefile.util.def: Rules for new test.
 +
 +2010-09-09  Robert Millan  <rmh@gnu.org>
 +
 +      * util/grub-probe.c (probe): Fix a pair of unhandled error
 +      conditions.
 +
 +2010-09-09  Robert Millan  <rmh@gnu.org>
 +
 +      Basic Btrfs support (detection and UUID).
 +
 +      * grub-core/fs/btrfs.c: New file.
 +      * Makefile.util.def (library): Register btrfs.c.
 +      * grub-core/Makefile.core.def: Likewise.
 +
 +2010-09-08  Robert Millan  <rmh@gnu.org>
 +
 +      * util/grub-mkconfig_lib.in (is_path_readable_by_grub): Improve
 +      with (optional) parameters to specify device and relative path.
 +      * util/grub-install.in: Use is_path_readable_by_grub() to
 +      verify readability of a few critical files.
 +      * util/grub-mkconfig.in: Use is_path_readable_by_grub() to
 +      verify readability of grub.cfg.new.
 +
 +2010-09-08  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      Split minix.mod into minix.mod and minix2.mod.
 +
 +      * Makefile.util.def (libgrub.a): Add grub-core/fs/minix2.c.
 +      * grub-core/Makefile.core.def (minix2): New module.
 +      * grub-core/fs/minix.c: Use definitions instead of runtime version
 +      checking.
 +      * grub-core/fs/minix2.c: New file.
 +
 +2010-09-08  Yves Blusseau  <blusseau@zetam.org>
 +
 +      Add new --boot-directory option to replace --root-directory
 +
 +      * util/grub-install.in: Add new --boot-directory option
 +      * util/grub-reboot.in: Likewise.
 +      * util/grub-set-default.in: Likewise.
 +
 +2010-09-08  Yves Blusseau  <blusseau@zetam.org>
 +
 +        * util/grub-mkconfig.in: Use new variable.
 +
 +2010-09-08  Yves Blusseau  <blusseau@zetam.org>
 +
 +      * configure.ac: Define some useful variables.
 +
 +2010-09-08  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * grub-core/kern/ieee1275/cmain.c (grub_ieee1275_find_options): Set
 +      GRUB_IEEE1275_FLAG_HAS_CURSORONOFF when appropriate.
 +      * grub-core/term/ieee1275/ofconsole.c (grub_ofconsole_setcursor):
 +      Use terminfo and don't use cursor-on/cursor-off unless it's known
 +      to work.
 +      * include/grub/ieee1275/ieee1275.h (grub_ieee1275_flag): New element
 +      GRUB_IEEE1275_FLAG_HAS_CURSORONOFF.
 +
 +2010-09-08  Colin Watson  <cjwatson@ubuntu.com>
 +
 +      * grub-core/kern/efi/init.c (grub_efi_set_prefix): If the prefix
 +      starts with "(,", fill the drive containing the loaded image in
 +      between those two characters, but expect that a full partition
 +      specification including partition map names will follow.
 +
 +2010-09-08  Robert Millan  <rmh@gnu.org>
 +
 +      * configure.ac: Remove `--enable-grub-fstest' option.
 +      * Makefile.util.def (grub-fstest): Remove COND_GRUB_FSTEST condition.
 +
 +      * util/grub-mkconfig_lib.in (is_path_readable_by_grub): Use
 +      `grub-fstest' instead of `grub-probe' for readability verification.
 +      * util/grub-probe.c (probe): Remove readability verification kludge.
 +
 +2010-09-08  Robert Millan  <rmh@gnu.org>
 +
 +      * util/grub-mkconfig.in: Pass `--device ${GRUB_DEVICE}' when
 +      initializing `GRUB_FS'.
 +
 +2010-09-08  BVK Chaitanya  <bvk.groups@gmail.com>
 +
 +      Not command (!) support to GRUB script.
 +
 +      * tests/grub_script_not.in: New test.
 +      * Makefile.util.def: Rules for new test.
 +
 +      * grub-core/script/execute.c (grub_script_execute_cmdline): Handle
 +      ! command as a special case.
 +      * grub-core/script/yylex.l (GRUB_PARSER_TOKEN_NOT): Removed.
 +
 +2010-09-07  BVK Chaitanya  <bvk.groups@gmail.com>
 +
 +      * grub-core/commands/wildcard.c (wildcard_expand): Fix wrong
 +      grub_free.
 +
 +2010-09-07  BVK Chaitanya  <bvk.groups@gmail.com>
 +
 +      * docs/grub.texi (Shell-like scripting): Fix @dots to @dots{}.
 +
 +2010-09-07  BVK Chaitanya  <bvk.groups@gmail.com>
 +
 +      * docs/grub.texi (Shell-like scripting): Documentation for break,
 +      continue, shift and return commands.
 +
 +2010-09-06  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      Rename CD-ROM to cd on BIOS.
 +
 +      * grub-core/disk/i386/pc/biosdisk.c (grub_biosdisk_get_drive): Recognise
 +      "cd".
 +      (grub_biosdisk_call_hook): Call with "cd" instead of arbitrary hdX.
 +
 +2010-09-05  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * grub-core/kern/emu/main.c (main): Reinit LVM and RAID.
 +      * util/grub-probe.c (main): Likewise.
 +      * util/i386/pc/grub-setup.c (main): Likewise.
 +      * util/sparc64/ieee1275/grub-setup.c (main): Likewise.
 +      Reported and debugged by: alexxy
 +
 +2010-09-05  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * grub-core/disk/lvm.c (grub_lvm_scan_device) [GRUB_UTIL]: Output more
 +      diagnostic info.
 +
 +2010-09-05  Jo Shields <directhex@apebox.org>
 +
 +      * util/grub.d/30_os-prober.in: Add missing classes.
 +
 +2010-09-05  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * docs/grub.texi (Theme file format): Document new position format.
 +
 +2010-09-05  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * docs/grub.texi (Theme file format): Replace Box_slice_names.png with
 +      a table. Use @code instead of @verbatim.
 +
 +2010-09-05  Colin D Bennett  <colin@gibibit.com>
 +
 +      Gfxmenu documentation.
 +
 +      * docs/grub.texi (Theme file format): New chapter.
 +
 +2010-09-05  Szymon Janc <szymon@janc.net.pl>
 +
 +      * grub-core/Makefile.core.def (xzio): New module.
 +      * grub-core/io/xzio.c: New file.
 +      * grub-core/lib/xzembed/xz.h: New file (from xembed).
 +      * grub-core/lib/xzembed/xz_config.h: Likewise.
 +      * grub-core/lib/xzembed/xz_dec_bcj.c: Likewise.
 +      * grub-core/lib/xzembed/xz_dec_lzma2.c: Likewise.
 +      * grub-core/lib/xzembed/xz_dec_stream.c: Likewise.
 +      * grub-core/lib/xzembed/xz_lzma2.h: Likewise.
 +      * grub-core/lib/xzembed/xz_private.h: Likewise.
 +      * grub-core/lib/xzembed/xz_stream.h: Likewise.
 +      * include/grub/file.h (grub_file_filter_id): New compression filter
 +      GRUB_FILE_FILTER_XZIO.
 +
 +2010-09-05  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * include/grub/file.h (GRUB_FILE_SIZE_UNKNOWN): New definition.
 +      * grub-core/disk/loopback.c (grub_loopback_open): Handle unknown file
 +      size.
 +
 +2010-09-05  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * include/grub/err.h (grub_err_t): Replace GRUB_ERR_BAD_GZIP_DATA with
 +      GRUB_ERR_BAD_COMPRESSED_DATA. All users updated.
 +
 +2010-09-05  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      Uncompressed checksum support.
 +
 +      * grub-core/commands/hashsum.c (options): Add option --uncompress.
 +      (check_list): New parameter uncompress.
 +      (grub_cmd_hashsum): Handle --uncompress.
 +
 +2010-09-05  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      Reintroduce testload.
 +
 +      * grub-core/commands/minicmd.c (grub_rescue_cmd_testload) [0]: Moved
 +      from here ...
 +      * grub-core/commands/testload.c (grub_cmd_testload): ... here.
 +      (GRUB_MOD_INIT): New function.
 +      (GRUB_MOD_FINI): Likewise.
 +      * grub-core/Makefile.core.def (testload): New module.
 +
 +2010-09-05  Szymon Janc <szymon@janc.net.pl>
 +
 +      * grub-core/lib/posix_wrap/sys/types.h (bool): Transform into an enum.
 +      (uint8_t): New type.
 +      (uint16_t): Likewise.
 +      (uint32_t): Likewise.
 +      (uint64_t): Likewise.
 +
 +2010-09-05  Szymon Janc <szymon@janc.net.pl>
 +
 +      * include/grub/crypto.h (GRUB_MD_CRC32): New definition.
 +
 +2010-09-05  Vladimir Serbinenko  <phcoder@gmail.com>
 +
 +      * grub-core/io/gzio.c (grub_gzio_open): Removed "transparent" parameter.
 +      Made static.
 +      (grub_gzfile_open): Removed. All users updated.
 +      (GRUB_MOD_INIT): New function.
 +      (GRUB_MOD_FINI): Likewise.
 +      * grub-core/kern/file.c (grub_file_filters_all): New variable.
 +      (grub_file_filters_enabled): Likewise.
 +      (grub_file_open): Handle filters.
 +      * grub-core/loader/i386/bsd.c (GRUB_MOD_INIT): Load gzio.
 +      * grub-core/normal/main.c (GRUB_MOD_INIT): Likewise.
 +      * include/grub/file.h (grub_file_filter_id_t): New type.
 +      (grub_file_filter_t): Likewise.
 +      (grub_file_filters_all): New extern variable.
 +      (grub_file_filters_enabled): Likewise.
 +      (grub_file_filter_register): New inline function.
 +      (grub_file_filter_unregister): Likewise.
 +      (grub_file_filter_disable): Likewise.
 +      (grub_file_filter_disable_compression): Likewise.
 +      * include/grub/gzio.h: Removed.
 +
 +2010-09-04  BVK Chaitanya  <bvk.groups@gmail.com>
 +
 +      Filename expansion support for wildcards in GRUB script.
 +
 +      * tests/grub_script_expansion.in: New test.
 +      * Makefile.util.def: Rule for new test.
 +
 +      * grub-core/commands/wildcard.c: New file, implements filename
 +      expansion support for GRUB script.
 +      * grub-core/Makefile.core.def: Rule update for regexp.mod.
 +      * grub-core/script/argv.c: Cosmetic changes.
 +      * grub-core/script/execute.c (grub_script_arglist_to_argv):
 +      Refactored to perform wildcard expansion on arguments.
 +      * include/grub/script_sh.h (grub_script_wildcard_translator): New
 +      struct.
 +
 +      * tests/util/grub-shell.in: Fix quoting for read input.
 +
 +2010-09-04  BVK Chaitanya  <bvk.groups@gmail.com>
 +
 +      Support for updating environment variables with matched substrings
 +      of regexp.
 +
 +      * tests/grub_cmd_regexp.in: New test.
 +      * Makefile.util.def: Rule for new test.
 +
 +      * grub-core/commands/regexp.c: New option -s to update environment
 +      variables with regexp matches.
 +
 +2010-09-04  Szymon Janc <szymon@janc.net.pl>
 +
 +      * include/grub/file.h (grub_file): New member not_easly_seekable.
 +      (grub_file_seekable): New inline function.
 +      * grub-core/io/gzio.c (test_header): Don't test end magic if file isn't
 +      easily seekable.
 +      (grub_gzio_open): Set not_easly_seekable.
 +      * grub-core/fs/i386/pc/pxe.c (grub_pxefs_open): Set not_easily_seekable.
 +      * grub-core/io/bufio.c (grub_bufio_open): Propagate not_easily_seekable.
 +
 +2010-09-04  BVK Chaitanya  <bvk.groups@gmail.com>
 +
 +      Support for options to appear multiple times on cmdline.
 +
 +      * include/grub/lib/arg.h (grub_arg_list_alloc): New prototype.
 +      * grub-core/commands/extcmd.c: Support for repeatable option.
 +      * grub-core/lib/arg.c (grub_arg_list_alloc): New function for
 +      repeatable option support.
 +
 +      Refactor menuentry into a regular command.
 +
 +      * grub-core/commands/menuentry.c: New file, menuentry command
 +      implementation.
 +      * grub-core/Makefile.core.def: Rule update for normal.mod.
 +      * grub-core/normal/main.c: Moved menuentry creation to
 +      grub-core/commands/menuentry.c.
 +      * grub-core/normal/menu.c (grub_menu_execute_entry): Removed.
 +      (grub_menu_execute_entry_real): Removed.
 +      * grub-core/script/execute.c (grub_script_execute_sourcecode): New
 +      function.
 +      (grub_script_execute_menuentry): Removed.
 +      * grub-core/script/parser.y (menuentry): Removed.
 +      * grub-core/script/script.c (grub_script_create_cmdmenu): Removed.
 +      * grub-core/script/yylex.l (menuentry): Removed.
 +      * include/grub/menu.h (grub_menu_init): New prototype.
 +      (grub_menu_fini): New prototype.
 +      * include/grub/normal.h (grub_normal_add_menu_entry): Removed.
 +      * include/grub/script_sh.h (grub_script_cmd_menuentry): Removed.
 +      (grub_script_execute_sourcecode): New prototype.
 +
 +2010-09-04  BVK Chaitanya  <bvk.groups@gmail.com>
 +
 +      "return" command for GRUB script functions.
 +
 +      * tests/grub_script_return.in: New test.
 +      * Makefile.util.def: Rules for new test.
 +
 +      * grub-core/script/execute.c (grub_script_return): New function.
 +      * grub-core/script/main.c: Register/unregister return commaond.
 +      * include/grub/script_sh.h (grub_script_return): New prototype.
 +
 +2010-09-04  BVK Chaitanya  <bvk.groups@gmail.com>
 +
 +      "setparams" command to update positional parameters.
 +
 +      * tests/grub_script_setparams.in: New test.
 +      * Makefile.util.def: Rules for new test.
 +
 +      * grub-core/script/argv.c (grub_script_argv_make): New function.
 +      * grub-core/script/execute.c (replace_scope): New function.
 +      (grub_script_setparams): New function.
 +      * grub-core/script/lexer.c: Remove unused variables.
 +      * grub-core/script/main.c: Register/unregister setparams command.
 +      * include/grub/script_sh.h (grub_script_argv_make): New prototype.
 +      (grub_script_setparams): New prototype.
 +
 +2010-09-04  BVK Chaitanya  <bvk.groups@gmail.com>
 +
 +      * grub-core/normal/completion.c (grub_normal_do_completion): Fix
 +      grub_free order.
 +
 +2010-09-04  BVK Chaitanya  <bvk.groups@gmail.com>
 +
 +      Support for passing block of commands as an argument to extcmds.
 +
 +      * Makefile.util.def: Rules for new test.
 +      * tests/grub_script_blockarg.in: New test.
 +      * grub-core/tests/test_blockarg.c: New file, block argument
 +      command used in the test.
 +
 +      * include/grub/extcmd.h (grub_extcmd_context): New struct.
 +      (grub_register_extcmd_prio): New function prototype.
 +      (grub_extcmd_dispatcher): New function prototype.
 +      * include/grub/command.h (GRUB_COMMAND_FLAG_BLOCKS): New command
 +      type.
 +      * include/grub/script_sh.h (struct grub_script): New members
 +      `children', `next_siblings' and `refcnt' for block arguments and
 +      reference counting.
 +      (GRUB_SCRIPT_ARG_TYPE_BLOCK): New argument type.
 +      (grub_script_arg): New member `script' for block argument.
 +      (grub_script_argv): New member `script' for block argument.
 +      (grub_parser_param): New member `scripts' for block argument.
 +      (grub_script_mem_free): New extern function prototype.
 +      (grub_script_ref): New function prototype.
 +      (grub_script_unref): New function prototype.
 +
 +      * grub-core/normal/dyncmd.c (grub_dyncmd_dispatcher): Moved to
 +      extcmd form to support block arguments.
 +      * grub-core/script/argv.c: Block arguments support.
 +      * grub-core/script/execute.c: Likewise.
 +      * grub-core/script/lexer.c: Likewise.
 +      * grub-core/script/main.c: Likewise.
 +      * grub-core/script/script.c: Likewise.
 +      * grub-core/script/parser.y: Likewise.  New `block' and `block0'
 +      non-terminals.
 +
 +      * grub-core/commands/acpi.c: Update extcmd implementations with
 +      grub_extcmd_context_t.
 +      * grub-core/commands/cat.c: Likewise.
 +      * grub-core/commands/echo.c: Likewise.
 +      * grub-core/commands/extcmd.c: Likewise.
 +      * grub-core/commands/hashsum.c: Likewise.
 +      * grub-core/commands/hdparm.c: Likewise.
 +      * grub-core/commands/help.c: Likewise.
 +      * grub-core/commands/hexdump.c: Likewise.
 +      * grub-core/commands/i386/cpuid.c: Likewise.
 +      * grub-core/commands/i386/pc/drivemap.c: Likewise.
 +      * grub-core/commands/i386/pc/halt.c: Likewise.
 +      * grub-core/commands/i386/pc/sendkey.c: Likewise.
 +      * grub-core/commands/iorw.c: Likewise.
 +      * grub-core/commands/keystatus.c: Likewise.
 +      * grub-core/commands/loadenv.c: Likewise.
 +      * grub-core/commands/ls.c: Likewise.
 +      * grub-core/commands/lspci.c: Likewise.
 +      * grub-core/commands/memrw.c: Likewise.
 +      * grub-core/commands/probe.c: Likewise.
 +      * grub-core/commands/search_wrap.c: Likewise.
 +      * grub-core/commands/setpci.c: Likewise.
 +      * grub-core/commands/sleep.c: Likewise.
 +      * grub-core/disk/loopback.c: Likewise.
 +      * grub-core/hello/hello.c: Likewise.
 +      * grub-core/loader/i386/bsd.c: Likewise.
 +      * grub-core/loader/xnu.c: Likewise.
 +      * grub-core/term/gfxterm.c: Likewise.
 +      * grub-core/term/serial.c: Likewise.
 +      * grub-core/tests/lib/functional_test.c: Likewise.
 +
 +2010-09-04  BVK Chaitanya  <bvk.groups@gmail.com>
 +
 +      Multi-line quoted strings support.
 +
 +      * grub-core/script/lexer.c (append_newline): Removed.
 +      (grub_script_lexer_yywrap): Refactored.
 +      (grub_script_lexer_init): Refactored.
 +      * grub-core/script/yylex.l (yywrap): New function.
 +      (grub_lexer_resplit): New function.
 +      (grub_lexer_unput): New function.
 +      * include/grub/script_sh.h (grub_lexer_param): New members, unput
 +      and resplit.
 +      * tests/grub_script_echo1.in: Added few more testcases.
 +
  2010-09-04  Vladimir Serbinenko  <phcoder@gmail.com>
  
        * grub-core/kern/misc.c: Don't add abort alias in utils.
index 7fa00b744de0df54da9683f32815d262737b4fe3,135125f7a3e5f5a7579b7139959fa68c0353d1ee..dd84342755aeb2d63bc443e2760d2934f0153f56
@@@ -74,10 -74,9 +74,10 @@@ KERNEL_HEADER_FILES += $(top_srcdir)/in
  KERNEL_HEADER_FILES += $(top_srcdir)/include/grub/time.h
  KERNEL_HEADER_FILES += $(top_srcdir)/include/grub/mm_private.h
  KERNEL_HEADER_FILES += $(top_srcdir)/include/grub/boot.h
 +KERNEL_HEADER_FILES += $(top_srcdir)/include/grub/libgcc.h
+ KERNEL_HEADER_FILES += $(top_srcdir)/include/grub/memory.h
  
  if COND_i386_pc
- KERNEL_HEADER_FILES += $(top_builddir)/include/grub/machine/memory.h
  KERNEL_HEADER_FILES += $(top_builddir)/include/grub/machine/loader.h
  KERNEL_HEADER_FILES += $(top_builddir)/include/grub/machine/kernel.h
  KERNEL_HEADER_FILES += $(top_builddir)/include/grub/machine/pxe.h
@@@ -133,9 -127,10 +128,9 @@@ KERNEL_HEADER_FILES += $(top_srcdir)/in
  KERNEL_HEADER_FILES += $(top_srcdir)/include/grub/bitmap_scale.h
  KERNEL_HEADER_FILES += $(top_srcdir)/include/grub/bufio.h
  KERNEL_HEADER_FILES += $(top_srcdir)/include/grub/pci.h
 -KERNEL_HEADER_FILES += $(top_srcdir)/include/grub/libgcc.h
  KERNEL_HEADER_FILES += $(top_srcdir)/include/grub/cs5536.h
  KERNEL_HEADER_FILES += $(top_builddir)/include/grub/machine/pci.h
- KERNEL_HEADER_FILES += $(top_builddir)/include/grub/serial.h
+ KERNEL_HEADER_FILES += $(top_srcdir)/include/grub/serial.h
  endif
  
  if COND_powerpc_ieee1275
index 931b2e39ddf2b12fbb39b793134748569c8fb783,71d5fe812807a7c29e551853bca8649867ed6fdb..4f03997e0df80f7cbf0d350dad20384038b71f90
@@@ -23,9 -23,9 +23,8 @@@
  #include <grub/disk.h>
  #include <grub/term.h>
  #include <grub/misc.h>
 -#include <grub/gzio.h>
  #include <grub/acpi.h>
  #include <grub/mm.h>
- #include <grub/machine/memory.h>
  #include <grub/memory.h>
  #include <grub/i18n.h>
  
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
index 0ae94eaf8ab4989b8050d9648f47427544177bdb,e455e9e5290b66429c20b2f9079044ef66f9521f..fd99c81d583b1a32775be3d4e3491e390be9184e
  #include <grub/loader.h>
  #include <grub/machine/loader.h>
  #include <grub/machine/chainloader.h>
++#include <grub/machine/memory.h>
  #include <grub/file.h>
  #include <grub/err.h>
  #include <grub/device.h>
  #include <grub/disk.h>
  #include <grub/misc.h>
  #include <grub/types.h>
 -#include <grub/machine/init.h>
  #include <grub/partition.h>
- #include <grub/machine/memory.h>
+ #include <grub/memory.h>
  #include <grub/dl.h>
  #include <grub/command.h>
  #include <grub/msdos_partition.h>
index 8e9a1b6302a389e44abe6301827bcb0573a0aa79,899545ccd25c6d9d96918b5d15e9d57b3031e6e8..90de70f66478552bda3b4196db393e2f2fc25d21
@@@ -25,7 -25,8 +25,7 @@@
  #include <grub/disk.h>
  #include <grub/misc.h>
  #include <grub/types.h>
- #include <grub/machine/memory.h>
 -#include <grub/machine/init.h>
+ #include <grub/memory.h>
  #include <grub/dl.h>
  #include <grub/cpu/linux.h>
  #include <grub/command.h>
Simple merge
Simple merge
index 2e680125247e12c13905fd427155152f191a4041,8ef928b5161aa96bbfd0f3c6a6b220fd5927ee07..08b882ed75802aedd3f2b1522be14e8cb01e53d4
@@@ -19,8 -19,7 +19,8 @@@
  #include <grub/memory.h>
  #ifdef GRUB_MACHINE_PCBIOS
  #include <grub/machine/biosnum.h>
 +#include <grub/machine/apm.h>
+ #include <grub/machine/memory.h>
  #endif
  #include <grub/multiboot.h>
  #include <grub/cpu/multiboot.h>
index 010353dc527671b71f7e4752be7f39cb7e4cf101,99051ea784cc823ca3c524416e76230ac4615d63..d4b5f2aea1c32921f19b45d45296c62d24a9f7e8
  #include <grub/mm.h>
  #include <grub/misc.h>
  #include <grub/ieee1275/ieee1275.h>
 -#include <grub/gzio.h>
  #include <grub/command.h>
  #include <grub/i18n.h>
+ #include <grub/memory.h>
  
  static grub_dl_t my_mod;