2009-06-22 Robert Millan <rmh.grub@aybabtu.com>
[grub2/phcoder/solaris.git] / ChangeLog
blobb8d3afaf17ae838436a2a945c32dbc605b6028ce
1 2009-06-22  Robert Millan  <rmh.grub@aybabtu.com>
3         * conf/i386-ieee1275.rmk (pkglib_PROGRAMS): Replace `kernel.elf'
4         with `kernel.img'.
5         (kernel_elf_SOURCES): Rename to ...
6         (kernel_img_SOURCES): ... this.
7         (kernel_elf_HEADERS): Rename to ...
8         (kernel_img_HEADERS): ... this.  Update all users.
9         (kernel_elf_ASFLAGS): Rename to ...
10         (kernel_img_ASFLAGS): ... this.
11         (kernel_elf_CFLAGS): Rename to ...
12         (kernel_img_CFLAGS): ... this.
13         (kernel_elf_LDFLAGS): Rename to ...
14         (kernel_img_LDFLAGS): ... this.
15         * conf/i386-coreboot.rmk: Likewise.
16         * conf/powerpc-ieee1275.rmk: Likewise.
18         * util/elf/grub-mkimage.c (add_segments): Replace "kernel.elf"
19         with "kernel.img".
21 2009-06-21  Pavel Roskin  <proski@gnu.org>
23         * loader/powerpc/ieee1275/linux.c (offset_phdr): Fix prototypes
24         to match nested functions.
25         * loader/sparc64/ieee1275/linux.c: Likewise.
27         * conf/i386-ieee1275.rmk: Define kernel_elf_ASFLAGS.
29 2009-06-21  Robert Millan  <rmh.grub@aybabtu.com>
31         * configure.ac: Enable `END_SYMBOL' / `BSS_START_SYMBOL' test on
32         all i386 platforms.
34 2009-06-21  Robert Millan  <rmh.grub@aybabtu.com>
36         Fix asm file handling on ELF, and remove workarounds.
38         * genmk.rb (class Programs): Detect assembly files, and set ASFLAGS
39         and -DASM_FILE=1 appropiately (copied from `class Images' stanza).
40         * kern/i386/ieee1275/startup.S (ASM_FILE): Remove macro.
41         * kern/i386/coreboot/startup.S (ASM_FILE): Likewise.
43 2009-06-21  Vladimir Serbinenko  <phcoder@gmail.com>
45         Load BSD ELF modules
47         * conf/i386-pc.rmk (bsd_mod_SOURCES): Add loader/i386/bsd32.c
48         and loader/i386/bsd64.c
49         * include/grub/i386/bsd.h (FREEBSD_MODTYPE_MODULE): Remove
50         (FREEBSD_MODTYPE_ELF_MODULE): New definition
51         (FREEBSD_MODTYPE_ELF_MODULE_OBJ): Likewise
52         (grub_freebsd_load_elfmodule32): New declaration
53         (grub_freebsd_load_elfmoduleobj64): Likewise
54         (grub_freebsd_load_elf_meta32): Likewise
55         (grub_freebsd_load_elf_meta64): Likewise
56         (grub_freebsd_add_meta): Likewise
57         (grub_freebsd_add_meta_module): Likewise
58         * loader/i386/bsd.c (grub_freebsd_add_meta): Make global
59         (grub_freebsd_add_meta_module): Likewise and move module-specific
60         parts to grub_cmd_freebsd and grub_cmd_freebsd_module
61         (grub_cmd_freebsd): Add elf-kernel specific parts
62         based on grub_freebsd_add_meta_module
63         (grub_cmd_freebsd_module): Add type parsing moved from
64         grub_freebsd_add_meta_module
65         (grub_cmd_freebsd_module_elf): New function
66         (cmd_freebsd_module_elf): New variable
67         (GRUB_MOD_INIT): Register freebsd_module_elf
68         * loader/i386/bsd32.c: New file
69         * loader/i386/bsd64.c: Likewise
70         * loader/i386/bsdXX.c: Likewise
71         * kern/elf.c (grub_elf32_load): Let hook decide which pheaders to load
72         (grub_elf64_load): Likewise
73         * include/grub/elfload.h (grub_elf32_load_hook_t): New parameter do_load
74         All users updated
75         (grub_elf64_load_hook_t): Likewise
77 2009-06-21  Colin Watson  <cjwatson@ubuntu.com>
79         * util/grub-mkconfig.in (GRUB_DISABLE_LINUX_RECOVERY): Export
80         variable.
81         * util/grub.d/10_linux.in: If GRUB_DISABLE_LINUX_RECOVERY is true,
82         don't write a menu entry for recovery mode.
84 2009-06-20  Robert Millan  <rmh.grub@aybabtu.com>
86         * util/i386/pc/grub-mkimage.c (main): Oops, free `output' only
87         after it's no longer needed.
89 2009-06-20  Robert Millan  <rmh.grub@aybabtu.com>
91         * include/grub/i386/loader.h (grub_linux_prot_size)
92         (grub_linux_tmp_addr, grub_linux_real_addr)
93         (grub_linux_is_bzimage, grub_linux16_boot): Declare only on
94         GRUB_MACHINE_PCBIOS.
95         * util/i386/pc/grub-mkimage.c (compress_kernel): Move
96         common grub_util_info() call to ...
97         (generate_image): ... here.
98         Fix use of uninitialized memory, comparison of signed with
99         unsigned integers and memory leak.
100         Remove bogus module address message.
102 2009-06-20  Vladimir Serbinenko  <phcoder@gmail.com>
104         * disk/mdraid_linux.c (GRUB_MOD_FINI): use grub_raid_unregister and not
105         grub_raid_register
106         * disk/dmraid_nvidia.c (GRUB_MOD_FINI): likewise
108 2009-06-19  Pavel Roskin  <proski@gnu.org>
110         * configure.ac: Remove stray AC_MSG_CHECKING.
112 2009-06-19  Vladimir Serbinenko  <phcoder@gmail.com>
114         * disk/scsi.c (grub_scsi_open): use continue instead of big if
116 2009-06-18  Pavel Roskin  <proski@gnu.org>
118         * conf/common.rmk: Add fs_file.mod.
119         * disk/fs_file.c: New file.
120         * include/grub/disk.h (enum grub_disk_dev_id): Add
121         GRUB_DISK_DEVICE_FILE_ID.
123 2009-06-18  Vladimir Serbinenko  <phcoder@gmail.com>
125         Fix build with Apple's toolchain. Part 2
127         * aclocal.m4 (grub_PROG_TARGET_CC): add missing prototype for main and
128         a fake start
130 2009-06-18  Vladimir Serbinenko  <phcoder@gmail.com>
132         Fix build with Apple's toolchain. Part 1
134         * commands/i386/pc/drivemap_int13h.S: use assembly-time constants
135         for long calls
136         * configure.ac: remove a leftover AC_MSG_RESULT
137         (CFLAGS): don't add -Wl,--defsym,___main=0x8100 when building with
138         Apple's toolchain
140 2009-06-18  Vladimir Serbinenko  <phcoder@gmail.com>
142         Fix warnings
144         * fs/ntfscomp.c (decomp_get16): initialize c1 and c2
145         (decomp_block): initialize ch
146         use grub_memcpy instead of memcpy
148 2009-06-17  Pavel Roskin  <proski@gnu.org>
150         * include/grub/i386/coreboot/console.h: Don't use the i386-pc
151         version, use declarations needed to use vga_text as the startup
152         console.
154         * conf/i386-coreboot.rmk (kernel_elf_SOURCES): Remove
155         term/i386/pc/at_keyboard.c, it doesn't need to be compiled into
156         the kernel.
157         * kern/i386/coreboot/init.c: Don't call grub_at_keyboard_init()
158         and grub_at_keyboard_fini(), it's done on module load and
159         unload.
161 2009-06-17  Felix Zielcke  <fzielcke@z-51.de>
163         * loader/i386/linux.c (grub_cmd_linux): Set grub_error if the
164         file can't be found.
165         * loader/i386/pc/linux.c (grub_cmd_linux): Likewise.
167 2009-06-17  Vladimir Serbinenko  <phcoder@gmail.com>
169         Fix newline handling
171         * include/grub/script_sh.h (grub_lexer_param): new field was_newline
172         * script/sh/lexer.c (grub_script_lexer_init): initialize was_newline
173         (grub_script_yylex): don't segfault on unterminated script
174         newline terminates command and variable
176 2009-06-17  Vladimir Serbinenko  <phcoder@gmail.com>
178         avoid double grub_adjust_range call. Bug reported by David Simner
180         * kern/disk.c (grub_disk_write): change to raw disk access before
181         calling disk_read
183 2009-06-17  Colin Watson  <cjwatson@ubuntu.com>
185         * util/elf/grub-mkimage.c (usage): Prefix each option line with two
186         spaces, for the benefit of help2man.
187         * util/i386/efi/grub-mkimage.c (usage): Likewise.
189 2009-06-16  Pavel Roskin  <proski@gnu.org>
191         * kern/i386/halt.c: Include grub/machine/init.h.
192         * kern/i386/reboot.c: Include grub/cpu/reboot.h.
194 2009-06-16  Felix Zielcke  <fzielcke@z-51.de>
196         * util/grub.d/30_os-prober.in: Use ${root} in the generated
197         drivemap menuentry.
199 2009-06-16  James Jarvis  <James.Jarvis@ed.ac.uk>
201         * commands/help.c GRUB_MOD_INIT(echo): Fix the help output of
202         `echo' command.
204 2009-06-16  Pavel Roskin  <proski@gnu.org>
206         * boot/i386/pc/boot.S: Remove root_drive.  Assert offset of
207         boot_drive_check by using GRUB_BOOT_MACHINE_DRIVE_CHECK.  Don't
208         save %dx, we only need %dl and we never change it.
209         * boot/i386/pc/cdboot.S: Don't set the root drive.
210         * boot/i386/pc/pxeboot.S: Likewise.
211         * include/grub/i386/pc/boot.h: Remove
212         GRUB_BOOT_MACHINE_ROOT_DRIVE, adjust
213         GRUB_BOOT_MACHINE_DRIVE_CHECK.
214         * include/grub/i386/pc/kernel.h: Remove grub_root_drive.
215         * kern/i386/pc/init.c (make_install_device): Remove references
216         to grub_root_drive.
217         * kern/i386/pc/startup.S: Likewise.
218         * util/i386/pc/grub-setup.c (setup): Don't set root_drive.
220 2009-06-16  Vladimir Serbinenko  <phcoder@gmail.com>
222         xnu_uuid command
224         * commands/xnu_uuid.c: new file
225         * conf/common.rmk (pkglib_MODULES): add xnu_uuid.mod
226         (xnu_uuid_mod_SOURCES): new variable
227         (xnu_uuid_mod_CFLAGS): likewise
228         (xnu_uuid_mod_LDFLAGS): likewise
229         * conf/i386-coreboot.rmk (grub_emu_SOURCES): add commands/probe.c
230         * conf/i386-ieee1275.rmk: likewise
231         * conf/i386-pc.rmk: likewise
232         * conf/powerpc-ieee1275.rmk: likewise
233         * conf/sparc64-ieee1275.rmk: likewise
234         * util/grub.d/30_os-prober.in: use UUID for Mac OS X/Darwin
236 2009-06-16  Pavel Roskin  <proski@gnu.org>
238         * configure.ac: Avoid '==' in test command, it's not portable.
240 2009-06-16  Vladimir Serbinenko  <phcoder@gmail.com>
242         Probe command
244         * commands/probe.c: new file
245         * conf/common.rmk (pkglib_MODULES): add probe.mod
246         (probe_mod_SOURCES): new variable
247         (probe_mod_CFLAGS): likewise
248         (probe_mod_LDFLAGS): likewise
249         * conf/i386-coreboot.rmk (grub_emu_SOURCES): add commands/probe.c
250         * conf/i386-ieee1275.rmk: likewise
251         * conf/i386-pc.rmk: likewise
252         * conf/powerpc-ieee1275.rmk: likewise
253         * conf/sparc64-ieee1275.rmk: likewise
255 2009-06-15  Vladimir Serbinenko  <phcoder@gmail.com>
257         Fix handling of string like \"hello\" and "a
258         b"
260         * script/sh/lexer.c (check_textstate): accept GRUB_PARSER_STATE_ESC
261         (grub_script_yylex): fix parsing of quoting, escaping and newline
263 2009-06-13  Vladimir Serbinenko  <phcoder@gmail.com>
265         * loader/i386/multiboot.c (grub_multiboot_get_bootdev): fix partition
266         handling
268 2009-06-13  Jun Inoue  <jun.lambda@gmail.com>
270         * util/grub-mkconfig.in: Fix parsing of --output option.
272 2009-06-12  Pavel Roskin  <proski@gnu.org>
274         * Makefile.in (pkgdata_SRCDIR): Remove.  genmodsrc.sh and
275         genmk.rb don't need to be generated or installed.
277 2009-06-12  Vladimir Serbinenko  <phcoder@gmail.com>
279         * commands/i386/pc/drivemap_int13h.S: add more comments
281 2009-06-11  Pavel Roskin  <proski@gnu.org>
283         * Makefile.in (uninstall): Uninstall manuals.
285         * Makefile.in: Rename lib_DATA to lib_SCRIPTS, move it from
286         PKGLIB to SCRIPTS.  This fixes installation of grub-mkconfig_lib
287         and update-grub_lib in two places.
288         * conf/common.rmk: Rename lib_DATA to lib_SCRIPTS.
290         * disk/usbms.c (grub_usbms_transfer): Initialize `err' to fix
291         a compiler warning.
293         * loader/i386/bsd.c (grub_freebsd_boot): Rename `entry' to
294         `entry_lo' to fix variable shadowing.
296 2009-06-11  Christian Franke  <franke@computer.org>
298         * kern/misc.c (__enable_execute_stack): Add missing return type
299         to prevent gcc warning.
301 2009-06-11  Felix Zielcke  <fzielcke@z-51.de>
303         * conf/i386-ieee1275.rmk (COMMON_LDFLAGS): Remove `-static -lgcc'.
305 2009-06-11  Pavel Roskin  <proski@gnu.org>
307         * Makefile.in: Don't rely on any scripts being executable.
308         Always use $(SHELL) to run shell scripts.
310         * configure.ac: Always define ___main if using -nostdlib.  This
311         fixes tests on Cygwin.
313 2009-06-11  Giuseppe Caizzone  <acaizzo@gmail.com>
315         UDF fix
317         * fs/udf.c (grub_udf_read_block): handle the fact that ad->length
318         is in bytes and not in blocks
320 2009-06-11  Pavel Roskin  <proski@gnu.org>
322         * kern/i386/halt.c (grub_halt): Make `i' unsigned to fix a
323         warning.
325 2009-06-11  Felix Zielcke  <fzielcke@z-51.de>
327         * util/grub.d/30_os-prober.in: Fix a comment. Source
328         ${libdir}/grub/grub-mkconfig_lib.  Use prepare_grub_to_access_device
329         to set the root device.  Place drivemap command in the generated
330         chain entry.
332 2009-06-11  Pavel Roskin  <proski@gnu.org>
334         * configure.ac: Remove host_m32.  Issues with 64-bit utilities
335         have long been resolved.
337 2009-06-11  Colin Watson  <cjwatson@ubuntu.com>
339         * util/grub.d/10_linux.in: Capitalise "Linux".
341         * util/grub-pe2elf.c (usage): Fix references to grub-editenv.
343 2009-06-11  Pavel Roskin  <proski@gnu.org>
345         * kern/efi/efi.c (grub_exit): Add infinite loop at the end to
346         fix a gcc warning and ensure that the function won't ever exit.
348         * kern/i386/ieee1275/init.c: Add missing prototype for
349         grub_stop_floppy().
351         * loader/ieee1275/multiboot2.c [__i386__]: Include
352         grub/cpu/multiboot.h.
354         * term/i386/pc/serial.c (serial_translate_key_sequence): Avoid
355         casts to short - they are not portable and cause warnings.  Fix
356         use of uninitialized values in input_buf.  Use ARRAY_SIZE.
358 2009-06-11  Vladimir Serbinenko  <phcoder@gmail.com>
360         Drivemap fixes
362         * commands/i386/pc/drivemap.c (grub_get_root_biosnumber_drivemap):
363         new function
364         (grub_get_root_biosnumber_saved): new variable
365         (GRUB_MOD_INIT): register grub_get_root_biosnumber_drivemap
366         (GRUB_MOD_FINI): unregister grub_get_root_biosnumber_drivemap
367         * commands/i386/pc/drivemap_int13h.S (grub_drivemap_handler): restore
368         %dx after the call if necessary
369         * conf/common.rmk (pkglib_MODULES): remove boot.mod
370         (boot_mod_SOURCES): remove
371         (boot_mod_CFLAGS): remove
372         (boot_mod_LDFLAGS): remove
373         * conf/i386-coreboot.rmk (pkglib_MODULES): add boot.mod
374         (boot_mod_SOURCES): new variable
375         (boot_mod_CFLAGS): likewise
376         (boot_mod_LDFLAGS): likewise
377         * conf/i386-efi.rmk: likewise
378         * conf/i386-ieee1275.rmk: likewise
379         * conf/i386-pc.rmk: likewise
380         * conf/powerpc-ieee1275.rmk: likewise
381         * conf/sparc64-ieee1275.rmk: likewise
382         * conf/x86_64-efi.rmk: likewise
383         * include/grub/i386/pc/biosnum.h: new file
384         * lib/i386/pc/biosnum.c: likewise
385         * loader/i386/bsd.c (grub_bsd_get_device): use grub_get_root_biosnumber
386         * loader/i386/multiboot.c (grub_multiboot_get_bootdev): likewise
387         * loader/i386/pc/chainloader.c (grub_chainloader_cmd): likewise
389 2009-06-10  Pavel Roskin  <proski@gnu.org>
391         * io/gzio.c (test_header): Don't reuse one buffer for all data.
392         Use separate variables.  Read only the file size at the end, but
393         not the checksum that we don't use.
395         * kern/file.c (grub_file_read): Use void pointer for the buffer.
396         Adjust all callers.
398         * kern/ieee1275/openfw.c: Remove libc includes.
399         * kern/ieee1275/cmain.c: Likewise.
400         * include/grub/ieee1275/ieee1275.h: Likewise.
402         * kern/i386/coreboot/init.c: Include grub/cpu/tsc.h to fix
403         compiler warnings.
405 2009-06-10  Felix Zielcke  <fzielcke@z-51.de>
407         * gendistlist.sh (EXTRA_DISTFILES): Add `genhandlerlist.sh' and
408         `genparttoollist.sh'.
409         (DISTDIRS): Add `efiemu', `mmap', `parttool' and `script'.
410         Add `*.sh' to the list find searches for and change `mdate.sh'
411         to `mdate-sh'.
413 2009-06-10  Pavel Roskin  <proski@gnu.org>
415         * include/grub/multiboot2.h: Provide compatibility defines for
416         multiboot2.h.
417         * include/multiboot2.h: Include stdint.h only if needed, using
418         angle brackets.
419         * loader/i386/pc/multiboot2.c: Include multiboot2.h after
420         grub/multiboot2.h.
421         * loader/ieee1275/multiboot2.c: Likewise.
422         * loader/multiboot2.c: Likewise.
423         * loader/multiboot_loader.c: Likewise.
425         * configure.ac: Use -nostdlib when probing for the target.  It
426         should not be required to have libc for the target.
428         * configure.ac: Remove checks for __bswapsi2 and __bswapdi2,
429         they fail without libc headers for the target.
430         * include/grub/powerpc/libgcc.h: Use weak attribute for all
431         exports.
432         * include/grub/sparc64/libgcc.h: Likewise.  Don't use
433         preprocessor conditionals.
435         * conf/common.rmk: Compile tar.mod from tar.c, not cpio.c.  The
436         build system doesn't need to be aware of the tar.c internals.
438 2009-06-09  Michel Hermier  <michel.hermier@gmail.com>
440         * fs/i386/pc/pxe.c (grub_pxefs_read): Fix returned values.
442 2009-06-09  Robert Millan  <rmh.grub@aybabtu.com>
444         * util/deviceiter.c (grub_util_iterate_devices): Increase number of
445         disk limit to 26 for IDE, Virtio, Xen and SCSI.
447 2009-06-09  Felix Zielcke  <fzielcke@z-51.de>
449         * util/i386/pc/grub-install.in: Change the error message if UUIDs
450         aren't available if ata.mod gets used.
452 2009-06-09  Oliver Henshaw  <oliver.henshaw@gmail.com>
454         * bus/usb/ohci.c (grub_ohci_pci_iter): Link struct only after
455         initialising controller.
456         * bus/usb/uhci.c (grub_uhci_pci_iter): Likewise.
458 2009-06-08  Felix Zielcke  <fzielcke@z-51.de>
460         * util/i386/pc/grub-install.in: Add a parameter --disk-module
461         to choose between ata and biosdisk module on i386-pc.
463 2009-06-08  Oliver Henshaw  <oliver.henshaw@gmail.com>
465         * bus/usb/ohci.c (grub_ohci_pci_iter): Define the Class,
466         Subclass and Programming Interface fields in terms of the 3 byte
467         Class Code register.
468         * bus/usb/uhci.c (grub_uhci_pci_iter): Likewise.
470         * bus/usb/ohci.c (grub_ohci_pci_iter): Check that programming
471         interface is OHCI.  Add grub_dprintf for symmetry with
472         bus/usb/uhci.c.
473         * bus/usb/uhci.c (grub_uhci_pci_iter): Check that programming
474         interface is UHCI.  Add interf variable for programming
475         interface.  Print interface with class/subclass.
477         * bus/usb/ohci.c: Set interf with correct field.
479         * bus/usb/uhci.c: Remove unneeded doubled lines.
480         * bus/usb/ohci.c: Likewise. Change interf to grub_uint32_t.
481         Remove whitespace inside comment.
483 2009-06-08  Robert Millan  <rmh.grub@aybabtu.com>
485         * loader/i386/linux.c (grub_cmd_linux): When processing `vga=', use
486         as fallback an equivalent option without depth.
488 2009-06-08  Vladimir Serbinenko  <phcoder@gmail.com>
490         Not fail if unable to retrieve C/H/S on LBA disks
492         * disk/i386/pc/biosdisk.c (grub_biosdisk_open): behave gracefully
493         if unable to retrieve C/H/S on LBA disks
495 2009-06-08  Pavel Roskin  <proski@gnu.org>
497         * fs/hfs.c (grub_hfs_find_dir): Use union to avoid a warning
498         about aliasing.
500 2009-06-08  Felix Zielcke  <fzielcke@z-51.de>
502         * Makefile.in (uninstall): Remove all $lib_DATA files.
504 2009-06-08  Vladimir Serbinenko  <phcoder@gmail.com>
506         Bugfix: install on partitionless device
508         * util/hostdisk.c (grub_util_biosdisk_get_grub_dev): check if os_dev
509         is a whole disk
511 2009-06-08  Felix Zielcke  <fzielcke@z-51.de>
513         * Makefile.in (uninstall): Remove all $include_DATA files.
515 2009-06-08  Felix Zielcke  <fzielcke@z-51.de>
517         * commands/true.c: New file.  Implement the true and false commands.
518         * conf/common.rmk.c (pkglib_MODULES): Add `true.mod'.
519         (true_mod_SOURCES): New variable.
520         (true_mod_CFLAGS): Likewise.
521         (true_mod_LDFLAGS): Likewise.
523 2009-06-05  Colin D Bennett  <colin@gibibit.com>
525         Optimized font character lookup using binary search instead of linear
526         search.  Fonts now are required to have the character index ordered by
527         code point.
529         * font/font.c (load_font_index): Verify that fonts have ordered
530         character indices.
531         (find_glyph): Use binary search instead of linear search to find a
532         character in a font.
534 2009-06-05  Michael Scherer  <misc@mandriva.org>
536         * fs/hfsplus.c (grub_hfsplus_mount): Determine if the filesystem
537         uses case sensitive btree.
538         (grub_hfsplus_iterate_dir): Use GRUB_FSHELP_CASE_INSENSITIVE
539         only for case insensitive filesystems.
541 2009-06-05  Vladimir Serbinenko  <phcoder@gmail.com>
543         * conf/i386-pc.rmk (efiemu_mod_CFLAGS): remove -Werror -Wall
544         * conf/common.rmk (search_mod_CFLAGS): likewise
546 2009-06-04  Vladimir Serbinenko  <phcoder@gmail.com>
548         * kern/i386/pc/startup.S [APPLE_CC]: block of nops to
549         compensate a compiler bug
551 2009-06-04  Vladimir Serbinenko  <phcoder@gmail.com>
553         * include/grub/term.h (GRUB_TERM_BACKSPACE): explicitly define as 8
554         instead of '\b'
556 2009-06-04  Vladimir Serbinenko  <phcoder@gmail.com>
558         Definitions for creating asm symbols with Apple's CC
560         * include/grub/symbol.h [APPLE_CC] (FUNCTION): new macro
561         [APPLE_CC] (VARIABLE): likewise
563 2009-06-04  Vladimir Serbinenko  <phcoder@gmail.com>
565         Disable lnxboot.img when compiled
566         with Apple's CC
568         * conf/i386-pc.rmk (pkglib_IMAGES): remove lnxboot.img
569         pkglib_IMAGES [! TARGET_APPLE_CC] (pkglib_IMAGES): add lnxboot.img
570         * boot/i386/pc/lnxboot.S [APPLE_CC]: define an #error
571         [! APPLE_CC] (CODE_LENG): skip
572         [! APPLE_CC] (setup_sects): likewise
573         [! APPLE_CC]: skip filling
575 2009-06-04  Vladimir Serbinenko  <phcoder@gmail.com>
577         Address in trampolines based on 32-bit registers when compiled
578         with Apple's CC
580         * loader/i386/xnu_helper.S [APPLE_CC]: use 32-bit registers
581         for addresses
582         * loader/i386/linux_trampoline.S [APPLE_CC]: likewise
584 2009-06-04  Vladimir Serbinenko  <phcoder@gmail.com>
586         Avoid aliases when compiling with Apple's CC for PCBIOS machine
588         * kern/misc.c [APPLE_CC] (memcpy): new function
589         [APPLE_CC] (memmove): likewise
590         [APPLE_CC && !GRUB_UTIL] (grub_err_printf): likewise
591         (memcpy): define alias conditionally on !APPLE_CC
592         (memset): likewise
593         (abort): likewise
594         * include/grub/misc.h (memove): don't define when both GRUB_UTIL and
595         APPLE_CC are defined
596         * include/grub/list.h [APPLE_CC] (grub_assert_fail): new function
597         (grub_assert_fail): make prototype conditional
599 2009-06-04  Vladimir Serbinenko  <phcoder@gmail.com>
601         Use grub-macho2img when compiling with Apple's CC for PCBIOS machine
603         * conf/common.rmk (bin_UTILITIES): add (on false on condition)
604         grub-macho2img
605         (CLEANFILES): add grub-macho2img
606         (grub_macho2img_SOURCES): new variable
607         * kern/i386/pc/startup.S (bss_start): new variable
608         (bss_end): likewise
609         * genmk.rb: use grub-macho2img for *.img when compiled with Apple's CC
610         * util/grub-macho2img.c: new file
612 2009-06-04  Vladimir Serbinenko  <phcoder@gmail.com>
614         Use objconv when compiling with Apple's CC
616         * conf/i386-pc.rmk (efiemu32.o): use OBJCONV if defined
617         (efiemu64.o): likewise
618         (efiemu64_c.o): omit -mcmodel=large and add -DAPPLE_CC=1
619         when compiling with Apple's CC
620         (efiemu64_s.o): likewise
621         * configure.ac: check for objconv when compiling with Apple's CC
622         * genmk.rb: use objconv for modules when compiled with Apple's CC
624 2009-06-04  Vladimir Serbinenko  <phcoder@gmail.com>
626         Define segment as well as section when compiling with
627         Apple's CC
629         * efiemu/runtime/efiemu.c (PHYSICAL_ATTRIBUTE): new definition
630         (efiemu_set_virtual_address_map): declare with PHYSICAL_ATTRIBUTE
631         (efiemu_convert_pointer): likewise
632         (efiemu_set_virtual_address_map): likewise
633         (efiemu_convert_pointer): likewise
634         (efiemu_getcrc32): likewise
635         (init_crc32_table): likewise
636         (reflect): likewise
637         * include/grub/dl.h (GRUB_MOD_NAME): define segment with Apple's CC
638         (GRUB_MOD_DEP): likewise
640 2009-06-04  Vladimir Serbinenko  <phcoder@gmail.com>
642         Allow a compilation without -mcmodel=large
644         * kern/efi/mm.c (grub_efi_allocate_pages): don't allocate >4GiB
645         when compiled without -mcmodel=large
646         (filter_memory_map): remove memory post 4 GiB when compiled
647         without -mcmodel=large
648         * configure.ac: fail gracefully and add -DMCMODEL_SMALL=1 to
649         TARGET_CFLAGS when -mcmodel=large isn't supported
651 2009-06-04  Vladimir Serbinenko  <phcoder@gmail.com>
653         Remove nested functions in efiemu core
655         * efiemu/runtime/efiemu.c (reflect): make static instead of nested
657 2009-06-04  Vladimir Serbinenko  <phcoder@gmail.com>
659         Avoid clobbering %ebx/%rbx in inline assembly with Apple's CC
661         * efiemu/runtime/efiemu.c (write_cmos): use %cl instead of %bl as
662         temporary storage
663         * include/grub/i386/tsc.h (grub_get_tsc): restore %rbx/%ebx when
664         using Apple's CC
665         (grub_cpu_is_tsc_supported): likewise
666         * loader/i386/xnu.c (guessfsb): restore %rbx/%ebx in inline assembly
668 2009-06-04  Vladimir Serbinenko  <phcoder@gmail.com>
670         Absolute addressing through constant with Apple's cc
672         * kern/i386/pc/startup.S: Define necessary constants
673         and address through it when using ABS with Apple's CC
674         * boot/i386/pc/diskboot.S: likewise
675         * boot/i386/pc/boot.S: likewise
676         * boot/i386/pc/lnxboot.S: likewise
677         * boot/i386/pc/cdboot.S: likewise
678         * mmap/i386/pc/mmap_helper.S: likewise
679         * commands/i386/pc/drivemap_int13h.S: likewise
681 2009-06-04  Vladimir Serbinenko  <phcoder@gmail.com>
683         Check if compiler is apple cc
685         * Makefile.in (ASFLAGS): new variable
686         (TARGET_ASFLAGS): likewise
687         (TARGET_MODULE_FORMAT): likewise
688         (TARGET_APPLE_CC): likewise
689         (OBJCONV): likewise
690         (TARGET_IMG_CFLAGS): likewise
691         (TARGET_CPPFLAGS): add includedir
692         * configure.ac: call grub_apple_cc and grub_apple_target_cc
693         (TARGET_IMG_LDFLAGS): Add -Wl,-Ttext,. All users updated
694         Check for linker script only if compiler isn't Apple's CC
695         (TARGET_MODULE_FORMAT): set
696         (TARGET_APPLE_CC): likewise
697         (TARGET_ASFLAGS): likewise
698         (ASFLAGS): likewise
699         Check for objcopy only if compiler isn't Apple's CC
700         Check for BSS symbol only if compiler isn't Apple's CC
701         * genmk.rb: adapt nm options if we use Apple's utils
702         * aclocal.m4 (grub_apple_cc): new test
703         (grub_apple_target_cc): likewise
705 2009-06-04  Vladimir Serbinenko  <phcoder@gmail.com>
707         Simplify sed expressions and improve awk
709         * Makefile.in (install-local): simplify sed expression
710         * gencmdlist.sh: likewise
711         * genmoddep.awk: avoid adding module as a dependency of itself
713 2009-06-04  Vladimir Serbinenko  <phcoder@gmail.com>
715         Add missing start symbols
717         * boot/i386/pc/boot.S: add start
718         * boot/i386/pc/pxeboot.S: likewise
720 2009-06-04  Vladimir Serbinenko  <phcoder@gmail.com>
722         Fix wrong assumptions with grub-mkimage on EFI
724         * i386/efi/grub-mkimage.c (read_kernel_module): don't write prefix here
725         (relocate_addresses): consider both r_addend and value at offset
726         (make_mods_section): zerofill modinfo and header
727         (convert_elf): write prefix here
729 2009-06-04  Vladimir Serbinenko  <phcoder@gmail.com>
731         Use .asciz instead of .string
733         * i386/pc/diskboot.S: use .asciz instead of .string
734         * i386/pc/boot.S: likewise
735         * include/grub/dl.h (GRUB_MOD_DEP): likewise
736         (GRUB_MOD_NAME): likewise
738 2009-06-04  Vladimir Serbinenko  <phcoder@gmail.com>
740         gfxpayload support
742         * commands/videotest.c (grub_cmd_videotest): use grub_video_set_mode
743         * include/grub/video.h (GRUB_VIDEO_MODE_TYPE_PURE_TEXT): new definition
744         (grub_video_setup): remove
745         (grub_video_set_mode): new prototype
746         * loader/i386/linux.c (DEFAULT_VIDEO_MODE): new definition
747         (vid_mode): remove
748         (linux_vesafb_res): compile only on PCBIOS
749         (grub_linux_boot): support gfxpayload
750         * loader/i386/pc/xnu.c (video_hook): new function
751         (grub_xnu_set_video): support gfxpayload
752         * term/gfxterm.c (DEFAULT_VIDEO_WIDTH): removed
753         (DEFAULT_VIDEO_HEIGHT): likewise
754         (DEFAULT_VIDEO_FLAGS): likewise
755         (DEFAULT_VIDEO_MODE): new definition
756         (video_hook): new function
757         (grub_gfxterm_init): use grub_video_set_mode
758         * util/grub.d/30_os-prober.in: remove explicit modesetting before
759         loading xnu
760         * video/video.c (grub_video_setup): removed
761         (grub_video_set_mode): new function based on grub_gfxterm_init and
762         grub_video_setup
764 2009-06-04  Vladimir Serbinenko  <phcoder@gmail.com>
766         Avoid calling biosdisk in drivemap
768         * commands/i386/pc/drivemap.c (parse_biosdisk): remove
769         (revparse_biosdisk): likewise
770         (list_mappings): derive name from id directly
771         (grub_cmd_drivemap): use tryparse_diskstring
773 2009-06-04  Vladimir Serbinenko  <phcoder@gmail.com>
775         Script fixes
777         * include/grub/script_sh.h (grub_script_cmdline): remove cmdline
778         (grub_lexer_param): add tokenonhold
779         (grub_script_create_cmdline): remove cmdline. All callers updated
780         (grub_script_function_create): make functionname
781         grub_script_arg. All callers updated
782         (grub_script_execute_argument_to_string): new prototype
783         * kern/parser.c (state_transitions): reorder
784         (grub_parser_cmdline_state): fix a bug and make more compact
785         * script/sh/execute.c (grub_script_execute_argument_to_string):
786         make global
787         (grub_script_execute_cmdline): use new format
788         * script/sh/function.c (grub_script_function_create): make functionname
789         grub_script_arg. All callers updated
790         * script/sh/lexer.c (grub_script_lexer_init): initialize tokenonhold
791         (grub_script_yylex): remove
792         (grub_script_yylex2): renamed to ...
793         (grub_script_yylex): ...renamed
794         parse the expressions like a${b}c
795         * script/sh/parser.y (GRUB_PARSER_TOKEN_ARG): new typed terminal
796         (GRUB_PARSER_TOKEN_VAR): remove
797         (GRUB_PARSER_TOKEN_NAME): likewise
798         ("if"): declare as typeless
799         ("while"): likewise
800         ("function"): likewise
801         ("else"): likewise
802         ("then"): likewise
803         ("fi"): likewise
804         (text): remove
805         (argument): likewise
806         (script): accept empty scripts and make exit on error
807         (arguments): use GRUB_PARSER_TOKEN_ARG
808         (function): likewise
809         (command): move error handling to script
810         (menuentry): move grub_script_lexer_ref before
811         * script/sh/script.c (grub_script_create_cmdline): remove cmdline
812         argument. All callers updated
814 2009-06-04  Robert Millan  <rmh.grub@aybabtu.com>
816         Prevent GRUB from probing floppies during boot.
818         * conf/common.rmk (search_mod_CFLAGS): Use `-Werror -Wall'.
819         * commands/search.c (options): Add --no-floppy.
820         (search_fs, search_file, grub_cmd_search): Support --no-floppy.
821         * util/grub-mkconfig_lib.in (prepare_grub_to_access_device): Use
822         --no-floppy when searching for UUIDs.
824 2009-06-04  Robert Millan  <rmh.grub@aybabtu.com>
826         Simplify the code duplication in commands/search.c.
828         * commands/search.c (search_label, search_fs_uuid): Merge into ...
829         (search_fs): ... this.  Update all users.
831 2009-06-03  Felix Zielcke  <fzielcke@z-51.de>
833         * util/grub-mkconfig.in (update_grub_dir): Rename to grub_mkconfig_dir.
835 2009-05-28  Pavel Roskin  <proski@gnu.org>
837         * Makefile.in: Don't use "cp -d", it doesn't work on FreeBSD.
838         Remove the original symlink explicitly.
840         * fs/hfs.c (grub_hfs_find_dir): Skip sequences of slashes, not
841         just one slash.  That's how grub_fshelp_find_file() does it.
843 2009-05-26  Pavel Roskin  <proski@gnu.org>
845         * genmk.rb: Avoid shadowing variable `s', rename the outer `s'
846         to `str'.
848         * util/getroot.c (grub_util_get_dev_abstraction): Mark os_dev as
849         possibly unused.
851 2009-05-25  Christian Franke  <franke@computer.org>
853         * disk/ata.c (grub_ata_wait_not_busy): Add debug output of status
854         register.
855         (grub_atapi_identify): Add wait after drive select.
856         (grub_ata_identify): Do more strict status register check before
857         calling grub_atapi_identify ().  Suppress error message if status
858         register is 0x00 after command failure.  Add status register
859         check after PIO read to avoid bogus identify due to stuck DRQ.
860         Thanks to Pavel Roskin for testing.
861         (grub_device_initialize): Remove unsafe status register check.
862         Thanks to 'phcoder' for problem report and patch.
863         Prevent sign extension in debug message.
865 2009-05-23  Colin D Bennett  <colin@gibibit.com>
867         Cleaned up `include/grub/normal.h'.  Grouped prototypes by
868         definition file, and functions defined in `normal/menu.c' have had
869         their prototypes moved to `include/grub/menu.h' for consistency.
871         * include/grub/menu.h (grub_menu_execute_callback): Added; moved
872         from normal.h.
873         (grub_menu_get_entry): Likewise.
874         (grub_menu_get_timeout): Likewise.
875         (grub_menu_set_timeout): Likewise.
876         (grub_menu_execute_entry): Likewise.
877         (grub_menu_execute_with_fallback): Likewise.
878         (grub_menu_entry_run): Likewise.
880         * include/grub/normal.h: Re-ordered and grouped function
881         prototypes by file that the function is defined in.
882         (grub_menu_execute_callback): Removed; moved to menu.h.
883         (grub_menu_get_entry): Likewise.
884         (grub_menu_get_timeout): Likewise.
885         (grub_menu_set_timeout): Likewise.
886         (grub_menu_execute_entry): Likewise.
887         (grub_menu_execute_with_fallback): Likewise.
888         (grub_menu_entry_run): Likewise.
889         (grub_menu_addentry): Renamed from this ...
890         (grub_normal_add_menu_entry): ... to this.
892         * normal/main.c (grub_menu_addentry): Renamed from this ...
893         (grub_normal_add_menu_entry): ... to this.
895         * script/sh/execute.c (grub_script_execute_menuentry): Update
896         reference to renamed grub_menu_addentry function.
898 2009-05-23  Felix Zielcke  <fzielcke@z-51.de>
900         * commands/i386/pc/drivemap.c (MODNAME): Remove. Update all users.
902 2009-05-22  Pavel Roskin  <proski@gnu.org>
904         * aclocal.m4 (grub_I386_CHECK_REGPARM_BUG): Remove.
905         * configure.ac: Don't call grub_I386_CHECK_REGPARM_BUG.  Define
906         NESTED_FUNC_ATTR using AH_BOTTOM.  Use regparm(1) only when
907         compiling for the i386 targets, but not for the utilities.
909         * include/grub/i386/pc/kernel.h (grub_boot_drive): Change type
910         to grub_uint8_t.
911         (grub_root_drive): Likewise.
912         * kern/i386/pc/startup.S (grub_boot_drive): Change size to byte,
913         remove alignment.
914         (grub_root_drive): Change size to byte.
915         (grub_start_addr): Remove.
916         (grub_end_addr): Likewise.
917         (grub_apm_bios_info): Likewise.
919 2009-05-21  Felix Zielcke  <fzielcke@z-51.de>
921         * normal/i386: Remove.
922         * normal/powerpc: Likewise.
923         * normal/sparc64: Likewise.
924         * normal/x86_64: Likewise.
926 2009-05-19  Vladimir Serbinenko  <phcoder@gmail.com>
928         * conf/x86_64-efi.rmk (linux_mod_ASFLAGS): Add missing variable
929         * loader/i386/linux_trampoline.S: Fix indentation
930         * loader/i386/xnu_helper.S: Likewise
932 2009-05-18  Colin D Bennett  <colin@gibibit.com>
934         Display error messages when parsing a Lua statement fails.
935         Previously, executing a syntactically invalid statement like
936         ")foo" or "bar;" would silently fail.
938         * script/lua/grub_main.c (handle_lua_error): New function.
939         (grub_lua_parse_line): Improved reporting of Lua parser and
940         execution errors.
942 2009-05-17  Vladimir Serbinenko  <phcoder@gmail.com>
944         Remove -Werror which causes build to fail on some systems
946         * conf/i386-pc.rmk (xnu_mod_CFLAGS): Remove -Werror -Wall
947         * conf/i386-efi.rmk (xnu_mod_CFLAGS): Likewise
948         * conf/x86_64-efi.rmk (xnu_mod_CFLAGS): Likewise
950 2009-05-17  Vladimir Serbinenko  <phcoder@gmail.com>
952         trampoline for linux on 64-bit platform
954         * conf/x86_64-efi.rmk (linux_mod_SOURCES): added
955         loader/i386/efi/linux_trampoline.S
956         * include/grub/x86_64/efi/loader.h (grub_linux_real_boot): removed
957         declaration
958         * kern/x86_64/efi/startup.S (grub_linux_real_boot): moved from
959         here
960         * loader/i386/linux_trampoline.S: moved here
961         * loader/i386/efi/linux.c (allocate_pages): reserve space for
962         trampoline
963         (jumpvector): removed
964         (grub_linux_trampoline_start): new declaration
965         (grub_linux_trampoline_end): likewise
966         (grub_linux_boot): use trampoline when on 64-bit platform
967         * loader/i386/linux.c: likewise
969 2009-05-16  Pavel Roskin  <proski@gnu.org>
971         * script/lua/grub_lib.c (grub_lua_getenv): Make name and value
972         const to avoid a warning.
973         (grub_lua_setenv): Likewise.
974         * script/lua/grub_main.c (grub_lua_parse_line): Use size_t for
975         lmsg to fix a warning.
977 2009-05-16  Felix Zielcke  <fzielcke@z-51.de>
979         * conf/i386.rmk (setjmp_mod_CFLAGS): Rename to ...
980         (setjmp_mod_ASFLAGS): ... this. Set to $(COMMON_ASFLAGS).
981         * conf/x86_64-efi.rmk (setjmp_mod_CFLAGS): Rename to ...
982         (setjmp_mod_ASFLAGS): ... this. Set to $(COMMON_ASFLAGS).
983         * conf/powerpc-ieee1275.rmk (setjmp_mod_CFLAGS): Rename to ...
984         (setjmp_mod_ASFLAGS): ... this. Set to $(COMMON_ASFLAGS).
985         * conf/sparc64-ieee1275.rmk (setjmp_mod_CFLAGS): Rename to ...
986         (setjmp_mod_ASFLAGS): ... this. Set to $(COMMON_ASFLAGS).
988 2009-05-16  Felix Zielcke  <fzielcke@z-51.de>
990         * util/grub-mkconfig.in: Export GRUB_TERMINAL_INPUT.
992 2009-05-16  Bean  <bean123ch@gmail.com>
994         * conf/common.rmk (pkglib_MODULES): Add lua.mod.
995         (lua_mod_SOURCES): New variable.
996         (lua_mod_CFLAGS): Likewise.
997         (lua_mod_LDFLAGS): Likewise.
999         * conf/i386.rmk (pkglib_MODULES): Add setjmp.mod.
1000         (setjmp_mod_SOURCES): New variable.
1001         (setjmp_mod_CFLAGS): Likewise.
1002         (setjmp_LDFLAGS): Likewise.
1004         * conf/x86_64-efi.rmk (pkglib_MODULES): Add setjmp.mod.
1005         (setjmp_mod_SOURCES): New variable.
1006         (setjmp_mod_CFLAGS): Likewise.
1007         (setjmp_LDFLAGS): Likewise.
1009         * conf/powerpc-ieee1275.rmk (pkglib_MODULES): Add setjmp.mod.
1010         (setjmp_mod_SOURCES): New variable.
1011         (setjmp_mod_CFLAGS): Likewise.
1012         (setjmp_LDFLAGS): Likewise.
1014         * conf/sparc64-ieee1275.rmk (pkglib_MODULES): Add setjmp.mod.
1015         (setjmp_mod_SOURCES): New variable.
1016         (setjmp_mod_CFLAGS): Likewise.
1017         (setjmp_LDFLAGS): Likewise.
1019         * normal/i386/setjmp.S: Moved from here ...
1020         * lib/i386/setjmp.S: ... Moved here
1021         * normal/x86_64/setjmp.S: Moved from here ...
1022         * lib/x86_64/setjmp.S: ... Moved here
1023         * normal/powerpc/setjmp.S: Moved from here ...
1024         * lib/powerpc/setjmp.S: ... Moved here
1025         * normal/sparc64/setjmp.S: Moved from here ...
1026         * lib/sparc64/setjmp.S: ... Moved here
1028         * include/grub/i386/setjmp.h (grub_setjmp): Don't use attribute
1029         returns_twice in mingw.
1031         * script/lua/grub_lib.c: New file.
1032         * script/lua/grub_lib.h: Likewise.
1033         * script/lua/grub_lua.h: Likewise.
1034         * script/lua/grub_main.c: Likewise.
1035         * script/lua/lapi.c: Likewise.
1036         * script/lua/lapi.h: Likewise.
1037         * script/lua/lauxlib.c: Likewise.
1038         * script/lua/lauxlib.h: Likewise.
1039         * script/lua/lbaselib.c: Likewise.
1040         * script/lua/lcode.c: Likewise.
1041         * script/lua/lcode.h: Likewise.
1042         * script/lua/ldblib.c: Likewise.
1043         * script/lua/ldebug.c: Likewise.
1044         * script/lua/ldebug.h: Likewise.
1045         * script/lua/ldo.c: Likewise.
1046         * script/lua/ldo.h: Likewise.
1047         * script/lua/ldump.c: Likewise.
1048         * script/lua/lfunc.c: Likewise.
1049         * script/lua/lfunc.h: Likewise.
1050         * script/lua/lgc.c: Likewise.
1051         * script/lua/lgc.h: Likewise.
1052         * script/lua/linit.c: Likewise.
1053         * script/lua/liolib.c: Likewise.
1054         * script/lua/llex.c: Likewise.
1055         * script/lua/llex.h: Likewise.
1056         * script/lua/llimits.h: Likewise.
1057         * script/lua/lmathlib.c: Likewise.
1058         * script/lua/lmem.c: Likewise.
1059         * script/lua/lmem.h: Likewise.
1060         * script/lua/loadlib.c: Likewise.
1061         * script/lua/lobject.c: Likewise.
1062         * script/lua/lobject.h: Likewise.
1063         * script/lua/lopcodes.c: Likewise.
1064         * script/lua/lopcodes.h: Likewise.
1065         * script/lua/loslib.c: Likewise.
1066         * script/lua/lparser.c: Likewise.
1067         * script/lua/lparser.h: Likewise.
1068         * script/lua/lstate.c: Likewise.
1069         * script/lua/lstate.h: Likewise.
1070         * script/lua/lstring.c: Likewise.
1071         * script/lua/lstring.h: Likewise.
1072         * script/lua/lstrlib.c: Likewise.
1073         * script/lua/ltable.c: Likewise.
1074         * script/lua/ltable.h: Likewise.
1075         * script/lua/ltablib.c: Likewise.
1076         * script/lua/ltm.c: Likewise.
1077         * script/lua/ltm.h: Likewise.
1078         * script/lua/lua.h: Likewise.
1079         * script/lua/luaconf.h: Likewise.
1080         * script/lua/lualib.h: Likewise.
1081         * script/lua/lundump.c: Likewise.
1082         * script/lua/lundump.h: Likewise.
1083         * script/lua/lvm.c: Likewise.
1084         * script/lua/lvm.h: Likewise.
1085         * script/lua/lzio.c: Likewise.
1086         * script/lua/lzio.h: Likewise.
1088 2009-05-16  Bean  <bean123ch@gmail.com>
1090         * include/grub/kernel.h (grub_module_header_types): Add type
1091         OBJ_TYPE_CONFIG.
1093         * kern/main.c (grub_load_config): New function.
1094         (grub_main): Call grub_load_config to read boot config.
1096         * grub-mkimage (generate_image): New parameter config_path.
1097         (options): New option --config.
1098         (main): Parse --config option, and pass it to generate_image.
1100 2009-05-14  Christian Franke  <franke@computer.org>
1102         * commands/i386/pc/drivemap_int13h.S: Add missing EXT_C for symbols.
1103         This fixes build on Cygwin.
1105 2009-05-14  Pavel Roskin  <proski@gnu.org>
1107         * commands/i386/pc/drivemap_int13h.S: Eliminate unconditional
1108         jump.  This saves two bytes, so the typical case of 2 swapped
1109         drives would fit 32 bytes.
1111 2009-05-13  Pavel Roskin  <proski@gnu.org>
1113         * loader/i386/multiboot.c (grub_multiboot): Cast mmap_addr to
1114         grub_uint32_t to avoid a warning.
1116         * loader/i386/linux.c (allocate_pages): When assigning
1117         real_mode_mem, cast through grub_size_t to fix a warning.  The
1118         code already makes sure that the value would fit a pointer.
1119         (grub_linux_setup_video): Cast render_target->data to
1120         grub_size_t to fix a warning.
1122 2009-05-13  Javier Martín  <lordhabbit@gmail.com>
1124         * commands/i386/pc/drivemap.c: New file - implement drivemap
1125         command.
1126         * commands/i386/pc/drivemap_int13h.S: New file - int13 handler.
1127         * conf/i386-pc.rmk: Add drivemap.c and drivemap_int13h.S.
1129 2009-05-13  Pavel Roskin  <proski@gnu.org>
1131         * util/i386/pc/grub-setup.c (setup): Remove unused variable
1132         embedding_area_exists.
1134 2009-05-13  Robert Millan  <rmh.grub@aybabtu.com>
1136         * util/i386/pc/grub-setup.c (setup): Restructure code flow to make
1137         it easier to understand / work with.
1138         Improve warning messages for cases where there's no embedding area,
1139         or when it is too small (or core.img too large).
1141 2009-05-13  Pavel Roskin  <proski@gnu.org>
1143         * loader/i386/pc/multiboot2.c: Add necessary includes for
1144         grub_multiboot2_real_boot().
1146         * fs/iso9660.c (grub_iso9660_iterate_dir): The file mode in the
1147         PX record is always little-endian.  We only need the lower 2
1148         bytes of the mode.
1150         * fs/cpio.c: Use the same name "struct head" for tar and cpio to
1151         facilitate code reuse.
1152         (grub_cpio_mount): Use "struct head", not a char buffer.  This
1153         fixes a warning reported by gcc 4.4.
1155         * kernel/disk.c (grub_disk_read): Use void pointer for the
1156         buffer.
1157         (grub_disk_write): Use const void pointer for the buffer.
1158         Adjust all callers.  Remove unnecessary casts.
1160 2009-05-10  Robert Millan  <rmh.grub@aybabtu.com>
1162         * util/i386/pc/grub-install.in: Update copyright year.
1164 2009-05-09  Vladimir Serbinenko  <phcoder@gmail.com>
1166         gptsync
1168         * commands/gptsync.c: new file
1169         * conf/common.rmk (pkglib_MODULES): add gptsync.mod
1170         (gptsync_mod_SOURCES): new variable
1171         (gptsync_mod_CFLAGS): likewise
1172         (gptsync_mod_LDFLAGS): likewise
1173         * include/grub/pc_partition.h (GRUB_PC_PARTITION_TYPE_NTFS):
1174         new definition
1175         (GRUB_PC_PARTITION_TYPE_HFS): likewise
1176         * conf/i386-coreboot.rmk (grub_emu_SOURCES): add commands/gptsync.c
1177         * conf/i386-ieee1275.rmk: likewise
1178         * conf/i386-pc.rmk: likewise
1179         * conf/powerpc-ieee1275.rmk: likewise
1181 2009-05-09  Vladimir Serbinenko  <phcoder@gmail.com>
1183         Fixed grub-emu
1185         * kern/dl.c (grub_dl_ref): omit when compiling grub-emu
1186         (grub_dl_ref): likewise
1188 2009-05-08  Robert Millan  <rmh.grub@aybabtu.com>
1190         * util/i386/pc/grub-setup.c (setup): Factorize find_usable_region(),
1191         split in two functions (one for msdos and one for gpt).
1193 2009-05-08  Pavel Roskin  <proski@gnu.org>
1195         * disk/raid.c (grub_raid_block_xor): Make buf2 constant, it's
1196         not modified.
1198         * disk/raid6_recover.c (grub_raid6_recover): Fix warnings about
1199         uninitialized err[0] and err[1].  Rename them to bad1 and bad2.
1200         Initialize them with -1.  Add sanity check for bad1.  Eliminate
1201         nerr variable.
1203 2009-05-08  David S. Miller  <davem@davemloft.net>
1205         * util/sparc64/ieee1275/grub-ofpathname.c (main): Set progname.
1207 2009-05-06  Robert Millan  <rmh.grub@aybabtu.com>
1209         * util/i386/pc/grub-setup.c (setup): Fix check for embed region
1210         existence.
1212 2009-05-05  Felix Zielcke  <fzielcke@z-51.de>
1214         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add
1215         `kern/rescue_reader.c', `kern/rescue_parser.c' and `normal/autofs.c'.
1217 2009-05-05  David S. Miller  <davem@davemloft.net>
1219         * util/sparc64/ieee1275/grub-install.in: Fix sed arg quoting.
1221 2009-05-05  Pavel Roskin  <proski@gnu.org>
1223         * include/grub/dl.h [GRUB_UTIL]: Provide inline implementations
1224         of grub_dl_ref() and grub_dl_unref().
1225         * commands/parttool.c: Remove preprocessor conditionals around
1226         grub_dl_ref() and grub_dl_unref().
1227         * fs/affs.c: Likewise.
1228         * fs/afs.c: Likewise.
1229         * fs/cpio.c: Likewise.
1230         * fs/ext2.c: Likewise.
1231         * fs/fat.c: Likewise.
1232         * fs/hfs.c: Likewise.
1233         * fs/hfsplus.c: Likewise.
1234         * fs/iso9660.c: Likewise.
1235         * fs/jfs.c: Likewise.
1236         * fs/minix.c: Likewise.
1237         * fs/ntfs.c: Likewise.
1238         * fs/reiserfs.c: Likewise.
1239         * fs/sfs.c: Likewise.
1240         * fs/udf.c: Likewise.
1241         * fs/ufs.c: Likewise.
1242         * fs/xfs.c: Likewise.
1243         * include/grub/dl.h: Likewise.
1244         * loader/xnu.c: Likewise.
1246 2009-05-04  Pavel Roskin  <proski@gnu.org>
1248         * commands/acpi.c: Remove unused variable my_mod.
1249         * partmap/amiga.c: Likewise.
1250         * partmap/apple.c: Likewise.
1251         * partmap/gpt.c: Likewise.
1252         * partmap/pc.c: Likewise.
1253         * partmap/sun.c: Likewise.
1254         * term/gfxterm.c: Likewise.
1255         * term/i386/pc/vesafb.c: Likewise.
1256         * term/i386/pc/vga.c: Likewise.
1258 2009-05-04  David S. Miller  <davem@davemloft.net>
1260         * kern/ieee1275/openfw.c (grub_children_iterate): Fix string
1261         pointer args to grub_ieee1275_get_property().
1263         * conf/sparc64-ieee1275.rmk: Fix build due to missing '\'.
1265         * disk/ieee1275/ofdisk.c (grub_ofdisk_iterate): Bypass cdrom
1266         devices, and do not traverse down under controller nodes.
1268         * disk/ieee1275/ofdisk.c (compute_dev_path): New.
1269         (grub_ofdisk_open): Use it to un-escape "," characters.
1270         * kern/disk.c (find_part_sep): New.
1271         (grub_disk_open): Use it to find the first non-escaped ','
1272         character in the disk name.
1273         * util/ieee1275/devicemap.c (escape_of_path): New.
1274         (grub_util_emit_devicemap_entry): Use it.
1275         * util/sparc64/ieee1275/grub-install.in: Update script to
1276         strip partition specifiers properly by not triggering on
1277         '\' escaped ',' characters.
1279 2009-05-04  Robert Millan  <rmh.grub@aybabtu.com>
1281         * include/grub/i386/linux.h (GRUB_LINUX_VID_MODE_VESA_START): Set
1282         to 0x300.
1283         * loader/i386/linux.c (vga_modes, linux_vesafb_res): Add a few
1284         resolutions.
1285         (linux_vesafb_modes): Add a lot of additional modes to the list (based
1286         on documentation from Wikipedia).
1288 2009-05-04  Pavel Roskin  <proski@gnu.org>
1290         * disk/ata.c: Spelling fixes.
1291         * disk/raid.c: Likewise.
1292         * disk/usbms.c: Likewise.
1293         * disk/dmraid_nvidia.c: Likewise.
1294         * kern/ieee1275/openfw.c: Likewise.
1295         * kern/ieee1275/init.c: Likewise.
1296         * kern/ieee1275/cmain.c: Likewise.
1297         * boot/i386/pc/cdboot.S: Likewise.
1298         * video/readers/png.c: Likewise.
1299         * video/i386/pc/vbe.c: Likewise.
1300         * fs/udf.c: Likewise.
1301         * fs/hfs.c: Likewise.
1302         * fs/reiserfs.c: Likewise.
1303         * efiemu/runtime/efiemu.c: Likewise.
1304         * efiemu/main.c: Likewise.
1305         * efiemu/mm.c: Likewise.
1306         * include/grub/elf.h: Likewise.
1307         * include/grub/xnu.h: Likewise.
1308         * include/grub/usbdesc.h: Likewise.
1309         * include/grub/usb.h: Likewise.
1310         * include/grub/script_sh.h: Likewise.
1311         * include/grub/lib/LzmaEnc.h: Likewise.
1312         * include/grub/efiemu/efiemu.h: Likewise.
1313         * include/grub/command.h: Likewise.
1314         * normal/menu.c: Likewise.
1315         * normal/main.c: Likewise.
1316         * normal/datetime.c: Likewise.
1317         * bus/usb/uhci.c: Likewise.
1318         * mmap/i386/uppermem.c: Likewise.
1319         * mmap/mmap.c: Likewise.
1320         * commands/acpi.c: Likewise.
1321         * commands/test.c: Likewise.
1322         * partmap/apple.c: Likewise.
1323         * font/font.c: Likewise.
1324         * loader/sparc64/ieee1275/linux.c: Likewise.
1325         * loader/macho.c: Likewise.
1326         * loader/i386/bsd_trampoline.S: Likewise.
1327         * loader/i386/bsd.c: Likewise.
1328         * loader/xnu.c: Likewise.
1329         * term/i386/pc/vesafb.c: Likewise.
1330         * term/usb_keyboard.c: Likewise.
1331         * util/resolve.c: Likewise.
1332         * util/getroot.c: Likewise.
1334 2009-05-04  Felix Zielcke  <fzielcke@z-51.de>
1336         * conf/i386-pc.rmk (libpkg_DATA): Rename to pkglib_DATA.
1338 2009-05-04  Robert Millan  <rmh.grub@aybabtu.com>
1340         * loader/i386/linux.c [GRUB_MACHINE_PCBIOS] (grub_cmd_linux): Fix
1341         build error.
1343 2009-05-04  Robert Millan  <rmh.grub@aybabtu.com>
1345         * loader/i386/linux.c (grub_cmd_linux): Make "vga=" compatibility
1346         parameter only available on BIOS.
1348 2009-05-04  Vladimir Serbinenko  <phcoder@gmail.com>
1350         Removed wrong semicolon in declaration
1352         * grub/misc.h (grub_dprintf): remove semicolon
1354 2009-05-04  Robert Millan  <rmh.grub@aybabtu.com>
1356         * loader/i386/linux.c (GRUB_ASSUME_LINUX_HAS_FB_SUPPORT): New macro.
1357         (grub_linux_boot): Don't check for `linux_vesafb_modes' bounds (this
1358         is done by grub_cmd_linux() now).
1359         [! GRUB_ASSUME_LINUX_HAS_FB_SUPPORT]: If "vga=" parameter wasn't set,
1360         restore video to text mode.
1361         (grub_cmd_linux): Default `vid_mode' initialization to 0, which
1362         indicates lack of "vga=" parameter.  "vga=0" is mapped to
1363         `GRUB_LINUX_VID_MODE_NORMAL'.
1365 2009-05-04  Felix Zielcke  <fzielcke@z-51.de>
1367         * conf/i386-efi.rmk (grub_emu_SOURCES): Remove `normal/execute.c',
1368         `normal/lexer.c', `kern/rescue.c', `normal/function.c', `normal/misc.c'
1369         and `normal/script.c'.  Add `kern/rescue_reader.c',
1370         `kern/rescue_parser.c', `script/sh/main.c', `script/sh/execute.c',
1371         `script/sh/function.c', `script/sh/lexer.c', `script/sh/script.c' and
1372         `grub_script.tab.c'.
1374         * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Likewise.
1375         * conf/x86_64-efi.rmk (grub_emu_SOURCES): Likewise.
1376         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
1377         * conf/i386-coreboot.rmk (grub_emu_SOURCES): Likewise.
1378         * conf/sparc64-ieee1275.rmk (grub_emu_SOURCES): Likewise.
1380         * Makefile.in: Remove duplicated 2008 in Copyright line.
1382 2009-05-04  Robert Millan  <rmh.grub@aybabtu.com>
1384         * util/misc.c (grub_util_warn): New function.  Emits a warning
1385         unconditionally.
1386         * include/grub/util/misc.h (grub_util_warn): New declaration.
1388         * util/i386/pc/grub-install.in: Understand --force and pass it down
1389         to grub-setup.
1391         * util/i386/pc/grub-setup.c (main): Understand --force and pass it
1392         down to setup().
1393         (setup): Improve error messages and add warnings when requested to
1394         install in odd layouts.  Refuse to install using blocklists unless
1395         --force was set.
1397 2009-05-04  martin f. krafft  <madduck@madduck.net>
1399         * disk/raid.c (grub_raid_scan_device): Improve debug message.
1401 2009-05-04  Vladimir Serbinenko  <phcoder@gmail.com>
1403         Updated copyright year
1405         * fs/hfsplus.c: updated copyright year
1407 2009-05-04  Vladimir Serbinenko  <phcoder@gmail.com>
1409         HFS+ UUID
1411         * fs/hfsplus.c (grub_hfsplus_volheader): added num_serial field
1412         in the space previously used by unused3
1413         (grub_hfsplus_uuid): new function
1414         (grub_hfsplus_fs): added uuid field
1416 2009-05-03  Pavel Roskin  <proski@gnu.org>
1418         * disk/ata.c: Don't cast mod to void in GRUB_MOD_INIT to
1419         suppress warnings.  It's no longer needed.
1420         * disk/host.c: Likewise.
1421         * disk/ata_pthru.c: Likewise.
1422         * disk/loopback.c: Likewise.
1423         * hook/datehook.c: Likewise.
1424         * parttool/pcpart.c: Likewise.
1425         * fs/i386/pc/pxe.c: Likewise.
1426         * fs/ntfscomp.c: Likewise.
1427         * efiemu/main.c: Likewise.
1428         * mmap/mmap.c: Likewise.
1429         * commands/crc.c: Likewise.
1430         * commands/hexdump.c: Likewise.
1431         * commands/hdparm.c: Likewise.
1432         * commands/acpi.c: Likewise.
1433         * commands/echo.c: Likewise.
1434         * commands/minicmd.c: Likewise.
1435         * commands/blocklist.c: Likewise.
1436         * commands/memrw.c: Likewise.
1437         * commands/loadenv.c: Likewise.
1438         * commands/usbtest.c: Likewise.
1439         * commands/lsmmap.c: Likewise.
1440         * commands/boot.c: Likewise.
1441         * commands/parttool.c: Likewise.
1442         * commands/configfile.c: Likewise.
1443         * commands/search.c: Likewise.
1444         * commands/ieee1275/suspend.c: Likewise.
1445         * commands/cat.c: Likewise.
1446         * commands/i386/pc/pxecmd.c: Likewise.
1447         * commands/i386/pc/play.c: Likewise.
1448         * commands/i386/pc/halt.c: Likewise.
1449         * commands/i386/pc/vbeinfo.c: Likewise.
1450         * commands/i386/pc/vbetest.c: Likewise.
1451         * commands/lspci.c: Likewise.
1452         * commands/date.c: Likewise.
1453         * commands/handler.c: Likewise.
1454         * commands/ls.c: Likewise.
1455         * commands/test.c: Likewise.
1456         * commands/cmp.c: Likewise.
1457         * commands/efi/loadbios.c: Likewise.
1458         * commands/efi/fixvideo.c: Likewise.
1459         * commands/halt.c: Likewise.
1460         * commands/help.c: Likewise.
1461         * commands/reboot.c: Likewise.
1462         * hello/hello.c: Likewise.
1463         * script/sh/main.c: Likewise.
1464         * loader/xnu.c: Likewise.
1465         * term/terminfo.c: Likewise.
1466         * term/i386/pc/serial.c: Likewise.
1467         * term/usb_keyboard.c: Likewise.
1469 2009-05-03  David S. Miller  <davem@davemloft.net>
1471         * normal/menu.c: Include grub/parser.h
1473 2009-05-03  Pavel Roskin  <proski@gnu.org>
1475         * mmap/efi/mmap.c (grub_mmap_malign_and_register): Return void*,
1476         not char*.
1477         * mmap/i386/mmap.c (grub_mmap_malign_and_register): Likewise.
1478         Suggested by Javier Martín <lordhabbit@gmail.com>
1480         * util/i386/pc/grub-mkrescue.in: Allow for the case when
1481         efiemu??.o doesn't exist.
1482         * util/i386/pc/grub-install.in: Likewise.  Use "cp -f" for
1483         copying.
1485 2009-05-03  Bean  <bean123ch@gmail.com> Vladimir Serbinenko  <phcoder@gmail.com>
1487         FreeBSD 64-bit support
1489         * conf/i386-pc.rmk (bsd_mod_SOURCES): add loader/i386/bsd_helper.S
1490         and loader/i386/bsd_trampoline.S
1491         (bsd_mod_ASFLAGS): new variable
1492         * include/grub/i386/bsd.h (FREEBSD_MODINFOMD_SMAP): new definition
1493         (FREEBSD_MODTYPE_KERNEL64): likewise
1494         (grub_bsd64_trampoline_start): likewise
1495         (grub_bsd64_trampoline_end): likewise
1496         (grub_bsd64_trampoline_selfjump): likewise
1497         (grub_bsd64_trampoline_gdt): likewise
1498         * include/grub/i386/loader.h (grub_unix_real_boot): moved from here ...
1499         * include/grub/i386/bsd.h (grub_unix_real_boot): ... moved here
1500         * kern/i386/loader.S (grub_unix_real_boot): moved from here ...
1501         * loader/i386/bsd_helper.S (grub_unix_real_boot): moved here
1502         * include/grub/gpt_partition.h (grub_gpt_partentry): Corrected the type
1503         of "attrib" member
1504         * loader/i386/bsd_pagetable.c: new file
1505         * loader/i386/bsd_trampoline.S: likewise
1506         * loader/i386/bsd.c (ALIGN_QWORD): new macro
1507         (ALIGN_VAR): likewise
1508         (entry_hi): new variable
1509         (kern_end_mdofs): likewise
1510         (is_64bit): likewise
1511         (grub_freebsd_add_meta): use ALIGN_VAR
1512         (grub_e820_mmap): new declaration
1513         (grub_freebsd_add_mmap): new function
1514         (grub_freebsd_add_meta_module): support 64 bit kernels
1515         (grub_freebsd_list_modules): use ALIGN_VAR
1516         (gdt_descriptor): new declaration
1517         (grub_freebsd_boot): support 64 bit kernels
1518         (grub_bsd_elf64_hook): new function
1519         (grub_bsd_load_elf): support elf64
1521 2009-05-03  Bean  <bean123ch@gmail.com>
1523         * script/sh/execute.c (grub_script_execute_cmdif): Reset grub_errno
1524         after we get the result of if statement.
1526 2009-05-03  Bean  <bean123ch@gmail.com>
1528         * Makefile.in (enable_efiemu): New variable.
1530         * conf/i386-pc.rmk: Only compile efiemu runtimes when enable_efiemu is
1531         set.
1532         (efiemu32.o): Use macro $< for source file, add $(srcdir) to include
1533         path.
1534         (efi64_c.o): Use macro $< for source file, add $(srcdir) to include
1535         path, add -mno-red-zone option.
1536         (efiemu64_s.o): Likewise.
1537         (efiemu64.o): Use macro $^ for source file.
1539         * configure.ac (--enable-efiemu): New option.
1541 2009-05-03  Vladimir Serbinenko  <phcoder@gmail.com>
1543         xnu support
1545         * conf/i386-efi.rmk (kernel_mod_HEADERS): added i386/pit.h
1546         (pkglib_MODULES): add xnu.mod
1547         (xnu_mod_SOURCES): new variable
1548         (xnu_mod_CFLAGS): likewise
1549         (xnu_mod_LDFLAGS): likewise
1550         (xnu_mod_ASFLAGS): likewise
1551         * conf/i386-pc.rmk: likewise
1552         * conf/x86_64-efi.rmk: likewise
1553         * include/grub/efi/efi.h (grub_efi_finish_boot_services):
1554         new declaration
1555         * include/grub/i386/macho.h: new file
1556         * include/grub/i386/xnu.h: likewise
1557         * include/grub/macho.h: likewise
1558         * include/grub/machoload.h: likewise
1559         * include/grub/x86_64/macho.h: likewise
1560         * include/grub/x86_64/xnu.h: likewise
1561         * include/grub/xnu.h: likewise
1562         * kern/efi/efi.c (grub_efi_finish_boot_services): new function
1563         * kern/efi/mm.c (MAX_HEAP_SIZE): increase
1564         * loader/i386/efi/xnu.c: new file
1565         * loader/i386/pc/xnu.c: likewise
1566         * loader/i386/xnu.c: likewise
1567         * loader/i386/xnu_helper.S: likewise
1568         * loader/macho.c: likewise
1569         * loader/xnu.c: likewise
1570         * loader/xnu_resume.c: likewise
1571         * util/grub-dumpdevtree: likewise
1572         * include/grub/i386/pit.h: include grub/err.h
1573         (grub_pit_wait): export
1574         * util/grub.d/30_os-prober.in: support Darwin/Mac OS X
1576 2009-05-02  Vladimir Serbinenko  <phcoder@gmail.com>
1578         Efiemu
1580         * conf/i386-pc.rmk: new modules efiemu, efiemu_acpi, efiemu_pnvram,
1581         _linux_efi, linux_efi.
1582         new files in grub-emu
1583         new targets efiemu32.o and efiemu64.o
1584         * loader/linux_normal_efiemu.c: likewise
1585         * loader/i386/efi/linux.c: added preliminary efiemu support
1586         * util/i386/pc/grub-install.in: add efiemu??.o to the list of
1587         files to copy
1588         * include/grub/autoefi.h: new file
1589         * include/grub/i386/efiemu.h: likewise
1590         * include/grub/i386/pc/efiemu.h: likewise
1591         * include/grub/efi/api.h: add LL suffix when necessary
1592         new definitions relating to tables
1593         * include/grub/efiemu/efiemu.h: new file
1594         * include/grub/efiemu/runtime.h: likewise
1595         * efiemu/prepare.c: likewise
1596         * efiemu/loadcore_common.c: likewise
1597         * efiemu/loadcore64.c: likewise
1598         * efiemu/runtime/efiemu.sh: likewise
1599         * efiemu/runtime/efiemu.S: likewise
1600         * efiemu/runtime/efiemu.c: likewise
1601         * efiemu/runtime/config.h: likewise
1602         * efiemu/prepare32.c: likewise
1603         * efiemu/main.c: likewise
1604         * efiemu/modules/pnvram.c: likewise
1605         * efiemu/modules/i386: likewise
1606         * efiemu/modules/i386/pc: likewise
1607         * efiemu/modules/acpi.c: likewise
1608         * efiemu/i386/pc/cfgtables.c: likewise
1609         * efiemu/i386/loadcore64.c: likewise
1610         * efiemu/i386/loadcore32.c: likewise
1611         * efiemu/prepare64.c: likewise
1612         * efiemu/loadcore.c: likewise
1613         * efiemu/symbols.c: likewise
1614         * efiemu/mm.c: likewise
1615         * efiemu/loadcore32.c: likewise
1617 2009-05-02  Vladimir Serbinenko  <phcoder@gmail.com>
1619         ACPI spoofing
1621         * commands/acpi.c: new file
1622         * commands/i386/pc/acpi.c: likewise
1623         * commands/efi/acpi.c: likewise
1624         * include/grub/acpi.h: likewise
1625         * conf/i386-pc.rmk (pkglib_MODULES): added acpi.mod
1626         (acpi_mod_SOURCES): new variable
1627         (acpi_mod_CFLAGS): likewise
1628         (acpi_mod_LDFLAGS): likewise
1629         * conf/i386-efi.rmk: likewise
1630         * conf/x86_64-efi.rmk: likewise
1632 2009-05-02  Vladimir Serbinenko  <phcoder@gmail.com>
1634         Missing part from mmap patch
1636         * mmap/efi/mmap.c (grub_machine_mmap_unregister): renamed to
1637         (grub_mmap_unregister)
1638         (grub_mmap_free_and_unregister): use grub_mmap_register
1640 2009-05-02  Vladimir Serbinenko  <phcoder@gmail.com>
1642         Mmap services
1644         * loader/i386/efi/linux.c (grub_linux_boot): use grub_mmap_iterate
1645         * loader/i386/linux.c (find_mmap_size): likewise
1646         (allocate_pages): likewise
1647         * loader/i386/multiboot.c (grub_get_multiboot_mmap_len): likewise
1648         (grub_fill_multiboot_mmap): likewise
1649         (grub_multiboot): use grub_mmap_get_lower and grub_mmap_get_upper
1650         * loader/i386/pc/linux.c (grub_cmd_linux): use grub_mmap_get_lower
1651         * include/grub/i386/bsd.h (OPENBSD_MMAP_AVAILABLE): new definition
1652         (OPENBSD_MMAP_RESERVED): likewise
1653         * include/grub/i386/pc/memory.h: include grub/memory.h
1654         (grub_lower_mem): removed
1655         (grub_upper_mem): likewise
1656         (GRUB_MACHINE_MEMORY_ACPI): new definition
1657         (GRUB_MACHINE_MEMORY_NVS): likewise
1658         (GRUB_MACHINE_MEMORY_MAX_TYPE): likewise
1659         (GRUB_MACHINE_MEMORY_HOLE): likewise
1660         (grub_machine_mmap_register): likewise
1661         (grub_machine_mmap_unregister): likewise
1662         (grub_machine_get_upper): likewise
1663         (grub_machine_get_lower): likewise
1664         (grub_machine_get_post64): likewise
1665         * include/grub/i386/efi/memory.h: new file
1666         * include/grub/x86_64/efi/memory.h: likewise
1667         * include/grub/efi/memory.h: likewise
1668         * conf/i386-pc.rmk (pkglib_MODULES): added mmap.mod
1669         (mmap_mod_SOURCES): new variable
1670         (mmap_mod_LDFLAGS): likewise
1671         (mmap_mod_ASFLAGS): likewise
1672         * conf/i386-coreboot.rmk: likewise
1673         * conf/i386-ieee1275.rmk: likewise
1674         * conf/i386-efi.rmk: likewise
1675         * conf/x86_64-efi.rmk: likewise
1676         * include/grub/types.h (UINT_TO_PTR): new macro
1677         (PTR_TO_UINT32): likewise
1678         (PTR_TO_UINT64): likewise
1679         * include/grub/memory.h: new file
1680         * mmap/i386/pc/mmap.c: likewise
1681         * mmap/i386/pc/mmap_helper.S: likewise
1682         * mmap/i386/uppermem.c: likewise
1683         * mmap/mmap.c: likewise
1684         * mmap/efi/mmap.c: likewise
1685         * kern/i386/coreboot/init.c (grub_machine_init): don't use
1686         grub_upper_mem
1687         * kern/i386/pc/init.c (grub_lower_mem): removed variable
1688         (grub_upper_mem): likewise
1689         (grub_machine_init): don't use grub_upper_mem,
1690         make grub_lower_mem local
1691         * loader/i386/bsd.c (grub_openbsd_boot): use grub_mmap_get_lower,
1692         grub_mmap_iterate and grub_mmap_get_upper
1693         (grub_netbsd_boot): use grub_mmap_get_lower and grub_mmap_get_upper
1695 2009-05-02  Bean  <bean123ch@gmail.com>
1697         * conf/common.rmk (grub_script.tab.c): Change normal/parser.y to
1698         script/sh/parser.y.
1699         (pkglib_MODULES): Add normal.mod and sh.mod.
1700         (normal_SOURCES): New variable.
1701         (normal_mod_CFLAGS): Likewise.
1702         (normal_mod_LDFLAGS): Likewise.
1703         (sh_mod_SOURCES): Likewise.
1704         (sh_mod_CFLAGS): Likewise.
1705         (sh_mod_LDFLAGS): Likewise.
1707         * conf/i386-pc.rmk (normal/lexer.c_DEPENDENCIES): Changed to
1708         script/sh/lexer.c_DEPENDENCIES.
1709         (kernel_img_SOURCES): Remove kern/rescue.c, and kern/reader.c,
1710         kern/rescue_reader.c and kern/rescue_parser.c.
1711         (kernel_img_HEADERS): Remove rescue.h, add reader.h.
1712         (grub_emu_SOURCES): Change source files.
1713         (pkglib_MODULES): Remove normal.mod.
1714         (normal_SOURCES): Removed.
1715         (normal_mod_CFLAGS): Likewise.
1716         (normal_mod_LDFLAGS): Likewise.
1717         * conf/i386-coreboot.rmk: Likewise.
1718         * conf/i386-efi.rmk: Likewise.
1719         * conf/i386-ieee1276.rmk: Likewise.
1720         * conf/powerpc-ieee1275.rmk: Likewise.
1721         * conf/sparc64-ieee1275.rmk: Likewise.
1722         * conf/x86_64-efi.rmk: Likewise.
1724         * include/grub/command.h (grub_command_execute): New inline function.
1726         * include/grub/menu.h (grub_menu_entry): Removed commands field.
1728         * include/grub/normal.h: Remove <grub/setjmp.h>.
1729         (grub_fs_module_list): Moved to normal/autofs.c.
1730         (grub_exit_env): Removed.
1731         (grub_command_execute): Likewise.
1732         (grub_normal_menu_addentry): Renamed to grub_menu_addentry, removed
1733         parameter script.
1734         (read_command_list): New function declaration.
1735         (read_fs_list): Likewise.
1737         * include/parser.h: Include <grub/reader.h>.
1738         (grub_parser_split_cmdline): Change type of getline parameter.
1739         (grub_parser): New structure.
1740         (grub_parser_class): New variable.
1741         (grub_parser_execute): New function declaration.
1742         (grub_register_rescue_parser): Likewise.
1743         (grub_parser_register): New inline function.
1744         (grub_parser_unregister): Likewise.
1745         (grub_parser_get_current): Likewise.
1746         (grub_parser_set_current): Likewise.
1748         * include/grub/reader.h: New file.
1749         * kern/reader.c: Likewise.
1750         * kern/rescue_parser.c: Likewise.
1751         * kern/rescue_reader.c: Likewise.
1752         * normal/autofs.c: Likewise.
1753         * normal/dyncmd.c: Likewise.
1755         * include/grub/rescue.h: Removed.
1756         * normal/command.h: Likewise.
1758         * include/grub/script.h: Moved to ...
1759         * include/grub/script_sh.h: ... Moved here.
1760         * normal/execute.c: Moved to ...
1761         * script/sh/execute.c: ... Moved here.
1762         * normal/function.c: Moved to ...
1763         * script/sh/function.c: ... Moved here.
1764         * normal/lexer.c: Moved to ...
1765         * script/sh/lexer.c: ... Moved here.
1766         * normal/parser.y: Moved to ...
1767         * script/sh/parser.y: ... Moved here.
1768         * normal/script.c: Moved to ...
1769         * script/sh/script.c: ... Moved here.
1771         * normal/main.c: Remove <grub/rescue.h> and <grub/script.h>, include
1772         <grub/reader.h>.
1773         (grub_exit_env): Removed.
1774         (fs_module_list): Moved to normal/autofs.c.
1775         (grub_file_getline): Don't handle comment here.
1776         (free_menu): Skip removed field entry->commands.
1777         (grub_normal_menu_addentry): Removed as grub_menu_entry, removed
1778         script parameter.
1779         (read_config_file): Removed nested parameter, change getline function.
1780         (grub_enter_normal_mode): Removed.
1781         (grub_dyncmd_dispatcher): Moved to normal/dyncmd.c.
1782         (read_command_list): Likewise.
1783         (autoload_fs_module): Moved to normal/autofs.c.
1784         (read_fs_list): Likewise.
1785         (reader_nested): New variable.
1786         (grub_normal_execute): Run parser.sh to switch to sh parser.
1787         (grub_cmd_rescue): Removed.
1788         (cmd_normal): Removed.
1789         (grub_cmd_normal): Unregister itself at the beginning. Don't register
1790         rescue command.
1791         (grub_cmdline_run): New function.
1792         (grub_normal_reader_init): Likewise.
1793         (grub_normal_read_line): Likewise.
1794         (grub_env_write_pager): Likewise.
1795         (cmdline): New variable.
1796         (grub_normal_reader): Likewise.
1797         (GRUB_MOD_INIT): Register normal reader and set as current, register
1798         pager hook, register normal command with grub_register_command_prio,
1799         so that it won't show up in command.lst.
1800         (GRUB_MOD_FINI): Unregister normal reader, unhook pager, clear
1801         grub_fs_autoload_hook.
1803         * normal/menu.c: Remove <grub/script.h>, add <grub/command.h>.
1804         (grub_menu_execute_entry): Replace grub_script_execute with
1805         grub_parser_execute, change parameter to grub_command_execute.
1807         * normal/menu_text.c: Remove <grub/script.h>.
1809         * normal/menu_entry.c: Remove <grub/script.h>, add <grub/command.h>
1810         and <grub/parser.h>.
1811         (run): Change editor_getline to use new parser interface. Change
1812         parameter to grub_command_execute.
1814         * kern/main.c: Remove <grub/rescue.h>, include <grub/command.h>,
1815         <grub/reader.h> and <grub/parser.h>.
1816         (grub_load_normal_mode): Execute normal command.
1817         (grub_main): Call grub_register_core_commands,
1818         grub_register_rescue_parser and grub_register_rescue_reader, use
1819         grub_reader_loop to enter input loop.
1821         * kern/parser.c (grub_parser_split_cmdline): Change type of
1822         getline parameter.
1823         (grub_parser_class): New variable.
1824         (grub_parser_execute): New function.
1826         * loader/i386/multiboot.c: Remove <grub/rescue.h>.
1827         * loader/multiboot2.c: Likewise.
1828         * loader/sparc64/ieee1275/linux.c: Likewise.
1830         * util/grub-emu.c (read_command_list): New dummy function.
1832 2009-05-02  Robert Millan  <rmh.grub@aybabtu.com>
1834         * util/deviceiter.c (grub_util_iterate_devices): Increase max drive
1835         count to 16 for CCISS and IDA.
1837 2009-05-02  Robert Millan  <rmh.grub@aybabtu.com>
1839         * normal/menu_text.c  (grub_wait_after_message): Print a newline
1840         after waiting for user input.
1842         * loader/i386/linux.c: Include `<grub/normal.h>'.
1843         (grub_cmd_linux): Improve the error message about `ask' mode, by
1844         waiting for user input so it's not missed (we can do this, since
1845         user requested interaction).
1847 2009-05-02  Vladimir Serbinenko  <phcoder@gmail.com>
1849         Added missing lst to grub-mkrescue
1851         * util/i386/pc/grub-mkrescue.in: added ${input_dir}/handler.lst
1852         and ${input_dir}/parttool.lst
1854 2009-04-30  David S. Miller  <davem@davemloft.net>
1856         * util/hostdisk.c (device_is_wholedisk): New function.
1857         (grub_util_biosdisk_get_grub_dev): Shortcut when hdg.start is
1858         zero only if device_is_wholedisk() returns true.
1860         * util/hostdisk.c (convert_system_partition_to_system_disk):
1861         Handle virtual disk devices named /dev/vdiskX as found on sparc
1862         and powerpc.
1864         * kern/sparc64/ieee1275/init.c (grub_machine_set_prefix): If
1865         lettered partition specifier is found, convert to numbered.
1867 2009-04-29  David S. Miller  <davem@davemloft.net>
1869         * include/grub/powerpc/ieee1275/memory.h: Include ieee1275.h.
1870         * include/grub/sparc64/ieee1275/memory.h: Likewise.
1872         * normal/command.c: Add missing newline at end of file.
1874         * commands/lsmmap.c (grub_cmd_lsmmap): Add casts to avoid printf
1875         warnings.
1876         * kern/ieee1275/openfw.c (grub_claimmap): Likewise.
1877         * disk/ieee1275/ofdisk.c (grub_ofdisk_open, grub_ofdisk_close,
1878         grub_ofdisk_read): Likewise, and deal similarly with the fact that
1879         ihandles have a 32-bit type but need to be stored in a "void *".
1881 2009-04-28  Pavel Roskin  <proski@gnu.org>
1883         * disk/fs_uuid.c (grub_fs_uuid_open): Use parent->data for dev,
1884         not disk.  Adjust all dependencies.
1885         (grub_fs_uuid_close): Use grub_device_close(), not
1886         grub_disk_close().
1888         * disk/fs_uuid.c (grub_fs_uuid_open): Allocate memory to copy
1889         parent's partition, don't copy it by reference, as it gets freed
1890         on close.
1892 2009-04-27  Vladimir Serbinenko  <phcoder@gmail.com>
1894         Preboot hooks support
1896         * commands/boot.c (struct grub_preboot_t): new declaration
1897         (preboots_head): new variable
1898         (preboots_tail): likewise
1899         (grub_loader_register_preboot_hook): new function
1900         (grub_loader_unregister_preboot_hook): likewise
1901         (grub_loader_set): launch preboot hooks
1902         * include/grub/loader.h (grub_loader_preboot_hook_prio_t): new type
1903         (grub_loader_register_preboot_hook): new declaration
1904         (grub_loader_unregister_preboot_hook): likewise
1906 2009-04-27  Vladimir Serbinenko  <phcoder@gmail.com>
1908         Warning fix
1910         * disk/scsi.c (grub_scsi_open): added missing cast when
1911         calling grub_dprintf
1913 2009-04-26  Vladimir Serbinenko  <phcoder@gmail.com>
1915         Bug and warning fixes
1917         * include/grub/i386/pc/init.h (grub_stop_floppy): added missing
1918         declaration
1919         * commands/test.c (test_parse): fixed bug with file tests and corrected
1920         declaration of find_file
1922 2009-04-26  Pavel Roskin  <proski@gnu.org>
1924         * Makefile.in: Don't install empty manual pages if help2man is
1925         missing.  Use help2man option for output, not shell redirection.
1927 2009-04-26  David S. Miller  <davem@davemloft.net>
1929         * util/grub-mkdevicemap.c (make_device_map): Add missing
1930         NESTED_FUNC_ATTR to process_device().
1932 2009-04-25  Vladimir Serbinenko  <phcoder@gmail.com>
1934         Test command
1936         * commands/test.c: rewritten to use bash-like test
1938 2009-04-25  Vladimir Serbinenko  <phcoder@gmail.com>
1940         Parttool autoloading and improvements
1942         * Makefile.in (pkglib_DATA): add parttool.lst
1943         (parttool.lst): new target
1944         * genmk.rb: generate parttool-*
1945         (CLEANFILES): add #{parttool}
1946         (PARTTOOLFILES): new variable
1947         * genparttoollist.sh: new file
1948         * parttool/pcpart.c (grub_pcpart_boot): more feedback
1949         (grub_pcpart_type): likewise
1950         * commands/parttool.c (helpmsg): new variable
1951         (grub_cmd_parttool): output help if not enough arguments are supplied
1952         autoload modules
1953         (GRUB_MOD_INIT(parttool)): use helpmsg
1955 2009-04-24  David S. Miller  <davem@davemloft.net>
1957         Avoiding opening same device multiple times in device iterator.
1959         * kern/device.c: (grub_device_iterate): Define struct part_ent,
1960         and use it to build a list of partitions in iterate_disk() and
1961         iterate_partition().
1963         * disk/fs_uuid.c (grub_fs_uuid_close): Call grub_disk_close()
1964         on disk->data.
1966         * disk/ieee1275/nand.c (grub_nand_iterate): Return
1967         grub_devalias_iterate() result instead of unconditional 0.
1968         * disk/ieee1275/ofdisk.c (grub_ofdisk_iterate): Likewise.
1969         Also, capture hook return value, either directly or via
1970         grub_children_iterate(), and propagate to caller.
1971         * include/grub/ieee1275/ieee1275.h (grub_devalias_iterate,
1972         grub_children_iterate): Return value is now 'int' instead of
1973         'grub_err_t'.
1974         * kern/ieee1275/openfw.c (grub_children_iterate): Fix to behave
1975         like a proper iterator, stopping when hooks return non-zero.
1976         (grub_devalias_iterate): Likewise.
1978 2009-04-23  David S. Miller  <davem@davemloft.net>
1980         * kern/sparc64/ieee1275/openfw.c: Unused, delete.
1982 2009-04-22  David S. Miller  <davem@davemloft.net>
1984         * kern/ieee1275/mmap.c (grub_machine_mmap_iterate): If size_cells
1985         is larger than address_cells, use that value for address_cells too.
1987         * include/grub/ieee1275/ieee1275.h (IEEE1275_MAX_PROP_LEN,
1988         IEEE1275_MAX_PATH_LEN): Define.
1989         * kern/ieee1275/openfw.c (grub_children_iterate): Dynamically
1990         allocate 'childtype', 'childpath', 'childname', and 'fullname'.
1991         (grub_devalias_iterate): Dynamically allocate 'aliasname' and
1992         'devtype'.  Explicitly NULL terminate devalias expansion.
1994         * util/sparc64/ieee1275/misc.c: New file.
1995         * util/sparc64/ieee1275/grub-setup.c: New file.
1996         * util/sparc64/ieee1275/grub-ofpathname.c: New file.
1997         * util/sparc64/ieee1275/grub-mkimage.c: New file.
1998         * util/sparc64/ieee1275/grub-install.in: New file.
1999         * util/ieee1275/ofpath.c: New file.
2000         * util/ieee1275/devicemap.c: New file.
2001         * util/devicemap.c: New file.
2002         * util/deviceiter.c: New file.
2003         * kern/sparc64/ieee1275/init.c: New file.
2004         * include/grub/util/ofpath.h: New file.
2005         * include/grub/util/deviceiter.h: New file.
2006         * util/grub-mkdevicemap.c: Include deviceiter.h.
2007         Implement using grub_util_emit_devicemap_entry and
2008         grub_util_iterate_devices.
2009         * conf/i386-corebook.rmk: Build util/deviceiter.c and
2010         util/devicemap.c into grub-mkdevicemap
2011         * conf/i386-efi.rmk: Likewise.
2012         * conf/i386-ieee1275.rmk: Likewise.
2013         * conf/i386-pc.rmk: Likewise.
2014         * conf/powerpc-ieee1275.rmk: Likewise.
2015         * conf/sparc64-ieee1275.rmk: Add rules to build boot block
2016         images and installation utilities.  Build kernel as image
2017         instead of as elf binary.  Use common rules as much as possible.
2019 2009-04-19  Vladimir Serbinenko  <phcoder@gmail.com>
2021         Correct GPT definition
2023         * include/grub/gpt_partition.h (grub_gpt_partentry): Corrected the type
2024         of "attrib" member
2026 2009-04-19  Felix Zielcke  <fzielcke@z-51.de>
2028         * INSTALL: Replace `autogen.sh' with `./autogen.sh'.
2030 2009-04-19  David S. Miller  <davem@davemloft.net>
2032         * loader/sparc64/ieee1275/linux.c: Include grub/command.h
2033         (grub_rescue_cmd_linux): Rename to...
2034         (grub_cmd_linux): and fix prototype.
2035         (grub_rescue_cmd_initrd): Rename to...
2036         (grub_cmd_initrd): and fix prototype.
2037         (cmd_linux, cmd_initrd): New.
2038         (GRUB_MOD_INIT(linux)): Use grub_register_command().
2039         (GRUB_MOD_FINI(linux): Use grub_unregister_command().
2041 2009-04-17  Pavel Roskin  <proski@gnu.org>
2043         * bus/usb/ohci.c (grub_ohci_transaction): Fix incorrect printf
2044         format.
2045         (grub_ohci_transfer): Likewise.
2047         * bus/usb/usbtrans.c (grub_usb_control_msg): Warning fix.
2049         * loader/multiboot_loader.c (grub_cmd_multiboot_loader): Fix
2050         return without a value.  Fix inconsistent indentation.
2052         * fs/i386/pc/pxe.c (grub_pxefs_dir): Fix function prototype to
2053         match struct grub_fs.
2055         * disk/ata.c (grub_ata_pciinit): Use NESTED_FUNC_ATTR.
2056         * bus/usb/ohci.c (grub_ohci_pci_iter): Likewise.
2057         * bus/usb/uhci.c (grub_uhci_pci_iter): Likewise.
2058         * commands/lspci.c (grub_lspci_iter): Likewise.
2060 2009-04-16  Bean  <bean123ch@gmail.com>
2062         * commands/efi/loadbios.c (grub_cmd_fakebios): Add missing return
2063         value.
2065 2009-04-15  Pavel Roskin  <proski@gnu.org>
2067         * include/grub/types.h: Rename ULONG_MAX to GRUB_ULONG_MAX and
2068         LONG_MAX to GRUB_LONG_MAX.  Introduce GRUB_LONG_MIN.  Update all
2069         users of ULONG_MAX, LONG_MAX and LONG_MIN to use the new
2070         definitions.
2072 2009-04-15  Felix Zielcke  <fzielcke@z-51.de>
2074         * disk/lvm.c (grub_lvm_scan_device): Add `LVM' to the error messages,
2075         that no multiple data or metadata areas are supported and `Unknown
2076         metadata header'.
2078 2009-04-15  Vladimir Serbinenko  <phcoder@gmail.com>
2080         Move loader out of the kernel
2082         * kern/loader.c: moved to ...
2083         * commands/boot.c: ... moved here
2084         * commands/minicmd.c (grub_mini_cmd_boot): moved to ...
2085         * commands/boot.c (grub_cmd_boot): moved here. All users updated
2086         * include/grub/kernel.h (grub_machine_fini): export
2087         * include/grub/loader.h (grub_loader_is_loaded): update declaration
2088         (grub_loader_set): likewise
2089         (grub_loader_unset): likewise
2090         (grub_loader_boot): likewise
2091         * conf/common.rmk: new module boot.mod
2092         (pkglib_MODULES): add boot.mod
2093         * conf/i386-coreboot.rmk (kernel_elf_SOURCES): remove kern/loader.c
2094         (grub_emu_SOURCES): likewise
2095         * conf/i386-efi.rmk (kernel_elf_SOURCES): likewise
2096         (grub_emu_SOURCES): likewise
2097         * conf/i386-ieee1275.rmk (kernel_elf_SOURCES): likewise
2098         (grub_emu_SOURCES): likewise
2099         * conf/i386-pc.rmk (kernel_elf_SOURCES): likewise
2100         (grub_emu_SOURCES): likewise
2101         * conf/powerpc-ieee1275.rmk (kernel_elf_SOURCES): likewise
2102         (grub_emu_SOURCES): likewise
2103         * conf/sparc64-ieee1275.rmk (kernel_elf_SOURCES): likewise
2104         (grub_emu_SOURCES): likewise
2105         * conf/x86_64-efi.rmk (kernel_elf_SOURCES): likewise
2106         (grub_emu_SOURCES): likewise
2108 2009-04-15  Vladimir Serbinenko  <phcoder@gmail.com>
2110         use grub_lltoa instead of grub_itoa and grub_ltoa for all purposes
2112         * kern/misc.c (grub_itoa): Removed function
2113         (grub_ltoa): likewise
2114         (grub_vsprintf): use grub_lltoa
2116 2009-04-15  Vladimir Serbinenko  <phcoder@gmail.com>
2118         Restore grub-emu
2120         * conf/i386-pc.rmk (grub_emu_SOURCES): add normal/handler.c
2121         * conf/i386-coreboot.rmk: likewise
2122         * conf/i386-ieee1275.rmk: likewise
2123         * conf/powerpc-ieee1275.rmk: likewise
2125 2009-04-15  Felix Zielcke  <fzielcke@z-51.de>
2127         * INSTALL: Add that `./autogen.sh' needs to be run before
2128         `./configure.'.
2130 2009-04-14  Bean  <bean123ch@gmail.com>
2132         * Makefile.in (pkglib_DATA): Add handler.lst.
2133         (handler.lst): New rule.
2135         * conf/i386-pc.rmk (normal_mod_SOURCES): Add normal/handler.c.
2136         * conf/i386-coreboot.rmk: Likewise.
2137         * conf/i386-ieee1275.rmk: Likewise.
2138         * conf/i386-efi.rmk: Likewise.
2139         * conf/x86_64-efi.rmk: Likewise.
2140         * conf/powerpc-ieee1275.rmk: Likewise.
2141         * conf/sparc64-ieee1275.rmk: Likewise.
2143         * genhandlerlist.sh: New file.
2145         * genmk.rb: Add rules to generate handler.lst.
2147         * include/grub/normal.h (grub_file_getline): New function definition.
2148         (read_handler_list): Likewise.
2149         (free_handler_list): Likewise.
2151         * include/grub/term.h (grub_term_register_input): Add name parameter
2152         for auto generation of handler.lst.
2153         (grub_term_register_output): Likewise.
2155         * normal/handler.c: New file.
2157         * normal/main.c (get_line): Renamed to grub_file_getline.
2158         (read_config_file): Use the newly renamed grub_file_getline.
2159         (read_command_list): Likewise.
2160         (read_fs_list): Likewise.
2161         (grub_normal_execute): Call read_handler_list to parse handler.lst.
2162         (GRUB_MOD_FINI): Call free_handler_list to free handler list.
2164         * term/efi/console.c (grub_console_init): Add name parameter for auto
2165         generation of handler.lst.
2166         * term/gfxterm.c: Likewise.
2167         * term/i386/pc/at_keyboard.c: Likewise.
2168         * term/i386/pc/console.c: Likewise.
2169         * term/i386/pc/serial.c: Likewise.
2170         * term/i386/pc/vesafb.c: Likewise.
2171         * term/i386/pc/vga.c: Likewise.
2172         * term/i386/pc/vga_text.c: Likewise.
2173         * term/ieee1275/ofconsole.c: Likewise.
2174         * term/usb_keyboard.c: Likewise.
2176 2009-04-14  Bean  <bean123ch@gmail.com>
2178         * util/grub-pe2elf.c (write_symbol_table): Terminate short name symbol
2179         properly with null character.
2181 2009-04-14  Felix Zielcke  <fzielcke@z-51.de>
2183         * configure: Remove.
2184         * config.h.in: Likewise.
2185         * stamp-h.in: Likewise.
2186         * DISTLIST: Likewise.
2187         * conf/common.mk: Likewise.
2188         * conf/i386-coreboot.mk: Likewise.
2189         * conf/i386-efi.mk: Likewise.
2190         * conf/i386-ieee1275.mk: Likewise.
2191         * conf/i386.mk: Likewise.
2192         * conf/i386-pc.mk: Likewise.
2193         * conf/powerpc-ieee1275.mk: Likewise.
2194         * conf/sparc64-ieee1275.mk: Likewise.
2195         * conf/x86_64-efi.mk: Likewise.
2197         * INSTALL: Remove the sentence that Ruby and autoconf are only required if you
2198         develop on GRUB.
2200 2009-04-14  John Stanley  <jpsinthemix@verizon.net>
2201             David S. Miller  <davem@davemloft.net>
2203         * util/hostdisk.c (make_device_name): Fix buffer length
2204         calculations.
2206 2009-04-14  Felix Zielcke  <fzielcke@z-51.de>
2208         * util/hostdisk.c [__FreeBSD__ || __FreeBSD_kernel__]: Include
2209         <sys/param.h> and <sys/sysctl.h>.
2210         (open_device) [__FreeBSD__ || __FreeBSD_kernel_]: Use sysctlgetbyname()
2211         to add 0x10 to `kern.geom.debugflags' if it's not already set, before
2212         opening the device and reset them afterwards.
2214 2009-04-13  Pavel Roskin  <proski@gnu.org>
2216         * conf/common.rmk (grub_fstest_SOURCES): Add normal/datetime.c.
2217         Reported by John Stanley <jpsinthemix@verizon.net>
2219 2009-04-13  Robert Millan  <rmh@aybabtu.com>
2221         * util/grub.d/10_freebsd.in: Detect Debian GNU/kFreeBSD and use
2222         that name for menuentries when appropriate.
2224 2009-04-13  Felix Zielcke  <fzielcke@z-51.de>
2226         * util/grub.d/10_freebsd.in: Add a missing `fi'.
2228 2009-04-13  Robert Millan  <rmh@aybabtu.com>
2230         * loader/i386/linux.c (grub_cmd_linux): Don't pass `vga=ask' parameter
2231         to Linux, simply abort telling the user it's no longer supported.
2233 2009-04-13  Felix Zielcke  <fzielcke@z-51.de>
2235         * util/grub.d/10_freebsd.in: Don't exit if /boot/devices.hints
2236         doesn't exist.  Check also for /boot/kernel/kernel.gz.  Print
2237         `freebsd_loadenv' only when devices.hints exist.
2239 2009-04-13  Pavel Roskin  <proski@gnu.org>
2241         * term/usb_keyboard.c (grub_usb_keyboard_getkey): Warning fixes.
2243 2009-04-13  Felix Zielcke  <fzielcke@z-51.de>
2245         * util/i386/pc/grub-install.in (install_drive): Remove the BSD
2246         partition number.
2247         (grub_drive): Likewise.
2249 2009-04-13  David S. Miller  <davem@davemloft.net>
2251         * kern/sparc64/ieee1275/ieee1275.c: New file.
2252         * include/grub/sparc64/ieee1275/ieee1275.h (IEEE1275_MAP_WRITE,
2253         IEEE1275_MAP_READ, IEEE1275_MAP_EXEC, IEEE1275_MAP_LOCKED,
2254         IEEE1275_MAP_CACHED, IEEE1275_MAP_SE, IEEE1275_MAP_GLOBAL,
2255         IEEE1275_MAP_IE, IEEE1275_MAP_DEFAULT): Define.
2256         (grub_ieee1275_map_physical, grub_ieee1275_claim_vaddr,
2257         grub_ieee1275_alloc_physmem): Declare new exported functions.
2259         * include/grub/sparc64/ieee1275/loader.h: New file.
2260         * include/grub/sparc64/ieee1275/memory.h: Likewise.
2261         * include/grub/sparc64/kernel.h: Likewise.
2262         * loader/sparc64/ieee1275/linux.c: Likewise.
2264         * conf/common.rmk (grub_probe_SOURCES): Add Sun partition module.
2265         (grub_fstest_SOURCES): Likewise.
2267         * util/hostdisk.c (make_device_name): Do not make any assumptions
2268         about the length of drive names.
2270         * kern/dl.c (grub_dl_load_file): Close file immediately when
2271         we are done using it.
2273 2009-04-12  David S. Miller  <davem@davemloft.net>
2275         * kern/misc.c (grub_ltoa): Fix cast when handling negative
2276         values.  Noticed by Pavel Roskin.
2278         * configure.ac: Check for __bswapsi2 and__bswapdi2 using
2279         target compiler.
2281         * genmk.rb: Add more flexible image type specification, also
2282         pass --strip-unneeded to objcopy.
2283         * conf/i386-pc.rmk: Use *_FORMAT.
2284         * conf/i386-pc.mk: Rebuilt.
2286         * disk/ieee1275/ofdisk.c (struct ofdisk_hash_ent): New struct.
2287         (OFDISK_HASH_SZ): Define.
2288         (ofdisk_hash): New hash table.
2289         (ofdisk_hash_fn, ofdisk_hash_find, ofdisk_hash_add): New functions.
2290         (grub_ofdisk_open): Use ofdisk_hash_ent address as disk->id
2291         instead of device phandle which is not unique.
2293         * kern/sparc64/ieee1275/init.c: Delete, replace with...
2294         * kern/sparc64/ieee1275/crt0.S: assembler implementation.
2295         * include/grub/sparc64/ieee1275/kernel.h: Declare grub_prefix[].
2296         (GRUB_MOD_ALIGN, GRUB_MOD_GAP, GRUB_KERNEL_MACHINE_TOTAL_MODULE_SIZE,
2297         GRUB_KERNEL_MACHINE_KERNEL_IMAGE_SIZE,
2298         GRUB_KERNEL_MACHINE_COMPRESSED_SIZE, GRUB_KERNEL_MACHINE_PREFIX,
2299         GRUB_KERNEL_MACHINE_DATA_END): Define.
2300         (grub_kernel_image_size, grub_total_module_size): Declare.
2302 2009-04-12  Pavel Roskin  <proski@gnu.org>
2304          * configure.ac: Change the logic when we check for target tools.
2305          Do it when the target is specified and it's different from the
2306          specified value of the host.
2308 2009-04-11  Felix Zielcke  <fzielcke@z-51.de>
2310         * util/hostdisk.c [__FreeBSD_kernel__]: Include sys/disk.h.
2311         (grub_util_biosdisk_open) [__FreeBSD_kernel__]: Add support for
2312         GNU/kFreeBSD. Check if a device is a character device. Use
2313         DIOCGMEDIASIZE to get the size.
2314         (convert_system_partition_to_system_disk) [__FreeBSD_kernel__]: Add
2315         support for GNU/kFreeBSD.
2316         (grub_util_biosdisk_get_grub_dev) [__FreeBSD_kernel__]: Check if OS_DEV
2317         is a character device instead of a block device. Add support for
2318         FreeBSD device names.
2320         * util/getroot.c (find_root_device) [__FreeBSD_kernel__]: Check if ENT
2321         is a character device instead of a block device.
2323         * util/grub-probe.c (probe) [__FreeBSD_kernel__]: Check if DEVICE_NAME
2324         is a character device instead of a block device.
2326 2009-04-11  Andrey Shuvikov  <mr_hyro@yahoo.com>
2328         * util/hostdisk.c [__FreeBSD__]: Include sys/disk.h.
2329         (grub_util_biosdisk_open) [__FreeBSD__]: Add support for
2330         FreeBSD. Check if a device is a character device. Use
2331         DIOCGMEDIASIZE to get the size.
2332         (convert_system_partition_to_system_disk) [__FreeBSD__]: Add
2333         support for FreeBSD.
2334         (grub_util_biosdisk_get_grub_dev) [__FreeBSD__]: Check if OS_DEV
2335         is a character device instead of a block device. Add support for
2336         FreeBSD device names.
2338         * util/getroot.c (find_root_device) [__FreeBSD__]: Check if ENT is
2339         a character device instead of a block device.
2340         (grub_util_check_char_device): New function.
2342         * util/grub-probe.c (probe) [__FreeBSD__]: Check if DEVICE_NAME is
2343         a character device instead of a block device.
2345         * include/grub/util/getroot.h (grub_util_check_char_device): New
2346         prototype.
2348 2009-04-11  David S. Miller  <davem@davemloft.net>
2350         * conf/sparc64-ieee1275.rmk (kernel_img_LDFLAGS): Link with
2351         static libgcc.
2352         * configure.ac: Check for __bswapsi2 and __bswapdi2 presence.
2353         * include/grub/sparc64/libgcc.h (__bswapsi2): Export libgcc
2354         function, if present.
2355         (__bswapdi2): Likewise.
2357         * include/grub/sparc64/ieee1275/boot.h: New file.
2358         * boot/sparc64/ieee1275/boot.S: Likewise.
2359         * boot/sparc64/ieee1275/diskboot.S: Likewise.
2361         * kern/misc.c (grub_ltoa): New function.
2362         (grub_vsprintf): Use it to format 'long' integers.
2364 2009-04-10  David S. Miller  <davem@davemloft.net>
2366         * disk/ieee1275/nand.c (grub_nand_open): All ieee1275 call arg
2367         slots are of type grub_ieee1275_cell_t.
2368         (grub_nand_read): Likewise.
2369         * kern/ieee1275/ieee1275.c (IEEE1275_PHANDLE_INVALID,
2370         IEEE1275_IHANDLE_INVALID): Use grub_ieee1275_cell_t since these
2371         macros are used to compare values in arg/ret block of the call.
2372         (grub_ieee1275_finddevice, grub_ieee1275_get_property,
2373         grub_ieee1275_next_property, grub_ieee1275_get_property_length,
2374         grub_ieee1275_instance_to_package, grub_ieee1275_package_to_path,
2375         grub_ieee1275_instance_to_path, grub_ieee1275_write,
2376         grub_ieee1275_read, grub_ieee1275_seek, grub_ieee1275_peer,
2377         grub_ieee1275_child, grub_ieee1275_parent, grub_ieee1275_open,
2378         grub_ieee1275_close, grub_ieee1275_set_property,
2379         grub_ieee1275_set_color): All ieee1275 call arg slots are of type
2380         grub_ieee1275_cell_t.
2381         * kern/ieee1275/openfw.c (grub_map): Likewise.
2382         * include/grub/ieee1275/ieee1275.h (grub_ieee1275_ihandle_t,
2383         grub_ieee1275_phandle_t): Define as grub_unit32_t type.
2385         * kern/ieee1275/init.c (grub_machine_init): Make 'actual' grub_ssize_t.
2386         * kern/ieee1275/openfw.c (grub_children_iterate): Likewise.
2387         (grub_devalias_iterate): Likewise.
2389 2009-04-10  Vladimir Serbinenko  <phcoder@gmail.com>
2391         UFS improvements
2393         * fs/ufs.c (INODE_NBLOCKS): new definition
2394         (struct grub_ufs_dirent): added fields for non-BSD dirents
2395         (grub_ufs_get_file_block): fixed double indirect handling
2396         (grub_ufs_lookup_symlink): use more robust way to determine whether
2397         symlink is inline
2398         (grub_ufs_find_file): support for non-BSD dirents
2399         (grub_ufs_dir): support for non-BSD dirents
2401 2009-04-10  Bean  <bean123ch@gnail.com>
2403         * include/grub/efi/api.h (grub_efi_configuration_table): Add packed
2404         attribute, otherwise the size would be wrong for i386 platform.
2406         * include/grub/pci.h (grub_pci_read_word): New inline function.
2407         (grub_pci_read_byte): Likewise.
2408         (grub_pci_write): Likewise.
2409         (grub_pci_write_word): Likewise.
2410         (grub_pci_write_byte): Likewise.
2412         * include/grub/pci.h (grub_pci_iteratefunc_t): Add NESTED_FUNC_ATTR.
2414         * loader/i386/efi/linux.c (fake_bios_data): Moved to loadbios module.
2415         (find_framebuf): Scan pci to locate the frame buffer address.
2417         * commands/efi/fixvideo.c: New file.
2419         * commands/efi/loadbios.c: Likewise.
2421         * commands/memrw.c: Likewise.
2423         * util/grub-dumpbios.in: Likewise.
2425         * conf/common.rmk (grub-dumpbios): New utility.
2426         (pkglib_MODULES): New module memrw.mod.
2427         (memrw_mod_SOURCE): New macro.
2428         (memrw_mod_CFLAGS): Likewise.
2429         (memrw_mod_LDFLAGS): Likewise.
2431         * conf/i386-efi.rmk (pkglib_MODULES): New module loadbios.mod and
2432         fixvideo.mod.
2433         (loadbios_mod_SOURCE): New macro.
2434         (loadbios_mod_CFLAGS): Likewise.
2435         (loadbios_mod_LDFLAGS): Likewise.
2436         (fixvideo_mod_SOURCE): Likewise.
2437         (fixvideo_mod_CFLAGS): Likewise.
2438         (fixvideo_mod_LDFLAGS): Likewise.
2440         * conf/x86_64.rmk (pkglib_MODULES): New module loadbios.mod and
2441         fixvideo.mod.
2442         (loadbios_mod_SOURCE): New macro.
2443         (loadbios_mod_CFLAGS): Likewise.
2444         (loadbios_mod_LDFLAGS): Likewise.
2445         (fixvideo_mod_SOURCE): Likewise.
2446         (fixvideo_mod_CFLAGS): Likewise.
2447         (fixvideo_mod_LDFLAGS): Likewise.
2449 2009-04-08  Felix Zielcke  <fzielcke@z-51.de>
2451         * disk/lvm.c (grub_lvm_scan_device): Add a missing NULL check.
2453 2009-04-07  David S. Miller  <davem@davemloft.net>
2455         * kern/sparc64/dl.c (grub_arch_dl_relocate_symbols): Add
2456         support for R_SPARC_OLO10 relocations.  Fix compile warning for
2457         R_SPARC_WDISP30 case.
2458         * kern/sparc64/cache.S: Fix grub_arch_sync_caches implementation.
2460 2009-04-06  Pavel Roskin  <proski@gnu.org>
2462         * include/grub/misc.h (ARRAY_SIZE): New macro.
2463         * include/grub/i386/linux.h (GRUB_LINUX_VID_MODE_VESA_START):
2464         New macro.
2465         * loader/i386/linux.c (allocate_pages): Use free_pages().
2466         (grub_linux_unload): Don't use free_pages().
2467         (grub_linux_boot): Prevent accessing linux_vesafb_modes with a
2468         wrong index.  Treat all other modes as text modes.
2469         (grub_cmd_linux): Initialize vid_mode unconditionally to
2470         GRUB_LINUX_VID_MODE_NORMAL.  Recognize and support "vga=ask".
2472         * commands/help.c (print_command_help): Use cmd->prio, not
2473         cmd->flags to check for GRUB_PRIO_LIST_FLAG_ACTIVE.
2475 2009-04-06  Vladimir Serbinenko  <phcoder@gmail.com>
2477         Parttool
2479         * parttool/pcpart.c: new file
2480         * commands/parttool.c: likewise
2481         * conf/common.rmk (pkglib_MODULES): Added parttool.mod and pcpart.mod
2482         (parttool_mod_SOURCES): new variable
2483         (parttool_mod_CFLAGS): likewise
2484         (parttool_mod_LDFLAGS): likewise
2485         (pcpart_mod_SOURCES): likewise
2486         (pcpart_mod_CFLAGS): likewise
2487         (pcpart_mod_LDFLAGS): likewise
2488         * conf/i386-coreboot.rmk (grub_emu_SOURCES): added commands/parttool.c
2489         and parttool/pcpart.c
2490         * conf/i386-efi.rmk: likewise
2491         * conf/i386-ieee1275.rmk: likewise
2492         * conf/i386-pc.rmk: likewise
2493         * conf/powerpc-ieee1275.rmk: likewise
2494         * conf/sparc64-ieee1275.rmk: likewise
2495         * conf/x86_64-ieee1275.rmk: likewise
2497 2009-04-05  Vladimir Serbinenko  <phcoder@gmail.com>
2499         Support for mtime and further expandability of dir command
2501         * include/grub/lib/datetime.h: moved to ...
2502         * include/grub/datetime.h: ... moved here and added
2503         declaration of grub_unixtime2datetime. All users updated
2504         * include/grub/fs.h: new syntax for dir and mtime functions in
2505         struct grub_fs
2506         * include/grub/fshelp.h: new declarations of GRUB_FSHELP_TYPE_MASK
2507         and GRUB_FSHELP_FLAGS_MASK
2508         * commands/ls.c (grub_ls_list_files): Write mtime in long format
2509         * fs/ext2.c (grub_ext2_dir): use new dir syntax and supply mtime
2510         (grub_ext2_mtime): new function
2511         * fs/hfsplus.c (grub_hfsplus_dir): use new dir syntax and supply mtime
2512         (grub_hfsplus_mtime): new function
2513         * fs/ufs.c (GRUB_UFS_ATTR_TYPE): new definition
2514         (GRUB_UFS_ATTR_FILE): likewise
2515         (GRUB_UFS_ATTR_LNK): likewise
2516         (struct grub_ufs_sblock): new fields mtime
2517         (grub_ufs_read_inode): new parameter to read inode to a separate buffer
2518         all users updated
2519         (grub_ufs_dir): mtime support
2520         (grub_ufs_mtime): new function
2521         * fs/affs.c (grub_affs_dir): use new dir syntax
2522         * fs/afs.c (grub_afs_dir): likewise
2523         * fs/cpio.c (grub_cpio_dir): likewise
2524         * fs/fat.c (grub_fat_find_dir): likewise
2525         * fs/hfs.c (grub_hfs_dir): likewise
2526         * fs/iso9660.c (grub_iso9660_dir): likewise
2527         * fs/jfs.c (grub_jfs_dir): likewise
2528         * fs/minix.c (grub_minix_dir): likewise
2529         * fs/ntfs.c (grub_ntfs_dir): likewise
2530         * fs/reiserfs.c (grub_reiserfs_dir): likewise
2531         * fs/sfs.c (grub_sfs_dir): likewise
2532         * fs/xfs.c (grub_xfs_dir): likewise
2533         * util/hostfs.c (grub_hostfs_dir): likewise
2534         * lib/datetime.c: moved to ...
2535         * normal/datetime.c: ... moved here
2536         (grub_unixtime2datetime): new function
2537         * kern/rescue.c (grub_rescue_print_files): use new dir syntax
2538         * normal/completion.c (iterate_dir): use new dir syntax
2539         * normal/misc.c (grub_normal_print_device_info): tell the
2540         last modification time of a volume
2541         * kern/fs.c (grub_fs_probe): updated dummy function to use new syntax
2542         * conf/common.rmk: added lib/datetime.c to ls.mod
2543         * conf/i386-coreboot.rmk (grub_emu_SOURCES): add normal/datetime.c
2544         (normal_mod_SOURCES): likewise
2545         (datetime_mod_SOURCES): Removed lib/datetime.c
2546         * conf/i386-efi.rmk: likewise
2547         * conf/i386-ieee1275.rmk: likewise
2548         * conf/i386-pc.rmk: likewise
2549         * conf/powerpc-ieee1275.rmk: likewise
2550         * conf/sparc64-ieee1275.rmk: likewise
2551         * conf/x86_64-efi.rmk: likewise
2553 2009-04-05  Vladimir Serbinenko  <phcoder@gmail.com>
2555         Trim trailing spaces in FAT label and support mtools-like labels
2557         * fs/fat.c (grub_fat_iterate_dir): New function based
2558         on grub_fat_find_dir
2559         (grub_fat_find_dir): use grub_fat_iterate_dir
2560         (grub_fat_label): likewise
2562 2009-04-04  Vladimir Serbinenko  <phcoder@gmail.com>
2564         * conf/powerpc-ieee1275.rmk (kernel_elf_HEADERS): add list.h
2565         and command.h
2566         remove extraneous kernel_elf_HEADERS
2568 2009-04-04  Bean  <bean123ch@gnail.com>
2570         * include/grub/util/misc.h: Add dummy function fsync for mingw.
2572         * util/misc.c: Likewise.
2574 2009-04-04  Yoshinori K. Okuji  <okuji@enbug.org>
2576         * loader/i386/efi/linux.c (fake_bios_data): Use grub_dprintf
2577         instead of grub_printf.
2579 2009-04-03  Robert Millan  <rmh@aybabtu.com>
2581         * loader/i386/linux.c (grub_linux_setup_video): Fill
2582         `params->{red,green,blue,reserved}_{mask_size,field_pos}' with
2583         values from `mode info' structure instead of hardcoded
2584         values.
2586 2009-04-01  Pavel Roskin  <proski@gnu.org>
2588         * Makefile.in: Remove all references to MODULE_LDFLAGS, it's
2589         unused now.
2590         * genmk.rb: Likewise.
2591         * configure.ac: Likewise.
2593 2009-04-01  Manoel Abranches  <mrabran@linux.vnet.ibm.com>
2595         * aclocal.m4: Move --build-id=none from MODULE_LDFLAGS to
2596         TARGET_LDFLAGS.  This corrects a problem with grub-mkelfimage.
2598 2009-04-01  David S. Miller  <davem@davemloft.net>
2600         * normal/sparc64/setjmp.S: Fix setjmp implementation.
2601         * include/grub/sparc64/setjmp.h (grub_jmp_buf): Update.
2602         (grub_setjmp): Mark with 'returns_twice' attribute.
2603         * include/grub/i386/setjmp.h (grub_setjmp): Likewise
2604         * include/grub/powerpc/setjmp.h (grub_setjmp): Likewise.
2605         * include/grub/x86_64/setjmp.h (grub_setjmp): Likewise.
2607 2009-04-01  Robert Millan  <rmh@aybabtu.com>
2609         Reapply fix from 2008-07-28 which was accidentally reverted; also
2610         perform the same fix to a similar check in same function.
2612         * disk/raid.c (grub_raid_scan_device): Do not abort when two disks
2613         with the same number are found, just use issue a warning with
2614         grub_dprintf(), as this error has been reported to be non-fatal.
2616 2009-03-31  Pavel Roskin  <proski@gnu.org>
2618         * aclocal.m4 (grub_I386_CHECK_REGPARM_BUG): Provide safe default
2619         for cross-compilation.
2621 2009-03-30  Robert Millan  <rmh@aybabtu.com>
2623         Fix i386-ieee1275 build.
2625         * include/grub/i386/ieee1275/loader.h (grub_multiboot2_real_boot):
2626         Remove declaration.
2628 2009-03-30  Pavel Roskin  <proski@gnu.org>
2630         * fs/hfs.c (grub_hfs_strncasecmp): Integrate into ...
2631         (grub_hfs_cmp_catkeys): ... this.  Don't assume strings to be
2632         zero-terminated, rely only on the strlen value.  Fix comparison
2633         of strings differing in length.
2635 2009-03-30  Robert Millan  <rmh@aybabtu.com>
2637         * loader/i386/linux.c (grub_cmd_linux): Check for zImage before
2638         checking for abi version.  Improve error messages on BIOS to notify
2639         user about `linux16' command.
2641 2009-03-29  Vladimir Serbinenko  <phcoder@gmail.com>
2643         Leak fixes
2645         * kern/disk.c (grub_disk_cache_store): Invalidate previous cache
2646         in case of collision
2647         * disk/scsi.c (grub_scsi_open): free scsi in case of error
2649 2009-03-29  Robert Millan  <rmh@aybabtu.com>
2651         * loader/i386/linux.c (grub_cmd_linux): Parse "vga=" parameter and
2652         set `vid_mode' accordingly.
2653         (grub_linux_boot): Process `vid_mode' and set video mode.
2655 2009-03-29  Robert Millan  <rmh@aybabtu.com>
2657         * util/grub.d/10_linux.in (linux_entry): New function.
2658         Factorize generation of Linux boot entries.
2660 2009-03-29  Yoshinori K. Okuji  <okuji@enbug.org>
2662         Make the format of Environment Block plain text. The boot loader
2663         part is not tested well yet.
2665         * util/grub-editenv.c (DEFAULT_ENVBLK_SIZE): New macro.
2666         (buffer): Removed.
2667         (envblk): Likewise.
2668         (usage): Remove "info" and "clear". Add "unset". Update the
2669         description of "set", as this does not delete variables any
2670         longer.
2671         (create_envblk_file): Complete rewrite.
2672         (open_envblk_file): Likewise.
2673         (cmd_info): Removed.
2674         (cmd_list): Likewise.
2675         (cmd_set): Likewise.
2676         (cmd_clear): Likewise.
2677         (list_variables): New function.
2678         (write_envblk): Likewise.
2679         (set_variables): Likewise.
2680         (unset_variables): Likewise.
2681         (main): Complete rewrite.
2683         * commands/loadenv.c (buffer): Removed.
2684         (envblk): Likewise.
2685         (open_envblk_file): New function.
2686         (read_envblk_file): Complete rewrite.
2687         (grub_cmd_load_env): Likewise.
2688         (grub_cmd_list_env): Likewise.
2689         (struct blocklist): New struct.
2690         (free_blocklists): New function.
2691         (check_blocklists): Likewise.
2692         (write_blocklists): Likewise.
2693         (grub_cmd_save_env): Complete rewrite.
2695         * include/grub/lib/envblk.h (GRUB_ENVBLK_SIGNATURE): Replaced with
2696         a plain text signature.
2697         (GRUB_ENVBLK_MAXLEN): Removed.
2698         (struct grub_envblk): Complete rewrite.
2699         (grub_envblk_find): Removed.
2700         (grub_envblk_insert): Likewise.
2701         (grub_envblk_open): New prototype.
2702         (grub_envblk_set): Likewise.
2703         (grub_envblk_delete): Put const to VALUE.
2704         (grub_envblk_iterate): Put const to NAME and VALUE.
2705         (grub_envblk_close): New prototype.
2706         (grub_envblk_buffer): New inline function.
2707         (grub_envblk_size): Likewise.
2709         * lib/envblk.c: Include grub/mm.h.
2710         (grub_env_find): Removed.
2711         (grub_envblk_open): New function.
2712         (grub_envblk_close): Likewise.
2713         (escaped_value_len): Likewise.
2714         (find_next_line): Likewise.
2715         (grub_envblk_insert): Removed.
2716         (grub_envblk_set): New function.
2717         (grub_envblk_delete): Complete rewrite.
2718         (grub_envblk_iterate): Likewise.
2720 2009-03-28  Robert Millan  <rmh@aybabtu.com>
2722         * conf/i386-pc.rmk (pkglib_MODULES): Add `linux16.mod'.
2723         (linux16_mod_SOURCES, linux16_mod_CFLAGS, linux16_mod_LDFLAGS): New
2724         variables.  Use 16-bit loader.
2725         (linux_mod_SOURCES, linux_mod_CFLAGS, linux_mod_LDFLAGS): Use 32-bit
2726         loader.
2727         * kern/i386/loader.S (grub_linux_boot): Rename to ...
2728         (grub_linux16_boot): ... this.  Update all users.
2729         * loader/i386/linux.c (grub_linux32_boot): Rename to ...
2730         (grub_linux_boot): ... this.  Update all users.
2732         * loader/i386/pc/linux.c (GRUB_MOD_INIT(linux)): Rename to ...
2733         (GRUB_MOD_INIT(linux16)): ... this.  Rename `linux' and `initrd'
2734         commands to `linux16' and `initrd16'.
2735         (GRUB_MOD_FINI(linux)): Rename to ...
2736         (GRUB_MOD_FINI(linux16)): ... this.
2738 2009-03-24  Pavel Roskin  <proski@gnu.org>
2740         * genmk.rb: Define ASM_FILE for *.S files for *.lst generation,
2741         not just for compilation.
2743 2009-03-22  Vladimir Serbinenko  <phcoder@gmail.com>
2745         Move multiboot helper out of kernel
2747         * conf/i386-pc.rmk (multiboot_mod_SOURCES): Add
2748         `loader/i386/multiboot_helper.S'.
2749         * conf/i386-coreboot.rmk: Likewise
2750         * conf/i386-ieee1275.rmk: Likewise
2752         * kern/i386/loader.S: Move multiboot helpers from here...
2753         * loader/i386/multiboot_helper.S: ...moved here
2754         * include/grub/i386/loader.h: Move declarations of multiboot
2755         helpers from here...
2756         * include/grub/i386/multiboot.h: ...moved here
2757         * loader/i386/multiboot.c: Added include of grub/cpu/multiboot.h
2759 2009-03-22  Yoshinori K. Okuji  <okuji@enbug.org>
2761         * kern/env.c (grub_env_context_open): Added an argument to specify
2762         whether a new context inherits exported variables from current
2763         one. This is useful when making a sandbox to interpret a config
2764         file.
2765         All callers updated.
2767         * include/grub/env.h (grub_env_context_open): Updated the prototype.
2769 2009-03-22  Yoshinori K. Okuji  <okuji@enbug.org>
2771         * kern/env.c (grub_env_context_close): Fix memory leaks.
2773 2009-03-22  Yoshinori K. Okuji  <okuji@enbug.org>
2775         * normal/main.c (grub_normal_execute): Added an argument
2776         BATCH to specify if an interactive interface should be provided
2777         after reading a config file.
2778         All callers updated.
2779         (read_command_list): Prevent being executed twice.
2780         (read_fs_list): Likewise.
2782         * include/grub/normal.h (grub_normal_execute): Updated the
2783         prototype.
2785 2009-03-22  Pavel Roskin  <proski@gno.org>
2787         * kern/powerpc/ieee1275/startup.S: Replace EXT_C(start) with
2788         _start.
2789         * kern/i386/pc/startup.S: Likewise.
2790         * kern/i386/efi/startup.S: Likewise.
2791         * kern/i386/ieee1275/startup.S: Likewise.
2792         * kern/i386/coreboot/startup.S: Likewise.
2793         * kern/x86_64/efi/startup.S: Likewise.
2795         * aclocal.m4 (grub_CHECK_START_SYMBOL): Remove.
2796         * configure.ac: Don't call grub_CHECK_START_SYMBOL.
2797         * kern/i386/pc/startup.S: Use _start instead of START_SYMBOL.
2799 2009-03-21  Vladimir Serbinenko  <phcoder@gmail.com>
2801         Bugfixes in multiboot for bugs uncovered by solaris kernel.
2803         * loader/i386/multiboot_elfxx.c (grub_multiboot_load_elf): Corrected
2804         limit detection.
2805         Use vaddr of correct segment for entry_point.
2807 2009-03-21  Bean  <bean123ch@gmail.com>
2809         * commands/blocklist.c: Add include file <grub/command.h>, remove
2810         <grub/normal.h> and <grub/arg.h>.
2811         (grub_cmd_blocklist): Use the new command interface.
2812         (GRUB_MOD_INIT): Likewise.
2813         (GRUB_MOD_FINI): Likewise.
2814         * commands/boot.c: Likewise.
2815         * commands/cat.c: Likewise.
2816         * commands/cmp.c: Likewise.
2817         * commands/configfile.c: Likewise.
2818         * commands/crc.c: Likewise.
2819         * commands/echo.c: Likewise.
2820         * commands/halt.c: Likewise.
2821         * commands/handler.c: Likewise.
2822         * commands/hdparm.c: Likewise.
2823         * commands/help.c: Likewise.
2824         * commands/hexdump.c: Likewise.
2825         * commands/loadenv.c: Likewise.
2826         * commands/ls.c: Likewise.
2827         * commands/lsmmap.c: Likewise.
2828         * commands/lspci.c: Likewise.
2829         * commands/loadenv.c: Likewise.
2830         * commands/read.c: Likewise.
2831         * commands/reboot.c: Likewise.
2832         * commands/search.c: Likewise.
2833         * commands/sleep.c: Likewise.
2834         * commands/test.c: Likewise.
2835         * commands/usbtest.c: Likewise.
2836         * commands/videotest.c: Likewise.
2837         * commands/i386/cpuid.c: Likewise.
2838         * commands/i386/pc/halt.c: Likewise.
2839         * commands/i386/pc/play.c: Likewise.
2840         * commands/i386/pc/pxecmd.c: Likewise.
2841         * commands/i386/pc/vbeinfo.c: Likewise.
2842         * commands/i386/pc/vbetest.c: Likewise.
2843         * commands/ieee1275/suspend.c: Likewise.
2844         * disk/loopback.c: Likewise.
2845         * font/font_cmd.c: Likewise.
2846         * hello/hello.c: Likewise.
2847         * loader/efi/appleloader.c: Likewise.
2848         * loader/efi/chainloader.c: Likewise.
2849         * loader/i386/bsd.c: Likewise.
2850         * loader/i386/efi/linux.c: Likewise.
2851         * loader/i386/ieee1275/linux.c: Likewise.
2852         * loader/i386/linux.c: Likewise.
2853         * loader/i386/pc/chainloader.c: Likewise.
2854         * loader/i386/pc/linux.c: Likewise.
2855         * loader/powerpc/ieee1275/linux.c: Likewise.
2856         * loader/multiboot_loader.c: Likewise.
2857         * term/gfxterm.c: Likewise.
2858         * term/i386/pc/serial.c: Likewise.
2859         * term/terminfo.c: Likewise.
2861         * term/i386/pc/vesafb.c: Removed <grub/arg.h>.
2862         * term/i386/pc/vga.c: Likewise.
2863         * video/readers/jpeg.c: Likewise.
2864         * video/readers/png.c: Likewise.
2865         * video/readers/tga.c: Likewise.
2867         * util/grub-fstest (cmd_loopback): Removed.
2868         (cmd_blocklist): Likewise.
2869         (cmd_ls): Likewise.
2870         (grub_register_command): Likewise.
2871         (grub_unregister_command): Likewise.
2872         (execute_command): Use grub_command_find to locate command and execute
2873         it.
2875         * include/grub/efi/chainloader.h: Removed.
2876         * loader/efi/chainloader_normal.c: Likewise.
2877         * loader/i386/bsd_normal.c: Likewise.
2878         * loader/i386/pc/chainloader_normal.c: Likewise.
2879         * loader/i386/pc/multiboot_normal.c: Likewise.
2880         * loader/linux_normal.c: Likewise.
2881         * loader/multiboot_loader_normal.c: Likewise.
2882         * loader/powerpc/ieee1275/linux_normal.c: Likewise.
2884         * gencmdlist.sh: Scan new registration command grub_register_extcmd
2885         and grub_register_command_p1.
2887         * conf/common.rmk (grub_fstest_SOURCES): Add kern/list.c,
2888         kern/command.c, lib/arg.c and commands/extcmd.c.
2889         (pkglib_MODULES): Remove boot.mod, and minicmd.mod and extcmd.mod.
2890         (minicmd_mod_SOURCES): New variable.
2891         (minicmd_mod_CFLAGS): Likewise.
2892         (minicmd_mod_LDFLAGS): Likewise.
2893         (extcmd_mod_SOURCES): Likewise.
2894         (extcmd_mod_CFLAGS): Likewise.
2895         (extcmd_mod_LDFLAGS): Likewise.
2896         (boot_mod_SOURCES): Removed.
2897         (boot_mod_CFLAGS): Likewise.
2898         (boot_mod_LDFLAGS): Likewise.
2900         * conf/i386-pc.rmk (kernel_img_SOURCES): Add kern/command.c and
2901         kern/corecmd.c.
2902         (kernel_img_HEADERS): Add command.h.
2903         (grub_emu_SOURCES): Remove commands/boot.c and normal/arg.c, add
2904         commands/minicmd.c, kern/command.c, kern/corecmd.c, commands/extcmd.c
2905         and lib/arg.c.
2906         (pkglib_MODULES): Change _linux.mod, _chain.mod, _bsd.mod and
2907         _multiboot.mod as linux.mod, chain.mod, bsd.mod and multiboot.mod,
2908         remove the corresponding normal mode command.
2909         (normal_mod_SOURCES): Remove normal/arg.c.
2910         * conf/i386-coreboot.rmk: Likewise.
2911         * conf/i386-efi.rmk: Likewise.
2912         * conf/i386-ieee1275.rmk: Likewise.
2913         * conf/powerpc-ieee1275.rmk: Likewise.
2914         * conf/x86_64-efi.rmk: Likewise.
2916         * include/grub/arg.h: Move from here ...
2917         * include/grub/lib/arg.h: ... to here.
2919         * normal/arg.c: Move from here ...
2920         * lib/arg.c: ... to here.
2922         * commands/extcmd.c: New file.
2923         * commands/minicmd.c: Likewise.
2924         * include/grub/command.h: Likewise.
2925         * include/grub/extcmd.h: Likewise.
2926         * kern/command.c: Likewise.
2927         * kern/corecmd.c: Likewise.
2929         * kern/list.c (grub_list_iterate): Return int instead of void.
2930         (grub_list_insert): New function.
2931         (grub_prio_list_insert): Likewise.
2933         * kern/rescue.c (grub_rescue_command): Removed.
2934         (grub_rescue_command_list): Likewise.
2935         (grub_rescue_register_command): Likewise.
2936         (grub_rescue_unregister_command): Likewise.
2937         (grub_rescue_cmd_boot): Move to minicmd.c
2938         (grub_rescue_cmd_help): Likewise.
2939         (grub_rescue_cmd_info): Likewise.
2940         (grub_rescue_cmd_boot): Likewise.
2941         (grub_rescue_cmd_testload): Likewise.
2942         (grub_rescue_cmd_dump): Likewise.
2943         (grub_rescue_cmd_rmmod): Likewise.
2944         (grub_rescue_cmd_lsmod): Likewise.
2945         (grub_rescue_cmd_exit): Likewise.
2946         (grub_rescue_print_devices): Moved to corecmd.c.
2947         (grub_rescue_print_files): Likewise.
2948         (grub_rescue_cmd_ls): Likewise.
2949         (grub_rescue_cmd_insmod): Likewise.
2950         (grub_rescue_cmd_set): Likewise.
2951         (grub_rescue_cmd_unset): Likewise.
2952         (attempt_normal_mode): Use grub_command_find to get normal module.
2953         (grub_enter_rescue_mode): Use grub_register_core_commands to register
2954         commands, remove grub_rescue_register_command calls.
2956         * normal/command.c (grub_register_command): Removed.
2957         (grub_unregister_command): Likewise.
2958         (grub_command_find): Likewise.
2959         (grub_iterate_commands): Likewise.
2960         (rescue_command): Likewise.
2961         (export_command): Moved to corecmd.c.
2962         (set_command): Removed.
2963         (unset_command): Likewise.
2964         (insmod_command): Likewise.
2965         (rmmod_command): Likewise.
2966         (lsmod_command): Likewise.
2967         (grub_command_init): Likewise.
2969         * normal/completion.c (iterate_command): Use cmd->prio to check for
2970         active command.
2971         (complete_arguments): Use grub_extcmd_t structure to find options.
2972         (grub_normal_do_completion): Change function grub_iterate_commands to
2973         grub_command_iterate.
2975         * normal/execute.c (grub_script_execute_cmd): No need to parse
2976         argument here.
2978         * normal/main.c (grub_dyncmd_dispatcher): New function.
2979         (read_command_list): Register unload commands as dyncmd.
2980         (grub_cmd_normal): Use new command interface, register rescue,
2981         unregister normal at entry, register normal, unregister rescue at exit.
2983         * include/grub/list.h (grub_list_test_t): New type.
2984         (grub_list_iterate): Return int instead of void.
2985         (grub_list_insert): New function.
2986         (GRUB_AS_NAMED_LIST_P): New macro.
2987         (GRUB_AS_PRIO_LIST): Likewise.
2988         (GRUB_AS_PRIO_LIST_P): Likewise.
2989         (GRUB_PRIO_LIST_PRIO_MASK): New constant.
2990         (GRUB_PRIO_LIST_FLAG_ACTIVE): Likewise.
2991         (grub_prio_list): New structure.
2992         (grub_prio_list_insert): New function.
2993         (grub_prio_list_remove): New inline function.
2995         * include/grub/normal.h: Remove <grub/arg.h>, add <grub/command.h>.
2996         (GRUB_COMMAND_FLAG_CMDLINE): Moved to command.h.
2997         (GRUB_COMMAND_FLAG_MENU): Likewise.
2998         (GRUB_COMMAND_FLAG_BOTH): Likewise.
2999         (GRUB_COMMAND_FLAG_TITLE): Likewise.
3000         (GRUB_COMMAND_FLAG_NO_ECHO): Likewise.
3001         (GRUB_COMMAND_FLAG_NO_ARG_PARSE): Removed.
3002         (GRUB_COMMAND_FLAG_NOT_LOADED): Likewise.
3003         (grub_command): Likewise.
3004         (grub_register_command): Likewise.
3005         (grub_command_find): Likewise.
3006         (grub_iterate_commands): Likewise.
3007         (grub_command_init): Likewise.
3008         (grub_arg_parse): Likewise.
3009         (grub_arg_show_help): Likewise.
3011         * include/grub/rescue.h (grub_rescue_register_command): Removed.
3012         (grub_rescue_unregister_command): Likewise.
3014         * include/grub/i386/bsd.h: Remove grub_rescue_cmd_freebsd,
3015         grub_rescue_cmd_openbsd, grub_rescue_cmd_netbsd,
3016         grub_rescue_cmd_freebsd_loadenv and grub_rescue_cmd_freebsd_module.
3018         * include/grub/i386/efi/loader.h: Remove grub_rescue_cmd_linux and
3019         grub_rescue_cmd_initrd.
3020         * include/grub/i386/loader.h: Likewise.
3021         * include/grub/x86_64/loader.h: Likewise.
3023         * include/grub/i386/pc/chainloader.h: Remove grub_chainloader_cmd.
3025 2009-03-21  Bean  <bean123ch@gmail.com>
3027         * util/hostdisk.c (read_device_map): Use grub_util_get_disk_size
3028         instead of stat in mingw environment.
3030         * util/misc.c (grub_millisleep): Use Sleep in mingw environment.
3032         * aclocal.m4 (grub_CHECK_LINK_DIR): New function.
3034         * configure.ac: Use grub_CHECK_LINK_DIR to determine whether to use
3035         AC_CONFIG_LINKS.
3037 2009-03-21  Bean  <bean123ch@gmail.com>
3039         * fs/ext2.c (grub_ext2_mount): Change errno to GRUB_ERR_BAD_FS for
3040         out of range error.
3042 2009-03-18  Michel Dänzer  <michel@daenzer.net>
3044         * fs/ext2.c (grub_ext2_read_block): Take endianness into account when
3045         checking inode flags for EXT4_EXTENTS_FLAG.
3047 2009-03-18  Robert Millan  <rmh@aybabtu.com>
3049         * loader/i386/linux.c: Include `<grub/video.h>' and
3050         `<grub/i386/pc/vbe.h>'..
3051         (grub_linux_setup_video): New function.  Loosely based on the EFI one.
3052         (grub_linux32_boot): Attempt to configure video settings with
3053         grub_linux_setup_video().
3054         (grub_rescue_cmd_linux): Set noreturn=0 in grub_loader_set, in order
3055         to avoid grub_console_fini() which would step out of graphical mode
3056         unconditionally.
3058 2009-03-14  Robert Millan  <rmh@aybabtu.com>
3060         Fix build on powerpc.
3061         * conf/powerpc-ieee1275.rmk (kernel_elf_HEADERS): Add `handler.h'.
3063 2009-03-12  Vladimir Serbinenko  <phcoder@gmail.com>
3065         * term/gfxterm.c (GRUB_MOD_FINI(term_gfxterm)): Correct name of
3066         background image command.
3068 2009-03-12  Colin D Bennett  <colin@gibibit.com>
3070         * term/gfxterm.c (draw_cursor): Ensure character is redrawn.
3071         (grub_gfxterm_putchar): Extract pairs of identical calls to
3072         draw_cursor out of conditional blocks.
3074 2009-03-11  Pavel Roskin  <proski@gnu.org>
3076         * fs/hfs.c (grub_hfs_strncasecmp): New function.
3077         (grub_hfs_cmp_catkeys): Use HFS specific string comparison.
3079 2009-03-11  Robert Millan  <rmh@aybabtu.com>
3081         * loader/i386/multiboot_elfxx.c
3082         (CONCAT(grub_multiboot_load_elf, XX)): Do not reject ET_DYN files.
3084 2009-03-11  Felix Zielcke  <fzielcke@z-51.de>
3086         * conf/powerpc-ieee1275.rmk (kernel_elf_SOURCES): Add `kern/list.c' and
3087         `kern/handler.c'.
3089 2009-03-11  Robert Millan  <rmh@aybabtu.com>
3091         * loader/i386/multiboot.c (code_size): New variable.
3092         (grub_multiboot): Define offsets by adding to `code_size' rather
3093         than subtracting from `grub_multiboot_payload_size'.  Provide
3094         4-byte alignment to MBI and others by increasing
3095         `boot_loader_name_length' appropriately.
3097         * loader/i386/multiboot_elfxx.c
3098         (CONCAT(grub_multiboot_load_elf, XX)): Initialize `code_size'.
3100 2009-03-09  Felix Zielcke  <fzielcke@z-51.de>
3102         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Remove duplicated
3103         `fs/ext2.c'.
3105 2009-03-08  Robert Millan  <rmh@aybabtu.com>
3107         Make loader/i386/linux.c usable on i386-pc again.
3109         * kern/i386/pc/init.c (grub_machine_init): Disable addition of low
3110         memory to heap.
3111         * loader/i386/linux.c [GRUB_MACHINE_PCBIOS] (allocate_pages): Remove
3112         `#error' stanza.
3114 2009-03-07  Bean  <bean123ch@gmail.com>
3116         * loader/i386/efi/linux.c (grub_rescue_cmd_initrd): Fix a bug in initrd
3117         allocation.
3119 2009-03-06  Robert Millan  <rmh@aybabtu.com>
3121         Fix display issue on terminals with screen size other than 80x25
3122         (e.g. gfxterm with resolution higher than 640x480).
3124         * normal/main.c (grub_normal_init_page): Display title text in a
3125         position relative to the center of the terminal instead of relying
3126         on a hardcoded offset.
3128 2009-03-04  Robert Millan  <rmh@aybabtu.com>
3130         Filter /etc/grub.d/10_* so that only add-ons for native kernels are
3131         installed.
3133         * Makefile.in (host_kernel): New variable.
3134         * conf/common.rmk (grub-mkconfig_SCRIPTS): Conditionalize all 10_*.in
3135         scripts instead of just the windows one.
3136         * configure.ac: Initialize and AC_SUBST `host_kernel'.
3138 2009-03-04  Felix Zielcke  <fzielcke@z-51.de>
3140         * conf/i386-pc.rmk (grub_emu_SOURCES): Add `kern/list.c' and
3141         `kern/handler.c'.
3142         * conf/i386-efi.rmk (grub_emu_SOURCES): Likewise.
3143         * conf/x86_64-efi.rmk (grub_emu_SOURCES): Likewise.
3144         * conf/i386-coreboot.rmk (grub_emu_SOURCES): Likewise.
3145         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
3146         * conf/sparc64-ieee1275.rmk (grub_emu_SOURCES): Likewise.
3147         * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Likewise.
3149 2009-03-04  Felix Zielcke  <fzielcke@z-51.de>
3151         * partmap/pc.c (pc_partition_map_iterate): Skip over invalid BSD partitions
3152         or if there's no space for the disk label and print the partition number on a
3153         invalid magic.
3155 2009-03-04  Felix Zielcke  <fzielcke@z-51.de>
3157         * util/misc.c: Include <time.h>.
3158         (grub_millisleep): New function.
3160 2009-03-04  Bean  <bean123ch@gmail.com>
3162         * configure.ac: Only test -mcmodel=large option in x86_64-efi, also add
3163         another option -mno-red-zone.
3165         * commands/handler.c: Change module description.
3167         * kern/handler.c: Add missing space at the end of description line.
3169         * kern/list.c: Likewise.
3171 2009-03-03  Robert Millan  <rmh@aybabtu.com>
3173         Move more components to the relocation area, and fix mbi pointer
3174         handling to use the destination rather than the origin (thanks to
3175         Vladimir Serbinenko for spotting).
3177         * loader/i386/multiboot.c (mbi_dest): New variable.
3178         (grub_multiboot_boot): Use `mbi_dest' instead of `mbi'.
3179         (grub_multiboot): Put cmdline, boot_loader_name and mbi in the
3180         relocation area.
3182 2009-03-01  Bean  <bean123ch@gmail.com>
3184         * include/grub/efi/api.h (GRUB_EFI_MPS_TABLE_GUID): New constant.
3185         (GRUB_EFI_ACPI_TABLE_GUID): Likewise.
3186         (GRUB_EFI_ACPI_20_TABLE_GUID): Likewise.
3187         (GRUB_EFI_SMBIOS_TABLE_GUID): Likewise.
3189         * loader/i386/efi/linux.c (acpi_guid): New variable.
3190         (acpi_guid): Likewise.
3191         (EBDA_SEG_ADDR): New constant.
3192         (LOW_MEM_ADDR): Likewise.
3193         (FAKE_EBDA_SEG): Likewise.
3194         (fake_bios_data): New function.
3195         (grub_linux_boot): Call fake_bios_data.
3197 2009-03-01  Bean  <bean123ch@gmail.com>
3199         * commands/terminal.c: Removed.
3201         * commands/handler.c: New file.
3203         * include/grub/list.h: Likewise.
3205         * include/grub/handler.h: Likewise.
3207         * kern/list.c: Likewise.
3209         * kern/handler.c: Likewise.
3211         * kern/term.h: Include header file <grub/handler.h>.
3212         (grub_term_input): Move next field to the beginning.
3213         (grub_term_output): Likewise.
3214         (grub_term_input_class): New variable.
3215         (grub_term_output_class): Likewise.
3216         (grub_term_register_input): Changed to inline function.
3217         (grub_term_register_output): Likewise.
3218         (grub_term_unregister_input): Likewise.
3219         (grub_term_unregister_output): Likewise.
3220         (grub_term_set_current_input): Likewise.
3221         (grub_term_set_current_output): Likewise.
3222         (grub_term_get_current_input): Likewise.
3223         (grub_term_get_current_output): Likewise.
3224         (grub_term_iterate_input): Removed.
3225         (grub_term_iterate_output): Likewise.
3227         * kern/term.c (grub_term_list_input): Removed.
3228         (grub_term_list_output): Likewise.
3229         (grub_term_input_class): New variable.
3230         (grub_term_output_class): Likewise.
3231         (grub_cur_term_input): Change variable as macro.
3232         (grub_cur_term_output): Likewise.
3233         (grub_term_register_input): Removed.
3234         (grub_term_register_output): Likewise.
3235         (grub_term_unregister_input): Likewise.
3236         (grub_term_unregister_output): Likewise.
3237         (grub_term_set_current_input): Likewise.
3238         (grub_term_set_current_output): Likewise.
3239         (grub_term_iterate_input): Likewise.
3240         (grub_term_iterate_output): Likewise.
3241         (grub_term_get_current_input): Likewise.
3242         (grub_term_get_current_output): Likewise.
3244         * util/grub-editenv.c: Include header file <grub/handler.h>.
3245         (grub_term_get_current_input): Removed.
3246         (grub_term_get_current_output): Likewise.
3247         (grub_term_input_class): New variable.
3248         (grub_term_output_class): Likewise.
3250         * util/grub-fstest.c (grub_term_get_current_input): Removed.
3251         (grub_term_get_current_output): Likewise.
3252         (grub_term_input_class): New variable.
3253         (grub_term_output_class): Likewise.
3255         * util/grub-probe.c (grub_term_get_current_input): Removed.
3256         (grub_term_get_current_output): Likewise.
3257         (grub_term_input_class): New variable.
3258         (grub_term_output_class): Likewise.
3260         * util/i386/pc/grub-setup.c (grub_term_get_current_input): Removed.
3261         (grub_term_get_current_output): Likewise.
3262         (grub_term_input_class): New variable.
3263         (grub_term_output_class): Likewise.
3265         * conf/common.rmk (pkglib_MODULES): Replace terminal with handler.
3266         (terminal_mod_SOURCES): Likewise.
3267         (terminal_mod_CFLAGS): Likewise.
3268         (terminal_mod_LDFLAGS): Likewise.
3270         * conf/i386-pc.rmk (grub_emu_SOURCES): Replace terminal.c with
3271         handler.c.
3272         (kernel_img_SOURCES): Add list.c and handler.c.
3273         (kernel_img_HEADERS): Add list.h and handler.h.
3275         * conf/i386-efi.rmk (grub_emu_SOURCES): Replace terminal.c with
3276         handler.c.
3277         (kernel_mod_SOURCES): Add list.c and handler.c.
3278         (kernel_mod_HEADERS): Add list.h and handler.h.
3280         * conf/i386-coreboot.rmk (grub_emu_SOURCES): Replace terminal.c with
3281         handler.c.
3282         (kernel_elf_SOURCES): Add list.c and handler.c.
3283         (kernel_elf_HEADERS): Add list.h and handler.h.
3285         * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Replace terminal.c with
3286         handler.c.
3287         (kernel_elf_SOURCES): Add list.c and handler.c.
3288         (kernel_elf_HEADERS): Add list.h and handler.h.
3290         * conf/x86_64-efi.rmk (grub_emu_SOURCES): Replace terminal.c with
3291         handler.c.
3292         (kernel_mod_SOURCES): Add list.c and handler.c.
3293         (kernel_mod_HEADERS): Add list.h and handler.h.
3295         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Replace terminal.c with
3296         handler.c.
3297         (kernel_elf_SOURCES): Add list.c and handler.c.
3298         (kernel_elf_HEADERS): Add list.h and handler.h.
3300 2009-02-27  Robert Millan  <rmh@aybabtu.com>
3302         Factorize elf32 / elf64 code in Multiboot loader.  This will
3303         prevent it from getting out of sync again.
3305         * loader/i386/multiboot.c (grub_multiboot_is_elf32,
3306         grub_multiboot_load_elf32, grub_multiboot_is_elf64,
3307         grub_multiboot_load_elf64): Move from here ...
3308         * loader/i386/multiboot_elfxx.c (grub_multiboot_is_elf,
3309         grub_multiboot_load_elf): ... to here (new file).
3311 2009-02-27  Robert Millan  <rmh@aybabtu.com>
3313         * util/grub.d/10_linux.in: Rename "single-user mode" to
3314         "recovery mode".
3316 2009-02-27  Vladimir Serbinenko  <phcoder@gmail.com>
3318         Don't leak in SCSI code.
3319         * disk/scsi.c (grub_scsi_close): free `scsi'.
3321 2009-02-27  Robert Millan  <rmh@aybabtu.com>
3323         * loader/i386/pc/multiboot.c: Move from here ...
3324         * loader/i386/multiboot.c: ... to here.  Update all users.
3326 2009-02-27  Robert Millan  <rmh@aybabtu.com>
3328         Patch from Alexandre Bique <bique.alexandre@gmail.com>
3329         * util/i386/pc/grub-setup.c (setup): Fix directory path.
3331 2009-02-27  Krzysztof Smiechowicz  <deadwood@wp.pl>
3333         * fs/sfs.c (grub_sfs_read_extent): Correction to traversing extent
3334         b-tree.
3336 2009-02-27  Robert Millan  <rmh@aybabtu.com>
3338         * kern/misc.c (grub_strtoull): Fix bug (it mistakenly parsed the
3339         `0x' qualifier as 0 when base is specified as parameter).
3341 2009-02-24  Bean  <bean123ch@gmail.com>
3343         * configure.ac: Check for -mcmodel=large in x86_64 target.
3345         * include/grub/efi/api.h (efi_call_10): New macro.
3346         (efi_wrap_10): New function.
3348         * include/grub/efi/pe32.h (GRUB_PE32_REL_BASE_HIGH): New macro.
3349         (GRUB_PE32_REL_BASED_HIGH): Likewise.
3350         (GRUB_PE32_REL_BASED_LOW): Likewise.
3351         (GRUB_PE32_REL_BASED_HIGHLOW): Likewise.
3352         (GRUB_PE32_REL_BASED_HIGHADJ): Likewise.
3353         (GRUB_PE32_REL_BASED_MIPS_JMPADDR): Likewise.
3354         (GRUB_PE32_REL_BASED_SECTION): Likewise.
3355         (GRUB_PE32_REL_BASED_REL): Likewise.
3356         (GRUB_PE32_REL_BASED_IA64_IMM64): Likewise.
3357         (GRUB_PE32_REL_BASED_DIR64): Likewise.
3358         (GRUB_PE32_REL_BASED_HIGH3ADJ): Likewise.
3360         * kern/x86_64/dl.c (grub_arch_dl_relocate_symbols): Fixed relocation
3361         issue.
3363         * kern/x86_64/efi/callwrap.S (efi_wrap_6): Bug fix.
3364         (efi_wrap_10): New function.
3366         * kern/x86_64/efi/startup.S (codestart): Use relative addressing.
3368         * loader/efi/appleloader.c (devpath_5): Add support for late 2008
3369         MB/MBP model (NV chipset).
3370         (devdata_devs): Add devpath_5 to the list.
3372         * load/i386/efi/linux.c (video_base): Remove variable.
3373         (RGB_MASK): New macro.
3374         (RGB_MAGIC): Likewise.
3375         (LINE_MIN): Likewise.
3376         (LINE_MAX): Likewise.
3377         (FBTEST_STEP): Likewise.
3378         (FBTEST_COUNT): Likewise.
3379         (fb_list): New variable.
3380         (grub_find_video_card): Remove function.
3381         (find_framebuf): New function.
3382         (grub_linux_setup_video): Use find_framebuf to get frame buffer and
3383         line length.
3385         * util/i386/efi/grub-mkimage.c (grub_reloc_section): Fix relocation
3386         problem for x86_64.
3388 2009-02-22  Vesa Jääskeläinen  <chaac@nic.fi>
3390         Patch #25624 by Kevin Lacquement <kevin@lacqui>.
3392         * util/grub-mkconfig.in: Use ${grub_mkdevicemap} instead of hard
3393         coding tool name.
3395 2009-02-22  Robert Millan  <rmh@aybabtu.com>
3397         * include/multiboot.h (MULTIBOOT_INFO_ALIGN): New macro.
3398         * loader/i386/pc/multiboot.c (grub_multiboot): Include the MBI
3399         in our relocation, instead of using it directly from heap.  Also
3400         use `MULTIBOOT_INFO_ALIGN' to ensure it is aligned.
3402 2009-02-21  Robert Millan  <rmh@aybabtu.com>
3404         Implement USB keyboard support (based on patch by Marco Gerards)
3406         * conf/i386-pc.rmk (pkglib_MODULES): Add `usb_keyboard.mod'.
3407         (usb_keyboard_mod_SOURCES, usb_keyboard_mod_CFLAGS)
3408         (usb_keyboard_mod_LDFLAGS): New variables.
3410         * term/usb_keyboard.c: New file.
3412 2009-02-14  Vladimir Serbinenko  <phcoder@gmail.com>
3414         Corrected wrong declaration
3416         * kern/disk.c: corrected declaration of grub_disk_ata_pass_through.
3418 2009-02-14  Christian Franke  <franke@computer.org>
3420         * commands/lspci.c (grub_pci_classes): Add `SATA Controller'.
3421         (grub_lspci_iter): Print class code and programming interface byte.
3423 2009-02-14  Christian Franke  <franke@computer.org>
3425         * gendistlist.sh: Ignore `.svn' directories.
3427 2009-02-14  Felix Zielcke  <fzielcke@z-51.de>
3429         * fs/fat.c: Add 2009 to Copyright line.
3431 2009-02-14  Christian Franke  <franke@computer.org>
3433         * commands/hdparm.c: New file.  Provides `hdparm' command
3434         which sends ATA commands via grub_disk_ata_pass_through ().
3436         * conf/i386-pc.rmk: Add ata_pthru.mod and hdparm.mod.
3438         * disk/ata.c: Include <grub/ata.h>.  Move <grub/misc.h>
3439         and <grub/cpu/io.h> to include/grub/ata.h.
3440         (enum grub_ata_addressing_t): Move to include/grub/ata.h.
3441         (GRUB_CDROM_SECTOR_SIZE): Remove.
3442         (GRUB_ATA_*): Move to include/grub/ata.h.
3443         (GRUB_ATAPI_*): Likewise.
3444         (enum grub_ata_commands): Likewise.
3445         (enum grub_ata_timeout_milliseconds): Likewise.
3446         (struct grub_ata_device): Likewise.
3447         (grub_ata_regset): Likewise.
3448         (grub_ata_regget): Likewise.
3449         (grub_ata_regset2): Likewise.
3450         (grub_ata_regget2): Likewise.
3451         (grub_ata_check_ready): Likewise.
3452         (grub_ata_wait_not_busy): Remove static, exported in
3453         include/grub/ata.h.
3454         (grub_ata_wait_drq): Likewise.
3455         (grub_ata_pio_read): Likewise.
3457         * disk/ata_pthru.c: New file.  Provides grub_ata_pass_through ()
3458         function for hdparm.mod.
3460         * include/grub/ata.h: New file, contains declarations from
3461         disk/ata.c.
3462         (enum grub_ata_commands): Add new commands for commands/hdparm.c.
3464         * include/grub/disk.h (grub_disk_ata_pass_through_parms): New struct.
3465         (grub_disk_ata_pass_through): New exported variable.
3467         * kern/disk.c (grub_disk_ata_pass_through): New variable.
3469 2009-02-13  Colin D Bennett  <colin@gibibit.com>
3471         Support multiple fallback entries, and provide an API to support
3472         executing default+fallback menu entries.  Renamed the `terminal' menu
3473         viewer to `text'.
3475         * include/grub/normal.h (grub_normal_text_menu_viewer): New global
3476         variable declaration.
3477         (grub_menu_execute_callback): New structure declaration.
3478         (grub_menu_execute_callback_t): New typedef.
3479         (grub_menu_execute_with_fallback): New function declaration.
3480         (grub_menu_get_entry): Likewise.
3481         (grub_menu_get_timeout): Likewise.
3482         (grub_menu_set_timeout): Likewise.
3484         * normal/main.c (GRUB_MOD_INIT(normal)): Refer to new variable name.
3486         * normal/menu.c (grub_wait_after_message): Moved to
3487         `normal/menu_text.c'.
3488         (draw_border): Likewise.
3489         (print_message): Likewise.
3490         (print_entry): Likewise.
3491         (print_entries): Likewise.
3492         (grub_menu_init_page): Likewise.
3493         (get_entry_number): Likewise.
3494         (print_timeout): Likewise.
3495         (run_menu): Likewise.
3496         (grub_menu_execute_entry): Likewise.
3497         (show_text_menu): Likewise.
3498         (get_and_remove_first_entry_number): New function.
3499         (grub_menu_execute_with_fallback): Likewise.
3500         (get_entry): Renamed to ...
3501         (grub_menu_get_entry): .. this and made it global.
3502         (get_timeout): Renamed to ...
3503         (grub_menu_get_timeout): ... this and made it global.
3504         (set_timeout): Renamed to ...
3505         (grub_menu_set_timeout): ... this and made it global.
3506         (grub_normal_terminal_menu_viewer): Renamed to ...
3507         (grub_normal_text_menu_viewer): ... this.
3509         * normal/menu_text.c: New file.  Extracted text-menu-specific code
3510         from normal/menu.c.
3512         * conf/i386-coreboot.rmk (grub_emu_SOURCES): Add `normal/menu_text.c'.
3513         (normal_mod_SOURCES): Likewise.
3515         * conf/i386-efi.rmk (grub_emu_SOURCES): Likewise.
3516         (normal_mod_SOURCES): Likewise.
3518         * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Likewise.
3519         (normal_mod_SOURCES): Likewise.
3521         * conf/i386-pc.rmk, (grub_emu_SOURCES): Likewise.
3522         (normal_mod_SOURCES): Likewise.
3524         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
3525         (normal_mod_SOURCES): Likewise.
3527         * conf/sparc64-ieee1275.rmk (grub_emu_SOURCES): Likewise.
3528         (normal_mod_SOURCES): Likewise.
3530         * conf/x86_64-efi.rmk (grub_emu_SOURCES): Likewise.
3531         (normal_mod_SOURCES): Likewise.
3533 2009-02-11  Robert Millan  <rmh@aybabtu.com>
3535         * util/grub.d/00_header.in: Update old reference to `font' command.
3537 2009-02-10  Felix Zielcke  <fzielcke@z-51.de>
3539         * fs/fat.c (grub_fat_mount): Fix wrong comparison.
3541         Based on patch from Javier Martín.
3543 2009-02-09  Felix Zielcke  <fzielcke@z-51.de>
3545         * conf/common.rmk (grub_probe_SOURCES): Move fs/ext2.c before fs/fat.c
3546         to avoid false positives with FAT.
3547         (grub_fstest_SOURCES): Likewise.
3548         * conf/i386-pc.rmk (grub_emu_SOURCES): Likewise.
3549         * conf/x86_64-efi.rmk (grub_emu_SOURCES): Likewise.
3550         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
3551         * conf/i386-coreboot.rmk (grub_emu_SOURCES): Likewise.
3552         * conf/sparc64-ieee1275.rmk (grub_emu_SOURCES): Likewise.
3553         * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Likewise.
3555 2009-02-09  Felix Zielcke  <fzielcke@z-51.de>
3557         * fs/fat.c (grub_fat_mount): Try to avoid false positives by checking
3558         bpb.version_specific.fat12_or_fat16.fstype and
3559         bpb.version_specific.fat32.fstype.
3561 2009-02-08  Robert Millan  <rmh@aybabtu.com>
3563         * fs/tar.c: Replace "fs/cpio.c" with "cpio.c".
3565 2009-02-08  Robert Millan  <rmh@aybabtu.com>
3567         * Makefile.in (host_os, host_cpu): New variables.
3568         (target_os): Remove.  Update all users.
3570 2009-02-08  Marco Gerards  <marco@gnu.org>
3572         * Makefile.in (enable_grub_emu_usb): New variable.
3573         * conf/i386-pc.rmk (grub_emu_SOURCES): Add `disk/scsi.c'.
3574         (grub_emu_SOURCES) [grub_emu_SOURCES]: Add `disk/usbms.c',
3575         `util/usb.c', `bus/usb/usb.c' and `commands/usbtest.c'.
3576         (grub_emu_LDFLAGS): Add `$(LIBUSB)'.
3577         (pkglib_MODULES): Add `usb.mod', `uhci.mod', `ohci.mod',
3578         `usbtest.mod' and `usbms.mod'.
3579         (usb_mod_SOURCES, usb_mod_CFLAGS, usb_mod_LDFLAGS)
3580         (usbtest_mod_SOURCES, usbtest_mod_CFLAGS, usbtest_mod_LDFLAGS)
3581         (uhci_mod_SOURCES, uhci_mod_CFLAGS, uhci_mod_LDFLAGS,
3582         (ohci_mod_SOURCES, ohci_mod_CFLAGS, ohci_mod_LDFLAGS)
3583         (usbms_mod_SOURCES, usbms_mod_CFLAGS, usbms_mod_LDFLAGS): New
3584         variables.
3586         * disk/usbms.c: New file.
3588         * include/grub/usb.h: Likewise.
3590         * include/grub/usbtrans.h: Likewise.
3592         * include/grub/usbdesc.h: Likewise.
3594         * bus/usb/usbtrans.c: Likewise.
3596         * bus/usb/ohci.c: Likewise.
3598         * bus/usb/uhci.c: Likewise.
3600         * bus/usb/usbhub.c: Likewise.
3602         * bus/usb/usb.c: Likewise.
3604         * commands/usbtest.c: Likewise.
3606         * util/usb.c: Likewise.
3608         * include/grub/err.h (grub_err_t): Add `GRUB_ERR_IO'.
3610         * configure.ac: Test for libusb presence.
3612         * util/grub-emu.c (main) [HAVE_LIBUSB_H]: Call `grub_libusb_init'.
3614 2009-02-08  Vesa Jääskeläinen  <chaac@nic.fi>
3616         * kern/mm.c: Add more comments.
3618 2009-02-08  Robert Millan  <rmh@aybabtu.com>
3620         Patch from Javier Martín.
3621         * fs/ext2.c (EXT2_DRIVER_SUPPORTED_INCOMPAT): Add
3622         `EXT4_FEATURE_INCOMPAT_FLEX_BG'.
3624 2009-02-08  Robert Millan  <rmh@aybabtu.com>
3626         * fs/cpio.c: Split tar functionality to ...
3627         * fs/tar.c: ... here (new file).  Update all users.
3629 2009-02-07  Robert Millan  <rmh@aybabtu.com>
3631         * fs/ext2.c (grub_ext2_mount): Avoid mounting filesystems with
3632         backward-incompatible features.
3634         Based on patch from Javier Martín, with some adjustments.
3636 2009-02-07  Michael Scherer  <misc@mandriva.org>
3638         * fs/hfs.c (grub_hfsplus_iterate_dir): Treat hfs+ as case insensitive.
3640 2009-02-07  Robert Millan  <rmh@aybabtu.com>
3642         * conf/common.rmk (grub_probe_SOURCES, grub_fstest_SOURCES): Move
3643         position of `disk/lvm.c' to ensure grub_init_all() always picks it
3644         after the RAID stuff.
3646 2009-02-05  Vesa Jääskeläinen  <chaac@nic.fi>
3648         Fixes problem when running vbetest command as reported by
3649         Vladimir Serbinenko <phcoder@gmail.com>.
3651         * (grub_vbe_set_video_mode): Fixed problem with text modes.
3653 2009-02-04  Felix Zielcke  <fzielcke@z-51.de>
3655         util/getroot.c (grub_util_get_grub_dev): Add support for /dev/mdNpN and
3656         /dev/md/NpN style mdraid devices.
3658 2009-02-03  Felix Zielcke  <fzielcke@z-51.de>
3660         * util/unifont2pff.rb: Remove.
3662 2009-02-03  Felix Zielcke  <fzielcke@z-51.de>
3664         * conf/sparc64-ieee1275.rmk (grub_emu_SOURCES): Add a missing trailing
3665         `#'.
3667 2009-02-03  Felix Zielcke  <fzielcke@z-51.de>
3669         * conf/i386-pc.rmk (grub_emu_SOURCES): Add `normal/menu_viewer.c'.
3670         * conf/i386-efi.rmk (grub_emu_SOURCES): Likewise.
3671         * conf/x86_64-efi.rmk (grub_emu_SOURCES): Likewise.
3672         * conf/i386-coreboot.rmk (grub_emu_SOURCES): Likewise.
3673         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
3674         * conf/sparc64-ieee1275.rmk (grub_emu_SOURCES): Likewise.
3675         * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Likewise.
3677 2009-02-02  Christian Franke  <franke@computer.org>
3679         * lib/hexdump.c (hexdump): Print at most 3 lines if data is identical.
3681 2009-02-01  Felix Zielcke  <fzielcke@z-51.de>
3683         * INSTALL: Note that we now require at least autoconf 2.59 and
3684         that LZO is optional.
3686 2009-02-01  Vesa Jääskeläinen  <chaac@nic.fi>
3688         Base on patch on bug #24154 created by Tomas Tintera
3689         <trosos@seznam.cz>.
3691         * video/i386/pc/vbe.c (grub_video_vbe_scroll): Fix downward scrolling.
3693 2009-02-01  Vesa Jääskeläinen  <chaac@nic.fi>
3695         Based on patch on bug #25318 created by Bernhard Rosenkraenzer
3696         <bero@arklinux.org>.
3698         * normal/parser.y (script_init): Add missing semicolon.
3700 2009-01-31  Colin D Bennett  <colin@gibibit.com>
3702         * normal/main.c: Add include to grub/menu_viewer.h.
3703         (free_menu_entry_classes): Added.
3704         (grub_normal_menu_addentry): Added class property handling.
3705         (grub_normal_execute): Changed to use new menu viewer for menu viewing.
3706         (GRUB_MOD_INIT(normal)): Added register for text based menu viewer.
3708         * normal/menu_viewer.c: New file.
3710         * normal/menu.c (run_menu_entry): Renamed to ...
3711         (grub_menu_execute_entry): ... this and made it as global.
3712         (grub_menu_run): Renamed to ...
3713         (show_text_menu): ... this and made it local.
3714         (show_text_menu): Adapt to new function names.
3715         (grub_normal_terminal_menu_viewer): New global variable.
3717         * include/grub/menu.h: New file.
3719         * include/grub/menu_viewer.h: New file.
3721         * include/grub/normal.h: Added include to grub/menu.h.
3722         (grub_menu_entry): Moved to include/grub/menu.h.
3723         (grub_menu_entry_t): Likewise.
3724         (grub_menu): Likewise.
3725         (grub_menu_t): Likewise.
3726         (grub_normal_terminal_menu_viewer): Added.
3727         (grub_menu_execute_entry): Likewise.
3728         (grub_menu_run): Removed.
3730         * DISTLIST: Added include/grub/menu.h.
3731         Added include/grub/menu_viewer.h.
3732         Added normal/menu_viewer.c.
3734 2009-01-31  Vesa Jääskeläinen  <chaac@nic.fi>
3736         * normal/execute.c (grub_script_execute_menuentry): Changed to use
3737         arglist for menutitle arguments.
3739         * normal/main.c (grub_normal_menu_addentry): Likewise.
3741         * normal/parser.y (menuentry): Likewise.
3743         * normal/script.c (grub_script_create_cmdmenu): Likewise.
3745         * include/grub/script.h (grub_script_cmd_menuentry): Likewise.
3746         (grub_script_create_cmdmenu): Likewise.
3748         * include/grub/normal.h (grub_normal_menu_addentry): Likewise.
3750         * conf/i386-pc.rmk (normal_mod_SOURCES): Adapt Colin D Bennett's
3751         changes.
3753         * conf/x86_64-efi.rmk (normal_mod_SOURCES): Likewise.
3755         * conf/i386-coreboot.rmk (normal_mod_SOURCES): Likewise.
3757         * conf/i386-efi.rmk (normal_mod_SOURCES): Likewise.
3759         * conf/i386-ieee1275.rmk (normal_mod_SOURCES): Likewise.
3761         * conf/powerpc-ieee1275.rmk (normal_mod_SOURCES): Likewise.
3763         * conf/sparc64-ieee1275.rmk (normal_mod_SOURCES): Likewise.
3765 2009-01-30  Christian Franke  <franke@computer.org>
3767         * normal/arg.c (grub_arg_show_help): Add indentation if '\n' appears
3768         in option help text.
3770 2009-01-27  Pavel Roskin  <proski@gnu.org>
3772         * disk/fs_uuid.c (search_fs_uuid): Ignore case of the UUID.
3774 2009-01-27  Vesa Jääskeläinen  <chaac@nic.fi>
3776         * commands/lsmmap.c: Add include to grub/machine/memory.h.
3778         * fs/i386/pc/pxe.c (grub_pxefs_open): Fix sign problem.
3780         * term/i386/pc/at_keyboard.c (GRUB_MOD_FINI(at_keyboard)): Use proper
3781         unregister function.
3783 2009-01-27  Vesa Jääskeläinen  <chaac@nic.fi>
3785         * disk/scsi.c (grub_scsi_read): Fix sign problem.
3787         * term/i386/pc/vga_text.c (grub_vga_text_init_fini). Fix declaration.
3789         * util/grub-mkfont.c (usage): Fix typo.
3791         * util/elf/grub-mkimage.c (load_modules): Fix warning.
3793 2009-01-26  Daniel Mierswa  <impulze@impulze.org>
3795         * fs/fat.c (grub_fat_uuid): Fix shift of the first two bytes.
3797         * commands/search.c (search_fs_uuid): Ignore case of the UUID.
3799         * kern/misc.c (grub_strcasecmp): New function.
3800         (grub_strcasecmp): Use grub_size_t instead of int for length.
3801         Fix return value.
3802         * include/grub/misc.h: Update function prototypes.
3804 2009-01-26  Robert Millan  <rmh@aybabtu.com>
3806         * configure.ac: Fix cross-compilation check.
3808 2009-01-22  Christian Franke  <franke@computer.org>
3810         * kern/misc.c (grub_vsprintf): Fix size and termination of `format2'
3811         (precision) digit string.  Allow `.format2' without `format1' (width).
3812         Limit input chars for `%s' output to `format2' if specified.  This is
3813         compatible with standard printf ().
3815 2009-01-22  Christian Franke  <franke@computer.org>
3817         * disk/ata.c (grub_ata_wait_status): Replace by ...
3818         (grub_ata_wait_not_busy): ... this function.  Checks only BSY bit,
3819         other status bits may be invalid while BSY is asserted.
3820         (grub_ata_check_ready): New function.
3821         (grub_ata_cmd): Removed.
3822         (grub_ata_wait_drq): New function.
3823         (grub_ata_strncpy): Remove inline.
3824         (grub_ata_pio_read): Reduce to actual block transfer.  BSY wait
3825         and error check now done by grub_ata_wait_drq ().
3826         (grub_ata_pio_write): Likewise.
3827         (grub_atapi_identify): Set DEV before check for !BSY.  Use
3828         grub_ata_wait_drq () to wait for data.
3829         (grub_ata_device_initialize): Add status register check to
3830         detect missing SATA slave devices.  Add debug messages.
3831         (grub_atapi_wait_drq): Use grub_ata_wait_not_busy ().
3832         (grub_atapi_packet): Set DEV before check for !BSY.  Replace
3833         transfer loop by grub_ata_pio_write ().
3834         (grub_ata_identify): Set DEV before check for !BSY. Use
3835         grub_ata_wait_drq () to wait for data.
3836         (grub_ata_setaddress): Set DEV before check for !BSY.
3837         (grub_ata_readwrite): Remove duplicate code, handle batch/rest and
3838         read/write in one loop.  Fix invalid command on write.  Fix incomplete
3839         command on (size % batch) == 0.  Add missing error check after write of
3840         last block.  Add debug messages.
3841         (grub_atapi_read):  Replace transfer loop by grub_ata_pio_read ().
3843 2009-01-19  Christian Franke  <franke@computer.org>
3845         * disk/ata.c (GRUB_ATAPI_REG_*): New defines.
3846         (GRUB_ATAPI_IREASON_*): Likewise.
3847         (grub_ata_pio_write): Fix timeout error return.
3848         (grub_atapi_identify): Add grub_ata_wait () after cmd.
3849         (grub_atapi_wait_drq): New function.
3850         (grub_atapi_packet): New parameter `size'.
3851         Use grub_atapi_wait_drq () and direct write instead of
3852         grub_ata_pio_write ().
3853         (grub_atapi_read): Replace grub_ata_pio_read () by a loop which
3854         reads the number of bytes requested by the device for each DRQ
3855         assertion.
3856         (grub_atapi_write): Remove old implementation, return not
3857         implemented instead.
3859 2009-01-19  Christian Franke  <franke@computer.org>
3861         * disk/scsi.c (grub_scsi_read10): Use scsi->blocksize instead
3862         of 512 to calculate data size.
3863         (grub_scsi_read12): Likewise.
3864         (grub_scsi_write10): Likewise.
3865         (grub_scsi_write12): Likewise.
3866         (grub_scsi_read): Adjust size according to blocksize.
3867         Add checks for invalid blocksize and unaligned transfer.
3869 2009-01-19  Vesa Jääskeläinen  <chaac@nic.fi>
3871         * font/font.c (grub_font_loader_init): Re-position unknown glyph.
3873         * term/gfxterm.c (write_char): Fix background rendering for wide
3874         width glyphs.
3876 2009-01-19  Robert Millan  <rmh@aybabtu.com>
3878         * config.guess: Update to latest version from config git.
3879         * config.sub: Likewise.
3881 2009-01-17  Felix Zielcke  <fzielcke@z-51.de>
3883         * Makefile.in: Change font compilation to use new grub-mkfont instead
3884         of java version.
3886         * util/fonttool/src/org/gnu/grub/fonttool/BDFLoader.java: Remove.
3887         * util/fonttool/src/org/gnu/grub/fonttool/CharDefs.java: Likewise.
3888         * util/fonttool/src/org/gnu/grub/fonttool/CharacterRange.java: Likewise.
3889         * util/fonttool/src/org/gnu/grub/fonttool/CharacterRange.java: Likewise.
3890         * util/fonttool/src/org/gnu/grub/fonttool/Converter.java: Likewise.
3891         * util/fonttool/src/org/gnu/grub/fonttool/Font.java: Likewise.
3892         * util/fonttool/src/org/gnu/grub/fonttool/Glyph.java: Likewise.
3893         * util/fonttool/src/org/gnu/grub/fonttool/PFF2Sections.java: Likewise.
3894         * util/fonttool/src/org/gnu/grub/fonttool/PFF2Writer.java: Likewise.
3896 2009-01-16  Christian Franke  <franke@computer.org>
3898         * disk/ata.c (enum grub_ata_commands): Remove EXEC_DEV_DIAGNOSTICS.
3899         (enum grub_ata_timeout_milliseconds): New enum.
3900         (grub_ata_wait_status): Add parameter milliseconds.
3901         (grub_ata_cmd): Remove variable `err'.  Remove wait for !DRQ to allow
3902         recovery from timed-out commands.
3903         (grub_ata_pio_read): Add parameter milliseconds.  Fix error return,
3904         return grub_errno instead of REG_ERROR.
3905         (grub_ata_pio_write): Add parameter milliseconds.
3906         (grub_atapi_identify): Fix size of ATAPI IDENTIFY sector.
3907         Pass milliseconds to grub_ata_wait_status () and
3908         grub_ata_pio_read ().
3909         (grub_atapi_packet): Pass milliseconds to grub_ata_pio_write ().
3910         (grub_ata_identify): Remove variable `ataerr'.  Pass milliseconds to
3911         grub_ata_wait_status ().  Fix IDENTIFY timeout check.
3912         (grub_ata_device_initialize): Remove EXECUTE DEVICE DIAGNOSTICS.
3913         It is not suitable for device detection, because DEV bit is ignored,
3914         the command may run too long, and not all devices set the signature
3915         properly.
3916         (grub_ata_pciinit): Clear grub_errno before grub_ata_device_initialize ().
3917         (grub_ata_setaddress): Pass milliseconds to grub_ata_wait_status ().
3918         Fix device selection, DEV bit must be set first to address the registers
3919         of the correct device.
3920         (grub_ata_readwrite): Pass milliseconds to grub_ata_wait_status () and
3921         grub_ata_pio_read/write ().
3922         (grub_atapi_read): Pass milliseconds to grub_ata_pio_read ().
3923         (grub_atapi_write): Pass milliseconds to grub_ata_pio_write ().
3925 2009-01-13  Carles Pina i Estany  <carles@pina.cat>
3927         * util/grub-editenv.c (main): Use fseeko(), not fseek().
3929 2009-01-13  Bean  <bean123ch@gmail.com>
3931         * util/grub-mkfont.c (write_font): forget to remove some debug code.
3933 2009-01-13  Bean  <bean123ch@gmail.com>
3935         * Makefile.in: (enable_grub_mkfont): New variable.
3936         (freetype_cflags): Likewise.
3937         (freetype_libs): Likewise.
3939         * common.rmk (bin_UTILITIES): Add `grub-mkfont' if requested.
3940         (grub_mkfont_SOURCES): New variable.
3941         (grub_mkfont_CFLAGS): Likewise.
3942         (grub_mkfont_LDFLAGS): Likewise.
3944         * configure.ac (--enable-grub-mkfont): New option. Check for freetype2
3945         library if `--enable-grub-mkfont' is requested.
3946         (enable_grub_mkfont): New variable.
3947         (freetype_cflags): Likewise.
3948         (freetype_libs): Likewise.
3950         * util/grub-mkfont.c: New file.
3952 2009-01-12  Christian Franke  <franke@computer.org>
3954         * disk/ata.c (grub_ata_pciinit): Fix bit numbers of compatibility
3955         mode check.  Fix setting of compat_use[].
3957 2009-01-10  Robert Millan  <rmh@aybabtu.com>
3959         Update a few copyright years which we forgot to do in 2008 (only for
3960         files whose changes made in 2008 were copyright-significant)
3962         * Makefile.in: Add 2008 to Copyright line.
3963         * disk/ieee1275/ofdisk.c: Likewise.
3964         * disk/efi/efidisk.c: Likewise.
3965         * kern/dl.c: Likewise.
3966         * kern/sparc64/ieee1275/init.c: Likewise.
3967         * kern/mm.c: Likewise.
3968         * kern/efi/mm.c: Likewise.
3969         * boot/i386/pc/boot.S: Likewise.
3970         * genfslist.sh: Likewise.
3971         * fs/iso9660.c: Likewise.
3972         * fs/hfs.c: Likewise.
3973         * fs/jfs.c: Likewise.
3974         * fs/minix.c: Likewise.
3975         * fs/ufs.c: Likewise.
3976         * gensymlist.sh.in: Likewise.
3977         * genkernsyms.sh.in: Likewise.
3978         * include/grub/misc.h: Likewise.
3979         * include/grub/types.h: Likewise.
3980         * include/grub/symbol.h: Likewise.
3981         * include/grub/elf.h: Likewise.
3982         * include/grub/kernel.h: Likewise.
3983         * include/grub/disk.h: Likewise.
3984         * include/grub/dl.h: Likewise.
3985         * include/grub/i386/linux.h: Likewise.
3986         * include/grub/i386/pc/biosdisk.h: Likewise.
3987         * include/grub/efi/api.h: Likewise.
3988         * include/grub/efi/pe32.h: Likewise.
3989         * include/grub/util/misc.h: Likewise.
3990         * normal/execute.c: Likewise.
3991         * normal/arg.c: Likewise.
3992         * normal/completion.c: Likewise.
3993         * normal/lexer.c: Likewise.
3994         * normal/parser.y: Likewise.
3995         * normal/misc.c: Likewise.
3996         * commands/i386/pc/vbeinfo.c: Likewise.
3997         * commands/hexdump.c: Likewise.
3998         * commands/terminal.c: Likewise.
3999         * commands/ls.c: Likewise.
4000         * commands/help.c: Likewise.
4001         * partmap/pc.c: Likewise.
4002         * loader/efi/chainloader.c: Likewise.
4003         * loader/multiboot_loader.c: Likewise.
4004         * loader/i386/pc/multiboot2.c: Likewise.
4005         * term/efi/console.c: Likewise.
4006         * term/i386/pc/serial.c: Likewise.
4007         * util/lvm.c: Likewise.
4008         * util/console.c: Likewise.
4009         * util/i386/efi/grub-mkimage.c: Likewise.
4010         * util/raid.c: Likewise.
4012 2009-01-06  Vesa Jääskeläinen  <chaac@nic.fi>
4014         * commands/videotest.c: Removed include to grub/machine/memory.h.
4016         * conf/i386-pc.rmk (pkglib_MODULES): Removed video.mod, gfxterm.mod,
4017         videotest.mod, bitmap.mod, tga.mod, jpeg.mod, png.mod.
4018         (video_mod_SOURCES): Removed.
4019         (video_mod_CFLAGS): Likewise.
4020         (video_mod_LDFLAGS): Likewise.
4021         (gfxterm_mod_SOURCES): Likewise.
4022         (gfxterm_mod_CFLAGS): Likewise.
4023         (gfxterm_mod_LDFLAGS): Likewise.
4024         (videotest_mod_SOURCES): Likewise.
4025         (videotest_mod_CFLAGS): Likewise.
4026         (videotest_mod_LDFLAGS): Likewise.
4027         (bitmap_mod_SOURCES): Likewise.
4028         (bitmap_mod_CFLAGS): Likewise.
4029         (bitmap_mod_LDFLAGS): Likewise.
4030         (tga_mod_SOURCES): Likewise.
4031         (tga_mod_CFLAGS): Likewise.
4032         (tga_mod_LDFLAGS): Likewise.
4033         (jpeg_mod_SOURCES): Likewise.
4034         (jpeg_mod_CFLAGS): Likewise.
4035         (jpeg_mod_LDFLAGS): Likewise.
4036         (png_mod_SOURCES): Likewise.
4037         (png_mod_CFLAGS): Likewise.
4038         (png_mod_LDFLAGS): Likewise.
4040         * conf/common.rmk (pkglib_MODULES): Added video.mod, videotest.mod,
4041         bitmap.mod, tga.mod, jpeg.mod, png.mod, font.mod, gfxterm.mod
4042         (video_mod_SOURCES): Added.
4043         (video_mod_CFLAGS): Likewise.
4044         (video_mod_LDFLAGS): Likewise.
4045         (videotest_mod_SOURCES): Likewise.
4046         (videotest_mod_CFLAGS): Likewise.
4047         (videotest_mod_LDFLAGS): Likewise.
4048         (bitmap_mod_SOURCES): Likewise.
4049         (bitmap_mod_CFLAGS): Likewise.
4050         (bitmap_mod_LDFLAGS): Likewise.
4051         (tga_mod_SOURCES): Likewise.
4052         (tga_mod_CFLAGS): Likewise.
4053         (tga_mod_LDFLAGS): Likewise.
4054         (jpeg_mod_SOURCES): Likewise.
4055         (jpeg_mod_CFLAGS): Likewise.
4056         (jpeg_mod_LDFLAGS): Likewise.
4057         (png_mod_SOURCES): Likewise.
4058         (png_mod_CFLAGS): Likewise.
4059         (png_mod_LDFLAGS): Likewise.
4060         (gfxterm_mod_SOURCES): Likewise.
4061         (gfxterm_mod_CFLAGS): Likewise.
4062         (gfxterm_mod_LDFLAGS): Likewise.
4064         * term/gfxterm.c: Removed include to grub/machine/memory.h,
4065         grub/machine/console.h.
4067 2009-01-04  Jerone Young  <jerone@gmail.com>
4069         Make on screen instructions clearer
4071         Based on patch created by Jidanni <jidanni@jidanni.org>
4073         * normal/menu.c: print clearer instructions on the screen
4075 2009-01-02  Colin D Bennett  <colin@gibibit.com>
4077         New font engine.
4079         Additional changes by Vesa Jääskeläinen <chaac@nic.fi> to adapt to
4080         build system and fixed gfxterm.c to work with different sized fonts.
4082         * configure.ac: Changed UNIFONT_HEX to UNIFONT_BDF.
4084         * configure: Re-generated.
4086         * DISTLIST: Removed font/manager.c.
4087         Added font/font.c.
4088         Added font/font_cmd.c.
4090         * Makefile.in: Changed UNIFONT_HEX to UNIFONT_BDF.  Added Font tool
4091         compilation.
4093         * include/grub/misc.h (grub_utf8_to_ucs4): Changed prototype.  Changed users.
4095         * kern/misc.c (grub_utf8_to_ucs4): Changed prototype.
4097         * kern/term.c: Changed users of grub_utf8_to_ucs4.
4099         * normal/menu.c: Likewise.
4101         * conf/common.rmk (font_mod_SOURCES): Removed font/manager.c.
4102         (font_mod_SOURCES): Added font/font_cmd.c, font/font.c.
4104         * include/grub/font.h: Replaced with new file.
4106         * include/grub/video.h (GRUB_VIDEO_MODE_TYPE_ALPHA): Changed value.
4107         (GRUB_VIDEO_MODE_TYPE_DOUBLE_BUFFERED): Likewise.
4108         (GRUB_VIDEO_MODE_TYPE_COLOR_MASK): Likewise.
4109         (GRUB_VIDEO_MODE_TYPE_1BIT_BITMAP): Added.
4110         (grub_video_blit_format): Added GRUB_VIDEO_BLIT_FORMAT_1BIT_PACKED.
4111         (grub_video_mode_info): Added bg_red, bg_green, bg_blue, bg_alpha,
4112         fg_red, fg_green, fg_blue, fg_alpha.
4113         (grub_video_adapter): Removed blit_glyph.
4114         (grub_video_blit_glyph): Removed.
4116         * font/manager.c: Removed file.
4118         * font/font.c: New file.
4120         * font/font_cmd.c: Likewise.
4122         * video/video.c (grub_video_blit_glyph): Removed.
4124         * video/i386/pc/vbe.c (grub_video_vbe_map_rgb): Added 1-bit support.
4125         (grub_video_vbe_map_rgba): Likewise.
4126         (grub_video_vbe_unmap_color_int): Likewise.
4127         (grub_video_vbe_blit_glyph): Removed.
4128         (grub_video_vbe_adapter): Removed blit_glyph.
4130         * video/i386/pc/vbeutil.c (get_data_ptr): Added 1-bit support.
4131         (get_pixel): Likewise.
4132         (set_pixel): Likewise.
4134         * commands/videotest.c (grub_cmd_videotest): Added more tests for fonts.
4136         * term/gfxterm.c: Adapted to new font engine.
4138         * term/i386/pc/vesafb.c: Marked as deprecated.  Made it compile.
4140         * term/i386/pc/vga.c: Likewise.
4142         * util/fonttool/src/org/gnu/grub/fonttool/BDFLoader.java: New file.
4144         * util/fonttool/src/org/gnu/grub/fonttool/CharDefs.java: Likewise.
4146         * util/fonttool/src/org/gnu/grub/fonttool/CharacterRange.java: Likewise.
4148         * util/fonttool/src/org/gnu/grub/fonttool/CharacterRange.java: Likewise.
4150         * util/fonttool/src/org/gnu/grub/fonttool/Converter.java: Likewise.
4152         * util/fonttool/src/org/gnu/grub/fonttool/Font.java: Likewise.
4154         * util/fonttool/src/org/gnu/grub/fonttool/Glyph.java: Likewise.
4156         * util/fonttool/src/org/gnu/grub/fonttool/PFF2Sections.java: Likewise.
4158         * util/fonttool/src/org/gnu/grub/fonttool/PFF2Writer.java: Likewise.
4160         * util/grub.d/00_header.in: Changed to use new loadfont command.
4162         * util/grub-mkconfig_lib.in: Changed font extension.
4164 2008-12-28  Felix Zielcke  <fzielcke@z-51.de>
4166         * util/getroot.c (grub_util_get_grub_dev): Add support for
4167         /dev/md/dNNpNN style partitionable mdraid devices.
4169 2008-12-12  Alex Smith  <alex@alex-smith.me.uk>
4171         * fs/i386/pc/pxe.c (grub_pxefs_open): Handle the one open connection
4172         at a time limit of the PXE TFTP API correctly.
4173         (grub_pxefs_close): Likewise.
4175 2008-11-29  Robert Millan  <rmh@aybabtu.com>
4177         * disk/ata.c (grub_ata_pciinit): Handle errors raised by
4178         grub_ata_device_initialize() calls.
4180 2008-11-28  Krzysztof Smiechowicz  <deadwood@wp.pl>
4182         * fs/affs.c (grub_affs_iterate_dir): Return failure when directory
4183         iteration failed.
4184         * fs/sfs.c (grub_sfs_iterate_dir): Likewise.
4186 2008-11-28  Robert Millan  <rmh@aybabtu.com>
4188         Fix build on powerpc-ieee1275.  Based on patch created by
4189         Manoel Abranches <mrabran@linux.vnet.ibm.com>.
4190         * conf/powerpc-ieee1275.rmk (kernel_elf_SOURCES): Add
4191         `kern/ieee1275/mmap.c'.
4192         * include/grub/powerpc/ieee1275/memory.h: New file.
4194         Provide grub-install on coreboot.
4195         * conf/i386-coreboot.rmk (sbin_SCRIPTS): Add `grub-install'.
4196         (grub_install_SOURCES): New variable.
4197         * util/i386/pc/grub-install.in: Add a few condition checks to make it
4198         usable on coreboot.
4200 2008-11-25  Felix Zielcke  <fzielcke@z-51.de>
4202         * util/grub-fstest.c (grub_term_get_current_input): Change return type
4203         to `grub_term_input_t'.
4204         (grub_term_get_current_output): Change return type to
4205         `grub_term_output_t'.
4207 2008-11-22  Robert Millan  <rmh@aybabtu.com>
4209         Fix breakage on coreboot due to declaration mismatch.
4210         * term/i386/pc/vga_text.c (grub_vga_text_init_fini): New function.
4211         (grub_vga_text_term): Use grub_vga_text_init_fini() instead of
4212         grub_vga_text_cls().
4214         * kern/i386/loader.S (grub_multiboot_backward_relocator): Improve
4215         comments.  Avoid copying one more byte than necessary (just in case).
4217         * conf/powerpc-ieee1275.rmk (kernel_elf_LDFLAGS): Change link address
4218         to 0x200000 (avoids trouble with some OFW implementations, and matches
4219         with the one in Yaboot).
4220         Reported by Manoel Abranches
4222 2008-11-20  Robert Millan  <rmh@aybabtu.com>
4224         * kern/i386/coreboot/init.c (grub_time_tics): Remove variable.
4225         (grub_get_rtc, grub_exit): Abort with grub_fatal() if called.
4227         * util/grub-mkconfig_lib.in (grub_warn): New function.
4228         (convert_system_path_to_grub_path): Use grub_warn() when issuing
4229         warnings, to obtain consistent formatting.
4230         * util/grub.d/00_header.in: Likewise.
4231         * util/update-grub_lib.in: Likewise.
4233         * loader/i386/linux.c (allocate_pages): Fix a warning.
4234         Move comment text to `#error' stanza.
4236         Harmonize ieee1275's grub_available_iterate() with the generic
4237         grub_machine_mmap_iterate() interface (fixes a recently-introduced
4238         build problem on i386-ieee1275):
4239         * kern/ieee1275/openfw.c (grub_available_iterate): Moved from here ...
4240         * kern/ieee1275/mmap.c (grub_machine_mmap_iterate): ... here.  Add third
4241         parameter `type'.  Update all users of this function.
4242         * conf/i386-ieee1275.rmk (kernel_elf_SOURCES): Add
4243         `kern/ieee1275/mmap.c'.
4244         * kern/ieee1275/init.c
4245         * include/grub/ieee1275/ieee1275.h (grub_available_iterate): Replace
4246         with ...
4247         (grub_machine_mmap_iterate): ... this.
4248         * include/grub/i386/pc/memory.h (grub_machine_mmap_iterate): Change
4249         return type to `grub_err_t'.  Update all implementations of this
4250         function prototype.
4251         * include/grub/i386/coreboot/memory.h (grub_machine_mmap_iterate):
4252         Likewise.
4254         Add `lsmmap' command (lists firmware-provided memory map):
4255         * commands/lsmmap.c: New file.
4256         * conf/i386-pc.rmk (pkglib_MODULES): Add `lsmmap.mod'.
4257         (lsmmap_mod_SOURCES, lsmmap_mod_CFLAGS, lsmmap_mod_LDFLAGS): New
4258         variables.
4259         * conf/powerpc-ieee1275.rmk: Likewise.
4260         * conf/i386-coreboot.rmk: Likewise.
4261         * conf/i386-ieee1275.rmk: Likewise.
4263 2008-11-19  Robert Millan  <rmh@aybabtu.com>
4265         * loader/i386/pc/linux.c (grub_rescue_cmd_initrd): Fix a typo.
4266         * loader/i386/linux.c (grub_rescue_cmd_initrd): Implement a few needed
4267         constraints to initrd allocation (based on code from
4268         loader/i386/pc/linux.c).  Without them, initrd was allocated too high
4269         for Linux to find it.
4271 2008-11-14  Robert Millan  <rmh@aybabtu.com>
4273         * fs/cpio.c (grub_cpio_open): Compare `name' and `fn' by hand in
4274         order to cope with duplicate slashes.
4276 2008-11-14  Robert Millan  <rmh@aybabtu.com>
4278         * include/grub/i386/coreboot/memory.h (GRUB_MEMORY_MACHINE_LOWER_SIZE):
4279         Redefine to match with GRUB_MEMORY_MACHINE_UPPER_START (0x100000).  We
4280         don't want to mess with lower memory, because it is used in the Linux
4281         loader.
4283         * loader/i386/linux.c (allocate_pages): Allocate `real_mode_mem' in
4284         an appropriate place in lower memory, between 0x10000 and 0x90000,
4285         like loader/i386/efi/linux.c does.  Linux often panics if real_mode_mem
4286         is in our heap (probably as a result of it being corrupted during
4287         decompression).  Add #error instance with comment to explain why this
4288         loader isn't currently usable on PC/BIOS.
4290 2008-11-14  Robert Millan  <rmh@aybabtu.com>
4292         * term/i386/pc/serial.c [! GRUB_MACHINE_PCBIOS]
4293         (GRUB_SERIAL_PORT_NUM): Fix miscalculation.
4295 2008-11-12  Robert Millan  <rmh@aybabtu.com>
4297         Make loader/i386/linux.c buildable on i386-pc (although disabled).
4299         * include/grub/i386/pc/init.h: Include `<grub/machine/memory.h>'.
4300         (struct grub_machine_mmap_entry, grub_machine_mmap_iterate): Move
4301         from here ...
4302         * include/grub/i386/pc/memory.h: ... to here.
4304 2008-11-12  Robert Millan  <rmh@aybabtu.com>
4306         Fix build problems on i386-ieee1275 and *-efi (introduced by vga_text
4307         split).
4309         * include/grub/i386/pc/console.h: Include `<grub/i386/vga_common.h>'.
4310         (grub_console_cur_color, grub_console_real_putchar)
4311         (grub_console_putchar, grub_console_getcharwidth, grub_console_getwh)
4312         (grub_console_setcolorstate, grub_console_setcolor)
4313         (grub_console_getcolor): Move from here ...
4314         * include/grub/i386/vga_common.h: ... to here (new file).
4316         * term/i386/pc/vga_text.c: Replace `<grub/machine/console.h>' with
4317         `<grub/i386/vga_common.h>' and `<grub/cpu/io.h>' with
4318         `<grub/i386/io.h>'.
4319         * term/i386/vga_common.c: Replace `<grub/machine/console.h>' with
4320         `<grub/i386/vga_common.h>'.
4322 2008-11-12  Robert Millan  <rmh@aybabtu.com>
4324         * conf/i386-pc.rmk (kernel_img_SOURCES): Add `term/i386/vga_common.c'.
4325         * conf/i386.rmk (pkglib_MODULES): Add `vga_text.mod'.
4326         (vga_text_mod_SOURCES, vga_text_mod_CFLAGS, vga_text_mod_LDFLAGS): New
4327         variables.
4328         * conf/i386-coreboot.rmk (kernel_elf_SOURCES): Replace
4329         `term/i386/pc/console.c' with `term/i386/vga_common.c'.
4331         * kern/i386/coreboot/init.c (grub_machine_init): Replace call to
4332         grub_console_init() with call to grub_vga_text_init().
4333         (grub_machine_fini): Replace call to
4334         grub_console_fini() with call to grub_vga_text_fini() and
4335         grub_at_keyboard_fini().
4337         * include/grub/i386/pc/console.h: Include `<grub/term.h>'.
4338         (grub_console_putchar, grub_console_getcharwidth, grub_console_getwh)
4339         (grub_console_setcolorstate, grub_console_setcolor)
4340         (grub_console_getcolor): New function prototypes.
4342         * term/i386/pc/vga_text.c: Include `<grub/dl.h>'.
4343         (grub_vga_text_getxy, grub_vga_text_gotoxy, grub_vga_text_cls)
4344         (grub_vga_text_setcursor): Static-ize.
4345         (grub_vga_text_term): New structure.
4346         (GRUB_MOD_INIT(vga_text), GRUB_MOD_FINI(vga_text)): New functions.
4348         * term/i386/pc/console.c: Remove `<grub/machine/machine.h>'.
4349         (grub_console_cur_color, grub_console_standard_color)
4350         (grub_console_normal_color, grub_console_highlight_color)
4351         (map_char, grub_console_putchar, grub_console_getcharwidth)
4352         (grub_console_getwh, grub_console_setcolorstate, grub_console_setcolor)
4353         (grub_console_getcolor): Move from here ...
4354         * term/i386/vga_common.c: ... to here (same function names).
4356 2008-11-12  Robert Millan  <rmh@aybabtu.com>
4358         Use newly-added Multiboot support in coreboot.
4360         * conf/i386-coreboot.rmk (kernel_elf_SOURCES): Replace
4361         `kern/i386/coreboot/mmap.c' with `kern/i386/multiboot_mmap.c'.
4363         * kern/i386/coreboot/startup.S: Enable Multiboot header, fix its
4364         alignment, set `MULTIBOOT_MEMORY_INFO' flag.
4365         (codestart): Store the MBI in `startup_multiboot_info' when we're
4366         being loaded using Multiboot.
4368         * kern/i386/coreboot/init.c (grub_machine_init): Move
4369         grub_at_keyboard_init() call to beginning of function (useful for
4370         debugging).  Call grub_machine_mmap_init() before attempting to use
4371         grub_machine_mmap_iterate().
4372         (grub_lower_mem, grub_upper_mem): Move from here ...
4373         * kern/i386/multiboot_mmap.c (grub_lower_mem, grub_upper_mem): ... to
4374         here (new file).
4376         * include/grub/i386/coreboot/memory.h (grub_machine_mmap_init): New
4377         function prototype.
4379 2008-11-12  Robert Millan  <rmh@aybabtu.com>
4381         Fix a regression introduced by the at_keyboard.mod split.  Because
4382         some terminals are default on some platforms and non-default on
4383         others, the first terminal being registered determines which is
4384         going to be default.
4386         * kern/term.c (grub_term_register_input): If this is the first
4387         terminal being registered, set it as the current one.
4388         (grub_term_register_output): Likewise.
4390         * term/efi/console.c (grub_console_init): Do not call
4391         grub_term_set_current_output() or grub_term_set_current_input().
4392         * term/ieee1275/ofconsole.c (grub_console_init): Likewise.
4393         * term/i386/pc/console.c (grub_console_init): Likewise.
4394         (grub_console_fini): Do not call grub_term_set_current_input()
4395         (but leave grub_term_set_current_output() to restore text mode).
4397 2008-11-10  Robert Millan  <rmh@aybabtu.com>
4399         * util/grub.d/00_header.in: Add backward compatibility check for
4400         versions of terminal.mod that don't understand `terminal_input' or
4401         `terminal_output'.
4403 2008-11-09  Robert Millan  <rmh@aybabtu.com>
4405         * commands/terminal.c (GRUB_MOD_FINI(terminal)): Unregister
4406         `terminal_input' / `terminal_output', not `terminal'.
4408 2008-11-08  Robert Millan  <rmh@aybabtu.com>
4410         * Makefile.in (include_DATA): Fix srcdir=. assumption.
4411         (DISTCLEANFILES): Add `build_env.mk'.
4413 2008-11-08  Robert Millan  <rmh@aybabtu.com>
4415         * term/i386/pc/vesafb.c (grub_vesafb_term): Change type to
4416         `struct grub_term_output'.  Remove `.checkkey' and `.getkey'
4417         members.  Update all users.
4418         * util/console.c (grub_ncurses_term): Split in ...
4419         (grub_ncurses_term_input): ... this, and ...
4420         (grub_ncurses_term_output): ... this.  Update all users.
4421         * term/ieee1275/ofconsole.c: Remove stale `#endif'.
4423 2008-11-08  Robert Millan  <rmh@aybabtu.com>
4425         * Makefile.in (PKGLIB): Add $(pkglib_BUILDDIR).
4426         (PKGDATA): Add $(pkgdata_SRCDIR).
4427         (pkglib_BUILDDIR): New variable.
4428         (pkgdata_SRCDIR): New variable.
4429         (build_env.mk): New target.
4430         (include_DATA): New variable.
4431         (install-local): Install $(include_DATA) files in $(includedir).
4433 2008-11-07  Pavel Roskin  <proski@gnu.org>
4435         * gendistlist.sh: Use C locale for sorting to ensure consistent
4436         output on all systems.
4438         * util/grub.d/00_header.in: Remove incorrect space before
4439         "serial".
4441 2008-11-07  Robert Millan  <rmh@aybabtu.com>
4443         * include/multiboot2.h (struct multiboot_header): Add `flags' member as
4444         per specification.
4445         * loader/multiboot2.c (grub_multiboot2): Fix Multiboot2 header check.
4446         * loader/multiboot_loader.c (find_multi_boot2_header): New function
4447         (based on find_multi_boot1_header).
4448         (grub_rescue_cmd_multiboot_loader): Check for Multiboot2 header,
4449         using find_multi_boot2_header(), and abort if neither Multiboot or
4450         Multiboot headers were found.
4452 2008-11-07  Robert Millan  <rmh@aybabtu.com>
4454         Modularize at_keyboard.mod:
4456         * conf/i386.rmk (pkglib_MODULES): Add `at_keyboard.mod'.
4457         (at_keyboard_mod_SOURCES, at_keyboard_mod_CFLAGS)
4458         (at_keyboard_mod_LDFLAGS): New variables.
4460         Actual terminal split:
4462         * include/grub/term.h (struct grub_term): Split in ...
4463         (struct grub_term_input): ... this, and ...
4464         (struct grub_term_output): ... this.  Update all users.
4465         (grub_term_set_current): Split in ...
4466         (grub_term_set_current_input): ... this, and ...
4467         (grub_term_set_current_output): ... this.
4468         (grub_term_get_current): Split in ...
4469         (grub_term_get_current_input): ... this, and ...
4470         (grub_term_get_current_output): ... this.
4471         (grub_term_register): Split in ...
4472         (grub_term_register_input): ... this, and ...
4473         (grub_term_register_output): ... this.
4474         (grub_term_unregister): Split in ...
4475         (grub_term_unregister_input): ... this, and ...
4476         (grub_term_unregister_output): ... this.
4477         (grub_term_iterate): Split in ...
4478         (grub_term_iterate_input): ... this, and ...
4479         (grub_term_iterate_output): ... this.
4481         * kern/term.c (grub_term_list): Split in ...
4482         (grub_term_list_input): ... this, and ...
4483         (grub_term_list_output): ... this.  Update all users.
4484         (grub_cur_term): Split in ...
4485         (grub_cur_term_input): ... this, and ...
4486         (grub_cur_term_output): ... this.  Update all users.
4487         (grub_term_set_current): Split in ...
4488         (grub_term_set_current_input): ... this, and ...
4489         (grub_term_set_current_output): ... this.
4490         (grub_term_get_current): Split in ...
4491         (grub_term_get_current_input): ... this, and ...
4492         (grub_term_get_current_output): ... this.
4493         (grub_term_register): Split in ...
4494         (grub_term_register_input): ... this, and ...
4495         (grub_term_register_output): ... this.
4496         (grub_term_unregister): Split in ...
4497         (grub_term_unregister_input): ... this, and ...
4498         (grub_term_unregister_output): ... this.
4499         (grub_term_iterate): Split in ...
4500         (grub_term_iterate_input): ... this, and ...
4501         (grub_term_iterate_output): ... this.
4503         * kern/misc.c (grub_abort): Split use of grub_term_get_current() into
4504         a check for input and one for output (and only attempt to get keys
4505         from user when input works).
4507         * util/grub-probe.c (grub_term_get_current): Split in ...
4508         (grub_term_get_current_input): ... this, and ...
4509         (grub_term_get_current_output): ... this.
4510         * util/grub-fstest.c: Likewise.
4511         * util/i386/pc/grub-setup.c: Likewise.
4512         * util/grub-editenv.c: Likewise.
4514         Portability adjustments:
4516         * conf/i386-ieee1275.rmk (kernel_elf_SOURCES): Remove
4517         `term/i386/pc/at_keyboard.c'.
4518         * kern/ieee1275/init.c [__i386__] (grub_machine_init): Remove call to
4519         grub_keyboard_controller_init() (now handled by terminal .init).
4520         * kern/i386/coreboot/init.c (grub_machine_init): Add call to
4521         grub_at_keyboard_init().
4522         * include/grub/i386/ieee1275/console.h (grub_keyboard_controller_init)
4523         (grub_console_checkkey, grub_console_getkey): Remove (now provided by
4524         at_keyboard.mod via input terminal interface).
4525         * include/grub/i386/coreboot/console.h: Convert into a stub for
4526         `<grub/i386/pc/console.h>'.
4528         Migrate full terminals to new API:
4530         * term/efi/console.c (grub_console_term): Split into ...
4531         (grub_console_term_input): ... this, and ...
4532         (grub_console_term_output): ... this.  Update all users.
4533         * term/ieee1275/ofconsole.c: Remove __i386__ hack.
4534         (grub_ofconsole_init): Split into ...
4535         (grub_ofconsole_init_input): ... this, and ...
4536         (grub_ofconsole_init_output): ... this.
4537         (grub_ofconsole_term): Split into ...
4538         (grub_ofconsole_term_input): ... this, and ...
4539         (grub_ofconsole_term_output): ... this.  Update all users.
4540         * term/i386/pc/serial.c (grub_serial_term): Split into ...
4541         (grub_serial_term_input): ... this, and ...
4542         (grub_serial_term_output): ... this.  Update all users.
4543         * term/i386/pc/console.c (grub_console_term): Split into ...
4544         (grub_console_term_input): ... this, and ...
4545         (grub_console_term_output): ... this.  Update all users.
4546         (grub_console_term_input): Only enable it on PC/BIOS platform.
4547         (grub_console_init): Remove grub_keyboard_controller_init() call.
4549         Migrate input terminals to new API:
4551         * term/i386/pc/at_keyboard.c: Replace `cpu' and `machine' with
4552         `i386' and `i386/pc' to enable build on x86_64 (this driver is
4553         i386-specific anyway).
4554         (grub_console_checkkey): Rename to ...
4555         (grub_at_keyboard_checkkey): ... this.  Static-ize.  Update all
4556         users.
4557         (grub_keyboard_controller_orig): New variable.
4558         (grub_console_getkey): Rename to ...
4559         (grub_at_keyboard_getkey): ... this.  Static-ize.  Update all
4560         users.
4561         (grub_keyboard_controller_init): Static-ize.  Save original
4562         controller value so that it can be restored ...
4563         (grub_keyboard_controller_fini): ... here (new function).
4564         (grub_at_keyboard_term): New structure.
4565         (GRUB_MOD_INIT(at_keyboard), GRUB_MOD_FINI(at_keyboard)): New
4566         functions.
4568         Migrate output terminals to new API:
4570         * term/i386/pc/vga.c (grub_vga_term): Change type to
4571         `struct  grub_term_output'.  Remove `.checkkey' and `.getkey'
4572         members.  Update all users.
4573         * term/gfxterm.c (grub_video_term): Change type to
4574         `struct  grub_term_output'.  Remove `.checkkey' and `.getkey'
4575         members.  Update all users.
4576         * include/grub/i386/pc/console.h (grub_console_checkkey)
4577         (grub_console_getkey): Do not export (no longer needed by gfxterm,
4578         etc).
4580         Migrate `terminal' command and userland tools to new API:
4582         * commands/terminal.c (grub_cmd_terminal): Split into ...
4583         (grub_cmd_terminal_input): ... this, and ...
4584         (grub_cmd_terminal_output): ... this.
4585         (GRUB_MOD_INIT(terminal)): Split `terminal' command in two commands:
4586         `terminal_input' and `terminal_output'.
4587         * util/grub.d/00_header.in: Adjust `terminal' calls to new
4588         `terminal_input' / `terminal_output' API.
4589         * util/grub-mkconfig.in: Export ${GRUB_TERMINAL_INPUT} and
4590         ${GRUB_TERMINAL_OUTPUT} instead of ${GRUB_TERMINAL} (and if user
4591         provided ${GRUB_TERMINAL}, convert it).
4593 2008-11-04  Robert Millan  <rmh@aybabtu.com>
4595         * util/grub.d/10_freebsd.in: New file.  Generate grub configuration
4596         for FreeBSD.
4597         * conf/common.rmk (grub-mkconfig_SCRIPTS): Add 10_freebsd.
4599 2008-11-03  Bean  <bean123ch@gmail.com>
4601         * kern/elf.c (grub_elf32_load): Revert to previous code.
4602         (grub_elf64_load): Likewise.
4604         * loader/i386/bsd.c (grub_bsd_elf32_hook): Change return address.
4606 2008-11-01  Robert Millan  <rmh@aybabtu.com>
4608         * Makefile.in (CPPFLAGS): Fix builddir=. assumption.
4609         (TARGET_CPPFLAGS): Likewise.
4610         * genmk.rb (mod_src): Fix builddir=. and srcdir=. assumptions.
4612 2008-11-01  Carles Pina i Estany  <carles@pina.cat>
4614         * normal/menu.c (run_menu): Add Previous and Next Page keys in menu.
4616 2008-10-29  Guillem Jover  <guillem.jover@nokia.com>
4618         * disk/lvm.c (grub_lvm_scan_device): Fix error recovery by delaying the
4619         addition of objects until the code is not going to be able to fail.
4621 2008-10-29  Guillem Jover  <guillem.jover@nokia.com>
4623         * disk/lvm.c (grub_lvm_scan_device): Fix possible NULL value handling
4624         (add a missing NULL check, and correct them by moving the pointer
4625         operations after the actual check).
4627 2008-10-29  Robert Millan  <rmh@aybabtu.com>
4629         * util/i386/pc/grub-install.in: Handle empty string as output from
4630         make_system_path_relative_to_its_root().
4632 2008-10-05  Hans Lambermont  <hans@lambermont.dyndns.org>
4634         * disk/lvm.c (grub_lvm_scan_device): Allocate buffer space for the
4635         circular metadata worst case scenario. If the metadata is circular
4636         then copy the wrap in place.
4637         * include/grub/lvm.h: Add GRUB_LVM_MDA_HEADER_SIZE, from the LVM2
4638         project lib/format_text/layout.h
4639         Circular metadata bug found and patch debugged by Jan Derk Gerlings.
4641 2008-10-03  Felix Zielcke  <fzielcke@z-51.de>
4643         * util/i386/pc/grub-install.in: Source grub-mkconfig_lib instead of update-grub_lib.
4645 2008-10-03  Felix Zielcke  <fzielcke@z-51.de>
4647         * util/update-grub_lib.in: Mention filename in warning message.
4649 2008-09-29  Felix Zielcke  <fzielcke@z-51.de>
4651         * NEWS: Update for rename of update-grub to grub-mkconfig.
4653 2008-09-29  Felix Zielcke  <fzielcke@z-51.de>
4655         * util/update-grub_lib.in: Copy to ...
4656         * util/grub-mkconfig_lib.in: ... this.  Update all users.
4657         * util/update-grub_lib.in: Make it a stub to `grub-mkconfig_lib.in'.
4658         * util/update-grub.in: Rename to ...
4659         * util/grub-mkconfig.in: ... this.  Update all users.  Remove `-y'
4660         option. Add `--output' option to allow users to specify the generated
4661         configuration file.  Default to stdout.
4662         (update_grub_dir): Rename to ...
4663         (grub_mkconfig_dir): ... this.
4664         (grub_cfg): Default to an empty string.
4665         * conf/common.rmk (update-grub): Rename to ...
4666         (grub-mkconfig): ... this.
4667         (update-grub_lib): Copy to ...
4668         (grub-mkconfig_lib): ... this.
4669         (update-grub_SCRIPTS): Copy to ...
4670         (grub-mkconfig_SCRIPTS): ... this. Update all users.
4671         (update-grub_DATA): Rename to ...
4672         (grub-mkconfig_DATA): ... this.
4674 2008-09-28  Robert Millan  <rmh@aybabtu.com>
4676         * fs/iso9660.c (struct grub_iso9660_primary_voldesc): Rename `created'
4677         to `modified'.  Add the real `created' field.
4678         (grub_iso9660_uuid): Use `modified' rather than `created' for
4679         constructing the UUID.
4681 2008-09-28  Felix Zielcke  <fzielcke@z-51.de>
4683         fs/jfs.c (grub_jfs_find_file): Treat multiple slashes like one.
4684         Based on code from Tomas Ebenlendr <ebik@ucw.cz>.
4686 2008-09-28  Bean  <bean123ch@gmail.com>
4688         * fs/ntfs.c (grub_ntfs_iterate_dir): Fix a bug in the previous patch.
4689         Thanks to Christian Franke for finding this bug.
4691 2008-09-25  Robert Millan  <rmh@aybabtu.com>
4693         * util/grub-mkdevicemap.c (make_device_map): Actually replace all
4694         instances of grub_util_get_disk_name() (see previous commit).
4696 2008-09-25  Robert Millan  <rmh@aybabtu.com>
4698         * conf/i386-pc.rmk (grub_mkdevicemap_SOURCES): Remove
4699         `util/i386/get_disk_name.c'.
4700         * conf/i386-efi.rmk: Likewise.
4701         * conf/x86_64-efi.rmk: Likewise.
4702         * conf/i386-coreboot.rmk: Likewise.
4703         * conf/i386-ieee1275.rmk: Likewise.
4704         * conf/powerpc-ieee1275.rmk (grub_mkdevicemap_SOURCES): Remove
4705         `util/ieee1275/get_disk_name.c'.
4706         * include/grub/util/misc.h (grub_util_get_disk_name): Remove.
4707         * util/ieee1275/get_disk_name.c: Remove file.
4708         * util/i386/get_disk_name.c: Remove file.
4709         * util/grub-mkdevicemap.c (make_device_map): Back to hardcoding
4710         "hd%d" for device.map entries, rather than using
4711         grub_util_get_disk_name().
4713 2008-09-24  Carles Pina i Estany  <carles@pina.cat>
4715         * disk/dmraid_nvidia.c (grub_dmraid_nv_detect): Fix `unused parameter'
4716         warning.
4717         * commands/i386/pc/pxecmd.c (dmraid_nvidia): Likewise.
4719 2008-09-24  Carles Pina i Estany  <carles@pina.cat>
4721         * include/grub/i386/pc/console.h (GRUB_TERM_NPAGE):
4722         Changed to 0x5100.
4723         (GRUB_TERM_PPAGE): Changed to 0x4900.
4725 2008-09-24  Robert Millan  <rmh@aybabtu.com>
4727         * include/grub/powerpc/ieee1275/console.h (GRUB_CONSOLE_KEY_*): Remove
4728         macros (they were i386-pc specific).
4729         * include/grub/sparc64/ieee1275/console.h: Likewise.
4730         * include/grub/efi/console.h: Likewise.
4732 2008-09-22  Bean  <bean123ch@gmail.com>
4734         * fs/ntfs.c (grub_ntfs_iterate_dir): Fix a rare case where $BITMAP is
4735         resident and in attribute list.
4737         * include/grub/ntfs.h (BMP_LEN): Removed.
4739 2008-09-22  Bean  <bean123ch@gmail.com>
4741         * disk/ata.c (grub_atapi_open): Initialize devfnd, no need to set
4742         scsi->name and scsi->luns, as they will be set in grub_scsi_open.
4744         * disk/scsi.c (grub_scsi_open): Don't call p->close (scsi) here when
4745         error occurs, as grub_disk_open will call grub_disk_close, which will
4746         call p->close (scsi).
4748 2008-09-21  Felix Zielcke  <fzielcke@z-51.de>
4750         * configure.ac (AC_INIT): Quote `GRUB' string and version number.
4751         (AC_PREREQ): Bumped to 2.59.
4752         (AC_TRY_COMPILE): Replace obsolete macro with ...
4753         (AC_COMPILE_IFELSE): ... this.
4754         * aclocal.m4 (AC_TRY_LINK): Replace obsolete macro with ...
4755         (AC_LINK_IFELSE): ... this.
4757 2008-09-21  Felix Zielcke  <fzielcke@z-51.de>
4759         * autogen.sh: Add a call to `gendistlist.sh'.
4761 2008-09-19  Christian Franke  <franke@computer.org>
4763         * aclocal.m4 (grub_CHECK_ENABLE_EXECUTE_STACK): New function.
4764         * configure.ac: Call grub_CHECK_ENABLE_EXECUTE_STACK.
4765         * include/grub/misc.h [NEED_ENABLE_EXECUTE_STACK]:
4766         Export __enable_execute_stack() to modules.
4767         * kern/misc.c [NEED_ENABLE_EXECUTE_STACK] (__enable_execute_stack):
4768         New function.
4770 2008-09-09  Felix Zielcke  <fzielcke@z-51.de>
4772         * Makefile.in (RMKFILES): Add `i386.rmk' and `x86_64-efi.rmk'.
4773         Sort the list.
4775 2008-09-09  Felix Zielcke  <fzielcke@z-51.de>
4777         * util/hostdisk.c: Replace #include <grub/util/biosdisk.h> with
4778         #include <grub/util/hostdisk.h>.
4780 2008-09-08  Robert Millan  <rmh@aybabtu.com>
4782         * loader/i386/pc/multiboot.c (grub_multiboot_load_elf32): Skip
4783         segments when their filesz is zero (grub_file_read() interprets
4784         zero-size as "read until EOF", which results in memory corruption).
4785         Use `lowest_segment' rather than 0 for calculating the current
4786         segment load address.
4788 2008-09-08  Robert Millan  <rmh@aybabtu.com>
4790         * util/hostdisk.c (open_device): Replace a grub_util_info() call
4791         with grub_dprintf("hostdisk", ...), as it was so verbose that it
4792         clobbered useful information.
4794 2008-09-08  Robert Millan  <rmh@aybabtu.com>
4796         * include/grub/util/biosdisk.h: Move to ...
4797         * include/grub/util/hostdisk.h: ... here.  Update all users.
4798         * util/biosdisk.c: Move to ...
4799         * util/hostdisk.c: ... here.  Update all users.
4801 2008-09-07  Robert Millan  <rmh@aybabtu.com>
4803         * loader/i386/pc/multiboot.c (mmap_addr, mmap_length): Remove
4804         variables.
4805         (grub_multiboot): Move `mbi' allocation upwards, so that mmap address
4806         and length can be stored directly in the `mbi->mmap_addr' and
4807         `mbi->mmap_length' struct fields.
4809 2008-09-07  Robert Millan  <rmh@aybabtu.com>
4811         * conf/i386.rmk: New file.  Provides declaration for building
4812         `cpuid.mod'.
4813         * conf/i386-pc.rmk (pkglib_MODULES): Remove `cpuid.mod'.
4814         (cpuid_mod_SOURCES, cpuid_mod_CFLAGS, cpuid_mod_LDFLAGS): Remove
4815         variables.
4816         Include `conf/i386.mk'.
4817         * conf/i386-efi.rmk: Likewise.
4818         * conf/x86_64-efi.rmk: Likewise.
4819         * conf/i386-coreboot.rmk: Likewise.
4820         * conf/i386-ieee1275.rmk: Likewise.
4822 2008-09-07  Vesa Jääskeläinen  <chaac@nic.fi>
4824         Based on patch created by Colin D Bennett <colin@gibibit.com>.
4825         Adds optimization support for BGR based modes.
4827         * include/grub/i386/pc/vbeblit.h (grub_video_i386_vbeblit_R8G8B8A8_R8G8B8A8) Removed.
4828         (grub_video_i386_vbeblit_R8G8B8X8_R8G8B8X8): Likewise.
4829         (grub_video_i386_vbeblit_R8G8B8_R8G8B8A8): Likewise.
4830         (grub_video_i386_vbeblit_R8G8B8_R8G8B8X8): Likewise.
4831         (grub_video_i386_vbeblit_index_R8G8B8A8): Likewise.
4832         (grub_video_i386_vbeblit_index_R8G8B8X8): Likewise.
4833         (grub_video_i386_vbeblit_R8G8B8A8_R8G8B8): Likewise.
4834         (grub_video_i386_vbeblit_R8G8B8_R8G8B8): Likewise.
4835         (grub_video_i386_vbeblit_index_R8G8B8): Likewise.
4836         (grub_video_i386_vbeblit_index_index): Likewise.
4837         (grub_video_i386_vbeblit_replace_directN): Added.
4838         (grub_video_i386_vbeblit_replace_BGRX8888_RGBX8888): Likewise.
4839         (grub_video_i386_vbeblit_replace_BGRX8888_RGB888): Likewise.
4840         (grub_video_i386_vbeblit_replace_BGR888_RGBX8888): Likewise.
4841         (grub_video_i386_vbeblit_replace_BGR888_RGB888): Likewise.
4842         (grub_video_i386_vbeblit_replace_RGBX8888_RGB888): Likewise.
4843         (grub_video_i386_vbeblit_replace_RGB888_RGBX8888): Likewise.
4844         (grub_video_i386_vbeblit_replace_index_RGBX8888): Likewise.
4845         (grub_video_i386_vbeblit_replace_index_RGB888): Likewise.
4846         (grub_video_i386_vbeblit_blend_BGRA8888_RGBA8888): Likewise.
4847         (grub_video_i386_vbeblit_blend_BGR888_RGBA8888): Likewise.
4848         (grub_video_i386_vbeblit_blend_RGBA8888_RGBA8888): Likewise.
4849         (grub_video_i386_vbeblit_blend_RGB888_RGBA8888): Likewise.
4850         (grub_video_i386_vbeblit_blend_index_RGBA8888): Likewise.
4852         * include/grub/i386/pc/vbefill.h (grub_video_i386_vbefill_R8G8B8A8) Removed.
4853         (grub_video_i386_vbefill_R8G8B8): Likewise.
4854         (grub_video_i386_vbefill_index): Likewise.
4855         (grub_video_i386_vbefill_direct32): Added.
4856         (grub_video_i386_vbefill_direct24): Likewise.
4857         (grub_video_i386_vbefill_direct16): Likewise.
4858         (grub_video_i386_vbefill_direct8): Likewise.
4860         * include/grub/video.h (grub_video_blit_format): Removed
4861         GRUB_VIDEO_BLIT_FORMAT_R8G8B8A8, GRUB_VIDEO_BLIT_FORMAT_R8G8B8.
4862         (grub_video_blit_format): Added GRUB_VIDEO_BLIT_FORMAT_RGBA_8888,
4863         GRUB_VIDEO_BLIT_FORMAT_BGRA_8888, GRUB_VIDEO_BLIT_FORMAT_RGB_888,
4864         GRUB_VIDEO_BLIT_FORMAT_BGR_888, GRUB_VIDEO_BLIT_FORMAT_RGB_565,
4865         GRUB_VIDEO_BLIT_FORMAT_BGR_565.
4867         * video/video.c (grub_video_get_blit_format): Updated to use new
4868         blit formats.  Added handling for 16 bit color modes.
4870         * video/i386/pc/vbe.c (grub_video_vbe_fill_rect): Updated to use new
4871         fillers.
4872         (common_blitter): Updated to use new blitters.
4874         * video/i386/pc/vbeblit.c (grub_video_i386_vbeblit_R8G8B8A8_R8G8B8A8):
4875         Removed.
4876         (grub_video_i386_vbeblit_R8G8B8X8_R8G8B8X8): Likewise.
4877         (grub_video_i386_vbeblit_R8G8B8_R8G8B8A8): Likewise.
4878         (grub_video_i386_vbeblit_R8G8B8_R8G8B8X8): Likewise.
4879         (grub_video_i386_vbeblit_index_R8G8B8A8): Likewise.
4880         (grub_video_i386_vbeblit_index_R8G8B8X8): Likewise.
4881         (grub_video_i386_vbeblit_R8G8B8A8_R8G8B8): Likewise.
4882         (grub_video_i386_vbeblit_R8G8B8_R8G8B8): Likewise.
4883         (grub_video_i386_vbeblit_index_R8G8B8): Likewise.
4884         (grub_video_i386_vbeblit_index_index): Likewise.
4885         (grub_video_i386_vbeblit_replace_directN): Added.
4886         (grub_video_i386_vbeblit_replace_BGRX8888_RGBX8888): Likewise.
4887         (grub_video_i386_vbeblit_replace_BGRX8888_RGB888): Likewise.
4888         (grub_video_i386_vbeblit_replace_BGR888_RGBX8888): Likewise.
4889         (grub_video_i386_vbeblit_replace_BGR888_RGB888): Likewise.
4890         (grub_video_i386_vbeblit_replace_RGBX8888_RGB888): Likewise.
4891         (grub_video_i386_vbeblit_replace_RGB888_RGBX8888): Likewise.
4892         (grub_video_i386_vbeblit_replace_index_RGBX8888): Likewise.
4893         (grub_video_i386_vbeblit_replace_index_RGB888): Likewise.
4894         (grub_video_i386_vbeblit_blend_BGRA8888_RGBA8888): Likewise.
4895         (grub_video_i386_vbeblit_blend_BGR888_RGBA8888): Likewise.
4896         (grub_video_i386_vbeblit_blend_RGBA8888_RGBA8888): Likewise.
4897         (grub_video_i386_vbeblit_blend_RGB888_RGBA8888): Likewise.
4898         (grub_video_i386_vbeblit_blend_index_RGBA8888): Likewise.
4900         * video/i386/pc/vbefill.c (grub_video_i386_vbefill_R8G8B8A8): Removed.
4901         (grub_video_i386_vbefill_R8G8B8): Likewise.
4902         (grub_video_i386_vbefill_index): Likewise.
4903         (grub_video_i386_vbefill_direct32): Added.
4904         (grub_video_i386_vbefill_direct24): Likewise.
4905         (grub_video_i386_vbefill_direct16): Likewise.
4906         (grub_video_i386_vbefill_direct8): Likewise.
4908         * video/readers/jpeg.c (grub_jpeg_decode_sos): Adapt to new blitter
4909         types.
4911         * video/readers/tga.c (grub_video_reader_tga): Adapt to new blitter
4912         types.
4914         * video/readers/png.c (grub_png_decode_image_header): Adapt to new
4915         blitter types.
4917         * video/bitmap.c (grub_video_bitmap_create): Adapt to new blitter
4918         types.
4920 2008-09-06  Felix Zielcke  <fzielcke@z-51.de>
4922         * disk/raid.c (insert_array): Set `array->chunk_size' to 64 for
4923         RAID level 1.
4925 2008-09-06  Felix Zielcke  <fzielcke@z-51.de>
4927         * fs/iso9660.c (grub_iso9660_date): New structure.
4928         (grub_iso9660_primary_voldesc): Add `grub_iso9660_date' member.
4929         (grub_iso9660_uuid): New function.
4931 2008-09-05  Bean  <bean123ch@gmail.com>
4933         * fs/fshelp.c (grub_fshelp_find_file): Handle case insensitive names.
4935         * fs/ntfs.c (list_file): Ignore names in DOS namespace, set the case
4936         insensitive bit for names in Win32 and Win32 & DOS namespace.
4938         * include/grub/fshelp.h (GRUB_FSHELP_CASE_INSENSITIVE): New macro.
4940         * include/grub/types.h (LONG_MAX): Likewise.
4942 2008-09-04  Felix Zielcke  <fzielcke@z-51.de>
4944         * util/getroot.c: Include <config.h>.
4945         (grub_util_get_grub_dev): Rewrite to use asprintf for mdraid devices,
4946         add support for /dev/md/N devices and handle LVM double dash escaping.
4948 2008-09-04  Felix Zielcke  <fzielcke@z-51.de>
4950         * config.guess: Update to latest version from config git.
4951         * config.sub: Likewise.
4953 2008-09-03  Robert Millan  <rmh@aybabtu.com>
4955         * disk/scsi.c (grub_scsi_open): Remove size limit when printing
4956         `disk->total_sectors'.
4958 2008-09-01  Colin D Bennett  <colin@gibibit.com>
4960         * include/grub/normal.h: Fixed incorrect comment for
4961         GRUB_COMMAND_FLAG_NO_ARG_PARSE.
4963 2008-09-01  Colin D Bennett  <colin@gibibit.com>
4965         * commands/i386/pc/vbeinfo.c (grub_cmd_vbeinfo): Replaced constant
4966         values with defines.
4968         * include/grub/i386/pc/vbe.h (GRUB_VBE_MODEATTR_SUPPORTED): Added.
4969         (GRUB_VBE_MODEATTR_RESERVED_1): Likewise.
4970         (GRUB_VBE_MODEATTR_BIOS_TTY_OUTPUT_SUPPORT): Likewise.
4971         (GRUB_VBE_MODEATTR_COLOR): Likewise.
4972         (GRUB_VBE_MODEATTR_GRAPHICS): Likewise.
4973         (GRUB_VBE_MODEATTR_VGA_COMPATIBLE): Likewise.
4974         (GRUB_VBE_MODEATTR_VGA_WINDOWED_AVAIL): Likewise.
4975         (GRUB_VBE_MODEATTR_LFB_AVAIL): Likewise.
4976         (GRUB_VBE_MODEATTR_DOUBLE_SCAN_AVAIL): Likewise.
4977         (GRUB_VBE_MODEATTR_INTERLACED_AVAIL): Likewise.
4978         (GRUB_VBE_MODEATTR_TRIPLE_BUF_AVAIL): Likewise.
4979         (GRUB_VBE_MODEATTR_STEREO_AVAIL): Likewise.
4980         (GRUB_VBE_MODEATTR_DUAL_DISPLAY_START): Likewise.
4981         (GRUB_VBE_MEMORY_MODEL_TEXT): Likewise.
4982         (GRUB_VBE_MEMORY_MODEL_CGA): Likewise.
4983         (GRUB_VBE_MEMORY_MODEL_HERCULES): Likewise.
4984         (GRUB_VBE_MEMORY_MODEL_PLANAR): Likewise.
4985         (GRUB_VBE_MEMORY_MODEL_NONCHAIN4_256): Likewise.
4986         (GRUB_VBE_MEMORY_MODEL_YUV): Likewise.
4988 2008-08-31  Robert Millan  <rmh@aybabtu.com>
4990         * loader/i386/pc/multiboot.c (grub_get_multiboot_mmap_len): Fix
4991         declaration.
4992         (grub_multiboot): Fix a few warnings.
4994 2008-08-31  Robert Millan  <rmh@aybabtu.com>
4996         * loader/i386/pc/multiboot.c: Update comment not to say that
4997         boot_device support is unimplemented.
4999 2008-08-31  Robert Millan  <rmh@aybabtu.com>
5001         * loader/i386/pc/multiboot.c: Update comment not to say that a.out
5002         or memory map support are unimplemented.
5004 2008-08-31  Colin D Bennett  <colin@gibibit.com>
5006         * util/i386/pc/grub-mkrescue.in: Support multiple overlay directories.
5008 2008-08-31  Colin D Bennett  <colin@gibibit.com>
5010         * commands/i386/pc/vbeinfo.c (grub_cmd_vbeinfo): Show VBE version and
5011         total video memory in 'vbeinfo' output; show color format details for
5012         each video mode.
5014 2008-08-30  Pavel Roskin  <proski@gnu.org>
5016         * util/genmoddep.c: Remove for real this time.
5017         * DISTLIST: Remove util/genmoddep.c.
5019 2008-08-30  Robert Millan  <rmh@aybabtu.com>
5021         * kern/i386/pc/startup.S (multiboot_header): Force 4-byte alignment
5022         as required by Multiboot spec (it was already 4-byte aligned, but
5023         only by chance).
5025 2008-08-29  Pavel Roskin  <proski@gnu.org>
5027         * kern/powerpc/ieee1275/crt0.S: Rename to ...
5028         * kern/powerpc/ieee1275/startup.S: ... this.
5029         * conf/powerpc-ieee1275.rmk: Adjust for the above.
5030         * DISTLIST: Likewise.
5032         * kern/powerpc/ieee1275/crt0.S: Include grub/symbol.h and
5033         grub/cpu/kernel.h.  Add start label for consistency with other
5034         platforms.  Add grub_prefix immediately after start.  Add jump
5035         to the code after grub_prefix.
5036         * include/grub/powerpc/kernel.h: Provide valid values for
5037         GRUB_KERNEL_CPU_PREFIX and GRUB_KERNEL_CPU_DATA_END.
5039 2008-08-29  Bean  <bean123ch@gmail.com>
5041         * configure.ac: Change host_os to cygwin for mingw.
5042         (asprintf): New check for function.
5044         * include/grub/symbol.h: Replace #ifndef __CYGWIN__ with
5045         #if ! defined (__CYGWIN__) && ! defined (__MINGW32__).
5047         * include/grub/util/misc.h: #include <config.h> and <grub/types.h>,
5048         declare asprintf if HAVE_ASPRINTF is not set, declare fseeko, ftello,
5049         sync, sleep and grub_util_get_disk_size for mingw.
5051         * util/biosdisk.c (grub_util_biosdisk_open): Use grub_util_get_disk_size
5052         to get size in mingw.
5053         (open_device): Use flag O_BINARY if it's defined.
5054         (find_root_device): Add dummy code for mingw.
5056         * util/grub-mkdevicemap.c (get_floppy_disk_name): Return 0 for mingw.
5057         (get_ide_disk_name): Return //./PHYSICALDRIVE%d for mingw.
5058         (get_scsi_disk_name): Return 0 for mingw.
5060         * util/hostfs.c: #include <grub/util/misc.h>.
5061         (grub_hostfs_open): Use "rb" flag to open file, use
5062         grub_util_get_disk_size to get disk size for mingw.
5064         * util/misc.c: #include <windows.h> and <winioctl.h> in mingw.
5065         (asprintf): New function if HAVE_ASPRINTF is not set.
5066         (sync): New function for mingw.
5067         (sleep): Likewise.
5068         (grub_util_get_disk_size): Likewise.
5070 2008-08-28  Pavel Roskin  <proski@gnu.org>
5072         * conf/powerpc-ieee1275.rmk (kernel_elf_SOURCES): Add
5073         kern/time.c.
5075 2008-08-28  Robert Millan  <rmh@aybabtu.com>
5077         * util/biosdisk.c (find_grub_drive): Declare missing `i' variable.
5079 2008-08-28  Robert Millan  <rmh@aybabtu.com>
5081         Change find_grub_drive() syntax so it doesn't prevent it from
5082         detecting NULL names as errors.
5084         * util/biosdisk.c (find_grub_drive): Move free slot search code
5085         from here ...
5086         (find_free_slot): ... to here.
5087         (read_device_map): Use find_free_slot() to search for free slots.
5089 2008-08-27  Marco Gerards  <marco@gnu.org>
5091         * conf/common.rmk (pkglib_MODULES): Add scsi.mod.
5092         (scsi_mod_SOURCES): New variable.
5093         (scsi_mod_CFLAGS): Likewise
5094         (scsi_mod_LDFLAGS): Likewise.
5096         * disk/scsi.c: New file.
5098         * include/grub/scsi.h: Likewise.
5100         * include/grub/scsicmd.h: Likewise.
5102         * disk/ata.c: Include <grub/scsi.h>.
5103         (grub_atapi_packet): Do not use grub_ata_cmd, use registers
5104         instead.
5105         (grub_ata_iterate): Skip ATAPI devices.
5106         (grub_ata_open): Only handle ATAPI devices.
5107         (struct grub_atapi_read): Removed.
5108         (grub_atapi_readsector): Likewise.
5109         (grub_ata_read): No longer handle ATAPI devices.
5110         (grub_ata_write): Likewise.
5111         (grub_atapi_iterate): New function.
5112         (grub_atapi_read): Likewise.
5113         (grub_atapi_write): Likewise.
5114         (grub_atapi_open): Likewise.
5115         (grub_atapi_close): Likewise.
5116         (grub_atapi_dev): New variable.
5117         (GRUB_MOD_INIT(ata)): Register ATAPI as SCSI device.
5118         (GRUB_MOD_FINI(ata)): Unregister ATAPI.
5120         * include/grub/disk.h (enum grub_disk_dev_id): Add
5121         `GRUB_DISK_DEVICE_SCSI_ID'.
5123 2008-08-26  Robert Millan  <rmh@aybabtu.com>
5125         * util/biosdisk.c (grub_util_biosdisk_open, open_device)
5126         (grub_util_biosdisk_get_grub_dev): Make error messages a bit more
5127         descriptive.
5129 2008-08-23  Bean  <bean123ch@gmail.com>
5131         * conf/common.rmk (grub_probe_SOURCES): Add disk/mdraid_linux.c.
5132         (grub_fstest_SOURCES): Add disk/raid5_recover.c, disk/raid6_recover.c,
5133         disk/mdraid_linux.c and disk/dmraid_nvidia.c and lib/crc.c.
5134         (pkglib_MODULES): Add raid5rec.mod, raid6rec.mod, mdraid.mod and
5135         dm_nv.mod.
5136         (raid5rec_mod_SOURCES): New macro.
5137         (raid5rec_mod_CFLAGS): Likewise.
5138         (raid5rec_mod_LDFLAGS): Likewise.
5139         (raid6rec_mod_SOURCES): Likewise.
5140         (raid6rec_mod_CFLAGS): Likewise.
5141         (raid6rec_mod_LDFLAGS): Likewise.
5142         (mdraid_mod_SOURCES): Likewise.
5143         (mdraid_mod_CFLAGS): Likewise.
5144         (mdraid_mod_LDFLAGS): Likewise.
5145         (dm_nv_mod_SOURCES): Likewise.
5146         (dm_nv_mod_CFLAGS): Likewise.
5147         (dm_nv_mod_LDFLAGS): Likewise.
5149         * conf/i386-pc.rmk (grub_setup_SOURCES): Add disk/mdraid_linux.c.
5150         (grub_emu_SOURCES):  Add disk/raid5_recover.c, disk/raid6_recover.c,
5151         disk/mdraid_linux.c and disk/dmraid_nvidia.c.
5153         * conf/i386-coreboot.rmk (grub_emu_SOURCES): Add disk/raid5_recover.c,
5154         disk/raid6_recover.c, disk/mdraid_linux.c and disk/dmraid_nvidia.c.
5156         * conf/i386-efi.rmk (grub_emu_SOURCES): Likewise.
5158         * conf/x86_64-efi.rmk (grub_emu_SOURCES): Likewise.
5160         * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Likewise.
5162         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
5164         * disk/raid5_recover.c: New file.
5166         * disk/raid6_recover.c: Likewise.
5168         * disk/mdraid_linux.c: Likewise.
5170         * disk/dmraid_nvidia.c: Likewise.
5172         * disk/i386/pc/biosdisk.c: Set total_sectors of cdrom device to
5173         ULONG_MAX.
5175         * disk/raid.c (grub_raid_open): Use the size of the smallest disk to
5176         calculate the size of raid device.
5177         (grub_raid_read): Simplify raid0 code. Support raid4, raid6 and four
5178         different layout of raid5.
5179         (grub_raid_scan_device): Remove code specific to mdraid.
5180         (grub_raid_list): New variable.
5181         (free_array): New function.
5182         (grub_raid_register): Likewise.
5183         (grub_raid_unregister): Likewise.
5184         (grub_raid_rescan): Likewise.
5185         (GRUB_MOD_INIT): Don't iterate device here.
5186         (GRUB_MOD_FINI): Use free_array to release resource.
5188         * include/grub/raid.h: Remove macro and structure specific to mdraid.
5189         (grub_raid5_recover_func_t): New function variable type.
5190         (grub_raid6_recover_func_t): Likewise.
5191         (grub_raid5_recover_func): New variable.
5192         (grub_raid6_recover_func): Likewise.
5193         (grub_raid_register): New function.
5194         (grub_raid_unregister): Likewise.
5195         (grub_raid_rescan): Likewise.
5196         (grub_raid_block_xor): Likewise.
5198         * util/grub-fstest.c: Add #include <grub/raid.h> and <grub/lib/crc.h>.
5199         (CMD_CRC): New macro.
5200         (part): Removed.
5201         (read_file): Handle device as well as file.
5202         (cmd_crc): New function.
5203         (fstest): Handle multiple disks.
5204         (options): Remove part, raw and long, add root and diskcount.
5205         (usage): Add crc, remove -p, -r, -l, add -r and -c.
5206         (main): Find the first non option entry and ignore subsequent options,
5207         add handling for the new options, support multiple disks.
5209         * util/grub-probe.c (probe): Add mdraid to abstraction_name.
5211 2008-08-23  Bean  <bean123ch@gmail.com>
5213         * normal/x86_64/setjmp.S (grub_longjmp): Return 1 when val = 0.
5215         * genfslist.sh: Ignore kernel.mod.
5217         * genpartmaplist.sh: Likewise.
5219 2008-08-23  Robert Millan  <rmh@aybabtu.com>
5221         * util/getroot.c (find_root_device): Skip anything that starts with
5222         a dot, not just directories.  This avoids things like /dev/.tmp.md0.
5224 2008-08-22  Felix Zielcke  <fzielcke@z-51.de>
5226         * util/update-grub.in (GRUB_GFXMODE): Export variable.
5227         * util/grub.d/00_header.in: Allow the administrator to change default
5228         gfxmode via ${GRUB_GFXMODE}.
5230 2008-08-21  Felix Zielcke  <fzielcke@z-51.de>
5232         * fs/ntfs.c (grub_ntfs_mount): Fix a memory leak.
5234 2008-08-21  Robert Millan  <rmh@aybabtu.com>
5236         * loader/i386/linux.c: New file.  Implements generic 32-bit Linux
5237         loader.
5238         * conf/i386-coreboot.rmk (_linux_mod_SOURCES): Replace
5239         `loader/i386/pc/linux.c' with `loader/i386/linux.c'.
5241 2008-08-20  Carles Pina i Estany  <carles@pina.cat>
5243         * menu/normal.c (run_menu): Replace hardcoded numbers with macros
5244         (16 for GRUB_TERM_UP and 14 for GRUB_TERM_DOWN)
5246 2008-08-19  Robert Millan  <rmh@aybabtu.com>
5248         * term/gfxterm.c (DEFAULT_CURSOR_COLOR): Remove.
5249         (struct grub_virtual_screen): Remove `cursor_color'.
5250         (grub_virtual_screen_setup): Remove `virtual_screen.cursor_color'
5251         initialization.
5252         (write_cursor): Use `virtual_screen.fg_color' to draw cursor.
5254 2008-08-18  Robert Millan  <rmh@aybabtu.com>
5256         Unify (identical) linux_normal.c files.
5257         * loader/i386/efi/linux_normal.c: Move from here ...
5258         * loader/linux_normal.c: ... to here.  Update all users.
5259         * loader/i386/pc/linux_normal.c: Delete.  Update all users.
5260         * loader/i386/ieee1275/linux_normal.c: Likewise.
5262 2008-08-18  Robert Millan  <rmh@aybabtu.com>
5264         * include/grub/i386/linux.h (LINUX_LOADER_ID_LILO)
5265         (LINUX_LOADER_ID_LOADLIN, LINUX_LOADER_ID_BOOTSECT)
5266         (LINUX_LOADER_ID_SYSLINUX, LINUX_LOADER_ID_ETHERBOOT)
5267         (LINUX_LOADER_ID_ELILO, LINUX_LOADER_ID_GRUB, LINUX_LOADER_ID_UBOOT)
5268         (LINUX_LOADER_ID_XEN, LINUX_LOADER_ID_GUJIN, LINUX_LOADER_ID_QEMU):
5269         New macros.
5270         (GRUB_LINUX_CL_OFFSET, GRUB_LINUX_CL_END_OFFSET): Move from here ...
5271         * loader/i386/pc/linux.c (GRUB_LINUX_CL_OFFSET)
5272         (GRUB_LINUX_CL_END_OFFSET): ... to here.
5273         * loader/i386/efi/linux.c (GRUB_EFI_CL_OFFSET): Rename to ...
5274         (GRUB_LINUX_CL_OFFSET): ... this.  Update all users.
5275         (GRUB_EFI_CL_END_OFFSET): Rename to ...
5276         (GRUB_LINUX_CL_END_OFFSET): ... this.  Update all users.
5277         (grub_rescue_cmd_linux): Macroify `type_of_loader' initialization.
5278         Initialize `params->video_cursor_x' and `params->video_cursor_y'
5279         portably using grub_getxy().
5280         Replace `-EFI' with `-bzImage' in boot message.
5282 2008-08-17  Robert Millan  <rmh@aybabtu.com>
5284         * include/grub/x86_64/kernel.h: New file (<grub/i386/kernel.h> stub).
5286 2008-08-17  Robert Millan  <rmh@aybabtu.com>
5288         * conf/i386-pc.rmk (kernel_img_SOURCES): Add `kern/i386/pc/mmap.c'.
5290         * include/grub/i386/pc/init.h (GRUB_MACHINE_MEMORY_AVAILABLE)
5291         (GRUB_MACHINE_MEMORY_RESERVED): New macros.
5292         (grub_machine_mmap_iterate): New function declaration.
5293         * include/grub/multiboot.h (struct grub_multiboot_mmap_entry): New
5294         structure.
5295         (GRUB_MMAP_MEMORY_AVAILABLE, GRUB_MMAP_MEMORY_RESERVED): New
5296         macros.
5298         * kern/i386/pc/init.c (grub_machine_init): Replace hardcoded region
5299         type check value with `GRUB_MACHINE_MEMORY_AVAILABLE'.
5300         Move e820 parsing from here ...
5301         * kern/i386/pc/mmap.c: New file.
5302         (grub_machine_mmap_iterate): ... to here.
5304         * include/grub/i386/coreboot/memory.h: Remove `<grub/err.h>'.
5305         (GRUB_LINUXBIOS_MEMORY_AVAILABLE): Rename (for consistency) to ...
5306         (GRUB_MACHINE_MEMORY_AVAILABLE): ... this.  Update all users.
5307         (grub_available_iterate): Redeclare to return `void', and redeclare
5308         its hook to use grub_uint64_t as addr and size parameters, and rename
5309         to ...
5310         (grub_machine_mmap_iterate): ... this.  Update all users.
5312         * kern/i386/coreboot/mmap.c (grub_mmap_iterate): Simplify parser loop
5313         to make it more readable.  Rename to ...
5314         (grub_machine_mmap_iterate): ... this.
5316         * loader/i386/pc/multiboot.c (mmap_addr, mmap_length): New variables.
5317         (grub_get_multiboot_mmap_len, grub_fill_multiboot_mmap): New functions.
5318         (grub_multiboot): Allocate an extra region after the payload, and fill
5319         it with a Multiboot memory map.  Adjust a.out loader to calculate size
5320         with the extra space.
5321         (grub_multiboot_load_elf32): Adjust elf32 loader to calculate size
5322         with the extra space.
5324 2008-08-17  Carles Pina i Estany  <carles@pina.cat>
5326         * menu/normal.c (run_menu): Add Home and End keys in grub-menu.
5328 2008-08-17  Felix Zielcke  <fzielcke@z-51.de>
5330         * gendistlist.sh: Add *.y, *.tex, *.texi, grub.cfg, README, *.sc,
5331         mdate-sh to the list `find' searches for.
5332         * DISTLIST: Regenerated.
5334 2008-08-16  Felix Zielcke  <fzielcke@z-51.de>
5336         * gendistlist.sh (EXTRA_DISTFILES): Remove gensymlist.sh,
5337         genkernsyms.sh.  Add geninit.sh, geninitheader.sh, genkernsyms.sh.in,
5338         genmoddep.awk, gensymlist.sh.in.
5339         (DISTDIRS): Add bus, docs, hook, lib.
5340         * DISTLIST: Regenerated.
5341         * NEWS: Add cygwin support and change the `os-prober' entry a bit.
5343 2008-08-16  Robert Millan  <rmh@aybabtu.com>
5345         * disk/raid.c (grub_raid_init): Handle/report errors set by
5346         grub_device_iterate().
5347         * disk/lvm.c (grub_lvm_init): Likewise.
5349 2008-08-15  Bean  <bean123ch@gmail.com>
5351         * conf/i386-pc.rmk (pkglib_MODULES): Add datetime.mod, date.mod
5352         and datehook.mod.
5353         (datetime_mod_SOURCES): New macro.
5354         (datetime_mod_CFLAGS): Likewise.
5355         (datetime_mod_LDFLAGS): Likewise.
5356         (date_mod_SOURCES): Likewise.
5357         (date_mod_CFLAGS): Likewise.
5358         (date_mod_LDFLAGS): Likewise.
5359         (datehook_mod_SOURCES): Likewise.
5360         (datehook_mod_CFLAGS): Likewise.
5361         (datehook_mod_LDFLAGS): Likewise.
5363         * conf/i386-coreboot.rmk (pkglib_MODULES): Add datetime.mod, date.mod
5364         and datehook.mod.
5365         (datetime_mod_SOURCES): New macro.
5366         (datetime_mod_CFLAGS): Likewise.
5367         (datetime_mod_LDFLAGS): Likewise.
5368         (date_mod_SOURCES): Likewise.
5369         (date_mod_CFLAGS): Likewise.
5370         (date_mod_LDFLAGS): Likewise.
5371         (datehook_mod_SOURCES): Likewise.
5372         (datehook_mod_CFLAGS): Likewise.
5373         (datehook_mod_LDFLAGS): Likewise.
5375         * conf/i386-ieee1275.rmk (pkglib_MODULES): Add datetime.mod, date.mod
5376         and datehook.mod.
5377         (datetime_mod_SOURCES): New macro.
5378         (datetime_mod_CFLAGS): Likewise.
5379         (datetime_mod_LDFLAGS): Likewise.
5380         (date_mod_SOURCES): Likewise.
5381         (date_mod_CFLAGS): Likewise.
5382         (date_mod_LDFLAGS): Likewise.
5383         (datehook_mod_SOURCES): Likewise.
5384         (datehook_mod_CFLAGS): Likewise.
5385         (datehook_mod_LDFLAGS): Likewise.
5387         * conf/i386-efi.rmk (pkglib_MODULES): Add datetime.mod, date.mod
5388         and datehook.mod.
5389         (datetime_mod_SOURCES): New macro.
5390         (datetime_mod_CFLAGS): Likewise.
5391         (datetime_mod_LDFLAGS): Likewise.
5392         (date_mod_SOURCES): Likewise.
5393         (date_mod_CFLAGS): Likewise.
5394         (date_mod_LDFLAGS): Likewise.
5395         (datehook_mod_SOURCES): Likewise.
5396         (datehook_mod_CFLAGS): Likewise.
5397         (datehook_mod_LDFLAGS): Likewise.
5399         * conf/x86_64-efi.rmk (pkglib_MODULES): Add datetime.mod, date.mod
5400         and datehook.mod.
5401         (datetime_mod_SOURCES): New macro.
5402         (datetime_mod_CFLAGS): Likewise.
5403         (datetime_mod_LDFLAGS): Likewise.
5404         (date_mod_SOURCES): Likewise.
5405         (date_mod_CFLAGS): Likewise.
5406         (date_mod_LDFLAGS): Likewise.
5407         (datehook_mod_SOURCES): Likewise.
5408         (datehook_mod_CFLAGS): Likewise.
5409         (datehook_mod_LDFLAGS): Likewise.
5411         * kern/env.c (grub_env_insert): Fix a bug in prevp pointer.
5413         * commands/date.c: New file.
5415         * hook/datehook.c: Likewise.
5417         * include/grub/lib/datetime.h: Likewise.
5419         * include/grub/i386/cmos.h: Likewise.
5421         * lib/datetime.c: Likewise.
5423         * lib/i386/datetime.c: Likewise.
5425         * lib/efi/datetime.c: Likewise.
5427 2008-08-14  Robert Millan  <rmh@aybabtu.com>
5429         * conf/common.rmk (bin_UTILITIES): Add `grub-mkelfimage'.
5430         (grub_mkelfimage_SOURCES): New variable.
5431         (util/elf/grub-mkimage.c_DEPENDENCIES): Likewise.
5433         * conf/i386-coreboot.rmk (bin_UTILITIES, grub_mkimage_SOURCES)
5434         (grub_mkimage_LDFLAGS, util/elf/grub-mkimage.c_DEPENDENCIES): Remove.
5435         * conf/powerpc-ieee1275.rmk: Likewise.
5436         * conf/i386-ieee1275.rmk: Likewise.
5438         * kern/ieee1275/init.c: Include `<grub/cpu/kernel.h>'.
5439         * kern/i386/coreboot/init.c: Likewise.
5441         * kern/i386/ieee1275/startup.S: Replace `<grub/machine/kernel.h>'
5442         with `<grub/cpu/kernel.h>'.
5443         (GRUB_KERNEL_MACHINE_PREFIX, GRUB_KERNEL_MACHINE_DATA_END): Renamed
5444         to ...
5445         (GRUB_KERNEL_CPU_PREFIX, GRUB_KERNEL_CPU_DATA_END): ... this.
5446         * kern/i386/coreboot/startup.S: Likewise.
5448         * include/grub/powerpc/ieee1275/kernel.h (GRUB_MOD_ALIGN)
5449         (GRUB_MOD_GAP): Remove.
5450         * include/grub/powerpc/kernel.h: New file.
5451         * include/grub/i386/ieee1275/kernel.h (GRUB_KERNEL_MACHINE_PREFIX)
5452         (GRUB_KERNEL_MACHINE_DATA_END): Remove.
5453         * include/grub/i386/kernel.h: New file.
5454         * include/grub/i386/coreboot/kernel.h (GRUB_MOD_ALIGN)
5455         (GRUB_MOD_GAP, GRUB_KERNEL_MACHINE_PREFIX)
5456         (GRUB_KERNEL_MACHINE_DATA_END): Remove.
5458         * util/ieee1275/grub-install.in (grub_mkimage): Initialize to use
5459         `grub-mkelfimage'.
5460         Use --directory when invoking grub_mkimage.
5462         * util/elf/grub-mkimage.c: Include `<grub/cpu/kernel.h>'.
5463         (add_segments): Replace GRUB_KERNEL_MACHINE_DATA_END and
5464         GRUB_KERNEL_MACHINE_PREFIX with GRUB_KERNEL_CPU_DATA_END
5465         and GRUB_KERNEL_CPU_PREFIX.
5467 2008-08-14  Felix Zielcke  <fzielcke@z-51.de>
5469         * include/grub/err.h (grub_err_printf): New function prototype.
5470         * util/misc.c (grub_err_printf): New function.
5471         * kern/misc.c [! GRUB_UTIL] (grub_err_printf): New alias for
5472         grub_printf.
5473         * kern/err.c (grub_print_error): Use grub_err_printf.
5475 2008-08-13  Robert Millan  <rmh@aybabtu.com>
5477         * docs/grub.cfg: Remove `/dev/' prefix in GNU/Hurd boot entry.
5479 2008-08-13  Robert Millan  <rmh@aybabtu.com>
5481         * docs/grub.cfg: Use the native device name for the example GNU/Hurd
5482         boot entry.
5484 2008-08-12  Robert Millan  <rmh@aybabtu.com>
5486         * loader/i386/pc/multiboot.c (grub_multiboot_load_elf32): Move part
5487         of the relocation code from here ...
5488         (grub_multiboot): ... to here.
5489         (forward_relocator, backward_relocator): Move from here ...
5490         * kern/i386/loader.S (grub_multiboot_forward_relocator)
5491         (grub_multiboot_backward_relocator): ... to here.
5492         (grub_multiboot_real_boot): Use %edx for entry offset.  Put Multiboot
5493         magic in %eax.  Use %ebp for jumping (so %edx is not trashed).
5494         * include/grub/i386/loader.h (grub_multiboot_forward_relocator)
5495         (grub_multiboot_forward_relocator_end)
5496         (grub_multiboot_backward_relocator)
5497         (grub_multiboot_backward_relocator_end): New variables.
5499 2008-08-12  Bean  <bean123ch@gmail.com>
5501         * disk/raid.c (grub_raid_read): Fix a bug in raid0 code.
5503 2008-08-11  Robert Millan  <rmh@aybabtu.com>
5505         * kern/i386/linuxbios/startup.S: Move from here ...
5506         * kern/i386/coreboot/startup.S: ... to here.
5508         * kern/i386/linuxbios/init.c: Move from here ...
5509         * kern/i386/coreboot/init.c: ... to here.
5511         * kern/i386/linuxbios/table.c: Move from here ...
5512         * kern/i386/coreboot/mmap.c: ... to here.
5514         * conf/i386-coreboot.rmk (kernel_elf_SOURCES): Update moved files.
5516 2008-08-11  Robert Millan  <rmh@aybabtu.com>
5518         * kern/device.c (grub_device_open): Do not handle grub_disk_open()
5519         errors.  Leave it to the upper layer to handle them.
5521 2008-08-09  Christian Franke  <franke@computer.org>
5523         * Makefile.in: Add `target_os' and `enable_grub_pe2elf'.
5524         * conf/common.rmk: Install `grub-pe2elf' only if requested.
5525         Install `grub.d/10_windows' only on Cygwin.
5526         * configure.ac: Add subst of `target_os'.
5527         Check `target_os' also before setting TARGET_OBJ2ELF.
5528         Add `--enable-grub-pe2elf'.
5530 2008-08-08  Robert Millan  <rmh@aybabtu.com>
5532         * kern/disk.c: Replace `<grub/machine/time.h>' with `<grub/time.h>'.
5533         (grub_last_time): Change type to grub_uint64_t.
5534         (grub_disk_open): Migrate code from to using grub_get_time_ms().
5535         (grub_disk_close): Likewise.
5537         * normal/menu.c: Replace `<grub/machine/time.h>' with `<grub/time.h>'.
5538         (run_menu): Migrate code from to using grub_get_time_ms().
5540         * util/misc.c (grub_get_time_ms): New function.
5542 2008-08-08  Marco Gerards  <marco@gnu.org>
5544         * disk/ata.c (grub_ata_regget): Change return type to
5545         `grub_uint8_t'.
5546         (grub_ata_regget2): Likewise.
5547         (grub_ata_wait_status): New function.
5548         (grub_ata_wait_busy): Removed function, updated all users to use
5549         `grub_ata_wait_status'.
5550         (grub_ata_wait_drq): Likewise.
5551         (grub_ata_cmd): New function.
5552         (grub_ata_pio_read): Change return type to `grub_uint8_t'.  Add
5553         error handling.
5554         (grub_ata_pio_write): Add error handling.
5555         (grub_atapi_identify): Likewise.
5556         (grub_atapi_packet): Use `grub_ata_cmd' and improve error
5557         handling.
5558         (grub_ata_identify): Use `grub_ata_cmd' and improve error
5559         handling.  Actually use the detected registers.  Reorder the
5560         detection logic such that it is easier to read.
5561         (grub_ata_pciinit): Do not assign the same ID to each controller.
5562         (grub_ata_setaddress): Use `grub_ata_cmd' and improve error
5563         handling.
5564         (grub_atapi_readsector): Check the result of `grub_ata_pio_read'.
5566         * include/grub/err.h (grub_err_t): Add `GRUB_ERR_TIMEOUT'.
5568 2008-08-08  Marco Gerards  <marco@gnu.org>
5570         * NEWS: Update.
5572 2008-08-07  Bean  <bean123ch@gmail.com>
5574         * include/grub/x86_64/pci.h: New file.
5576 2008-08-07  Christian Franke  <franke@computer.org>
5578         * kern/i386/pit.c (TIMER2_SPEAKER): New define.
5579         (TIMER2_GATE): Likewise.
5580         (grub_pit_wait): Add enable/disable of the timer2 gate
5581         bit of port 0x61.  This fixes a possible infinite loop.
5583 2008-08-07  Bean  <bean123ch@gmail.com>
5585         * conf/x86_64-efi.rmk (kernel_mod_SOURCES): Add kern/time.c,
5586         kern/i386/tsc.c and kern/i386/pit.c.
5588         * include/grub/i386/tsc.h (grub_cpu_is_cpuid_supported): Handle
5589         x86_64 platform.
5591         * kern/i386/efi/init.c: Replace <grub/cpu/tsc.h> with
5592         <grub/i386/tsc.h>.
5594         * kern/i386/pit.c: Replace <grub/cpu/io.h> with <grub/i386/io.h>.
5596 2008-08-07  Bean  <bean123ch@gmail.com>
5598         * conf/i386-efi.rmk (kernel_mod_SOURCES): Add kern/time.c.
5600         * conf/i386-ieee1275.rmk (kernel_elf_SOURCES): Add kern/time.c,
5602         * include/grub/i386/pit.h: Use macro KERNEL_CPU_PIT_HEADER to avoid
5603         multiple inclusion. Add #include <grub/types.h>.
5605 2008-08-06  Christian Franke  <franke@computer.org>
5607         * conf/common.rmk: Build and install `10_windows'.
5608         * util/grub.d/10_windows.in: New script.
5610 2008-08-06  Pavel Roskin  <proski@gnu.org>
5612         * kern/i386/pit.c: Include `<grub/i386/pit.h>'.
5614 2008-08-06  Robert Millan  <rmh@aybabtu.com>
5616         * conf/i386-coreboot.rmk (kernel_elf_ASFLAGS): New variable.
5617         * kern/i386/tsc.c: Include `<grub/i386/pit.h>'.
5619 2008-08-06  Bean  <bean123ch@gmail.com>
5621         * fs/i386/pc/pxe.c (grub_pxe_data): New member block_size.
5622         (grub_pxefs_fs_int): Remove dummy definition.
5623         (grub_pxefs_open): Use data->block_size to store the current block
5624         size setting.
5625         (grub_pxefs_read): Use block size stored in data->block_size. As the
5626         value of grub_pxe_blksize can be changed after the file is opened.
5628 2008-08-06  Bean  <bean123ch@gmail.com>
5630         * fs/i386/pc/pxe.c (curr_file): new variable.
5631         (grub_pxefs_open): Simply the handling of pxe file system. Don't
5632         require the dummy internal file system anymore.
5633         (grub_pxefs_read): Removed.
5634         (grub_pxefs_close): Likewise.
5635         (grub_pxefs_fs_int): Likewise.
5636         (grub_pxefs_read_int): Renamed to grub_pxefs_read. Reinitialize tftp
5637         connection when we switch file.
5638         (grub_pxefs_close_int): Renamed to grub_pxefs_close.
5640 2008-08-06  Robert Millan  <rmh@aybabtu.com>
5642         * conf/i386-coreboot.rmk (pkglib_MODULES): Add `reboot.mod' and
5643         `halt.mod'.
5644         (reboot_mod_SOURCES, reboot_mod_CFLAGS, reboot_mod_LDFLAGS)
5645         (halt_mod_SOURCES, halt_mod_CFLAGS, halt_mod_LDFLAGS): New variables.
5647         * kern/i386/halt.c: New file.
5648         * kern/i386/reboot.c: Likewise.
5649         * include/grub/i386/reboot.h: Likewise.
5650         * include/grub/i386/halt.h: Likewise.
5652         * commands/halt.c [! GRUB_MACHINE_IEEE1275 ! GRUB_MACHINE_EFI]:
5653         Include `<grub/cpu/halt.h>'.
5654         * commands/reboot.c [! GRUB_MACHINE_IEEE1275 ! GRUB_MACHINE_EFI]
5655         [! GRUB_MACHINE_PCBIOS]: Include `<grub/cpu/reboot.h>'.
5657         * term/i386/pc/at_keyboard.c: Include `<grub/cpu/at_keyboard.h>'.
5658         (SHIFT_L, SHIFT_R, CTRL, ALT, CAPS_LOCK, KEYBOARD_REG_DATA)
5659         (KEYBOARD_REG_STATUS, KEYBOARD_COMMAND_ISREADY, KEYBOARD_COMMAND_READ)
5660         (KEYBOARD_COMMAND_WRITE, KEYBOARD_COMMAND_REBOOT)
5661         (KEYBOARD_SCANCODE_SET1, KEYBOARD_ISMAKE, KEYBOARD_ISREADY)
5662         (KEYBOARD_SCANCODE, OLPC_UP, OLPC_DOWN, OLPC_LEFT, OLPC_RIGHT): Move
5663         from here ...
5664         * include/grub/i386/at_keyboard.h: ... to here.
5666 2008-08-05  Robert Millan  <rmh@aybabtu.com>
5668         * conf/i386-pc.rmk (kernel_img_SOURCES): Add `kern/i386/pit.c'.
5669         * conf/i386-efi.rmk (kernel_mod_SOURCES): Likewise.
5670         * conf/i386-coreboot.rmk (kernel_elf_SOURCES): Likewise. Also add
5671         `kern/i386/tsc.c', `kern/generic/rtc_get_time_ms.c' and
5672         `kern/generic/millisleep.c'.
5674         * kern/i386/tsc.c (calibrate_tsc): Rewrite using grub_pit_wait()
5675         instead of grub_get_rtc().
5676         (grub_tsc_init): Initialize `tsc_boot_time'.
5678         * kern/i386/linuxbios/init.c (grub_millisleep): Remove stub.
5679         (grub_machine_init): Use grub_tsc_init() rather than
5680         installing an RTC-based handler via grub_install_get_time_ms().
5682         * kern/i386/pit.c: New file.
5683         * include/grub/i386/pit.h: Likewise.
5685 2008-08-05  Bean  <bean123ch@gmail.com>
5687         * boot/i386/pc/pxeboot.S (_start): Use drive number 0x7F for pxe.
5689         * conf/i386-pc.rmk (kernel_img_HEADERS): Add machine/pxe.h.
5690         (pkglib_MODULES): Add pxe.mod and pxecmd.mod.
5691         (pxe_mod_SOURCES): New macro.
5692         (pxe_mod_CFLAGS): Likewise.
5693         (pxe_mod_LDFLAGS): Likewise.
5694         (pxecmd_mod_SOURCES): Likewise.
5695         (pxecmd_mod_CFLAGS): Likewise.
5696         (pxecmd_mod_LDFLAGS): Likewise.
5698         * kern/i386/pc/startup.S (grub_pxe_scan): New function.
5699         (grub_pxe_call): Likewise.
5701         * include/grub/disk.h (grub_disk_dev_id): Add GRUB_DISK_DEVICE_PXE_ID.
5703         * commands/i386/pc/pxecmd.c: New file.
5705         * fs/i386/pc/pxe.c: Likewise.
5707         * include/grub/i386/pc/pxe.h: Likewise.
5709 2008-08-05  Bean  <bean123ch@gmail.com>
5711         * util/console.c (grub_console_cur_color): New variable.
5712         (grub_console_standard_color): Likewise.
5713         (grub_console_normal_color): Likewise.
5714         (grub_console_highlight_color): Likewise.
5715         (color_map): Likewise.
5716         (use_color): Likewise.
5717         (NUM_COLORS): New macro.
5718         (grub_ncurses_setcolorstate): Handle color properly.
5719         (grub_ncurses_setcolor): Don't change color here, just remember the
5720         settings, color will be set in grub_ncurses_setcolorstate.
5721         (grub_ncurses_getcolor): New function.
5722         (grub_ncurses_init): Initialize color pairs.
5723         (grub_ncurses_term): New member grub_ncurses_getcolor.
5725 2008-08-05  Colin D Bennett  <colin@gibibit.com>
5727         High resolution timer support.  Implemented for x86 CPUs using TSC.
5728         Extracted generic grub_millisleep() so it's linked in only as needed.
5729         This requires a Pentium compatible CPU; if the RDTSC instruction is
5730         not supported, then it falls back on the generic grub_get_time_ms()
5731         implementation that uses the machine's RTC.
5733         * conf/i386-pc.rmk (kernel_img_SOURCES): Add `kern/time.c',
5734         `kern/i386/tsc.c', `kern/generic/rtc_get_time_ms.c' and
5735         `kern/generic/millisleep.c'.
5737         * conf/i386-efi.rmk (kernel_mod_SOURCES): Add `kern/i386/tsc.c',
5738         `kern/generic/rtc_get_time_ms.c' and `kern/generic/millisleep.c'.
5740         * conf/x86_64-efi.rml (kernel_mod_SOURCES): Add
5741         `kern/generic/millisleep.c' and `kern/generic/rtc_get_time_ms.c'.
5743         * conf/sparc64-ieee1275.rmk (kernel_elf_SOURCES): Likewise.
5745         * conf/powerpc-ieee1275.rmk (kernel_elf_SOURCES): Add
5746         `kern/generic/millisleep.c'.
5748         * conf/i386-ieee1275.rmk (kernel_elf_SOURCES): Likewise.
5750         * conf/i386-coreboot.rmk (kernel_elf_SOURCES): Add `kern/time.c'.
5752         * kern/generic/rtc_get_time_ms.c: New file.
5754         * kern/generic/millisleep.c: New file.
5756         * kern/misc.c: Don't include
5757         <kern/time.h> anymore.
5758         (grub_millisleep_generic): Removed.
5760         * commands/sleep.c (grub_interruptible_millisleep): Uses
5761         grub_get_time_ms() instead of grub_get_rtc().
5763         * include/grub/i386/tsc.h (grub_get_tsc): New file.  New inline
5764         function.
5765         (grub_cpu_is_cpuid_supported): New inline function.
5766         (grub_cpu_is_tsc_supported): New inline function.
5767         (grub_tsc_init): New function prototype.
5768         (grub_tsc_get_time_ms): New function prototype.
5770         * kern/i386/tsc.c (grub_get_time_ms): New file.
5772         * include/grub/time.h: Include <grub/types.h.
5773         (grub_millisleep_generic): Removed.
5774         (grub_get_time_ms): New prototype.
5775         (grub_install_get_time_ms): New prototype.
5776         (grub_rtc_get_time_ms): New prototype.
5778         * kern/time.c (grub_get_time_ms): New function.
5779         (grub_install_get_time_ms): New function.
5781         * kern/i386/efi/init.c: Include <grub/cpu/tsc.h>.  Don't include
5782         <grub/time.h> anymore.
5783         (grub_millisleep): Removed.
5784         (grub_machine_init): Call grub_tsc_init.
5786         * kern/i386/linuxbios/init.c (grub_machine_init): Install the RTC
5787         get_time_ms() implementation.
5789         * kern/sparc64/ieee1275/init.c (grub_millisleep): Removed.
5790         (ieee1275_get_time_ms): New function.
5791         (grub_machine_init): Install get_time_ms() implementation.
5793         * kern/i386/pc/init.c: Include <grub/cpu/tsc.h>.
5794         (grub_machine_init): Call grub_tsc_init().
5795         (grub_millisleep): Removed.
5797         * kern/ieee1275/init.c (grub_millisleep): Removed.
5798         (grub_machine_init): Install ieee1275_get_time_ms()
5799         implementation.
5800         (ieee1275_get_time_ms): New function.
5801         (grub_get_rtc): Now calls ieee1275_get_time_ms(), which does the
5802         real work.
5804 2008-08-05  Marco Gerards  <marco@gnu.org>
5806         * disk/ata.c: Include <grub/pci.h>.
5807         (enum grub_ata_commands): Add `GRUB_ATA_CMD_EXEC_DEV_DIAGNOSTICS'.
5808         (grub_ata_initialize): Rewritten.
5809         (grub_ata_device_initialize): New function.
5811 2008-08-04  Pavel Roskin  <proski@gnu.org>
5813         * kern/main.c: Include grub/mm.h.
5815 2008-08-04  Robert Millan  <rmh@aybabtu.com>
5817         * conf/i386-coreboot.rmk (COMMON_ASFLAGS, COMMON_CFLAGS)
5818         (COMMON_LDFLAGS): Harmonize with i386-pc version (fixes a code
5819         corruption problem).
5821 2008-08-04  Robert Millan  <rmh@aybabtu.com>
5823         * loader/i386/pc/multiboot.c (grub_multiboot_load_elf32): Fix misc
5824         warnings introduced in my last commit.
5826 2008-08-03  Robert Millan  <rmh@aybabtu.com>
5828         Make PCI available on all i386 architectures.
5830         * include/grub/i386/pc/pci.h: Move from here ...
5831         * include/grub/i386/pci.h: ... to here.
5833         * include/grub/i386/pc/pci.h: Remove.
5834         * include/grub/i386/efi/pci.h: Remove.
5835         * include/grub/x86_64/efi/pci.h: Remove.
5837         * include/grub/pci.h: Replace `<grub/machine/pci.h>' with
5838         `<grub/cpu/pci.h>'.
5840         * conf/i386-coreboot.rmk (pkglib_MODULES): Add `pci' and `lspci'.
5841         (pci_mod_SOURCES, pci_mod_CFLAGS, pci_mod_LDFLAGS, lspci_mod_SOURCES)
5842         (lspci_mod_CFLAGS, lspci_mod_LDFLAGS): New variables.
5844         * conf/i386-ieee1275.rmk: Likewise.
5846 2008-08-03  Robert Millan  <rmh@aybabtu.com>
5848         * term/i386/pc/vga_text.c (CRTC_CURSOR_DISABLE): New macro.
5849         (grub_console_setcursor): Make it possible to set cursor off.
5851 2008-08-03  Robert Millan  <rmh@aybabtu.com>
5853         * util/grub.d/00_header.in: Be platform-agnostic.  Probe for existence
5854         of modules instead of assuming which platform provides what.
5855         * util/update-grub.in: Likewise.
5857 2008-08-03  Robert Millan  <rmh@aybabtu.com>
5859         * kern/i386/pc/init.c (make_install_device): Check for `grub_prefix'
5860         instead of `grub_install_dos_part' to determine whether a drive needs
5861         to be prepended to prefix (`grub_install_dos_part' is not reliable,
5862         because it can be overridden when loading GRUB via Multiboot).
5864 2008-08-02  Robert Millan  <rmh@aybabtu.com>
5866         * util/i386/pc/grub-install.in: Remove trailing slash from prefix.
5868 2008-08-02  Robert Millan  <rmh@aybabtu.com>
5870         * loader/i386/pc/multiboot.c (grub_multiboot_load_elf32): Add a pair
5871         of informational grub_dprintf() calls.
5873 2008-08-02  Robert Millan  <rmh@aybabtu.com>
5875         * disk/memdisk.c (memdisk_size): Don't initialize.
5876         (GRUB_MOD_INIT(memdisk)): Find memdisk using grub_module_iterate().
5878         * include/grub/i386/pc/kernel.h
5879         (GRUB_KERNEL_MACHINE_MEMDISK_IMAGE_SIZE): Remove macro.
5880         (GRUB_KERNEL_MACHINE_PREFIX, GRUB_KERNEL_MACHINE_DATA_END): Shift.
5881         (grub_memdisk_image_size, grub_arch_memdisk_addr)
5882         (grub_arch_memdisk_size): Remove.
5884         * include/grub/kernel.h (struct grub_module_header): Remove `offset'
5885         field (was only used to transfer a constant).  Add `type' field to
5886         support multiple module types.
5887         (grub_module_iterate): New function.
5889         * kern/device.c (grub_device_open): Do not hide error messages
5890         when grub_disk_open() fails.  Use grub_print_error() instead.
5892         * kern/i386/pc/init.c (grub_arch_modules_addr)
5893         (grub_arch_memdisk_size): Remove functions.
5894         (grub_arch_modules_addr): Return the module address in high memory
5895         (now that it isn't copied anymore).
5897         * kern/i386/pc/startup.S (grub_memdisk_image_size): Remove variable.
5898         (codestart): Don't add grub_memdisk_image_size to %ecx in LZMA
5899         decompression routine (grub_total_module_size already includes that
5900         now).  Don't copy modules back to low memory.
5902         * kern/main.c: Include `<grub/mm.h>'.
5903         (grub_load_modules): Split out (and use) ...
5904         (grub_module_iterate): ... this function, which iterates through
5905         module objects and runs a hook.
5906         Comment out grub_mm_init_region() call, as it would cause non-ELF
5907         modules to be overwritten.
5909         * util/i386/pc/grub-mkimage.c (generate_image): Instead of appending
5910         the memdisk image in its own region, make it part of the module list.
5911         * util/elf/grub-mkimage.c (options): Add "memdisk"|'m' option.
5912         (main): Parse --memdisk|-m option, and pass user-provided path as
5913         parameter to generate_image().
5914         (add_segments): Pass `memdisk_path' down to load_modules().
5915         (load_modules): Embed memdisk image in module section when requested.
5916         * util/i386/efi/grub-mkimage.c (make_mods_section): Initialize
5917         `header.type' instead of `header.offset'.
5919         * conf/powerpc-ieee1275.rmk (pkglib_MODULES): Add `memdisk.mod'.
5920         (memdisk_mod_SOURCES, memdisk_mod_CFLAGS)
5921         (memdisk_mod_LDFLAGS): New variables.
5922         * conf/i386-coreboot.rmk: Likewise.
5923         * conf/i386-ieee1275.rmk: Likewise.
5925 2008-08-02  Robert Millan  <rmh@aybabtu.com>
5927         * loader/i386/pc/multiboot.c (playground, forward_relocator)
5928         (backward_relocator): New variables.  Used to allocate and relocate
5929         the payload, respectively.
5930         (grub_multiboot_load_elf32): Load into heap instead of requested
5931         address, install the appropriate relocator code in each bound of
5932         the payload, and set the entry point such that
5933         grub_multiboot_real_boot() will jump to one of them.
5935         * kern/i386/loader.S (grub_multiboot_payload_size)
5936         (grub_multiboot_payload_orig, grub_multiboot_payload_dest)
5937         (grub_multiboot_payload_entry_offset): New variables.
5938         (grub_multiboot_real_boot): Set cpu context to what the relocator
5939         expects, and jump to the relocator instead of the payload.
5941         * include/grub/i386/loader.h (grub_multiboot_payload_size)
5942         (grub_multiboot_payload_orig, grub_multiboot_payload_dest)
5943         (grub_multiboot_payload_entry_offset): Export.
5945 2008-08-01  Bean  <bean123ch@gmail.com>
5947         * normal/menu_entry.c (editor_getline): Don't return the original
5948         string as result, as it will be released by lexer once it has done
5949         using it.
5951 2008-08-01  Robert Millan  <rmh@aybabtu.com>
5953         * util/grub.d/10_linux.in: Use prepare_grub_to_access_device() from
5954         within menuentries, not before them.
5955         util/grub.d/10_hurd.in: Likewise.
5957 2008-08-01  Bean  <bean123ch@gmail.com>
5959         * conf/common.rmk (pkglib_MODULES): Add bufio.mod.
5960         (bufio_mod_SOURCES): New macro.
5961         (bufio_mod_CFLAGS): Likewise.
5962         (bufio_mod_LDFLAGS): Likewise.
5964         * include/grub/bufio.h: New file.
5966         * io/bufio.c: Likewise.
5968         * video/png.c: Replace <grub/file.h> with <grub/bufio.h>.
5969         (grub_video_reader_png): Use grub_buffile_open to open file.
5971         * video/jpeg.c: Replace <grub/file.h> with <grub/bufio.h>.
5972         (grub_video_reader_jpeg): Use grub_buffile_open to open file.
5974         * video/tga.c: Replace <grub/file.h> with <grub/bufio.h>.
5975         (grub_video_reader_tga): Use grub_buffile_open to open file.
5977         * font/manager.c: Include <grub/bufio.h>.
5978         (add_font): Use grub_buffile_open to open file.
5980 2008-07-31  Robert Millan  <rmh@aybabtu.com>
5982         * loader/i386/pc/multiboot.c (grub_multiboot_load_elf32): When loading
5983         ELF segments, use a macro for arbitrarily accessing any of them instead
5984         of preparing a pointer that allows access to one at a time.
5985         (grub_multiboot_load_elf64): Likewise.
5987 2008-07-31  Bean  <bean123ch@gmail.com>
5989         * boot/i386/pc/lnxboot.S (real_code_2): Replace 0x50 with
5990         GRUB_KERNEL_MACHINE_DATA_END.
5992 2008-07-30  Robert Millan  <rmh@aybabtu.com>
5994         * include/grub/i386/pc/kernel.h (GRUB_KERNEL_MACHINE_DATA_END):
5995         Increase from 0x50 to 0x60.
5996         * util/i386/pc/grub-install.in: Detect cross-disk installs, and
5997         use UUIDs to identify the root drive for them.  If that's not
5998         possible, abort.
5999         * util/i386/pc/grub-setup.c (setup): Do not special-case, or even
6000         check, for cross-disk installs.
6002 2008-07-30  Robert Millan  <rmh@aybabtu.com>
6004         * kern/ieee1275/init.c (grub_machine_set_prefix): If `grub_prefix'
6005         is non-empty, use it to set the `prefix' environment variable instead
6006         of the usual approach.
6007         * kern/i386/linuxbios/init.c (make_install_device): Remove function.
6008         (grub_machine_set_prefix): Use `grub_prefix' to set the `prefix'
6009         environment variable instead of dummy make_install_device().
6011         * kern/i386/ieee1275/startup.S: Include `<grub/machine/kernel.h>'.
6012         (start): Insert a data section, with `grub_prefix' variable.
6013         * kern/i386/linuxbios/startup.S: Likewise.
6015         * include/grub/powerpc/ieee1275/kernel.h [!ASM_FILE] (grub_prefix):
6016         New variable reference.
6017         * include/grub/i386/ieee1275/kernel.h (GRUB_KERNEL_MACHINE_PREFIX):
6018         New macro.  Defines offset of `grub_prefix' within startup.S (relative
6019         to `start').
6020         (GRUB_KERNEL_MACHINE_DATA_END): New macro.  Defines the end of data
6021         section within startup.S (relative to `start').
6022         * include/grub/i386/coreboot/kernel.h: Likewise.
6024         * util/elf/grub-mkimage.c (add_segments): Receive `prefix' parameter.
6025         Overwrite grub_prefix with its contents, at the beginning of the
6026         first segment.
6027         (main): Understand -p|--prefix.
6029 2008-07-30  Robert Millan  <rmh@aybabtu.com>
6031         * util/grub.d/10_hurd.in: Source ${libdir}/grub/update-grub_lib.
6033 2008-07-30  Robert Millan  <rmh@aybabtu.com>
6035         * term/i386/pc/vga_text.c (grub_console_cls): Use
6036         grub_console_gotoxy() to go back to beginning of the screen.
6037         Found by Patrick Georgi <patrick.georgi@coresystems.de>
6039 2008-07-29  Christian Franke  <franke@computer.org>
6041         * util/update-grub_lib.in (make_system_path_relative_to_its_root):
6042         Add conversion of emulated mount points on Cygwin.
6044 2008-07-29  Christian Franke  <franke@computer.org>
6046         * util/update-grub.in: Add a check for admin
6047         group on Cygwin.
6048         Remove old `grub.cfg.new' before creation.
6049         Add `-f' to `mv' to handle the different filesystem
6050         semantics of Windows.
6052 2008-07-29  Bean  <bean123ch@gmail.com>
6054         * normal/main.c (get_line): Fix buffer overflow bug.
6056 2008-07-28  Robert Millan  <rmh@aybabtu.com>
6058         * partmap/apple.c (GRUB_APPLE_HEADER_MAGIC): New macro.
6059         (struct grub_apple_header): New struct.  Describes the layout of
6060         the partmap header.
6061         (apple_partition_map_iterate): Check the header magic as well as the
6062         partition magic (which was already being checked).
6064 2008-07-28  Pavel Roskin  <proski@gnu.org>
6066         * genmk.rb: Add a warning to the beginning of the output that
6067         it's a generated file and should not be edited.
6069 2008-07-28  Robert Millan  <rmh@aybabtu.com>
6071         * disk/raid.c (grub_raid_scan_device): Do not abort when two disks
6072         with the same number are found, just use issue a warning with
6073         grub_dprintf(), as this error has been reported to be non-fatal.
6075 2008-07-27  Robert Millan  <rmh@aybabtu.com>
6077         * disk/ata.c (grub_ata_dumpinfo): Use grub_dprintf() for debugging
6078         information.
6080 2008-07-27  Bean  <bean123ch@gmail.com>
6082         * fs/fat.c (GRUB_FAT_MAXFILE): New constant.
6083         (grub_fat_find_dir): Ignore case when comparing filename.
6085 2008-07-27  Bean  <bean123ch@gmail.com>
6087         * fs/xfs.c (grub_xfs_dir_header): Change field i8count back to
6088         smallino, as it's more descriptive, and i8count can be confused with
6089         the other field count.
6090         (grub_xfs_iterate_dir): Adjust grub_xfs_dir_entry pointer for small
6091         inode type.
6093 2008-07-27  Bean  <bean123ch@gmail.com>
6095         * commands/crc.c: New file.
6097         * lib/crc.c: Likewise.
6099         * include/grub/lib/crc.h: Likewise.
6101         * util/grub-fstest.c: grub/hexdump.h => grub/lib/hexdump.h.
6103         * commands/hexdump.c: grub/hexdump.h => grub/lib/hexdump.h.
6104         (hexdump): Move this function to ...
6106         * lib/hexdump.c: ... here.
6108         * include/grub/hexdump.h: Renamed to ...
6110         * include/grub/lib/hexdump.h: ... this.
6112         * commands/loadenv.c: grub/envblk.h => grub/lib/envblk.h
6114         * util/grub-editenv.c: Likewise.
6116         * include/envblk.h: Renamed to ...
6118         * include/lib/envblk.h: ... this.
6120         * util/envblk.c: Renamed to ...
6122         * lib/envblk.c: ... this.
6124         * conf/common.rmk (grub_fstest_SOURCES): commands/hexdump.c =>
6125         lib/hexdump.c.
6126         (grub_editenv_SOURCES): util/envblk.c => lib/envblk.c
6127         (pkglib_MODULES): Add crc.mod.
6128         (hexdump_mod_SOURCES): Add lib/hexdump.c.
6129         (loadenv_mod_SOURCES): util/envblk.c => lib/envblk.c.
6130         (crc_mod_SOURCES): New macro.
6131         (crc_mod_CFLAGS): Likewise.
6132         (crc_mod_LDFLAGS): Likewise.
6134         * conf/i386-coreboot.rmk (grub_emu_SOURCES): Add lib/hexdump.c.
6136         * conf/i386-efi.rmk (grub_emu_SOURCES): Likewise.
6138         * conf/i386-pc.rmk (grub_emu_SOURCES): Likewise.
6140         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
6142         * conf/x86_64-efi.rmk (grub_emu_SOURCES): Likewise.
6144 2008-07-27  Felix Zielcke  <fzielcke@z-51.de>
6146         * commands/help.c: Include <grub/term.h>.
6147         (TERM_WIDTH): Removed.  Updated all users.
6149 2008-07-27  Pavel Roskin  <proski@gnu.org>
6151         * util/getroot.c (find_root_device): Rephrase a comment to avoid
6152         spurious warnings about a comment within a comment.
6154 2008-07-25  Robert Millan  <rmh@aybabtu.com>
6156         * util/getroot.c (find_root_device): Skip devices that match
6157         /dev/dm-[0-9].  This lets the real device be found for any type of
6158         abstraction (LVM, EVMS, RAID..).
6159         (grub_guess_root_device): Do not traverse /dev/mapper (for LVM)
6160         and /dev/evms (for EVMS) before traversing /dev.  If a /dev/dm-[0-9]
6161         device is found first, find_root_device() will now skip it.
6163 2008-07-24  Pavel Roskin  <proski@gnu.org>
6165         * include/grub/types.h: Use __builtin_bswap32() and
6166         __builtin_bswap64() with gcc 4.3 and newer.
6168 2008-07-24  Christian Franke  <franke@computer.org>
6170         * util/i386/pc/grub-install.in: If `--debug' is specified,
6171         pass `--verbose' to grub-setup.
6172         Abort script if make_system_path_relative_to_its_root() fails.
6174 2008-07-24  Bean  <bean123ch@gmail.com>
6176         * configure.ac: Fixed a bug caused by the previous cygwin patch,
6177         variable `target_platform' should be `platform'.
6179 2008-07-24  Bean  <bean123ch@gmail.com>
6181         * video/reader/png.c (DEFLATE_HLIT_MAX): Change value.
6182         (grub_png_init_fixed_block): New function.
6183         (grub_png_decode_image_data): Handle fixed huffman code compression.
6185 2008-07-24  Bean  <bean123ch@gmail.com>
6187         * common.rmk (bin_UTILITIES): Add grub-pe2elf.
6188         (grub_pe2elf_SOURCES): New macro.
6189         (CLEANFILES): Add grub-pe2elf.
6191         * include/grub/efi/pe32.h (GRUB_PE32_SCN_ALIGN_1BYTES): New constant.
6192         (GRUB_PE32_SCN_ALIGN_2BYTES): Likewise.
6193         (GRUB_PE32_SCN_ALIGN_4BYTES): Likewise.
6194         (GRUB_PE32_SCN_ALIGN_8BYTES): Likewise.
6195         (GRUB_PE32_SCN_ALIGN_16BYTES): Likewise.
6196         (GRUB_PE32_SCN_ALIGN_32BYTES): Likewise.
6197         (GRUB_PE32_SCN_ALIGN_64BYTES): Likewise.
6198         (GRUB_PE32_SCN_ALIGN_SHIFT): Likewise.
6199         (GRUB_PE32_SCN_ALIGN_MASK): Likewise.
6200         (GRUB_PE32_SYM_CLASS_EXTERNAL): Likewise.
6201         (GRUB_PE32_SYM_CLASS_STATIC): Likewise.
6202         (GRUB_PE32_SYM_CLASS_FILE): Likewise.
6203         (GRUB_PE32_DT_FUNCTION): Likewise.
6204         (GRUB_PE32_REL_I386_DIR32): Likewise.
6205         (GRUB_PE32_REL_I386_REL32): Likewise.
6206         (grub_pe32_symbol): New structure.
6207         (grub_pe32_reloc): Likewise.
6209         * util/grub-pe2elf.c: New file.
6211         * configure.ac: Set TARGET_OBJ2ELF if host os is cygwin. Don't test for
6212         start symbol in non pc platform.
6214         * genmk.rb: Use TARGET_OBJ2ELF to convert native object format to elf.
6216         The following patches are from Christian Franke.
6218         * include/grub/dl.h: Remove .previous, gas supports this only
6219         for ELF format.
6221         * include/grub/symbol.h [__CYGWIN__] (#define FUNCTION/VARIABLE):
6222         Remove .type, gas supports this only for ELF format.
6224         * kern/dl.c (grub_dl_resolve_dependencies): Add check for trailing
6225         nullbytes in symbol table. This fixes an infinite loop if table is
6226         zero filled.
6228         * Makefile.in: Add autoconf replacements TARGET_IMG_LDSCRIPT,
6229         TARGET_IMG_LDFLAGS and EXEEXT.
6231         * aclocal.m4 (grub_PROG_OBJCOPY_ABSOLUTE): Replace -Wl,-N by
6232         TARGET_IMG_LDFLAGS_AC.
6233         (grub_CHECK_STACK_ARG_PROBE): New function.
6235         * conf/i386-pc.rmk: Replace -Wl,-N by TARGET_IMG_LDFLAGS.
6237         * conf/i386-pc-cygwin-ld-img.sc: New linker script.
6239         * configure.ac: Add check for linker script "conf/${target}-img-ld.c"
6240         to set TARGET_IMG_LD* accordingly.
6241         Add check for Cygwin to set TARGET_MOD_OBJCOPY accordingly.
6242         Add call to grub_CHECK_STACK_ARG_PROBE.
6243         Use TARGET_IMG_LDFLAGS to check start, bss_start, end symbols.
6245         * genkernsyms.sh.in: Handle HAVE_ASM_USCORE case.
6247         * genmk.rb: Add EXEEXT to CLEANFILES.
6249 2008-07-23  Robert Millan  <rmh@aybabtu.com>
6251         * Makefile.in (UNICODE_ARROWS, UNICODE_LINES): New variables (they
6252         define the codes for arrows and lines used for the menu).
6253         (ascii.pff): Generate fonts for $(UNICODE_ARROWS) and $(UNICODE_LINES)
6254         as well.
6256         * util/update-grub_lib.in (font_path): Prefer ascii.pff over complete
6257         fonts, because the latter are too slow.
6259 2008-07-21  Bean  <bean123ch@gmail.com>
6261         * kern/i386/pc/startup.S (gate_a20_try_bios): Change test order for
6262         a20. Run keyboard test last, as it will cause macbook to halt.
6264 2008-07-18  Pavel Roskin  <proski@gnu.org>
6266         * kern/dl.c: Go back to using GRUB_CPU_SIZEOF_VOID_P.  We cannot
6267         load foreign architecture modules correctly anyway.  Keep
6268         support for loading host architecture modules, whether we
6269         compile them or not.
6271 2008-07-17  Pavel Roskin  <proski@gnu.org>
6273         * configure.ac: Use -m32 or -m64 regardless of whether we had to
6274         change target_cpu.  The compiler default can mismatch target_cpu
6275         in any case.
6277         * disk/efi/efidisk.c: Fix format warnings on x86_64.
6278         * kern/efi/efi.c: Likewise.
6280         * aclocal.m4 (grub_PROG_TARGET_CC): New macro.  Check if the
6281         target compiler is functional.
6282         * configure.ac: Call grub_PROG_TARGET_CC once all target flags
6283         are set up.
6285         * configure.ac: Default to efi platform for x86_64-apple.  Allow
6286         powerpc64 CPU, default to ieee1275 platform for it.  Split CPU
6287         adjustments from the rest, only do them if target is not
6288         explicitly given.  Merge other adjustments with the final sanity
6289         check.  Remove an extraneous check for supported CPU.  Be
6290         specific which CPU and which platform is not supported.
6292         * configure.ac: Default to pc platform for x86_64.
6294 2008-07-17  Robert Millan  <rmh@aybabtu.com>
6296         Partial LinuxBIOS -> Coreboot rename.
6298         * conf/i386-linuxbios.rmk: Renamed to ...
6299         * conf/i386-coreboot.rmk: ... this.
6300         * Makefile.in (RMKFILES): s/i386-linuxbios.rmk/i386-coreboot.rmk/g.
6301         * configure.ac: Accept "coreboot" as input platform (but maintain
6302         compatibility with "linuxbios").
6303         * include/grub/i386/linuxbios: Renamed to ...
6304         * include/grub/i386/coreboot: ... this.
6306 2008-07-17  Bean  <bean123ch@gmail.com>
6308         * conf/i386/efi.rmk (pkglib_MODULES): add pci.mod and lspci.mod.
6309         (appleldr_mod_SOURCE): New variable.
6310         (appleldr_mod_CFLAGS): Likewise.
6311         (appleldr_mod_LDFLAGS): Likewise.
6312         (pci_mod_SOURCES): Likewise.
6313         (pci_mod_CFLAGS): Likewise.
6314         (pci_mod_LDFLAGS): Likewise.
6315         (lspci_mod_SOURCES): Likewise.
6316         (lspci_mod_CFLAGS): Likewise.
6317         (lspci_mod_LDFLAGS): Likewise.
6319         * conf/x86_64-efi.rmk: New file.
6321         * disk/efi/efidisk.c (grub_efidisk_read): Wrap efi calls with efi_call_N
6322         macro.
6323         (grub_efidisk_write): Likewise.
6325         * include/efi/api.h (efi_call_0): New macro.
6326         (efi_call_1): Likewise.
6327         (efi_call_2): Likewise.
6328         (efi_call_3): Likewise.
6329         (efi_call_4): Likewise.
6330         (efi_call_5): Likewise.
6331         (efi_call_6): Likewise.
6333         * include/grub/efi/chainloader.h (grub_chainloader_cmd): Rename to
6334         grub_rescue_cmd_chainloader.
6336         * include/grub/efi/pe32.h (GRUB_PE32_MACHINE_X86_64): New macro.
6337         (grub_pe32_optional_header): Change some fields based on i386 or
6338         x86_64 platform.
6339         (GRUB_PE32_PE32_MAGIC): Likewise.
6341         * include/grub/efi/uga_draw.h: New file.
6343         * include/grub/elf.h (STN_ABS): New constant.
6344         (R_X86_64_NONE): Relocation constant for x86_64.
6345         (R_X86_64_64): Likewise.
6346         (R_X86_64_PC32): Likewise.
6347         (R_X86_64_GOT32): Likewise.
6348         (R_X86_64_PLT32): Likewise.
6349         (R_X86_64_COPY): Likewise.
6350         (R_X86_64_GLOB_DAT): Likewise.
6351         (R_X86_64_JUMP_SLOT): Likewise.
6352         (R_X86_64_RELATIVE): Likewise.
6353         (R_X86_64_GOTPCREL): Likewise.
6354         (R_X86_64_32): Likewise.
6355         (R_X86_64_32S): Likewise.
6356         (R_X86_64_16): Likewise.
6357         (R_X86_64_PC16): Likewise.
6358         (R_X86_64_8): Likewise.
6359         (R_X86_64_PC8): Likewise.
6361         * include/grub/i386/efi/pci.h: New file.
6363         * include/grub/i386/linux.h (GRUB_LINUX_EFI_SIGNATURE):
6364         Change it value based on platform.
6365         (GRUB_LINUX_EFI_SIGNATURE_0204): New constant.
6366         (GRUB_E820_RAM): Likewise.
6367         (GRUB_E820_RESERVED): Likewise.
6368         (GRUB_E820_ACPI): Likewise.
6369         (GRUB_E820_NVS): Likewise.
6370         (GRUB_E820_EXEC_CODE): Likewise.
6371         (GRUB_E820_MAX_ENTRY): Likewise.
6372         (grub_e820_mmap): New structure.
6373         (linux_kernel_header): Change the efi field according to different
6374         kernel version, also field from linux_kernel_header.
6376         * include/grub/kernel.h (grub_module_info): Add padding for x86_64.
6378         * include/grub/pci.h (GRUB_PCI_ADDR_SPACE_MASK): New constant.
6379         (GRUB_PCI_ADDR_SPACE_MEMORY): Likewise.
6380         (GRUB_PCI_ADDR_SPACE_IO): Likewise.
6381         (GRUB_PCI_ADDR_MEM_TYPE_MASK): Likewise.
6382         (GRUB_PCI_ADDR_MEM_TYPE_32): Likewise.
6383         (GRUB_PCI_ADDR_MEM_TYPE_1M): Likewise.
6384         (GRUB_PCI_ADDR_MEM_TYPE_64): Likewise.
6385         (GRUB_PCI_ADDR_MEM_PREFETCH): Likewise.
6386         (GRUB_PCI_ADDR_MEM_MASK): Likewise.
6387         (GRUB_PCI_ADDR_IO_MASK): Likewise.
6389         * include/grub/x86_64/efi/kernel.h: New file.
6391         * include/grub/x86_64/efi/loader.h: Likewise.
6393         * include/grub/x86_64/efi/machine.h: Likewise.
6395         * include/grub/x86_64/efi/pci.h: Likewise.
6397         * include/grub/x86_64/efi/time.h: Likewise.
6399         * include/grub/x86_64/linux.h: Likewise.
6401         * include/grub/x86_64/setjmp.h: Likewise.
6403         * include/grub/x86_64/time.h: Likewise.
6405         * include/grub/x86_64/types.h: Likewise.
6407         * kern/dl.c (GRUB_CPU_SIZEOF_VOID_P): Changed to
6408          GRUB_TARGET_SIZEOF_VOID_P.
6410         * kern/efi/efi.c (grub_efi_locate_protocol): Wrap efi calls.
6411         (grub_efi_locate_handle): Likewise.
6412         (grub_efi_open_protocol): Likewise.
6413         (grub_efi_set_text_mode): Likewise.
6414         (grub_efi_stall): Likewise.
6415         (grub_exit): Likewise.
6416         (grub_reboot): Likewise.
6417         (grub_halt): Likewise.
6418         (grub_efi_exit_boot_services): Likewise.
6419         (grub_get_rtc): Likewise.
6421         * kern/efi/mm.c (MEMORY_MAP_SIZE): Change to 0x3000 for new models.
6422         (GRUB_CPU_SIZEOF_VOID_P): Changed to GRUB_TARGET_SIZEOF_VOID_P.
6423         (grub_efi_allocate_pages): Wrap efi calls.
6424         (grub_efi_free_pages): Wrap efi calls.
6425         (grub_efi_get_memory_map): Wrap efi calls.
6427         * kern/x86_64/dl.c: New file.
6429         * kern/x86_64/efi/callwrap.S: Likewise.
6431         * kern/x86_64/efi/startup.S: Likewise.
6433         * loader/efi/appleloader.c: Likewise.
6435         * loader/efi/chainloader.c (cmdline): New variable.
6436         (grub_chainloader_unload): Wrap efi calls.
6437         (grub_chainloader_boot): Likewise.
6438         (grub_rescue_cmd_chainloader): Wrap efi calls, handle
6439         command line.
6441         * loader/efi/chainloader_normal.c (chainloader_command):
6442         Change grub_chainloader_cmd to grub_rescue_cmd_chainloader, pass
6443         command line.
6445         * loader/i386/efi/linux.c (allocate_pages): Change allocation
6446         method.
6447         (grub_e820_add_region): New function.
6448         (grub_linux_boot): Construct e820 map from efi map, handle x86_64
6449         booting.
6450         (grub_find_video_card): New function.
6451         (grub_linux_setup_video): New function.
6452         (grub_rescue_cmd_linux): Probe for video information.
6454         * normal/x86_64/setjmp.S: New file.
6456         * term/efi/console.c (map_char): New function.
6457         (grub_console_putchar): Map unicode char.
6458         (grub_console_checkkey): Wrap efi calls.
6459         (grub_console_getkey): Likewise.
6460         (grub_console_getwh): Likewise.
6461         (grub_console_gotoxy): Likewise.
6462         (grub_console_cls): Likewise.
6463         (grub_console_setcolorstate): Likewise.
6464         (grub_console_setcursor): Likewise.
6466         * util/i386/efi/grub-mkimage.c: Add support for x86_64.
6468 2008-07-16  Pavel Roskin  <proski@gnu.org>
6470         * loader/i386/efi/linux.c (allocate_pages): Fix warnings in
6471         format strings.
6473         * util/i386/efi/grub-mkimage.c (get_target_address): Return a
6474         pointer, not an integer.  This fixes a warning and prevents
6475         precision loss on 64-bit systems.
6476         (relocate_addresses): Remove unneeded cast.
6478 2008-07-15  Pavel Roskin  <proski@gnu.org>
6480         * kern/i386/ieee1275/init.c: Include grub/cache.h.
6482         * term/ieee1275/ofconsole.c: Disable code unused on i386.
6484         * kern/ieee1275/ieee1275.c (grub_ieee1275_get_integer_property):
6485         Fix comparison between signed and unsigned.
6487         * include/grub/i386/ieee1275/console.h: Declare
6488         grub_console_init() and grub_console_fini().
6490         * loader/i386/ieee1275/linux.c (grub_set_bootpath): Remove.
6491         It's empty and unused.
6493         * fs/ext2.c (grub_ext2_read_block): Initialize blknr in the
6494         beginning to avoid warnings with some compilers.
6496         * loader/ieee1275/multiboot2.c: Include grub/machine/loader.h.
6497         [__i386__] (grub_mb2_arch_boot): Avoid unnecessary cast.
6499 2008-07-14  Pavel Roskin  <proski@gnu.org>
6501         * kern/env.c (grub_register_variable_hook): Don't copy empty
6502         string, it leaks memory.  Pass "" to grub_env_set(), it should
6503         handle constant strings.
6505         * commands/blocklist.c (grub_cmd_blocklist): Fix format warning.
6506         * commands/cmp.c (grub_cmd_cmp): Likewise.
6507         * kern/dl.c (grub_dl_flush_cache): Likewise.
6508         (grub_dl_load_core): Likewise.
6509         * kern/elf.c (grub_elf32_load_phdrs): Likewise.
6510         (grub_elf64_load_phdrs): Likewise.
6512 2008-07-13  Pavel Roskin  <proski@gnu.org>
6514         * lib/LzmaEnc.c (LzmaEnc_SetProps): Fix warning about comparison
6515         between signed and unsigned.
6516         (LzmaEnc_Finish): Fix warning about an unused parameter.
6518 2008-07-13  Bean  <bean123ch@gmail.com>
6520         * Makefile.in (enable_lzo): New rule.
6522         * conf/i386-pc.rmk (grub_mkimage_SOURCES): New test with enable_lzo.
6524         * configure.ac (ENABLE_LZO): New option --enable-lzo.
6526         * boot/i386/pc/lnxboot.S: #include <config.h>.
6528         * include/grub/i386/pc/kernel.h (GRUB_KERNEL_MACHINE_RAW_SIZE): Change
6529         its value according to the compression algorithm used, lzo or lzma.
6531         * util/i386/pc/grub-mkimage.c (compress_kernel): Use different
6532         compression algorithm according to configure macro.
6534         * kern/i386/pc/startup.S (codestart): Likewise.
6536         * kern/i386/pc/lzma_decode.S: New file.
6538         * include/grub/lib/LzFind.h: Likewise.
6540         * include/grub/lib/LzHash.h: Likewise.
6542         * include/grub/lib/LzmaDec.h: Likewise.
6544         * include/grub/lib/LzmaEnc.h: Likewise.
6546         * include/grub/lib/LzmaTypes.h: Likewise.
6548         * lib/LzFind.c: Likewise.
6550         * lib/LzmaDec.c: Likewise.
6552         * lib/LzmaEnc.c: Likewise.
6554 2008-07-13  Bean  <bean123ch@gmail.com>
6556         * fs/ext2.c (EXT4_EXTENTS_FLAG): New macro.
6557         (grub_ext4_extent_header): New structure.
6558         (grub_ext4_extent): Likewise.
6559         (grub_ext4_extent_idx): Likewise.
6560         (grub_ext4_find_leaf): New function.
6561         (grub_ext2_read_block): Handle extents.
6563 2008-07-12  Robert Millan  <rmh@aybabtu.com>
6565         * util/i386/pc/grub-mkrescue.in: s/grub-install/grub-mkrescue/g.
6567 2008-07-11  Robert Millan  <rmh@aybabtu.com>
6569         * util/grub.d/40_custom.in: New file. Example on how to add custom
6570         entries to /etc/grub.d.
6571         * conf/common.rmk (%, update-grub_SCRIPTS, CLEANFILES): Install
6572         40_custom (implicitly, by merging all the grub.d rules).
6574 2008-07-11  Pavel Roskin  <proski@gnu.org>
6576         * commands/read.c (grub_getline): Fix invalid memory access.
6577         Don't add newline to the variable value.
6579         * term/i386/pc/serial.c (GRUB_SERIAL_PORT_NUM): New constant.
6580         [!GRUB_MACHINE_PCBIOS] (serial_hw_io_addr): Add COM2 and COM3.
6581         (serial_hw_get_port): Check validity of the port number.
6582         (grub_cmd_serial): Check return value of serial_hw_get_port().
6584 2008-07-07  Pavel Roskin  <proski@gnu.org>
6586         * boot/i386/pc/diskboot.S (notification_string): Replace
6587         "Loading kernel" with just "loading".  This is shorter, less
6588         confusing and saves a few bytes for possible future changes.
6590 2008-07-05  Pavel Roskin  <proski@gnu.org>
6592         * disk/ata.c (grub_ata_dumpinfo): Don't output addressing and
6593         size for ATAPI devices, they are undefined.  Output sector
6594         number in decimal form.
6596         * disk/ata.c: Use named constants for status bits.
6598 2008-07-04  Pavel Roskin  <proski@gnu.org>
6600         * kern/i386/linuxbios/init.c (grub_machine_init): Cast addr to
6601         grub_addr_t before casting it to the void pointer to fix a
6602         warning.  Non-addressable regions are discarded earlier.
6603         (grub_arch_modules_addr): Cast _end to grub_addr_t.
6604         * kern/i386/linuxbios/table.c: Include grub/misc.h.
6605         (check_signature): Don't shadow table_header.
6606         (grub_linuxbios_table_iterate): Cast numeric constants to
6607         grub_linuxbios_table_header_t.
6608         * include/grub/i386/linuxbios/init.h: Add noreturn attribute to
6609         grub_stop().
6611         * kern/ieee1275/init.c: Cast _start and _end to grub_addr_t to
6612         prevent warnings.
6614         * include/grub/misc.h (ALIGN_UP): Avoid unnecessary cast to a
6615         pointer, which can cause warnings.  Support 64-bit addresses.
6617         * util/elf/grub-mkimage.c: Use GRUB_TARGET_SIZEOF_LONG instead
6618         of sizeof(long).  This fixes PowerPC image generation on x86_64.
6620 2008-07-04  Robert Millan  <rmh@aybabtu.com>
6622         This fixes a performance issue when pc & gpt partmap iterators
6623         didn't abort iteration even after our hook found what it was
6624         looking for (often causing expensive probes of non-existent drives).
6626         Some callers relied on previous buggy behaviour, since they would
6627         raise an error when their own hooks caused early abortion of its
6628         iteration.
6630         * kern/device.c (grub_device_open): Improve error message.
6631         * disk/lvm.c (grub_lvm_open): Likewise.
6632         * disk/raid.c (grub_raid_open): Likewise.
6634         * partmap/pc.c (pc_partition_map_iterate): Abort parent iteration
6635         when hook requests it, independently of grub_errno.
6636         (pc_partition_map_probe): Do not fail when find_func() caused
6637         early abortion of pc_partition_map_iterate().
6639         * partmap/gpt.c (gpt_partition_map_iterate): Abort parent iteration
6640         when hook requests it, independently of grub_errno.
6641         (gpt_partition_map_probe): Do not fail when find_func() caused
6642         early abortion of gpt_partition_map_iterate().
6644         * kern/partition.c (grub_partition_iterate): Abort parent iteration
6645         when hook requests it, independently of grub_errno.  Do not fail when
6646         part_map_iterate_hook() caused early abortion of p->iterate().
6648         * util/biosdisk.c (grub_util_biosdisk_get_grub_dev): Do not fail
6649         when grub_partition_iterate() returned with non-zero.
6651 2008-07-03  Pavel Roskin  <proski@gnu.org>
6653         * disk/ata.c (grub_ata_pio_write): Check status before writing,
6654         like we do in grub_ata_pio_read().
6655         (grub_ata_readwrite): Always write individual sectors.  Fix the
6656         sector count for the remainder.
6657         (grub_ata_write): Enable writing to ATA devices.  Correctly
6658         report error for ATAPI devices.
6660 2008-07-02  Pavel Roskin  <proski@gnu.org>
6662         * boot/i386/pc/cdboot.S: Add _start entry to fix a linker
6663         warning.
6665         * disk/ata.c (grub_ata_readwrite): Don't increment sector number
6666         for every read sector, we already increment it for the whole
6667         batch.  This fixes reading more than 256 sectors at once.
6669         * util/grub-editenv.c (cmd_info): Cast argument to long
6670         explicitly.  ptrdiff_t reduces to int on i386.
6672         * util/grub-editenv.c (main): Be specific which parameter is
6673         missing.
6675         * disk/memdisk.c (memdisk_addr): Make a pointer to fix warnings.
6676         (memdisk): Make memdisk_orig_addr a pointer.
6678         * fs/reiserfs.c (grub_reiserfs_read): Fix misuse of grub_size_t
6679         for file offsets, use grub_off_t instead.  Fix printf format
6680         warnings.
6682         * fs/reiserfs.c: Remove #warning, TODO list items don't belong
6683         there.  Real unexpected warnings should not drown in the noise
6684         about known problems.
6686         * commands/hexdump.c (grub_cmd_hexdump): Fix misuse of
6687         grub_disk_addr_t for memory addresses.
6689         * loader/aout.c (grub_aout_load): Cast load_addr to pointer
6690         explicitly to fix a warning.
6692         * util/grub-editenv.c (cmd_info): Fix warning in printf format.
6694         * Makefile.in (MODULE_LDFLAGS): New variable.
6695         * aclocal.m4 (grub_PROG_LD_BUILD_ID_NONE): New macro.  Check if
6696         the linker accepts --build-id=none.
6697         * configure.ac: Call grub_PROG_LD_BUILD_ID_NONE.  Substitute
6698         MODULE_LDFLAGS.
6699         * genmk.rb: Use MODULE_LDFLAGS when linking modules.
6701         * fs/xfs.c (struct grub_xfs_dir_header): Use names similar to
6702         those in Linux XFS code.  Provide a way to access 64-bit parent
6703         inode.
6704         (grub_xfs_iterate_dir): Use the new names.  Avoid reading past
6705         the end of struct grub_xfs_dir_header.
6707 2008-07-02  Bean  <bean123ch@gmail.com>
6709         * include/grub/ieee1275.h (grub_ieee1275_flag): New constant
6710         GRUB_IEEE1275_FLAG_CANNOT_INTERPRET, GRUB_IEEE1275_FLAG_FORCE_CLAIM
6711         and GRUB_IEEE1275_FLAG_NO_ANSI.
6713         * kern/ieee1275/cmain.c (grub_ieee1275_find_options): Set flag
6714         GRUB_IEEE1275_FLAG_CANNOT_INTERPRET, GRUB_IEEE1275_FLAG_FORCE_CLAIM
6715         and GRUB_IEEE1275_FLAG_NO_ANSI for Open Hackware.
6717         * kern/ieee1275/ieee1275.c (grub_ieee1275_interpret): Return
6718         immediately if GRUB_IEEE1275_FLAG_CANNOT_INTERPRET is set.
6720         * kern/ieee1275/init.c (grub_claim_heap): Claim memory directly if
6721         GRUB_IEEE1275_FLAG_FORCE_CLAIM is set.
6723         * term/ieee1275/ofconsole.c (grub_ofconsole_writeesc): Don't output
6724         esc sequence on non ANSI terminal.
6725         (grub_ofconsole_gotoxy): Emulate backspace key on non ANSI terminal.
6727         * util/elf/grub-mkimage.c (add_segments): Move ELF header to the
6728         beginning of file.
6730 2008-07-02  Bean  <bean123ch@gmail.com>
6732         * conf/common.rmk (bin_UTILITIES): Add grub-editenv.
6733         (grub_editenv_SOURCES): New variable.
6734         (pkglib_MODULES): Add loadenv.mod.
6735         (loadenv_mod_SOURCES): New variable.
6736         (loadenv_mod_CFLAGS): Likewise.
6737         (loadenv_mod_LDFLAGS): Likewise.
6739         * include/grub/envblk.h: New file.
6741         * util/envblk.c: New file.
6743         * util/grub-editenv.c: New file.
6745         * commands/loadenv.c: New file.
6747 2008-07-01  Pavel Roskin  <proski@gnu.org>
6749         * include/multiboot2.h (struct multiboot_tag_module): Use char,
6750         not unsigned char.  This fixes warnings and is consistent with
6751         other tags.
6753         * disk/fs_uuid.c (search_fs_uuid): Correctly increment count.
6755         * normal/parser.y: Define YYENABLE_NLS as 0 to fix warnings.
6757         * term/tparm.c (analyze): Always set *popcount.
6759         * loader/i386/pc/linux.c (grub_rescue_cmd_linux): Remove useless
6760         cast to fix a warning.
6762         * loader/i386/pc/multiboot2.c (grub_mb2_arch_module_alloc): Use
6763         cast to suppress a warning.
6765         * fs/afs.c (grub_afs_read_block): Return grub_disk_addr_t, as
6766         grub_fshelp_read_file() expects.
6768         * fs/fat.c: Fix UUID calculation on big-endian systems.  We
6769         write uuid as a 32-bit value in CPU byte order, so declare and
6770         use it as such.
6772         * disk/raid.c: Cast grub_dprintf() arguments to unsigned long
6773         long if the format specifier expects it.
6774         * partmap/gpt.c (gpt_partition_map_iterate): Likewise.
6775         * partmap/pc.c (pc_partition_map_iterate): Likewise.
6776         * fs/ntfs.c (grub_ntfs_uuid): Cast data->uuid to unsigned long
6777         long to fix a warning.
6778         * fs/reiserfs.c (grub_reiserfs_read): Change casts in
6779         grub_dprintf() arguments to fix warnings.
6781 2008-06-30  Pavel Roskin  <proski@gnu.org>
6783         * util/i386/pc/grub-setup.c (setup): Write install_dos_part and
6784         install_bsd_part immediately before core.img is embedded or
6785         modified on disk.  This fixes core.img verification if core.img
6786         cannot be embedded.
6788         * util/i386/pc/grub-setup.c (setup): Use core_path_dev, not
6789         core_path to calculate the blocklist.
6790         Patch from Javier Martín <lordhabbit@gmail.com>
6792 2008-06-29  Robert Millan  <rmh@aybabtu.com>
6794         * fs/xfs.c (GRUB_XFS_FSB_TO_BLOCK): New macro.  Maps filesystem
6795         block to disk block.
6796         (grub_xfs_read_block): Use GRUB_XFS_FSB_TO_BLOCK() on result.
6797         Patch from Niels Böhm <bitbucket@arcor.de>
6799 2008-06-29  Robert Millan  <rmh@aybabtu.com>
6801         * util/update-grub_lib.in (font_path): Search for fonts in
6802         /boot/grub first, which is more likely to be readable (we aren't
6803         deciding where fonts live, just looking for them).
6805 2008-06-26  Pavel Roskin  <proski@gnu.org>
6807         * util/biosdisk.c (read_device_map): Don't leave dead map
6808         entries for devices failing stat() check.
6810         * util/i386/pc/grub-setup.c (setup): Don't reuse core_path, use
6811         core_path_dev for the core.img path on the target device.
6813 2008-06-26  Robert Millan  <rmh@aybabtu.com>
6815         * disk/fs_uuid.c: New file.
6816         * conf/common.rmk (pkglib_MODULES): Add `fs_uuid.mod'.
6817         (fs_uuid_mod_SOURCES, fs_uuid_mod_CFLAGS)
6818         (fs_uuid_mod_LDFLAGS): New variables.
6819         * include/grub/disk.h (grub_disk_dev_id): Add
6820         `GRUB_DISK_DEVICE_UUID_ID'.
6821         * kern/disk.c (grub_disk_dev_iterate): Allow disk devices not to
6822         implement iterate().
6824 2008-06-26  Robert Millan  <rmh@aybabtu.com>
6826         * util/grub.d/10_linux.in: Avoid passing UUIDs to Linux when either
6827         "/dev/disk/by-uuid/${GRUB_DEVICE_UUID}" does not exist, or when a
6828         Linux image includes no initrd.
6830 2008-06-21  Javier Martín  <lordhabbit@gmail.com>
6832         * util/i386/pc/grub-setup.c (setup): Remove literal "core.img" in a
6833         call to resolve the core image location that effectively appended the
6834         name twice.
6836 2008-06-21  Robert Millan  <rmh@aybabtu.com>
6838         * util/grub.d/00_header.in: Move last prepare_grub_to_access_device()
6839         call from here ...
6841         * util/grub.d/10_hurd.in: ... to here ...
6842         * util/grub.d/10_linux.in: ... and here.
6844 2008-06-19  Robert Millan  <rmh@aybabtu.com>
6846         * kern/main.c (grub_main): Export `prefix' variable immediately
6847         after it has been set by grub_machine_set_prefix().
6849 2008-06-19  Robert Millan  <rmh@aybabtu.com>
6851         * commands/search.c (search_label, search_fs_uuid, search_file): Print
6852         search result when not saving to variable, not the other way around.
6853         When saving to variable, abort iteration as soon as a match is found.
6855 2008-06-19  Robert Millan  <rmh@aybabtu.com>
6857         * util/update-grub_lib.in (prepare_grub_to_access_device): Remove
6858         check for partition that provides /boot/grub.  Its logic is flawed,
6859         as it prevents prepare_grub_to_access_device() from being called
6860         multiple times.
6862 2008-06-19  Robert Millan  <rmh@aybabtu.com>
6864         * util/update-grub_lib.in (prepare_grub_to_access_device): Issue
6865         "insmod" command directly when abstraction modules are needed,
6866         instead of relying on GRUB_PRELOAD_MODULES (which had no effect
6867         since it had already been processed).
6869 2008-06-19  Pavel Roskin  <proski@gnu.org>
6871         * conf/i386-efi.rmk: Recompile grub-mkimage.c if Makefile has
6872         changed.  This is needed in case GRUB_LIBDIR changes.
6873         * conf/i386-ieee1275.rmk: Likewise.
6874         * conf/i386-linuxbios.rmk: Likewise.
6875         * conf/i386-pc.rmk: Likewise.
6876         * conf/powerpc-ieee1275.rmk: Likewise.
6878 2008-06-18  Pavel Roskin  <proski@gnu.org>
6880         * conf/powerpc-ieee1275.rmk (kernel_elf_SOURCES): Rename
6881         kernel_elf_symlist.c to symlist.c for consistency with other
6882         architectures.  Update all users.
6883         * conf/sparc64-ieee1275.rmk (kernel_elf_SOURCES): Likewise.
6885 2008-06-18  Robert Millan  <rmh@aybabtu.com>
6887         * util/i386/pc/grub-install.in: If the drive is LVM or RAID, prepend
6888         it in prefix.
6890         * util/i386/pc/grub-setup.c (main): Don't handle prefix at all.  Set
6891         `must_embed' to 1 when root_dev is a RAID device.  When dest_dev is
6892         a RAID device, run setup() for all members independently on whether
6893         LVM abstraction is being used.
6894         (setup): Don't handle prefix at all; let grub-mkimage take care of it.
6895         If grub-mkimage has set `*install_dos_part == -2', don't override this
6896         value.
6897         Perform *install_dos_part adjustments independently on whether
6898         we're embedding or not.
6899         Clarify error message when image is too big for embedding.
6900         Remove duplicate *install_dos_part stanza.
6902 2008-06-17  Robert Millan  <rmh@aybabtu.com>
6904         * term/ieee1275/ofconsole.c (fgcolor, bgcolor): Remove variables.
6905         (grub_ofconsole_normal_color, grub_ofconsole_highlight_color): New
6906         variables.
6907         (grub_ofconsole_setcolor, grub_ofconsole_getcolor): Load/store
6908         values in grub_ofconsole_normal_color and
6909         grub_ofconsole_highlight_color (they're not directly related to
6910         background and foreground).
6911         (grub_ofconsole_setcolorstate): Extract background and foreground
6912         from grub_ofconsole_normal_color and grub_ofconsole_highlight_color.
6914 2008-06-17  Robert Millan  <rmh@aybabtu.com>
6916         * util/update-grub_lib.in (prepare_grub_to_access_device): Use
6917         /boot/grub for the check in last commit, not /boot (they could be
6918         different partitions).
6920 2008-06-16  Robert Millan  <rmh@aybabtu.com>
6922         * util/update-grub_lib.in (prepare_grub_to_access_device): If we were
6923         asked to setup access for the same partition that provides /boot,
6924         don't bother using UUIDs since our root already has the value we
6925         want.
6927 2008-06-16  Robert Millan  <rmh@aybabtu.com>
6929         * util/biosdisk.c (convert_system_partition_to_system_disk): Detect
6930         I2O devices.
6931         Patch from Sven Mueller <sven@debian.org>.
6933 2008-06-16  Robert Millan  <rmh@aybabtu.com>
6935         * util/update-grub.in: Check for $EUID instead of $UID.
6936         Reported by Vincent Zweije.
6938 2008-06-16  Bean  <bean123ch@gmail.com>
6940         * fs/ext2.c (grub_ext2_blockgroup): Revert to pre-journal state.
6941         (grub_ext2_read_block): Likewise.
6942         (grub_ext2_read_inode): Likewise.
6943         (grub_ext2_mount): Likewise.
6944         (grub_ext2_close): Likewise.
6945         (grub_ext3_get_journal): Removed.
6947         * fs/reiserfs.c (grub_reiserfs_get_item): Revert to pre-journal state.
6948         (grub_reiserfs_read_symlink): Likewise.
6949         (grub_reiserfs_mount): Likewise.
6950         (grub_reiserfs_open): Likewise.
6951         (grub_reiserfs_read): Likewise.
6952         (grub_reiserfs_close): Likewise.
6953         (grub_reiserfs_get_journal): Removed.
6955         * fs/fshelp.c (grub_fshelp_read): Removed.
6956         (grub_fshelp_map_block): Likewise.
6958         * include/grub/fshelp.h (grub_fshelp_journal_type): Removed.
6959         (grub_fshelp_journal): Likewise.
6960         (grub_fshelp_read): Likewise.
6961         (grub_fshelp_map_block): Likewise.
6963 2008-06-16  Pavel Roskin  <proski@gnu.org>
6965         * conf/powerpc-ieee1275.rmk: Remove -msoft-float, we don't use
6966         floating point anymore.
6967         * include/grub/powerpc/libgcc.h: Leave only necessary exports.
6969 2008-06-15  Pavel Roskin  <proski@gnu.org>
6971         * commands/ls.c (grub_ls_list_files): Use integer calculations
6972         for human readable format, avoid floating point use.
6973         * kern/misc.c (grub_ftoa): Remove.
6974         (grub_vsprintf): Remove floating point support.
6976 2008-06-15  Robert Millan  <rmh@aybabtu.com>
6978         * util/grub.d/10_linux.in: Use the underlying device for loop-AES
6979         devices.
6980         Reported by Max Vozeler.
6982 2008-06-15  Robert Millan  <rmh@aybabtu.com>
6984         * util/i386/pc/grub-mkimage.c (generate_image): If we included a drive
6985         in our prefix, set install_{dos,bsd}_part = -2 to indicate this can be
6986         skipped later.
6987         (main): If a memdisk was requested, add "(memdisk)" drive explicitly to
6988         the beginning of the prefix.
6990         * kern/i386/pc/init.c (make_install_device): Remove memdisk check.
6991         It is assumed that if we have a memdisk, grub-mkimage has set
6992         grub_prefix to include the "(memdisk)" drive in it.
6994 2008-06-15  Robert Millan  <rmh@aybabtu.com>
6996         * term/i386/pc/console.c [GRUB_MACHINE_LINUXBIOS] (grub_console_init):
6997         Initialize keyboard controller after registering the terminal, so that
6998         grub_printf() can be called from grub_keyboard_controller_init().
7000 2008-06-15  Robert Millan  <rmh@aybabtu.com>
7002         * fs/sfs.c (grub_sfs_read_extent): Fix the count of nodes in
7003         extent-btree which is written as big endian on disk.
7004         Reported by Alain Greppin  <al@chilibi.org>.
7006 2008-06-14  Robert Millan  <rmh@aybabtu.com>
7008         * util/i386/efi/grub-install.in (modules): Remove `_chain'.
7009         * util/i386/pc/grub-install.in (modules): Likewise.
7011 2008-06-13  Pavel Roskin  <proski@gnu.org>
7013         * commands/ls.c (grub_ls_list_files): Fix format warnings.
7015 2008-06-13  Bean  <bean123ch@gmail.com>
7017         * commands/hexdump.c (grub_cmd_hexdump): Adjust offset for partition.
7019         * fs/ext2.c (grub_ext3_get_journal): Fix revoke block handling.
7021         * fs/fshelp.c (grub_fshelp_map_block): Don't map block 0 as it's used
7022         to indicate sparse block.
7024 2008-06-12  Pavel Roskin  <proski@gnu.org>
7026         * fs/ext2.c (grub_ext2_read_inode): Don't normalize block
7027         number, grub_fshelp_read() does it for us.
7029         * fs/fshelp.c (grub_fshelp_read): New function.  Implement
7030         linear disk read with journal translation.
7031         * fs/ext2.c: Use grub_fshelp_read() instead of grub_disk_read().
7032         * include/grub/fshelp.h: Declare grub_fshelp_read().
7034 2008-06-09  Pavel Roskin  <proski@gnu.org>
7036         * fs/minix.c (grub_minix_mount): Handle error reading
7037         superblock.
7039 2008-06-08  Robert Millan  <rmh@aybabtu.com>
7041         * util/i386/pc/grub-setup.c (main): If install drive is an LVM,
7042         don't append the RAID prefix afterwards.
7043         Reported by Clint Adams.
7045 2008-06-08  Robert Millan  <rmh@aybabtu.com>
7047         Based on description from Pavel:
7048         * kern/disk.c (grub_disk_check_range): Rename to ...
7049         (grub_disk_adjust_range): ... this.  Add a comment explaining the
7050         tasks performed by this function.
7052 2008-06-08  Robert Millan  <rmh@aybabtu.com>
7054         * include/grub/ntfs.h (struct grub_ntfs_bpb): Rename `serial_number' to
7055         `num_serial' (for consistency with other variables).
7056         (struct grub_ntfs_data): Add `uuid' member.
7057         * fs/ntfs.c (grub_ntfs_mount): Initialize `data->uuid'.
7058         (grub_ntfs_uuid): New function.
7059         (grub_ntfs_fs): Reference grub_ntfs_uuid() in `uuid' struct member.
7061 2008-06-07  Pavel Roskin  <proski@gnu.org>
7063         * util/biosdisk.c (open_device): Revert last change to the
7064         function, it broke installation.  The sector needs to be
7065         different dependent on which device is opened.
7067 2008-06-06  Robert Millan  <rmh@aybabtu.com>
7069         Ensure GRUB_KERNEL_MACHINE_DATA_END is always consistent with the
7070         rest of GRUB, and breakage doesn't happen if its value were modified.
7072         * include/grub/i386/pc/kernel.h (GRUB_KERNEL_MACHINE_RAW_SIZE):
7073         Redefine as an offset from `GRUB_KERNEL_MACHINE_DATA_END' instead of
7074         a constant (same value).
7075         * kern/i386/pc/startup.S: Replace hardcoded `0x50' with
7076         `GRUB_KERNEL_MACHINE_DATA_END' (same value).
7078 2008-06-06  Robert Millan  <rmh@aybabtu.com>
7080         * util/biosdisk.c (open_device): Do not modify sector offset when
7081         accessing a partition.  kern/disk.c already handles this for us.
7083 2008-06-06  Robert Millan  <rmh@aybabtu.com>
7085         * util/grub-emu.c (grub_machine_init): Move code in this function from
7086         here ...
7087         (main): ... to here (before grub_util_biosdisk_init() call, to prevent
7088         segfault in case grub_printf() is called).
7090         * util/i386/pc/grub-install.in: Append `--device-map=${device_map}' to
7091         grub_probe.  Update all users not to explicitly add it again.
7092         (grub_device): New variable; contains corresponding device for grubdir.
7093         (fs_module, partmap_module, devabstraction_module): Pass
7094         `--device ${grub_device}' to grub_probe to avoid traversing /dev
7095         every time.
7097 2008-06-05  Robert Millan  <rmh@aybabtu.com>
7099         * normal/misc.c (grub_normal_print_device_info): When a filesystem UUID
7100         is found, print it (same layout as with labels).
7102 2008-06-04  Robert Millan  <rmh@aybabtu.com>
7104         * util/biosdisk.c (get_drive): Rename to ...
7105         (find_grub_drive): ... this.  Update all users.
7107         (get_os_disk): Rename to ...
7108         (convert_system_partition_to_system_disk): ... this.  Update all users.
7110         (find_drive): Rename to ...
7111         (find_system_device): ... this.  Update all users.
7113 2008-06-04  Robert Millan  <rmh@aybabtu.com>
7115         * util/biosdisk.c (get_os_disk): Handle IDA devices.
7116         * util/grub-mkdevicemap.c (get_mmc_disk_name)
7117         (make_device_map): Likewise.
7119 2008-06-01  Robert Millan  <rmh@aybabtu.com>
7121         *  util/biosdisk.c (get_drive): Verify that `map[i].drive' is non-NULL
7122         before dereferencing it.
7124         * fs/fat.c (struct grub_fat_bpb): Move fat32-specific fields into a
7125         union with fat12/fat16-specific ones.  Add some new fields, including
7126         `num_serial' for both versions.
7127         (struct grub_fat_data): Add `uuid' member.
7128         (grub_fat_mount): Refer to fat32-specific fields in `bpb' by their new
7129         names.  Initialize `data->uuid' using `num_serial'.
7130         (grub_fat_uuid): New function.
7131         (grub_fat_fs): Reference grub_fat_uuid() in `uuid' struct member.
7133         * fs/reiserfs.c (grub_reiserfs_superblock): Add `uuid' field.
7134         (grub_reiserfs_uuid): New function.
7135         (grub_reiserfs_fs): Reference grub_reiserfs_uuid() in `uuid' struct
7136         member.
7138         * fs/xfs.c (grub_xfs_sblock): Add `uuid' field.
7139         (grub_xfs_uuid): New function.
7140         (grub_xfs_fs): Reference grub_reiserfs_uuid() in `uuid' struct member.
7142 2008-06-01  Robert Millan  <rmh@aybabtu.com>
7144         * util/update-grub_lib.in (prepare_grub_to_access_device): Generate
7145         code that is backward compatible with pre-uuid search command.
7147 2008-05-31  Robert Millan  <rmh@aybabtu.com>
7149         * disk/i386/pc/biosdisk.c (grub_biosdisk_iterate): Iterate through
7150         floppies after everything else, to ensure floppy drive isn't accessed
7151         unnecessarily (patch from Bean).
7153 2008-05-31  Robert Millan  <rmh@aybabtu.com>
7155         * commands/search.c (search_label, search_fs_uuid, search_file): Do
7156         not print device names when we were asked to set a variable.
7158 2008-05-31  Robert Millan  <rmh@aybabtu.com>
7160         * term/ieee1275/ofconsole.c (grub_ofconsole_setcursor): Implement
7161         using "cursor-on" and "cursor-off" commands (understood at least by
7162         the Open Firmware flavour on OLPC).
7164 2008-05-31  Michael Gorven  <michael@gorven.za.net>
7166         * term/terminfo.c (grub_terminfo_set_current): Correct vt100 cursor
7167         on and off sequences.
7169 2008-05-31  Robert Millan  <rmh@aybabtu.com>
7171         * util/update-grub_lib.in: Replace `grub-probe' with `${grub_probe}'.
7172         * util/update-grub.in: Likewise.
7174 2008-05-30  Pavel Roskin  <proski@gnu.org>
7176         * util/biosdisk.c (linux_find_partition): Simplify logic and
7177         make the code more universal.  Keep special processing for
7178         devfs, but use a simple rule for all other devices.  If the
7179         device ends with a number, append 'p' and the partition number.
7180         Otherwise, append only the partition number.
7182 2008-05-30  Robert Millan  <rmh@aybabtu.com>
7184         * util/update-grub.in (GRUB_DISABLE_LINUX_UUID): Export variable.
7185         * util/grub.d/10_linux.in: If GRUB_DEVICE_UUID is set, and
7186         GRUB_DISABLE_LINUX_UUID isn't true, use the filesystem UUIDs as
7187         the `root' parameter to Linux.
7189 2008-05-30  Robert Millan  <rmh@aybabtu.com>
7191         * commands/search.c (options): Rename --fs_uuid to --fs-uuid.
7192         * util/update-grub_lib.in (prepare_grub_to_access_device): Replace
7193         --fs_uuid with --fs-uuid.
7194         * util/update-grub.in: Allow filesystem UUID probes to fail (since not
7195         all filesystems support them).
7197 2008-05-30  Robert Millan  <rmh@aybabtu.com>
7199         * fs/ext2.c (grub_ext2_uuid): Use `04x' instead of '02x' as
7200         grub_printf() flags, since we're printing in units of 2 bytes.
7202 2008-05-30  Robert Millan  <rmh@aybabtu.com>
7204         * util/grub.d/00_header.in: Remove obsolete comment referencing
7205         convert_system_path_to_grub_path().
7206         * util/update-grub.in: Likewise.
7207         * util/update-grub_lib.in (is_path_readable_by_grub): New function.
7208         (convert_system_path_to_grub_path): Add a warning message explaining
7209         that this function is deprecated.  Rely on is_path_readable_by_grub()
7210         for the readability checks.
7211         (font_path): Use is_path_readable_by_grub() for the readability
7212         check rather than convert_system_path_to_grub_path().
7214 2008-05-30  Robert Millan  <rmh@aybabtu.com>
7216         * util/update-grub_lib.in (prepare_grub_to_access_device): New function.
7217         * util/update-grub.in: Set `GRUB_FONT_PATH' to the system path, without
7218         converting it first.
7219         * util/grub.d/00_header.in: Use prepare_grub_to_access_device() to setup
7220         grub.cfg for access to font file, and afterwards call it again to set
7221         the root device.
7223 2008-05-30  Robert Millan  <rmh@aybabtu.com>
7225         * commands/search.c (options): Add --fs_uuid option.
7226         (search_fs_uuid): New function.
7227         (grub_cmd_search): Fix --set argument passing.
7228         Use search_fs_uuid() when requested via --fs_uuid.
7229         (grub_search_init): Update help message.
7230         * fs/ext2.c (struct grub_ext2_sblock): Rename `unique_id' to `uuid'
7231         and redeclare it as an array of 16-bit words.
7232         (grub_ext2_uuid): New function.
7233         (grub_ext2_fs): Reference grub_ext2_uuid() in `uuid' struct member.
7234         * include/grub/fs.h (struct grub_fs): Add `uuid' struct member.
7235         * util/update-grub.in (GRUB_DEVICE_UUID, GRUB_DEVICE_BOOT)
7236         (GRUB_DEVICE_BOOT_UUID): New variables.
7237         (GRUB_DRIVE. GRUB_DRIVE_BOOT. GRUB_DRIVE_BOOT_GRUB): Remove.
7238         * util/grub.d/00_header.in: Set root using `search --fs_uuid' command
7239         whenever possible.
7240         * util/grub.d/10_hurd.in: Avoid explicit use of root drive.  Instead,
7241         just assume `root' variable has the right value.
7242         * util/grub.d/10_linux.in: Likewise.
7243         * util/grub-probe.c (probe): Probe for filesystem UUID when requested
7244         via PRINT_FS_UUID.
7245         (main): Recognise `-t fs_uuid' argument.
7247 2008-05-30  Robert Millan  <rmh@aybabtu.com>
7249         * util/biosdisk.c (map): Redefine structure to hold information
7250         about GRUB drive name.
7251         (get_drive): Reimplement without assuming (and verifying) BIOS-like
7252         drive names.
7253         (call_hook): Remove.
7254         (grub_util_biosdisk_iterate): Access drive names via `.drive' struct
7255         member.  Assume drive has partitions.
7256         (grub_util_biosdisk_open): Access device names via `.device' struct
7257         member.
7258         (open_device): Likewise.
7259         (find_drive): Likewise.
7260         (read_device_map): Adjust map[] usage to match the new struct
7261         definition.  Don't check for duplicates (still possible, but not cheap
7262         anymore).
7263         (grub_util_biosdisk_fini): Free malloced buffers referenced by map[].
7264         (make_device_name): Remove assumption of BIOS-like drive names.
7266 2008-05-30  Pavel Roskin  <proski@gnu.org>
7268         * conf/i386-efi.rmk (normal/execute.c_DEPENDENCIES): Remove, as
7269         compiling execute.c doesn't need grub_script.tab.h anymore.
7270         (normal/command.c_DEPENDENCIES): Likewise.
7271         (normal/function.c_DEPENDENCIES): Likewise.
7272         * conf/i386-ieee1275.rmk: Likewise.
7273         * conf/i386-linuxbios.rmk: Likewise.
7274         * conf/i386-pc.rmk: Likewise.
7275         * conf/powerpc-ieee1275.rmk: Likewise.
7276         * conf/sparc64-ieee1275.rmk: Likewise.
7278 2008-05-29  Pavel Roskin  <proski@gnu.org>
7280         * disk/lvm.c (grub_lvm_scan_device): Check for the buffer end
7281         when scanning metadata for volume group name.
7283         * include/grub/script.h: Don't include grub_script.tab.h.  It's
7284         a generated file, which may only be included from the files with
7285         DEPENDENCIES rules in the makefile.  Don't use typedef YYSTYPE,
7286         use union YYSTYPE, as the later allows forward declaration.
7287         * normal/lexer.c: Don't use typedef YYSTYPE, use union YYSTYPE.
7289 2008-05-29  Robert Millan  <rmh@aybabtu.com>
7291         * term/i386/pc/at_keyboard.c: Include `grub/machine/machine.h'.
7292         (OLPC_UP, OLPC_DOWN, OLPC_LEFT, OLPC_RIGHT): New macros.
7293         [GRUB_MACHINE_IEEE1275] (keyboard_map): Add OLPC scan codes
7294         (grub_console_checkkey): Add grub_dprintf() call to report unknown
7295         scan codes.
7297 2008-05-29  Robert Millan  <rmh@aybabtu.com>
7299         * term/i386/pc/at_keyboard.c (grub_console_checkkey): Add support for
7300         control key combinations.
7302 2008-05-29  Robert Millan  <rmh@aybabtu.com>
7304         * util/powerpc/ieee1275/grub-install.in: Move from here ...
7305         * util/ieee1275/grub-install.in: ... to here.
7306         * powerpc-ieee1275.rmk (grub_install_SOURCES): Update location.
7307         * i386-ieee1275.rmk (sbin_SCRIPTS): New variable.
7308         (grub_install_SOURCES): Likewise.
7310 2008-05-29  Robert Millan  <rmh@aybabtu.com>
7312         * fs/affs.c: Update copyright year.
7313         * fs/ext2.c: Likewise.
7314         * fs/fshelp.c: Likewise.
7315         * fs/hfsplus.c: Likewise.
7316         * fs/ntfs.c: Likewise.
7317         * fs/xfs.c: Likewise.
7318         * include/grub/fshelp.h: Likewise.
7319         * util/grub-mkdevicemap.c: Likewise.
7321 2008-05-28  Robert Millan  <rmh@aybabtu.com>
7323         * util/update-grub.in: Allow chmod call to fail, since /boot/grub/
7324         might need to be fatfs to support some firmware implementations
7325         (e.g. OFW or EFI).
7327 2008-05-28  Robert Millan  <rmh@aybabtu.com>
7329         * util/biosdisk.c (linux_find_partition, get_os_disk): Handle MMC
7330         devices.
7331         * util/grub-mkdevicemap.c (get_mmc_disk_name)
7332         (make_device_map): Likewise.
7334 2008-05-20  Bean  <bean123ch@gmail.com>
7336         * fs/fshelp.c (grub_fshelp_map_block): New function.
7337         (grub_fshelp_find_file): Use 64-bit type for pos and block address.
7338         Use `>>' and `&' operator to avoid 64-bit divide and modulo.
7340         * include/grub/fshelp.h (grub_fshelp_journal_type): New enum.
7341         (GRUB_FSHELP_JOURNAL_UNUSED_MAPPING): New macro.
7342         (grub_fshelp_journal): New structure.
7343         (grub_fshelp_map_block): New function prototype.
7344         (grub_fshelp_read_file): Use grub_disk_addr_t as block type.
7345         (grub_fshelp_map_block): Likewise.
7347         * fs/ext2.c (EXT3_FEATURE_COMPAT_HAS_JOURNAL): New macro.
7348         (EXT3_JOURNAL_MAGIC_NUMBER): Likewise.
7349         (EXT3_JOURNAL_DESCRIPTOR_BLOCK): Likewise.
7350         (EXT3_JOURNAL_COMMIT_BLOCK): Likewise.
7351         (EXT3_JOURNAL_SUPERBLOCK_V1): Likewise.
7352         (EXT3_JOURNAL_SUPERBLOCK_V2): Likewise.
7353         (EXT3_JOURNAL_REVOKE_BLOCK): Likewise.
7354         (EXT3_JOURNAL_FLAG_ESCAPE): Likewise.
7355         (EXT3_JOURNAL_FLAG_SAME_UUID): Likewise.
7356         (EXT3_JOURNAL_FLAG_DELETED): Likewise.
7357         (EXT3_JOURNAL_FLAG_LAST_TAG): Likewise.
7358         (grub_ext2_sblock): New members for journal support.
7359         (grub_ext3_journal_header): New structure.
7360         (grub_ext3_journal_revoke_header): Likewise.
7361         (grub_ext3_journal_block_tag): Likewise.
7362         (grub_ext3_journal_sblock): Likewise.
7363         (grub_fshelp_node): New members logfile and journal.
7364         (grub_ext2_read_block): Change block type to grub_disk_addr_t. Use
7365         grub_fshelp_map_block to get real block number.
7366         (grub_ext2_blockgroup): Use grub_fshelp_map_block to get real block
7367         number.
7368         (grub_ext2_read_inode): Likewise.
7369         (grub_ext3_get_journal): New function.
7370         (grub_read_inode): Initialize journal using grub_ext3_get_journal.
7371         (grub_ext2_close): Release memory used by journal.
7373         * fs/reiserfs.c (REISERFS_MAGIC_STRING): Changed to "ReIsEr".
7374         (REISERFS_MAGIC_DESC_BLOCK): New macro.
7375         (grub_reiserfs_transaction_header): Renamed to
7376         grub_reiserfs_description_block, replace field data with real_blocks.
7377         (grub_reiserfs_commit_block): New structure.
7378         (grub_reiserfs_data): New member journal.
7379         (grub_reiserfs_get_item): Use grub_fshelp_map_block to get real block
7380         number.
7381         (grub_reiserfs_read_symlink): Likewise.
7382         (grub_reiserfs_iterate_dir): Likewise.
7383         (grub_reiserfs_open): Likewise.
7384         (grub_reiserfs_read): Likewise.
7385         (grub_reiserfs_get_journal): New function.
7386         (grub_reiserfs_mount): Use "ReIsEr" as super block magic, as there are
7387         three varieties ReIsErFs, ReIsEr2Fs and ReIsEr3Fs. Initialize journal
7388         using grub_reiserfs_get_journal.
7389         (grub_reiserfs_close): Release memory used by journal.
7391         * fs/affs.c (grub_affs_read_block): Change block type to
7392         grub_disk_addr_t. Use grub_divmod64 to do 64-bit division.
7394         * fs/afs.c (grub_afs_read_block): Change block type to grub_disk_addr_t.
7396         * fs/hfsplus.c (grub_hfsplus_read_block): Likewise.
7398         * fs/ntfs.c (grub_ntfs_read_block): Likewise.
7400         * fs/udf.c (grub_udf_read_block): Change block type to
7401         grub_disk_addr_t. Use type cast to avoid warning.
7403         * fs/xfs.c (grub_xfs_read_block): Likewise.
7405 2008-05-16  Christian Franke  <franke@computer.org>
7407         * commands/cat.c (grub_cmd_cat): Remove non-ESC keys from keyboard queue
7408         to ensure that break with ESC will always work.
7409         * commands/sleep.c (grub_interruptible_millisleep): Likewise.
7410         Remove ESC from keyboard queue.
7412 2008-05-16  Christian Franke  <franke@computer.org>
7414         * util/biosdisk.c: [__CYGWIN__] Add includes.
7415         (grub_util_biosdisk_open): Use Linux code also for Cygwin.
7416         (get_os_disk): Move variable declarations to OS specific
7417         parts to avoid warning.
7418         [__GNU__] (get_os_disk): Fix /dev/sdXsN case.
7419         [__CYGWIN__] (get_os_disk): Add Cygwin /dev/sdXN device names.
7420         (grub_util_biosdisk_get_grub_dev): Use Linux code also for
7421         Cygwin.
7422         * util/getroot.c: [__CYGWIN__] Add includes.
7423         (strip_extra_slashes): Fix "/" case.
7424         [__CYGWIN__] (get_win32_path): New function.
7425         [__CYGWIN__] (grub_get_prefix): Add conversion to win32 path.
7426         [__CYGWIN__] (find_root_device): Disable.
7427         [__CYGWIN__] (get_bootsec_serial): New function.
7428         [__CYGWIN__] (find_cygwin_root_device): Likewise.
7429         [__linux__] (grub_guess_root_device): Add early returns to simplify
7430         structure.
7431         [__CYGWIN__] (grub_guess_root_device): Call find_cygwin_root_device.
7432         [__linux__] (grub_util_get_dev_abstraction): Enable LVM and RAID
7433         check for Linux only.
7435 2008-05-15  Bean  <bean123ch@gmail.com>
7437         * kern/i386/pc/startup.S (grub_console_getkey): Workaround for the
7438         keyboard hang problem in apple's intel mac.
7440 2008-05-09  Robert Millan  <rmh@aybabtu.com>
7442         * util/biosdisk.c (linux_find_partition, get_os_disk): Handle Virtio
7443         devices.
7444         * util/grub-mkdevicemap.c (get_virtio_disk_name)
7445         (make_device_map): Likewise.
7446         Reported by Aurelien Jarno <aurel32@debian.org>
7448 2008-05-07  Ian Campbell  <ijc@hellion.org.uk>
7450         * util/biosdisk.c (get_os_disk): Recognise xvd type disks.
7451         * util/grub-mkdevicemap.c (get_xvd_disk_name): New function.
7452         (make_device_map): Output entries for xvd type disks.
7454 2008-05-07  Robert Millan  <rmh@aybabtu.com>
7456         * util/biosdisk.c (linux_find_partition, get_os_disk): Handle CCISS
7457         devices.
7458         * util/grub-mkdevicemap.c (get_cciss_disk_name)
7459         (make_device_map): Likewise.
7460         Reported by Roland Dreier <rdreier@cisco.com>
7462 2008-05-07  Robert Millan  <rmh@aybabtu.com>
7464         * disk/lvm.c (grub_lvm_scan_device): Detect errors in an additional
7465         grub_strstr() call.  Correct a few mistakes in failure path handling.
7467 2008-05-06  Robert Millan  <rmh@aybabtu.com>
7469         * util/update-grub_lib.in (make_system_path_relative_to_its_root):
7470         Do not print a trailing slash (therefore, the root directory is an
7471         empty string).
7472         (convert_system_path_to_grub_path): Do not remove trailing slash
7473         from make_system_path_relative_to_its_root() output.
7475         * util/i386/pc/grub-install.in: Add trailing slash to output from
7476         make_system_path_relative_to_its_root().
7478 2008-05-06  Robert Millan  <rmh@aybabtu.com>
7480         * util/grub-fstest.c (grub_refresh): Call `fflush (stdout)'.  This
7481         ensures that output lines aren't intermangled with those sent to
7482         stderr (via grub_util_info()).
7483         * util/grub-probe.c (grub_refresh): Likewise.
7484         * util/i386/pc/grub-setup.c (grub_refresh): Likewise.
7486 2008-05-05  Christian Franke  <franke@computer.org>
7488         * util/grub-mkdevicemap.c (get_floppy_disk_name) [__CYGWIN__]:
7489         Add Cygwin device names.
7490         (get_ide_disk_name) [__CYGWIN__]: Likewise.
7491         (get_scsi_disk_name) [__CYGWIN__]: Likewise.
7492         (check_device): Return error instead of success on empty name.
7493         (make_device_map): Move label inside linux specific code to
7494         prevent compiler warning.
7496 2008-04-30  Robert Millan  <rmh@aybabtu.com>
7498         Based on patch from Fabian Greffrath <greffrath@leat.rub.de>
7499         * util/grub.d/10_linux.in: Add ${GRUB_CMDLINE_LINUX_DEFAULT} to the
7500         first boot option.
7501         * util/update-grub.in: Export GRUB_CMDLINE_LINUX_DEFAULT.
7503 2008-04-29  Robert Millan  <rmh@aybabtu.com>
7505         * docs/grub.cfg: New file (example GRUB configuration).
7507 2008-04-26  Robert Millan  <rmh@aybabtu.com>
7509         * DISTLIST: Sort (sort -u < DISTLIST | sponge DISTLIST).  Add
7510         `loader/i386/ieee1275/linux.c', `loader/i386/ieee1275/linux_normal.c'
7511         and `disk/ieee1275/nand.c'.
7513 2008-04-25  Bean  <bean123ch@gmail.com>
7515         * Makefile.in (RMKFILES): Add missing arch i386-ieee1275 and
7516         i386-linuxbios.
7518         * commands/hexdump.c (grub_cmd_hexdump): Support dumping of device,
7519         change the buffer size to 4096 for cdrom device.
7521         * conf/i386-ieee1275.rmk (pkglib_MODULES): Add _linux.mod, linux.mod
7522         and nand.mod.
7523         (_linux_mod_SOURCES): New variable.
7524         (_linux_mod_CFLAGS): Likewise.
7525         (_linux_mod_LDFLAGS): Likewise.
7526         (linux_mod_SOURCES): Likewise.
7527         (linux_mod_CFLAGS): Likewise.
7528         (linux_mod_LDFLAGS): Likewise.
7529         (nand_mod_SOURCES): Likewise.
7530         (nand_mod_CFLAGS): Likewise.
7531         (nand_mod_LDFLAGS): Likewise.
7533         * disk/ieee1275/ofdisk.c (grub_ofdisk_open): Return
7534         GRUB_ERR_UNKNOWN_DEVICE instead of GRUB_ERR_BAD_DEVICE if no device
7535         type property. (nand device in olpc don't have this property)
7537         * include/grub/disk.h (grub_disk_dev_id): New macro
7538         GRUB_DISK_DEVICE_NAND_ID.
7540         * include/grub/i386/ieee1275/loader.h (grub_rescue_cmd_linux): New
7541         function prototype.
7542         (grub_rescue_cmd_initrd): Likewise.
7544         * include/grub/i386/linux.h (GRUB_LINUX_OFW_SIGNATURE): New macro.
7545         (linux_kernel_params): Add new member ofw_signature, ofw_num_items,
7546         ofw_cif_handler and ofw_idt, adjust padding number.
7548         * include/grub/i386/pc/memory.h (grub_upper_mem): Export it if
7549         GRUB_MACHINE_IEEE1275 is defined.
7551         * include/grub/ieee1275/ieee1275.h (grub_available_iterate):
7552         Use NESTED_FUNC_ATTR attribute on the hook parameter.
7554         * kern/powerpc/ieee1275/init.c (grub_claim_heap): Use NESTED_FUNC_ATTR
7555         on nested function heap_init.
7556         (grub_upper_mem): New variable for i386-ieee1275.
7557         (grub_get_extended_memory): New function for i386-ieee1275.
7558         (grub_machine_init): Call grub_get_extended_memory for i386-ieee1275.
7560         * kern/powerpc/ieee1275/openfw.c (grub_available_iterate): Use
7561         NESTED_FUNC_ATTR on the hook parameter. Don't quit if no device type
7562         property.
7564         * loader/i386/ieee1275/linux.c: New file.
7566         * loader/i386/ieee1275/linux_normal.c: New file.
7568         * disk/ieee1275/nand.c: New file.
7570 2008-04-18  Thomas Schwinge  <tschwinge@gnu.org>
7572         * util/i386/pc/grub-mkrescue.in (grub_mkimage): Don't overwrite correct
7573         value.
7574         * util/powerpc/ieee1275/grub-mkrescue.in (grub_mkimage): Likewise.
7576 2008-04-18  Robert Millan  <rmh@aybabtu.com>
7578         Restructures early code path on ieee1275 to unify grub_main() as
7579         the first C function that is executed in every platform.
7581         * include/grub/ieee1275/ieee1275.h (grub_ieee1275_init): New prototype.
7582         * kern/i386/ieee1275/startup.S (_start): Jump to grub_main() instead of
7583         cmain().
7584         * kern/powerpc/ieee1275/crt0.S (_start): Likewise.
7585         * kern/ieee1275/cmain.c (cmain): Rename to ...
7586         * kern/ieee1275/cmain.c (grub_ieee1275_init): ... this.
7587         * kern/ieee1275/init.c (grub_machine_init): Call grub_ieee1275_init()
7588         at the beginning.
7590 2008-04-18  Robert Millan  <rmh@aybabtu.com>
7592         * util/update-grub.in: Fix syntax error when setting
7593         `GRUB_PRELOAD_MODULES'.
7594         Reported by Stephane Chazelas <stephane@artesyncp.com>
7596 2008-04-17  Lubomir Kundrak  <lkundrak@redhat.com>
7598         * aclocal.m4 (grub_PROG_OBJCOPY_ABSOLUTE): take only .text
7599         section into account, newer toolchains generate unique build ids
7600         * configure.ac: remove the test for --build-id=none acceptance,
7601         we want build ids to be preserved
7602         * genmk.rb: add -R .note.gnu.build-id to objcopy, so build id
7603         far from other sections don't cause the raw binary images grow
7604         size
7606 2008-04-15  Robert Millan  <rmh@aybabtu.com>
7608         * disk/lvm.c: Update copyright year.
7609         * kern/misc.c: Likewise.
7611 2008-04-14  Vesa Jaaskelainen  <chaac@nic.fi>
7613         * disk/lvm.c (grub_lvm_scan_device): Add forgotten failure path when
7614         there is no memory left for physical volume name.
7616 2008-04-14  Vesa Jaaskelainen  <chaac@nic.fi>
7618         * disk/lvm.c (grub_lvm_scan_device): Fix logical volume's physical
7619         volume name mapping to support bigger than 9 character names properly.
7621 2008-04-13  Robert Millan  <rmh@aybabtu.com>
7623         * disk/i386/pc/biosdisk.c (grub_biosdisk_rw): Fix CHS limit check,
7624         as per http://www.allensmith.net/Storage/HDDlimit/Int13h.htm
7626 2008-04-13  Christian Franke  <franke@computer.org>
7628         * util/i386/pc/grub-mkrescue.in: Add --emulation=floppy
7629         to create a floppy emulation boot CD when non emulation mode
7630         does not work.
7631         Enable Joliet CD filesystem extension.
7633 2008-04-13  Robert Millan  <rmh@aybabtu.com>
7635         * kern/misc.c (grub_strncat): Fix off-by-one error.
7636         Reported by Zhang Huan <zhanghuan@nrchpc.ac.cn>
7638         * kern/env.c (grub_env_context_close): Clear current context, not
7639         previous one.
7640         Patch from Zhang Huan <zhanghuan@nrchpc.ac.cn>
7642         * kern/misc.c (grub_strcat): Minor speed optimization (same code size).
7644 2008-04-13  Robert Millan  <rmh@aybabtu.com>
7646         Improve robustness when handling LVM.
7648         * disk/lvm.c (grub_lvm_getvalue): Return 0 when `*p' is NULL
7649         (and leave `*p' unmodified).
7650         (grub_lvm_iterate): Don't assume `vg->lvs != NULL' when iterating
7651         through it.
7652         (grub_lvm_memberlist): Don't assume `lv->vg->pvs != NULL' when
7653         iterating through it.
7654         (grub_lvm_open): Don't assume `vg->lvs != NULL' when iterating
7655         through it.
7656         (grub_lvm_scan_device): Check the return value (and fail gracefully
7657         when due) on each grub_lvm_getvalue() or grub_strstr() call.
7658         Don't assume `vg->pvs != NULL' when iterating through it.
7660 2008-04-13  Robert Millan  <rmh@aybabtu.com>
7662         * gendistlist.sh (EXTRA_DISTFILES): Add `genpartmaplist.sh'.
7663         * genmk.rb (partmap): New variable.
7664         (CLEANFILES, PARTMAPFILES): Add #{partmap}.
7665         (#{partmap}): New target rule.
7666         * genpartmaplist.sh: New file.
7667         * Makefile.in (pkglib_DATA): Add partmap.lst.
7668         (partmap.lst): New target rule.
7669         * util/i386/pc/grub-mkrescue.in: Generate grub.cfg that loads needed
7670         modules (including all partition maps), instead of preloading them.
7672 2007-04-13  Fabian Greffrath  <fabian.greffrath@web.de>
7674         * util/grub.d/30_os-prober.in: New script. Use `os-prober' and
7675         `linux-boot-prober' (if installed) to detect other operating
7676         systems which are installed on the computer and add them to
7677         the boot menu.
7678         * conf/common.rmk: Build and install 30_os-prober.
7680 2008-04-12  Robert Millan  <rmh@aybabtu.com>
7682         * kern/powerpc/ieee1275/init.c: Move from here ...
7683         * kern/ieee1275/init.c: ... to here.  Update all users.
7685         * kern/powerpc/ieee1275/cmain.c: Move from here ...
7686         * kern/ieee1275/cmain.c: ... to here.  Update all users.
7688         * kern/powerpc/ieee1275/openfw.c: Move from here ...
7689         * kern/ieee1275/openfw.c: ... to here.  Update all users.
7691         * loader/powerpc/ieee1275/multiboot2.c: Move from here ...
7692         * loader/ieee1275/multiboot2.c: ... to here.  Update all users.
7694 2008-04-10  Pavel Roskin  <proski@gnu.org>
7696         * configure.ac: Always use "_cv_" in cache variables for
7697         compatibility with Autoconf 2.62.
7699 2008-04-07  Robert Millan  <rmh@aybabtu.com>
7701         Revert grub/machine/init.h addition by Pavel (since it breaks on
7702         i386-ieee1275 and others):
7703         * util/i386/pc/misc.c: Remove grub/machine/init.h.
7704         * util/powerpc/ieee1275/misc.c: Likewise.
7706 2008-04-07  Robert Millan  <rmh@aybabtu.com>
7708         * util/grub-probe.c (probe): Improve error message.
7710 2008-04-07  Robert Millan  <rmh@aybabtu.com>
7712         * util/biosdisk.c (read_device_map): Skip devices that don't exist
7713         (this prevents the presence of a bogus entry from ruining the whole
7714         thing).
7716 2008-04-06  Pavel Roskin  <proski@gnu.org>
7718         * util/biosdisk.c: Include grub/util/biosdisk.h.
7719         * util/grub-fstest.c (execute_command): Make static.
7720         * util/grub-mkdevicemap.c (check_device): Likewise.
7721         * util/i386/pc/misc.c: Include grub/machine/init.h.
7722         * util/powerpc/ieee1275/misc.c: Likewise.
7723         * util/lvm.c: Include grub/util/lvm.h.
7724         * util/misc.c: Include grub/kernel.h, grub/misc.h and
7725         grub/cache.h.
7726         * util/raid.c: Include grub/util/raid.h.
7727         (grub_util_getdiskname): Make static.
7729         * util/grub-emu.c (main): Remove calls to grub_hostfs_init() and
7730         grub_hostfs_fini(), as they are called from grub_init_all() and
7731         grub_fini_all() respectively.  This fixes an infinite loop in
7732         grub-fstest due to double registration of hostfs.
7733         Reported by Christian Franke <Christian.Franke@t-online.de>
7735 2008-04-05  Pavel Roskin  <proski@gnu.org>
7737         * bus/pci.c (grub_pci_iterate): For multifunction devices, probe
7738         all 8 functions.  Otherwise, probe function 0 only.
7740 2008-04-04  Pavel Roskin  <proski@gnu.org>
7742         * commands/lspci.c (grub_lspci_iter): Print the bus number
7743         correctly.
7745         * commands/lspci.c (grub_pci_classes): Fix typos.
7746         (grub_lspci_iter): Don't print func twice.  Print vendor ID
7747         before device ID, as it's normally done.
7749         * kern/powerpc/ieee1275/cmain.c (grub_ieee1275_find_options):
7750         Fix signedness warnings.
7751         * kern/powerpc/ieee1275/openfw.c (grub_available_iterate):
7752         Likewise.
7753         * util/ieee1275/get_disk_name.c: Include config.h so that
7754         _GNU_SOURCE is defined and getline() is declared.  Mark an
7755         unused argument as such.  Fix a signedness warning.
7757 2008-04-02  Pavel Roskin  <proski@gnu.org>
7759         * genkernsyms.sh.in: Use more robust assignments for CC and
7760         srcdir.  Quote srcdir.
7761         * gensymlist.sh.in: Likewise.  Assert at the compile time that
7762         the symbol table is not empty.
7764         * disk/raid.c (grub_raid_memberlist): Fix a signedness warning.
7765         * fs/cpio.c (grub_cpio_read): Likewise.
7767 2008-04-01  Pavel Roskin  <proski@gnu.org>
7769         * disk/ata.c (grub_ata_open): Don't lose precision in disk->id.
7770         * disk/host.c (grub_host_open): Likewise.
7771         * disk/loopback.c (grub_loopback_open): Likewise.
7772         * disk/memdisk.c (grub_memdisk_open): Use a string pointer for
7773         disk->id as in disk/host.c, not a multi-character constant.
7775         * util/grub-fstest.c (cmd_cmp): Use fseeko(), not fseek().  The
7776         later is obsolete, potentially dangerous and sets a bad example.
7777         * util/i386/efi/grub-mkimage.c (make_header): Likewise.
7778         * util/misc.c (grub_util_get_image_size): Likewise.
7780         * disk/loopback.c (options): Improve help for "--partitions".
7782         * normal/arg.c (grub_arg_show_help): Fix spacing of the long
7783         options to align them with the short options, e.g. "echo -e".
7785 2008-03-31  Bean  <bean123ch@gmail.com>
7787         * video/reader/png.c (grub_png_data): New member is_16bit and
7788         image_data.
7789         (grub_png_decode_image_header): Detect 16 bit png image.
7790         (grub_png_convert_image): New function to convert 16 bit image to 8 bit.
7791         (grub_png_decode_png): Call grub_png_convert_image for 16 bit image.
7792         (grub_video_reader_png): Release memory occupied by image_data.
7794         * fs/ntfs.c (find_attr): Handle non-resident attribute list larger than
7795         4096 bytes.
7796         (grub_nfs_mount): Skip the test for sector per cluster.
7798         * include/grub/ntfs.h (MAX_SPC): Removed.
7800 2008-03-31  Bean  <bean123ch@gmail.com>
7802         * conf/common.rmk (pkgdata_MODULES): Add afs.mod.
7803         (grub_probe_SOURCES): Add fs/afs.c.
7804         (grub_fstest_SOURCES): Likewise.
7805         (afs_mod_SOURCES): New variable.
7806         (afs_mod_CFLAGS): Likewise.
7807         (afs_mod_LDFLAGS): Likewise.
7809         * conf/i386-pc.rmk (grub_setup_SOURCES): Add fs/afs.c.
7810         (grub_emu_SOURCES): Likewise.
7812         * conf/i386-efi.rmk (grub_emu_SOURCES): Likewise.
7814         * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Likewise.
7816         * conf/i386-linuxbios.rmk (grub_emu_SOURCES): Likewise.
7818         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
7820         * fs/afs.c: New file.
7822 2008-03-30  Pavel Roskin  <proski@gnu.org>
7824         * disk/host.c: Include grub/misc.h to fix a warning.
7825         * util/hostfs.c: Use GRUB_MOD_INIT and GRUB_MOD_FINI to fix
7826         warnings about implicit declarations.
7828         * fs/udf.c (grub_udf_mount): Fix warning about a shadowing a
7829         variable.
7830         * include/grub/i386/loader.h: Change declaration of
7831         grub_linux_boot() to match what grub_loader_set() expects.
7832         * util/getroot.c (grub_guess_root_device): Return const char* to
7833         fix a warning.
7834         * util/grub-probe.c (probe): Fix a warning about uninitialized
7835         abstraction_name variable.
7836         * util/i386/get_disk_name.c (grub_util_get_disk_name): Mark
7837         second argument as unused to fix a warning.
7839         * loader/i386/pc/multiboot2.c (grub_mb2_arch_elf64_hook): Add
7840         missing grub_error() call.
7842         * util/update-grub_lib.in: Define datarootdir, since Autoconf
7843         2.60 and newer uses it to define datadir.
7845         * commands/sleep.c: Fix warning about implicit declaration.
7846         * disk/memdisk.c: Likewise.
7847         * loader/aout.c: Likewise.
7848         * loader/i386/bsd_normal.c: Likewise.
7849         * util/grub-probe.c: Likewise.
7851         * commands/i386/cpuid.c (has_longmode): Make static.
7852         * disk/i386/pc/biosdisk.c (cd_drive): Likewise.
7853         * include/grub/i386/bsd.h (bios_memmap_t): Remove, it's unused.
7855         * kern/i386/pc/startup.S (real_to_prot): Use %cs prefix to load
7856         GDT.  This is more robust, as %ds can change.
7857         (grub_biosdisk_rw_int13_extensions): Don't clear %ds before
7858         calling real_to_prot().
7859         (grub_biosdisk_get_diskinfo_int13_extensions): Likewise.
7861 2008-03-28  Pavel Roskin  <proski@gnu.org>
7863         * kern/i386/pc/startup.S: Assert that uncompressed functions
7864         don't spill beyond GRUB_KERNEL_MACHINE_RAW_SIZE.
7865         * kern/i386/pc/lzo1x.S: Remove all .align directives in the
7866         code, as they push parts of the code (error handlers) beyond
7867         GRUB_KERNEL_MACHINE_RAW_SIZE.  Speed is not as important in this
7868         code as correctness and size.
7870 2008-03-28  Pavel Roskin  <proski@gnu.org>
7872         * kern/i386/pc/startup.S
7873         (grub_biosdisk_get_diskinfo_int13_extensions): When converting
7874         data block address to the real mode, keep offset minimal.  This
7875         works around a bug in AWARD BIOS on old Athlon systems, which
7876         makes CD detection hang.
7878 2008-03-26  Pavel Roskin  <proski@gnu.org>
7880         * normal/color.c (grub_parse_color_name_pair): Make `name' a
7881         const.
7882         * include/grub/normal.h: Add grub_parse_color_name_pair()
7883         declaration.
7885 2008-03-24  Bean  <bean123ch@gmail.com>
7887         * disk/i386/pc/biosdisk.c (cd_start): Removed.
7888         (cd_count): Removed.
7889         (cd_drive): New variable.
7890         (grub_biosdisk_get_drive): Don't check for (cdN) device.
7891         (grub_biosdisk_call_hook): Likewise.
7892         (grub_biosdisk_iterate): Change cdrom detection method.
7893         (grub_biosdisk_open): Replace cd_start with cd_drive.
7894         (GRUB_MOD_INIT): Use grub_biosdisk_get_cdinfo_int13_extension to
7895         detect cdrom device.
7897         * include/grub/i386/pc/biosdisk.h (GRUB_BIOSDISK_MACHINE_CDROM_START):
7898         Removed.
7899         (GRUB_BIOSDISK_MACHINE_CDROM_END): Removed.
7900         (GRUB_BIOSDISK_CDTYPE_NO_EMUL): New macro.
7901         (GRUB_BIOSDISK_CDTYPE_1_2_M): Likewise.
7902         (GRUB_BIOSDISK_CDTYPE_1_44_M): Likewise.
7903         (GRUB_BIOSDISK_CDTYPE_2_88_M): Likewise.
7904         (GRUB_BIOSDISK_CDTYPE_HARDDISK): Likewise.
7905         (GRUB_BIOSDISK_CDTYPE_MASK): Likewise.
7906         (grub_biosdisk_cdrp): New structure.
7907         (grub_biosdisk_get_cdinfo_int13_extensions): New function.
7909         * include/grub/i386/pc/kernel.h (grub_boot_drive): Export this variable.
7911         * kern/i386/pc/init.c (make_install_device): Don't use (cdN) as root
7912         device.
7914         * kern/i386/pc/startup.S (grub_biosdisk_get_cdinfo_int13_extensions):
7915         New function.
7917 2008-03-20  Robert Millan  <rmh@aybabtu.com>
7919         Remove 2 TiB limit in ata.mod.
7920         * disk/ata.c (grub_ata_device): Promote `size' to grub_uint64_t.
7921         (grub_ata_dumpinfo): Print sector count with 0x%llx.
7922         (grub_ata_identify): Interpret `&info16[100]' as a pointer to
7923         grub_uint64_t instead of grub_uint32_t.
7925 2008-03-05  Bean  <bean123ch@gmail.com>
7927         * loader/i386/pc/multiboot.c (grub_multiboot_get_bootdev): New function.
7928         (grub_multiboot): Set boot device.
7930         * boot/i386/pc/lnxboot.S (real_code_2): Set %dh to 0xFF.
7932 2008-03-02  Bean  <bean123ch@gmail.com>
7934         * fs/reiserfs.c (grub_reiserfs_read_symlink): Add 0 at the end of
7935         symlink_buffer.
7937 2008-03-01  Yoshinori K. Okuji  <okuji@enbug.org>
7939         * DISTLIST: Added docs/fdl.texi, docs/grub.texi, docs/mdate-sh and
7940         texinfo.tex.
7942         * docs/grub.texi: New file. Copied from GRUB Legacy, and slightly
7943         modified.
7945         * docs/fdl.texi: New file.
7947         * docs/mdate-sh: New file. Copied from gnulib.
7948         * docs/texinfo.tex: Likewise.
7950         * config.guess: Updated from gnulib.
7951         * install-sh: Likewise.
7953 2008-02-28  Robert Millan  <rmh@aybabtu.com>
7955         * conf/i386-linuxbios.rmk (pkglib_MODULES): Add aout.mod.
7956         (aout_mod_SOURCES): New variable.
7957         (aout_mod_CFLAGS): Likewise.
7958         (aout_mod_LDFLAGS): Likewise.
7960         * conf/i386-ieee1275.rmk: Likewise.
7962 2008-02-28  Robert Millan  <rmh@aybabtu.com>
7964         * util/update-grub.in: Reorganise terminal validity check.  Accept
7965         `ieee1275:console' (OLPC) and `*:gfxterm' as valid too.
7966         Based on suggestion by Franklin PIAT.
7968 2008-02-28  Fabian Greffrath  <greffrath@leat.rub.de>
7970         * include/grub/util/getroot.h (grub_util_check_block_device): Export new
7971         function.
7972         * util/getroot.c (grub_util_check_block_device): New function that
7973         returns the given argument if it is a block device and returns NULL else.
7974         * util/grub-probe.c (argument_is_device): New variable.
7975         (probe): Promote device_name from a variable to an argument. Receive
7976         device_name from grub_util_check_block_device() if path is NULL and from
7977         grub_guess_root_device() else. Do not free() device_name anymore.
7978         (options): Introduce new parameter '-d, --device'.
7979         (main): Add description of the new parameter to the help screen.
7980         Rename path variable to argument. Set argument_is_device if the '-d'
7981         option is given. Pass argument to probe() depending on
7982         argument_is_device.
7984 2008-02-24  Bean  <bean123ch@gmail.com>
7986         * fs/iso9660.c (GRUB_ISO9660_VOLDESC_BOOT): New macro.
7987         (GRUB_ISO9660_VOLDESC_PRIMARY): Likewise.
7988         (GRUB_ISO9660_VOLDESC_SUPP): Likewise.
7989         (GRUB_ISO9660_VOLDESC_PART): Likewise.
7990         (GRUB_ISO9660_VOLDESC_END): Likewise.
7991         (grub_iso9660_primary_voldesc): New member escape.
7992         (grub_iso9660_data): New member joliet.
7993         (grub_iso9660_convert_string): New function.
7994         (grub_iso9660_mount): Detect joliet extension.
7995         (grub_iso9660_iterate_dir): Convert filename when joliet is detected.
7996         (grub_iso9660_iso9660_label): Likewise.
7998         * conf/common.rmk (pkgdata_MODULES): Add udf.mod.
7999         (grub_setup_SOURCES): Add fs/udf.c.
8000         (grub_fstest_SOURCES): Likewise.
8001         (udf_mod_SOURCES): New variable.
8002         (udf_mod_CFLAGS): Likewise.
8003         (udf_mod_LDFLAGS): Likewise.
8005         * conf/i386-pc.rmk (grub_setup_SOURCES): Add fs/udf.c.
8006         (grub_emu_SOURCES): Likewise.
8008         * conf/i386-efi.rmk (grub_emu_SOURCES): Likewise.
8010         * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Likewise.
8012         * conf/i386-linuxbios.rmk (grub_emu_SOURCES): Likewise.
8014         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
8016         * fs/udf.c: New file.
8018 2008-02-24  Robert Millan  <rmh@aybabtu.com>
8020         * conf/i386-efi.rmk (normal/function.c_DEPENDENCIES)
8021         (normal/lexer.c_DEPENDENCIES): New variables.
8022         * conf/i386-ieee1275.rmk (normal/function.c_DEPENDENCIES)
8023         (normal/lexer.c_DEPENDENCIES): Likewise.
8024         * conf/i386-linuxbios.rmk (normal/function.c_DEPENDENCIES)
8025         (normal/lexer.c_DEPENDENCIES): Likewise.
8026         * conf/i386-pc.rmk (normal/function.c_DEPENDENCIES)
8027         (normal/lexer.c_DEPENDENCIES): Likewise.
8028         * conf/powerpc-ieee1275.rmk (normal/function.c_DEPENDENCIES)
8029         (normal/lexer.c_DEPENDENCIES): Likewise.
8030         * conf/sparc64-ieee1275.rmk (normal/function.c_DEPENDENCIES)
8031         (normal/lexer.c_DEPENDENCIES): Likewise.
8033 2008-02-23  Robert Millan  <rmh@aybabtu.com>
8035         * partmap/gpt.c (grub_gpt_magic): Add `0x' qualifier to each member,
8036         since they were intended to be in hex.  This didn't break previously
8037         because of a bug in gpt_partition_map_iterate() (see below).
8039         (gpt_partition_map_iterate): Replace `grub_memcmp' with `! grub_memcmp'
8040         when checking the validity of GPT header.
8041         Remove `partno', since it always provides the same information as `i'.
8043 2008-02-21  Yoshinori K. Okuji  <okuji@enbug.org>
8045         * include/grub/efi/time.h: Fix a wrong comment.
8047 2008-02-19  Pavel Roskin  <proski@gnu.org>
8049         * kern/rescue.c (grub_enter_rescue_mode): Improve initial
8050         message.
8052 2008-02-19  Bean  <bean123ch@gmail.com>
8054         * conf/i386-pc.rmk (pkglib_MODULES): Add aout.mod _bsd.mod and bsd.mod.
8055         (aout_mod_SOURCES): New variable.
8056         (aout_mod_CFLAGS): Likewise.
8057         (aout_mod_LDFLAGS): Likewise.
8058         (_bsd_mod_SOURCES): New variable.
8059         (_bsd_mod_CFLAGS): Likewise.
8060         (_bsd_mod_LDFLAGS): Likewise.
8061         (bsd_mod_SOURCES): New variable.
8062         (bsd_mod_CFLAGS): Likewise.
8063         (bsd_mod_LDFLAGS): Likewise.
8065         * include/grub/aout.h: New file.
8067         * include/grub/i386/loader.h (grub_unix_real_boot): New function.
8069         * include/grub/i386/bsd.h: New file.
8071         * include/grub/i386/pc/init.h (grub_get_mmap_entry): Use EXPORT_FUNC
8072         to make it public.
8074         * kern/elf.c (grub_elf32_load): Get the physical address after the hook
8075         function is called, so that it's possible to change it inside the hook.
8076         (grub_elf64_load): Likewise.
8077         (grub_elf_file): Don't close the file if elf header is not found.
8078         (grub_elf_close): Close the file if grub_elf_file fails (The new
8079         grub_elf_file won't close it).
8080         (grub_elf32_size): Use NESTED_FUNC_ATTR for nested function calcsize.
8081         (grub_elf64_size): Likewise.
8083         * kern/i386/loader.S (grub_unix_real_boot): New function.
8085         * loader/aout.c: New file.
8087         * loader/i386/bsd.c: New file.
8089         * loader/i386/bsd_normal.c: New file.
8091         * loader/i386/pc/multiboot.c (grub_multiboot): Handle a.out format.
8093         * loader/multiboot2.c (grub_multiboot2): Reset grub_errno so that it
8094         can test other formats.
8096 2008-02-19  Robert Millan  <rmh@aybabtu.com>
8098         * partmap/gpt.c: Include `<grub/gpt_partition.h>'.
8099         (grub_gpt_partition_type_empty): Redefine with macro from
8100         `<grub/gpt_partition.h>'.
8101         (gpt_partition_map_iterate): Adjust partition type comparison.
8103         Export `entry' as partmap-specific `part.data' struct.
8104         (grub_gpt_header, grub_gpt_partentry): Move from here ...
8106         * include/grub/gpt_partition.h (grub_gpt_header)
8107         (grub_gpt_partentry): ... to here (new file).
8109         * util/i386/pc/grub-setup.c: Include `<grub/gpt_partition.h>'.
8111         (grub_gpt_partition_type_bios_boot): New const variable, defined
8112         with macro from `<grub/gpt_partition.h>'.
8114         (setup): Replace `first_start' with `embed_region', which keeps
8115         track of the embed region (and is partmap-agnostic).
8117         Replace find_first_partition_start() with find_usable_region(),
8118         which finds a usable region for embedding using partmap-specific
8119         knowledge (supports PC/MSDOS and GPT).
8121         Fix all assumptions that the embed region start at sector 1, using
8122         `embed_region.start' from now on.  Similarly, use `embed_region.end'
8123         rather than `first_start' to calculate available size.
8125         In grub_util_info() message, replace "into after the MBR" with an
8126         indication of the specific sector our embed region starts at.
8128 2008-02-19  Robert Millan  <rmh@aybabtu.com>
8130         * DISTLIST: Replace `commands/ieee1275/halt.c' and
8131         `commands/ieee1275/reboot.c' with `commands/halt.c' and
8132         `commands/reboot.c'.
8133         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES, reboot_mod_SOURCES)
8134         (halt_mod_SOURCES): Likewise.
8135         * conf/sparc64-ieee1275.rmk (grub_emu_SOURCES, reboot_mod_SOURCES)
8136         (halt_mod_SOURCES): Likewise.
8138 2008-02-17  Christian Franke  <franke@computer.org>
8140         * commands/cat.c (grub_cmd_cat): Add break on GRUB_TERM_ESC key.
8142 2008-02-17  Robert Millan  <rmh@aybabtu.com>
8144         * util/i386/pc/grub-setup.c (setup): In find_first_partition_start(),
8145         set `first_start' to 0 for non-PC/MSDOS partition maps.
8147 2008-02-16  Robert Millan  <rmh@aybabtu.com>
8149         * util/i386/pc/grub-setup.c (setup): In find_first_partition_start(),
8150         do not assume partition map is PC/MSDOS before performing checks that
8151         are specific to that layout.
8153 2008-02-13  Robert Millan  <rmh@aybabtu.com>
8155         * conf/i386-linuxbios.rmk (grub_emu_SOURCES): Remove
8156         `commands/i386/pc/halt.c' and `commands/i386/pc/reboot.c'.
8157         * kern/i386/linuxbios/init.c (grub_halt, grub_reboot): Remove stubs.
8159 2008-02-13  Yoshinori K. Okuji  <okuji@enbug.org>
8161         * configure.ac: Only a cosmetic change on the handling of
8162         -fno-stack-protector.
8164 2008-02-12  Alexandre Boeglin  <alex@boeglin.org>
8166         * conf/i386-efi.rmk (grub_emu_SOURCES): Replace
8167         commands/i386/pc/halt.c and reboot.c by commands/halt.c and
8168         reboot.c.
8169         (grub_install_SOURCES): Add halt.mod and reboot.mod.
8170         (halt_mod_SOURCES): New variable.
8171         (halt_mod_CFLAGS): Likewise.
8172         (halt_mod_LDFLAGS): Likewise.
8173         (reboot_mod_SOURCES): Likewise.
8174         (reboot_mod_CFLAGS): Likewise.
8175         (reboot_mod_LDFLAGS): Likewise.
8177         * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Replace
8178         commands/ieee1275/halt.c and reboot.c by commands/halt.c and
8179         reboot.c.
8180         (halt_mod_SOURCES): Likewise.
8181         (reboot_mod_SOURCES): Likewise.
8183         * conf/i386-pc.rmk (grub_emu_SOURCES): Replace
8184         commands/i386/pc/reboot.c by commands/reboot.c.
8185         (reboot_mod_SOURCES): Likewise.
8187         * commands/i386/pc/reboot.c: merge this file ...
8189         * commands/ieee1275/reboot.c: ... and this file ...
8191         * commands/reboot.c: ... to this file.
8192         Add some precompiler directive to include the correct header for
8193         each machine.
8195         * commands/ieee1275/halt.c: move this file ...
8197         * commands/halt.c: ... to here.
8198         Add some precompiler directive to include the correct header for
8199         each machine.
8201         * include/grub/efi/efi.h (grub_reboot): New function declaration.
8202         (grub_halt): Likewise.
8204         * kern/efi/efi.c (grub_reboot): New function.
8205         (grub_halt): Likewise.
8207 2008-02-12  Robert Millan  <rmh@aybabtu.com>
8209         * util/getroot.c (grub_guess_root_device): Inspect /dev/evms before
8210         /dev (like it is done for /dev/mapper).  This doesn't provide support
8211         for EVMS, but at least it is now easy to identify the problem when it
8212         arises.
8214 2008-02-11  Robert Millan  <rmh@aybabtu.com>
8216         * util/biosdisk.c (grub_util_biosdisk_open, linux_find_partition)
8217         (grub_util_biosdisk_get_grub_dev): Check open() exit status by
8218         comparing it with -1, not 0.
8220 2008-02-10  Robert Millan  <rmh@aybabtu.com>
8222         * conf/i386-efi.rmk (grub_emu_SOURCES): Add `disk/raid.c' and
8223         `disk/lvm.c'.
8224         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
8225         * conf/i386-pc.rmk (grub_setup_SOURCES): Likewise.
8227         * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Move `disk/raid.c' and
8228         `disk/lvm.c' to the end of the list.
8229         * conf/i386-linuxbios.rmk (grub_emu_SOURCES): Likewise.
8230         * conf/i386-pc.rmk (grub_emu_SOURCES): Likewise.
8232 2008-02-10  Robert Millan  <rmh@aybabtu.com>
8234         * kern/main.c (grub_load_normal_mode): Do not reset `grub_errno'.  Call
8235         grub_print_error() instead.  This will let user know why we're entering
8236         rescue mode.
8237         Based on suggestions from Sam Morris.
8239 2008-02-10  Alexandre Boeglin  <alex@boeglin.org>
8241         * normal/arg.c (grub_arg_parse): If one of the args is "--", call add_arg()
8242         on remaining N args, instead of "--" arg N times.
8244 2008-02-09  Vesa Jaaskelainen  <chaac@nic.fi>
8246         * font/manager.c (unknown_glyph): Added variable for unknown glyph.
8247         (fill_with_default_glyph): Changed to use unknown_glyph for fill
8248         pattern for unknown glyphs.
8250 2008-02-09  Robert Millan  <rmh@aybabtu.com>
8252         * configure.ac: Probe for `help2man'.
8253         * Makefile.in (builddir): New variable.
8254         (HELP2MAN): Likewise.  Set to `true' when @HELP2MAN@ doesn't provide it,
8255         or otherwise add a few flags/options to it.
8256         (install-local): For every executable utility or script that is
8257         installed, invoke $(HELP2MAN) to install a manpage based on --help
8258         output.
8260         * util/i386/pc/grub-install.in: Move down `update-grub_lib' sourcing, so
8261         that it doesn't prevent --help from working in build tree.
8263         * util/i386/pc/grub-mkrescue.in (usage): Replace `grub-devel@gnu.org'
8264         with `bug-grub@gnu.org'.
8265         * util/powerpc/ieee1275/grub-mkrescue.in (usage): Likewise.
8266         * util/update-grub.in (usage): New function.
8267         Implement proper argument check, with support for --help and --version
8268         (as well as existing -y).
8270 2008-02-09  Christian Franke  <franke@computer.org>
8272         * commands/cat.c (grub_cmd_cat): Print '\r' as hex to
8273         avoid overwriting previous output.
8274         * kern/rescue.c (grub_rescue_cmd_cat): Likewise.
8276 2008-02-09  Robert Millan  <rmh@aybabtu.com>
8278         * normal/menu.c (run_menu): If timeout is set to zero, don't bother
8279         drawing the menu.
8281 2008-02-09  Robert Millan  <rmh@aybabtu.com>
8283         * commands/sleep.c: New file.
8284         * conf/common.rmk (pkglib_MODULES): Add `commands/sleep.c'.
8285         (sleep_mod_SOURCES): New variable.
8286         (sleep_mod_CFLAGS): Likewise.
8287         (sleep_mod_LDFLAGS): Likewise.
8289 2008-02-09  Robert Millan  <rmh@aybabtu.com>
8291         * disk/raid.c (grub_raid_scan_device): Add a pair of sanity checks for
8292         situations in which we can deduce the RAID size and the superblock
8293         doesn't match it.
8295 2008-02-09  Robert Millan  <rmh@aybabtu.com>
8297         * disk/lvm.c [GRUB_UTIL] (grub_lvm_memberlist): New function.  Construct
8298         and return a grub_diskmemberlist_t composed of LVM physical volumes.
8299         [GRUB_UTIL] (grub_lvm_dev): Add `memberlist' member.
8301         * disk/raid.c [GRUB_UTIL] (grub_raid_memberlist): New function.  Construct
8302         and return a grub_diskmemberlist_t composed of physical array members.
8303         [GRUB_UTIL] (grub_raid_dev): Add `memberlist' member.
8305         * include/grub/disk.h [GRUB_UTIL] (grub_disk_memberlist): New struct
8306         prototype.
8307         [GRUB_UTIL] (struct grub_disk_dev): Add `memberlist' function pointer.
8308         [GRUB_UTIL] (struct grub_disk_memberlist): New struct declaration.
8309         [GRUB_UTIL] (grub_disk_memberlist_t): New typedef.
8311         * util/grub-probe.c (probe): Move partmap probing code from here ...
8312         (probe_partmap): ... to here.
8313         (probe): Use probe_partmap() once for the disk we're probing, and
8314         additionally, when such disk contains a memberlist() struct member,
8315         once for each disk that is contained in the structure returned by
8316         memberlist().
8318 2008-02-09  Robert Millan  <rmh@aybabtu.com>
8320         * util/grub-probe.c (main): When `verbosity > 1', set `debug'
8321         environment variable to 'all' in order to obtain debug output from
8322         non-util/ code.
8323         * util/i386/pc/grub-setup.c (main): Likewise.
8325 2008-02-08  Robert Millan  <rmh@aybabtu.com>
8327         * disk/raid.c (grub_raid_scan_device): Check for
8328         `array->device[sb.this_disk.number]' rather than for
8329         `array->device[sb.this_disk.number]->name', since the latter is not
8330         guaranteed to be accessible.
8332 2008-02-08  Robert Millan  <rmh@aybabtu.com>
8334         * disk/raid.c: Update copyright.
8335         * fs/cpio.c: Likewise.
8336         * include/grub/raid.h: Likewise.
8337         * loader/i386/pc/multiboot.c: Likewise.
8338         * util/hostfs.c: Likewise.
8340 2008-02-08  Robert Millan  <rmh@aybabtu.com>
8342         * include/grub/raid.h (struct grub_raid_array): Change type of `device'
8343         to a grub_disk_t array.
8344         * disk/raid.c (grub_raid_read): Replace `device[x].disk' accesses with
8345         `device[x]'.
8346         (grub_raid_scan_device): Replace `device[x].name' accesses with
8347         `device[x]->name'.  Simplify initialization of `array->device[x]'.
8349 2008-02-08  Robert Millan  <rmh@aybabtu.com>
8351         * disk/raid.c (grub_raid_open, grub_raid_scan_device): Add a few
8352         grub_dprintf() calls.
8353         * kern/disk.c (grub_disk_read): Include grub_errmsg in out of range
8354         error message.
8356 2008-02-07  Christian Franke  <franke@computer.org>
8358         * util/hostfs.c (grub_hostfs_open): Use fseeko and ftello
8359         instead of fseek and ftell to support large files.
8360         (grub_hostfs_read): Likewise.
8362 2008-02-07  Robert Millan  <rmh@aybabtu.com>
8364         Patch from Jeroen Dekkers.
8365         * disk/raid.c (grub_raid_scan_device): Reset `grub_errno' on disk
8366         failure, since successfully reading all array members might not be
8367         required.
8369 2008-02-06  Robert Millan  <rmh@aybabtu.com>
8371         * util/grub-probe.c (probe): Simplify partmap probing (with the
8372         assumption that the first word up to the underscore equals to
8373         the module name).
8375 2008-02-06  Christian Franke  <franke@computer.org>
8377         * fs/cpio.c (grub_cpio_find_file): Return GRUB_ERR_NONE
8378         (and set *ofs = 0) instead of GRUB_ERR_FILE_NOT_FOUND on
8379         last block of a cpio or tar stream.
8380         Check for "TRAILER!!!" instead of any empty data
8381         block to detect last block of a cpio stream.
8382         (grub_cpio_dir): Fix constness of variable np.
8383         (grub_cpio_open): Return GRUB_ERR_FILE_NOT_FOUND if
8384         cpio or tar trailer is detected.  This fixes a crash
8385         on open of a non existing file.
8387 2008-02-05  Bean  <bean123ch@gmail.com>
8389         * loader/i386/pc/multiboot.c (grub_multiboot_load_elf32): Get physical
8390         address of entry.
8391         (grub_multiboot_load_elf64): Likewise.
8392         (grub_multiboot): Initialize mbi structure.
8394         * util/grub-fstest.c: Don't include unused header file script.h.
8396         * conf/common.rmk (grub-fstest.c_DEPENDENCIES): Move to the beginning
8397         of file.
8398         (grub_fstest_SOURCES): Likewise.
8400 2008-02-05  Robert Millan  <rmh@aybabtu.com>
8402         * include/grub/term.h (GRUB_TERM_LEFT, GRUB_TERM_RIGHT)
8403         (GRUB_TERM_UP, GRUB_TERM_DOWN, GRUB_TERM_HOME, GRUB_TERM_END)
8404         (GRUB_TERM_DC, GRUB_TERM_PPAGE, GRUB_TERM_NPAGE, GRUB_TERM_ESC)
8405         (GRUB_TERM_TAB, GRUB_TERM_BACKSPACE): New macros.
8407         * kern/i386/pc/startup.S: Include `<grub/term.h>'.
8408         (translation_table): Replace hardcoded values with macros
8409         provided by `<grub/term.h>'.
8411         * term/i386/pc/at_keyboard.c: Include `<grub/term.h>'.
8412         (keyboard_map): Correct/add a few values, with macros provided
8413         by `<grub/term.h>'.
8414         (keyboard_map_shift): Zero values that don't differ from their
8415         `keyboard_map' equivalents.
8416         (grub_console_checkkey): Optimize KEYBOARD_STATUS_CAPS_LOCK toggling.
8417         Discard the second scan code that is always sent by Caps lock.
8418         Only use `keyboard_map_shift' when it provides a non-zero value,
8419         otherwise fallback to `keyboard_map'.
8421 2008-02-04  Bean  <bean123ch@gmail.com>
8423         * Makefile.in (enable_grub_fstest): New variable.
8425         * conf/common.rmk (grub_fstest_init.lst): New rule.
8426         (grub_fstest_init.h): Likewise.
8427         (grub_fstest_init.c): Likewise.
8428         (util/grub-fstest.c_DEPENDENCIES): New variable.
8429         (grub_fstest_SOURCES): Likewise.
8431         * configure.ac (enable_grub_fstest): Check for --enable-grub-fstest.
8433         * util/grub-fstest.c: New file.
8435 2008-02-03  Yoshinori K. Okuji  <okuji@enbug.org>
8437         Make grub-setup handle a separate root device.
8439         * util/i386/pc/grub-setup.c (setup): Always open the root device,
8440         so that the root device can be compared with the destination
8441         device.
8442         When embedding the core image, if the root and destination devices
8443         are different, set ROOT_DRIVE to ROOT_DEV->DISK->ID. Otherwise, to
8444         0xFF.
8445         When not embedding, set ROOT_DRIVE to 0xFF.
8447 2008-02-03  Yoshinori K. Okuji  <okuji@enbug.org>
8449         Add support for having a grub directory in a different drive. This
8450         is still only the data handling part.
8452         * kern/i386/pc/startup.S (multiboot_trampoline): Set %dh to 0xFF.
8453         (codestart): Save %dh in GRUB_ROOT_DRIVE.
8454         (grub_root_drive): New variable.
8456         * kern/i386/pc/init.c (make_install_device): Use GRUB_ROOT_DRIVE
8457         instead of GRUB_BOOT_DRIVE to construct a device name. Set
8458         GRUB_ROOT_DRIVE to GRUB_BOOT_DRIVE if it is 0xFF, otherwise use it
8459         as it was.
8461         * include/grub/i386/pc/kernel.h (grub_root_drive): New prototype.
8463         * include/grub/i386/pc/boot.h (GRUB_BOOT_MACHINE_ROOT_DRIVE): New
8464         macro.
8465         (GRUB_BOOT_MACHINE_DRIVE_CHECK): Set to 0x4f.
8467         * boot/i386/pc/pxeboot.S (_start): Set %dh to 0xFF. For now, this
8468         is bogus, because PXE booting does not specify any drive
8469         correctly.
8471         * boot/i386/pc/lnxboot.S (reg_edx): Set the second byte to 0xFF. I
8472         am not sure if this is really correct.
8474         * boot/i386/pc/cdboot.S: Set %dh to 0xFF, because the root drive
8475         is always identical to the boot drive when booting from a CD.
8477         * boot/i386/pc/boot.S (MOV_MEM_TO_AL): Removed. Not needed any
8478         longer.
8479         (root_drive): New variable.
8480         (real_start): Unconditionally set %dh to ROOT_DRIVE.
8481         (setup_sectors): Push %dx right after popping it, because %dh will
8482         be modified later.
8483         (copy_buffer): Restore %dx.
8485 2008-02-03  Robert Millan  <rmh@aybabtu.com>
8487         * util/i386/pc/grub-mkrescue.in: Rewrite most of image generation to
8488         use `cdboot.img' for cdrom images.
8490 2008-02-03  Robert Millan  <rmh@aybabtu.com>
8492         * util/grub.d/00_header.in: Issue scripting commands for GRUB to
8493         only setup gfxterm when `font' command has succeeded.
8495 2008-02-03  Robert Millan  <rmh@aybabtu.com>
8497         * loader/multiboot_loader.c [GRUB_MACHINE_LINUXBIOS]
8498         (grub_rescue_cmd_multiboot_loader)
8499         (grub_rescue_cmd_module_loader): Enable multiboot1 calls.
8501 2008-02-03  Pavel Roskin  <proski@gnu.org>
8503         * kern/i386/pc/startup.S (grub_chainloader_real_boot): Pop
8504         %edx and %esi from stack only after grub_gate_a20() is called.
8505         grub_gate_a20() clobbers %edx.
8507 2008-02-03  Yoshinori K. Okuji  <okuji@enbug.org>
8509         * configure.ac (AC_INIT): Bumped to 1.96.
8511         * DISTLIST: Added boot/i386/pc/cdboot.S, bus/pci.c,
8512         commands/lspci.c,disk/memdisk.c, include/grub/pci.h,
8513         include/grub/i386/pc/pci.h, video/readers/jpeg.c, and
8514         video/readers/png.c.
8516 2008-02-03  Bean  <bean123ch@gmail.com>
8518         * conf/i386-pc.rmk (pkglib_IMAGES): Add cdboot.img.
8519         (cdboot_img_SOURCES): New variable.
8520         (cdboot_img_ASFLAGS): New variable.
8521         (cdboot_img_LDFLAGS): New variable.
8523         * boot/i386/pc/cdboot.S: New file.
8525         * disk/i386/pc/biosdisk.c (cd_start): New variable.
8526         (cd_count): Likewise.
8527         (grub_biosdisk_get_drive): Add support for cd device.
8528         (grub_biosdisk_call_hook): Likewise.
8529         (grub_biosdisk_iterate): Likewise.
8530         (grub_biosdisk_open): Likewise.
8531         (GRUB_BIOSDISK_CDROM_RETRY_COUNT): New macro.
8532         (grub_biosdisk_rw): Support reading from cd device.
8533         (GRUB_MOD_INIT): Iterate cd devices.
8535         * include/grub/i386/pc/biosdisk.h (GRUB_BIOSDISK_FLAG_CDROM): New macro.
8536         (GRUB_BIOSDISK_MACHINE_CDROM_START): Likewise.
8537         (GRUB_BIOSDISK_MACHINE_CDROM_END): Likewise.
8539         * kern/i386/pc/init.c (make_install_device): Check for cd device.
8541 2008-02-02  Robert Millan  <rmh@aybabtu.com>
8543         * commands/read.c: New file.
8544         * conf/common.rmk (pkglib_MODULES): Add `commands/read.c'.
8545         (read_mod_SOURCES): New variable.
8546         (read_mod_CFLAGS): Likewise.
8547         (read_mod_LDFLAGS): Likewise.
8549 2008-02-02  Robert Millan  <rmh@aybabtu.com>
8551         * normal/main.c (grub_normal_execute): Check for `menu->size' when
8552         determining whether menu has to be displayed.
8554 2008-02-02  Marco Gerards  <marco@gnu.org>
8556         * bus/pci.c: New file.
8558         * include/grub/pci.h: Likewise.
8560         * include/grub/i386/pc/pci.h: Likewise.
8562         * commands/lspci.c: Likewise.
8564         * conf/i386-pc.rmk (pkglib_MODULES): Add `pci.mod' and
8565         `lspci.mod'.
8566         (pci_mod_SOURCES): New variable.
8567         (pci_mod_CFLAGS): Likewise.
8568         (pci_mod_LDFLAGS): Likewise.
8569         (lspci_mod_SOURCES): Likewise.
8570         (lspci_mod_CFLAGS): Likewise.
8571         (lspci_mod_LDFLAGS): Likewise.
8573 2008-02-02  Bean  <bean123ch@gmail.com>
8575         * fs/ufs.c (INODE_BLKSZ): Fix incorrect value.
8576         (grub_ufs_get_file_block): Fix indirect block calculation problem.
8578         * fs/xfs.c (grub_xfs_sblock): New member log2_dirblk.
8579         (grub_xfs_btree_node): New structure.
8580         (grub_xfs_btree_root): New structure.
8581         (grub_xfs_inode): New members nblocks, extsize, nextents and btree.
8582         (GRUB_XFS_EXTENT_OFFSET): Use exts instead of inode->data.extents.
8583         (GRUB_XFS_EXTENT_BLOCK): Likewise.
8584         (GRUB_XFS_EXTENT_SIZE): Likewise.
8585         (grub_xfs_read_block): Support btree format type.
8586         (grub_xfs_iterate_dir): Use NESTED_FUNC_ATTR in call_hook.
8587         Use directory block as basic unit.
8589         * fs/fshelp.c (grub_fshelp_read_file): Bug fix for sparse block.
8591         * aclocal.m4 (grub_i386_CHECK_REGPARM_BUG): Define NESTED_FUNC_ATTR as
8592         __attribute__ ((__regparm__ (1))).
8594 2008-02-01  Robert Millan  <rmh@aybabtu.com>
8596         Correct a mistake in previous commit.
8598         * conf/i386-pc.rmk (normal/execute.c_DEPENDENCIES): Move to the
8599         top.
8600         (normal/command.c_DEPENDENCIES): New variable.
8602 2008-02-01  Robert Millan  <rmh@aybabtu.com>
8604         * conf/i386-efi.rmk (normal/execute.c_DEPENDENCIES): Move to the
8605         top.
8606         (normal/command.c_DEPENDENCIES): New variable.
8607         (grub-emu_DEPENDENCIES, normal_mod_DEPENDENCIES): Remove variables.
8608         * conf/i386-ieee1275.rmk: Likewise.
8609         * conf/i386-linuxbios.rmk: Likewise.
8610         * conf/i386-pc.rmk: Likewise.
8611         * conf/sparc64-ieee1275.rmk: Likewise.
8612         * conf/powerpc-ieee1275.rmk: Likewise.
8613         (grub_emu_SOURCES): Add `fs/fshelp.c'.
8615         * genmk.rb: Add `$(#{src}_DEPENDENCIES)' in targets that require it.
8617 2008-02-01  Robert Millan  <rmh@aybabtu.com>
8619         * kern/disk.c (grub_disk_read, grub_disk_write): Add grub_dprintf()
8620         call at beginning of function.
8622 2008-01-31  Pavel Roskin  <proski@gnu.org>
8624         * util/powerpc/ieee1275/grub-mkrescue.in: New file.
8625         * conf/powerpc-ieee1275.rmk (bin_SCRIPTS): New variable.
8626         (grub_mkrescue_SOURCES): Likewise.
8627         * DISTLIST: Add util/powerpc/ieee1275/grub-mkrescue.in.
8629 2008-01-30  Robert Millan  <rmh@aybabtu.com>
8631         * conf/i386-pc.rmk (sbin_UTILITIES): Remove `grub-probe'.
8632         (util/grub-probe.c_DEPENDENCIES, grub_probe_SOURCES): Moved from here ...
8633         * conf/common.rmk (util/grub-probe.c_DEPENDENCIES)
8634         (grub_probe_SOURCES): ... to here.
8636         * conf/i386-efi.rmk (sbin_UTILITIES): Remove `grub-probe'.
8637         (util/grub-probe.c_DEPENDENCIES, grub_probe_SOURCES): Remove.
8638         * conf/i386-ieee1275.rmk: Likewise.
8639         * conf/i386-linuxbios.rmk: Likewise.
8640         * conf/powerpc-ieee1275.rmk: Likewise.
8642 2008-01-30  Tristan Gingold  <gingold@free.fr>
8644         * kern/rescue.c: Silently accept empty lines.
8646 2008-01-29  Bean  <bean123ch@gmail.com>
8648         * boot/i386/pc/lnxboot.S (data_start): Code cleanup.
8649         (real_code_2): Code cleanup and change comment style.
8650         (move_memory): Avoid using 32-bit address mode.
8652 2008-01-29  Bean  <bean123ch@gmail.com>
8654         * conf/i386-pc.rmk (pkglib_MODULES): Add `png.mod'.
8655         (png_mod_SOURCES): New variable.
8656         (png_mod_CFLAGS): Likewise.
8657         (png_mod_LDFLAGS): Likewise.
8659         * video/readers/png.c: New file.
8661 2008-01-28  Robert Millan  <rmh@aybabtu.com>
8663         * include/grub/i386/linuxbios/kernel.h (GRUB_MOD_GAP): New macro.
8664         * kern/powerpc/ieee1275/init.c (grub_arch_modules_addr): Remove
8665         `ifndef GRUB_MOD_GAP' hack.
8666         * util/elf/grub-mkimage.c (add_segments): Likewise.
8668 2008-01-27  Robert Millan  <rmh@aybabtu.com>
8670         * kern/powerpc/ieee1275/init.c (grub_arch_modules_addr): Skip
8671         `GRUB_MOD_GAP' for platforms in which it's not defined.
8672         * util/elf/grub-mkimage.c (add_segments): Likewise.
8674 2008-01-27  Robert Millan  <rmh@aybabtu.com>
8676         Get grub-emu to build again (including parallel builds).
8678         * conf/i386-pc.rmk (util/grub-emu.c_DEPENDENCIES): Remove variable.
8679         Split into ...
8680         (util/grub-emu.c_DEPENDENCIES): ... this, ...
8681         (normal/execute.c_DEPENDENCIES): ... this, ...
8682         (grub-emu_DEPENDENCIES): ... and this.
8684         * conf/i386-efi.rmk: Likewise.
8685         * conf/i386-linuxbios.rmk: Likewise.
8686         * conf/i386-ieee1275.rmk: Likewise.
8687         * conf/powerpc-ieee1275.rmk: Likewise.
8688         (grub_emu_SOURCES): Remove duplicated `kern/file.c'.
8690 2008-01-27  Robert Millan  <rmh@aybabtu.com>
8692         * NEWS: Add a few items.
8694 2008-01-27  Robert Millan  <rmh@aybabtu.com>
8696         Fix parallel builds with grub-emu.  Based on earlier commit for
8697         grub-probe and grub-setup.
8699         * conf/i386-pc.rmk (grub-emu_DEPENDENCIES): Renamed to ...
8700         (util/grub-emu.c_DEPENDENCIES): ... this.
8701         * conf/i386-efi.rmk (grub-emu_DEPENDENCIES): Renamed to ...
8702         (util/grub-emu.c_DEPENDENCIES): ... this.
8703         * conf/i386-linuxbios.rmk (grub-emu_DEPENDENCIES): Renamed to ...
8704         (util/grub-emu.c_DEPENDENCIES): ... this.
8705         * conf/i386-ieee1275.rmk (grub-emu_DEPENDENCIES): Renamed to ...
8706         (util/grub-emu.c_DEPENDENCIES): ... this.
8707         * conf/powerpc-ieee1275.rmk (grub-emu_DEPENDENCIES): Renamed to ...
8708         (util/grub-emu.c_DEPENDENCIES): ... this.
8710 2008-01-27  Pavel Roskin  <proski@gnu.org>
8712         * include/grub/powerpc/ieee1275/kernel.h: Introduce GRUB_MOD_GAP
8713         to create a gap between _end and the modules added to the image
8714         with grub-mkrescue.  That fixes "CLAIM failed" on PowerMAC.
8715         * kern/powerpc/ieee1275/init.c: Use GRUB_MOD_GAP.
8716         * util/elf/grub-mkimage.c (add_segments): Likewise.
8718 2008-01-26  Pavel Roskin  <proski@gnu.org>
8720         * kern/dl.c (grub_dl_load): Don't abort if prefix is not set,
8721         just return an error.
8723 2008-01-26  Bean  <bean123ch@gmail.com>
8725         * fs/reiserfs.c (grub_fshelp_node): New member next_offset.
8726         (grub_reiserfs_get_item): Save offset of the next item.
8727         (grub_reiserfs_iterate_dir): Use next_offset to find next item.
8729 2008-01-25  Robert Millan  <rmh@aybabtu.com>
8731         * conf/i386-pc.rmk (grub_setup_SOURCES, grub_emu_SOURCES): Regroup to
8732         make all filesystem sources appear together (possibly fixing omissions
8733         while at it).
8734         * conf/i386-efi.rmk (grub_emu_SOURCES): Likewise.
8735         * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Likewise.
8736         * conf/i386-linuxbios.rmk (grub_emu_SOURCES): Likewise.
8737         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
8739         * conf/i386-pc.rmk (grub_probe_SOURCES): Likewise.  Additionally,
8740         add `kern/file.c'.
8741         * conf/i386-efi.rmk (grub_probe_SOURCES): Likewise.
8742         * conf/i386-ieee1275.rmk (grub_probe_SOURCES): Likewise.
8743         * conf/i386-linuxbios.rmk (grub_probe_SOURCES): Likewise.
8744         * conf/powerpc-ieee1275.rmk (grub_probe_SOURCES): Likewise.
8746         * util/grub-probe.c: Include `<grub/file.h>' and `<sys/stat.h>'.
8747         (probe): Add a sanity check to make sure of our ability to read
8748         requested files when probing for filesystem type.
8750         * genmk.rb: Update copyright year (2007).
8752         * include/grub/fs.h (grub_fat_init, grub_fat_fini, grub_ext2_init)
8753         (grub_ext2_fini, grub_ufs_init, grub_ufs_fini, grub_minix_init)
8754         (grub_minix_fini, grub_hfs_init, grub_hfs_fini, grub_jfs_init)
8755         (grub_jfs_fini, grub_xfs_init, grub_xfs_fini, grub_affs_init)
8756         (grub_affs_fini, grub_sfs_init, grub_sfs_fini, grub_iso9660_init)
8757         : Remove function prototypes.
8759 2008-01-25  Robert Millan  <rmh@aybabtu.com>
8761         Revert my previous commits (based on wrong assumption of how grub_errno
8762         works).
8764         * kern/disk.c (grub_disk_open): Stop resetting grub_errno.
8765         * kern/file.c (grub_file_open): Likewise.
8767 2008-01-24  Pavel Roskin  <proski@gnu.org>
8769         * include/grub/ieee1275/ieee1275.h: Introduce flag for firmwares
8770         that hang if GRUB tries to setup colors.
8771         * term/ieee1275/ofconsole.c (grub_ofconsole_init): Don't set
8772         colors for firmwares that don't support it.
8773         * kern/powerpc/ieee1275/cmain.c (grub_ieee1275_set_flag):
8774         Recognize Open Hack'Ware, set flags to work around its
8775         limitations.
8777 2008-01-24  Robert Millan  <rmh@aybabtu.com>
8779         * kern/file.c (grub_file_open): Do not account previous failures of
8780         unrelated functions when grub_errno is checked for.
8781         Reported by Oleg Strikov.
8783 2008-01-24  Bean  <bean123ch@gmail.com>
8785         * fs/ufs.c (GRUB_UFS_VOLNAME_LEN): New macro.
8786         (grub_ufs_sblock): New member volume name.
8787         (grub_ufs_find_file): Fix string copy bug.
8788         (grub_ufs_label): Implement this function properly.
8790         * fs/hfs.c (grub_hfs_cnid_type): New enum.
8791         (grub_hfs_iterate_records): Use the correct file number for extents
8792         and catalog file. Fix problem in next index calculation.
8793         (grub_hfs_find_node): Replace recursive function call with loop.
8794         (grub_hfs_iterate_dir): Replace recursive function call with loop.
8796 2008-01-23  Robert Millan  <rmh@aybabtu.com>
8798         * include/grub/i386/ieee1275/loader.h: Include `<grub/types.h>',
8799         `<grub/symbol.h>' and `<grub/multiboot.h>'.
8800         (grub_multiboot2_real_boot): New function prototype.
8802         * include/grub/i386/pc/memory.h: Include `<grub/machine/machine.h>'.
8803         [!GRUB_MACHINE_IEEE1275] (grub_lower_mem, grub_upper_mem): Disable.
8805         * kern/i386/ieee1275/init.c (grub_os_area_addr)
8806         (grub_os_area_size, grub_lower_mem, grub_upper_mem): Remove variables.
8808 2008-01-23  Robert Millan  <rmh@aybabtu.com>
8810         * kern/mm.c (grub_mm_init_region): Replace grub_dprintf() call with
8811         #ifdef'ed out grub_printf().
8813 2008-01-23  Robert Millan  <rmh@aybabtu.com>
8815         * term/i386/pc/at_keyboard.c (grub_keyboard_isr): #ifdef out
8816         grub_dprintf calls, since they make "debug=all" mode unusable.
8817         (grub_console_checkkey): Likewise.
8819 2008-01-23  Robert Millan  <rmh@aybabtu.com>
8821         * conf/i386-ieee1275.rmk (kernel_elf_SOURCES): Add
8822         `term/i386/pc/at_keyboard.c'.
8823         (pkglib_MODULES): Add `serial.mod'.
8824         (serial_mod_SOURCES): New variable.
8825         (serial_mod_CFLAGS): Likewise.
8826         (serial_mod_LDFLAGS): Likewise.
8828         * include/grub/i386/ieee1275/console.h: Add `<grub/symbol.h>'.  Remove
8829         `<grub/powerpc/ieee1275/console.h>'.
8830         (grub_keyboard_controller_init): New function prototype.
8831         (grub_console_checkkey): Likewise.
8832         (grub_console_getkey): Likewise.
8834         * kern/powerpc/ieee1275/init.c (grub_machine_init): Initialize AT
8835         keyboard on i386.
8837         * term/ieee1275/ofconsole.c (grub_ofconsole_term): On i386, use
8838         grub_ofconsole_checkkey() and grub_ofconsole_getkey() for input.
8840 2008-01-23  Robert Millan  <rmh@aybabtu.com>
8842         * kern/i386/pc/init.c (make_install_device): When memdisk image is
8843         present, "(memdisk)/boot/grub" becomes the default prefix.
8845         * util/i386/pc/grub-mkrescue.in: Switch to a minimal core.img plus
8846         a memdisk tarball with all the modules.  Add --overlay=DIR option that
8847         allows users to overlay additional files into the image.
8849 2008-01-23  Robert Millan  <rmh@aybabtu.com>
8851         * conf/i386-ieee1275.rmk (kernel_elf_SOURCES): Add `machine/loader.h'
8852         and `machine/memory.h'.
8853         (pkglib_MODULES): Add `multiboot.mod' and `_multiboot.mod'.
8854         (_multiboot_mod_SOURCES): New variable.
8855         (_multiboot_mod_CFLAGS): Likewise.
8856         (_multiboot_mod_LDFLAGS): Likewise.
8857         (multiboot_mod_SOURCES): Likewise.
8858         (multiboot_mod_CFLAGS): Likewise.
8859         (multiboot_mod_LDFLAGS): Likewise.
8861         * include/grub/i386/ieee1275/loader.h: New file.
8863         * include/grub/i386/ieee1275/machine.h: Likewise.
8865         * include/grub/i386/ieee1275/memory.h: Likewise.
8867         * include/grub/i386/pc/init.h (grub_os_area_addr): Remove (redundant)
8868         variable declaration.
8869         (grub_os_area_size): Likewise.
8871         * kern/i386/ieee1275/init.c (grub_os_area_addr, grub_os_area_size)
8872         (grub_lower_mem, grub_upper_mem): New variables.
8873         (grub_stop_floppy): New function (just to make
8874         grub_multiboot2_real_boot() happy).
8876         * kern/i386/ieee1275/startup.S: Include `<grub/machine/memory.h>',
8877         `<grub/cpu/linux.h>', `<multiboot.h>' and `<multiboot2.h>'.
8878         (grub_stop): New function.
8879         Include `"../realmode.S"' and `"../loader.S"'.
8881         * loader/multiboot_loader.c: Include `<grub/machine/machine.h>'.
8882         Replace `__i386__' #ifdefs with `GRUB_MACHINE_PCBIOS'.
8884         * loader/powerpc/ieee1275/multiboot2.c (grub_mb2_arch_boot): On i386,
8885         rely on grub_multiboot2_real_boot() for final boot.
8887 2008-01-22  Robert Millan  <rmh@aybabtu.com>
8889         * disk/ieee1275/ofdisk.c (grub_ofdisk_iterate): When
8890         `GRUB_IEEE1275_FLAG_OFDISK_SDCARD_ONLY' flag is set, skip any
8891         device that doesn't look like an SD card.
8892         * include/grub/ieee1275/ieee1275.h (grub_ieee1275_flag): Add
8893         `GRUB_IEEE1275_FLAG_OFDISK_SDCARD_ONLY' flag.
8894         * kern/powerpc/ieee1275/cmain.c (grub_ieee1275_set_flag): Detect
8895         OLPC laptop, and set `GRUB_IEEE1275_FLAG_OFDISK_SDCARD_ONLY' when
8896         found.
8898 2008-01-22  Robert Millan  <rmh@aybabtu.com>
8900         * kern/powerpc/ieee1275/init.c (grub_claim_heap): Add sanity check to
8901         avoid claiming over our own code.
8903 2008-01-22  Bean  <bean123ch@gmail.com>
8905         * conf/i386-pc.rmk (pkglib_MODULES): Add `jpeg.mod'.
8906         (jpeg_mod_SOURCES): New variable.
8907         (jpeg_mod_CFLAGS): Likewise.
8908         (jpeg_mod_LDFLAGS): Likewise.
8910         * video/readers/jpeg.c : New file.
8912 2008-01-22  Bean  <bean123ch@gmail.com>
8914         * fs/cpio.c (grub_cpio_find_file): Return GRUB_ERR_FILE_NOT_FOUND when
8915         there are no more items.
8917 2008-01-21  Robert Millan  <rmh@aybabtu.com>
8919         * kern/mm.c (grub_mm_init_region): Improve debug message.
8921 2008-01-21  Robert Millan  <rmh@aybabtu.com>
8923         * conf/i386-pc.rmk (GRUB_MEMORY_MACHINE_LINK_ADDR): New variable.
8924         (kernel_img_LDFLAGS): Use `GRUB_MEMORY_MACHINE_LINK_ADDR' as link
8925         address.
8926         (grub_mkimage_CFLAGS): Propagate `GRUB_MEMORY_MACHINE_LINK_ADDR' as
8927         a C macro.
8928         * include/grub/i386/pc/memory.h (GRUB_MEMORY_MACHINE_UPPER): New macro.
8929         Indicates start of upper memory.
8930         * util/i386/pc/grub-mkimage.c: Include `<grub/machine/memory.h>'.
8931         (generate_image): Abort when image size is big enough to corrupt
8932         upper memory.
8934         * include/grub/i386/pc/vga.h: Include `<grub/machine/memory.h>'.
8935         (GRUB_MEMORY_MACHINE_VGA_ADDR): Alias for `GRUB_MEMORY_MACHINE_UPPER'.
8936         * term/i386/pc/vga.c (VGA_MEM): Use `GRUB_MEMORY_MACHINE_VGA_ADDR'
8937         instead of hardcoding 0xA0000.
8938         * video/i386/pc/vbe.c: Include `<grub/machine/vga.h>'.
8939         (grub_vbe_set_video_mode): Use `GRUB_MEMORY_MACHINE_VGA_ADDR'
8940         instead of hardcoding 0xA0000.
8942 2008-01-21  Robert Millan  <rmh@aybabtu.com>
8944         * disk/memdisk.c (memdisk_size): New variable.
8945         (grub_memdisk_open): Replace grub_arch_memdisk_size() call with
8946         `memdisk_size'.
8947         (grub_memdisk_init): Initialize `memdisk_size'.  Reallocate memdisk
8948         image to dynamic memory.
8949         (grub_memdisk_fini): Replace grub_arch_memdisk_size() call with
8950         `memdisk_size'.  Free memdisk block.
8952 2008-01-21  Robert Millan  <rmh@aybabtu.com>
8954         Fix detection of very small filesystems (like tar).
8956         * fs/reiserfs.c (grub_reiserfs_mount): When disk is too small to
8957         contain a ReiserFS, abort with GRUB_ERR_BAD_FS rather than
8958         GRUB_ERR_OUT_OF_RANGE (which made the upper layer think there's
8959         a problem with this disk).
8961 2008-01-21  Robert Millan  <rmh@aybabtu.com>
8963         * disk/i386/pc/biosdisk.c (grub_biosdisk_iterate): Add debug message
8964         on grub_biosdisk_rw_standard() error.
8966 2008-01-21  Robert Millan  <rmh@aybabtu.com>
8968         * include/grub/ieee1275/ieee1275.h: Add 2008 to Copyright line for
8969         recent changes.
8970         * kern/elf.c: Likewise.
8971         * kern/ieee1275/ieee1275.c: Likewise.
8972         * kern/powerpc/ieee1275/openfw.c: Likewise.
8973         * term/ieee1275/ofconsole.c: Likewise.
8975 2008-01-21  Robert Millan  <rmh@aybabtu.com>
8977         * include/grub/i386/pc/kernel.h: Include `<grub/symbol.h>'.
8979         * include/grub/kernel.h (grub_arch_memdisk_addr)
8980         (grub_arch_memdisk_size): Moved from here ...
8982         * include/grub/i386/pc/kernel.h (grub_arch_memdisk_addr)
8983         (grub_arch_memdisk_size): ... to here.
8985 2008-01-21  Robert Millan  <rmh@aybabtu.com>
8987         Mostly based on bugfix from Bean.
8989         * kern/elf.c (grub_elf32_phdr_iterate): Use `NESTED_FUNC_ATTR'
8990         attribute with hook() parameter.
8991         (grub_elf32_load): Use `NESTED_FUNC_ATTR' with grub_elf32_load_segment()
8992         declaration.
8993         (grub_elf64_phdr_iterate): Use `NESTED_FUNC_ATTR'
8994         attribute with hook() parameter.
8995         (grub_elf64_load): Use `NESTED_FUNC_ATTR' with grub_elf64_load_segment()
8996         declaration.
8998 2008-01-21  Robert Millan  <rmh@aybabtu.com>
9000         * conf/i386-pc.rmk (kernel_img_HEADERS): Add `machine/kernel.h'.
9001         (pkglib_MODULES): Add `memdisk.mod'.
9002         (memdisk_mod_SOURCES): New variable.
9003         (memdisk_mod_CFLAGS): Likewise.
9004         (memdisk_mod_LDFLAGS): Likewise.
9006         * disk/memdisk.c: New file.
9008         * include/grub/disk.h (grub_disk_dev_id): Add
9009         `GRUB_DISK_DEVICE_MEMDISK_ID'.
9011         * include/grub/i386/pc/kernel.h
9012         (GRUB_KERNEL_MACHINE_MEMDISK_IMAGE_SIZE): New macro.
9013         (GRUB_KERNEL_MACHINE_PREFIX): Increment by 4.
9014         (grub_kernel_image_size): New variable declaration.
9015         (grub_total_module_size): Likewise.
9016         (grub_memdisk_image_size): Likewise.
9018         * include/grub/i386/pc/memory.h
9019         (GRUB_MEMORY_MACHINE_DECOMPRESSION_ADDR): New macro.
9021         * include/grub/kernel.h: Include `<grub/symbol.h>'.
9022         (grub_arch_memdisk_addr): New variable declaration.
9023         (grub_arch_memdisk_size): Likewise.
9025         * kern/i386/pc/init.c (grub_arch_memdisk_addr): New function.
9026         (grub_arch_memdisk_size): Likewise.
9028         * kern/i386/pc/startup.S (grub_memdisk_image_size): New variable.
9029         (codestart): Replace hardcoded `0x100000' with
9030         `GRUB_MEMORY_MACHINE_DECOMPRESSION_ADDR' macro.
9032         * util/i386/pc/grub-mkimage.c: Include `<grub/misc.h>'.
9033         (generate_image): Add `memdisk_path' parameter.  When `memdisk_path' is
9034         not NULL, append the contents of the file it refers to, at the end of
9035         the compressed kernel image.  Initialize `grub_memdisk_image_size'
9036         variable (at `GRUB_KERNEL_MACHINE_MEMDISK_IMAGE_SIZE' offset).
9037         (options): Add "memdisk"|'m' option.
9038         (main): Parse --memdisk|-m option, and pass user-provided path as
9039         parameter to generate_image().
9041 2008-01-20  Robert Millan  <rmh@aybabtu.com>
9043         * kern/sparc64/ieee1275/openfw.c (grub_devalias_iterate): Copy debug
9044         grub_dprintf() calls from here ...
9045         * kern/powerpc/ieee1275/openfw.c (grub_devalias_iterate): ... to here.
9047 2008-01-20  Robert Millan  <rmh@aybabtu.com>
9049         Fix detection of "real mode" when /options/real-mode? doesn't exist.
9051         * include/grub/ieee1275/ieee1275.h (grub_ieee1275_mmu): New variable
9052         declaration.
9053         * kern/powerpc/ieee1275/cmain.c (grub_ieee1275_mmu): New variable.
9054         (grub_ieee1275_find_options): If `grub_ieee1275_mmu' is 0, set
9055         `GRUB_IEEE1275_FLAG_REAL_MODE'.
9056         (cmain): Initialize `grub_ieee1275_mmu' (using /chosen/mmu integer
9057         property).
9058         * kern/powerpc/ieee1275/openfw.c (grub_map): Rely on pre-initialized
9059         `grub_ieee1275_mmu' rather than obtaining a handler on every call.
9061 2008-01-19  Robert Millan  <rmh@aybabtu.com>
9063         Get rid of confusing function (superseded by
9064         `grub_ieee1275_get_integer_property')
9065         * include/grub/ieee1275/ieee1275.h (grub_ieee1275_decode_int_4): Remove
9066         prototype.
9067         * kern/ieee1275/ieee1275.c (grub_ieee1275_decode_int_4): Remove
9068         function.
9069         * term/ieee1275/ofconsole.c (grub_ofconsole_init): Avoid use of
9070         grub_ieee1275_decode_int_4(), by obtaining integer properties directly
9071         in native endianness from grub_ieee1275_get_integer_property().
9073 2008-01-19  Robert Millan  <rmh@aybabtu.com>
9075         * kern/powerpc/ieee1275/openfw.c (grub_halt): Issue "power-off"
9076         command after "shut-down", since implementations differ on which
9077         the command for halt is.
9079 2008-01-19  Robert Millan  <rmh@aybabtu.com>
9081         * include/grub/i386/linuxbios/console.h: Add header protection.
9082         (grub_keyboard_controller_init): New function prototype.
9083         * term/i386/pc/at_keyboard.c (KEYBOARD_COMMAND_ISREADY): New macro.
9084         (KEYBOARD_COMMAND_READ): Likewise.
9085         (KEYBOARD_COMMAND_WRITE): Likewise.
9086         (KEYBOARD_SCANCODE_SET1): Likewise.
9087         (grub_keyboard_controller_write): New function.
9088         (grub_keyboard_controller_read): Likewise.
9089         (grub_keyboard_controller_init): Likewise.
9091         * term/i386/pc/console.c: Include `<grub/machine/machine.h>'.
9092         (grub_console_init): On coreboot/LinuxBIOS, call
9093         grub_keyboard_controller_init().
9095 2008-01-19  Robert Millan  <rmh@aybabtu.com>
9097         PowerPC changes provided by Pavel Roskin.
9099         * kern/powerpc/ieee1275/cmain.c (cmain): Don't take any arguments.
9100         * kern/powerpc/ieee1275/crt0.S: Store r5 in grub_ieee1275_entry_fn,
9101         don't rely on cmain() doing it.
9102         * kern/i386/ieee1275/startup.S (_start): Store %eax in
9103         grub_ieee1275_entry_fn, don't rely on cmain() doing it.
9105 2008-01-16  Robert Millan  <rmh@aybabtu.com>
9107         * include/grub/i386/linuxbios/memory.h
9108         (GRUB_MEMORY_MACHINE_LINUXBIOS_TABLE_ADDR): Remove macro.
9109         * kern/i386/linuxbios/table.c (grub_linuxbios_table_iterate): Do not
9110         receive `table_header' as argument.  Instead, probe for it in the
9111         known memory ranges where it can be present.
9112         (grub_available_iterate): Do not pass a fixed `table_header' address
9113         to grub_linuxbios_table_iterate().
9115 2008-01-15  Robert Millan  <rmh@aybabtu.com>
9117         * configure.ac: Add `i386-ieee1275' to the list of supported targets.
9118         * conf/i386-ieee1275.rmk: New file.
9119         * include/grub/i386/ieee1275/console.h: Likewise.
9120         * include/grub/i386/ieee1275/ieee1275.h: Likewise.
9121         * include/grub/i386/ieee1275/kernel.h: Likewise.
9122         * include/grub/i386/ieee1275/time.h: Likewise.
9123         * kern/i386/ieee1275/init.c: Likewise.
9124         * kern/i386/ieee1275/startup.S: Likewise.
9126 2008-01-15  Robert Millan  <rmh@aybabtu.com>
9128         * kern/misc.c (grub_vsprintf): Do not reset `longlongfmt' to zero
9129         when pointers are 32-bit (but still do set it to one when they are
9130         64-bit).
9132 2008-01-15  Robert Millan  <rmh@aybabtu.com>
9134         * include/grub/ieee1275/ieee1275.h
9135         (grub_ieee1275_get_integer_property): New function prototype.
9137         * kern/ieee1275/ieee1275.c: Include `<grub/types.h>'.
9138         (grub_ieee1275_get_integer_property): New function.  Wraps around
9139         grub_ieee1275_get_property() to handle endianness.
9141         * kern/powerpc/ieee1275/cmain.c (grub_ieee1275_find_options): Replace
9142         grub_ieee1275_get_property() with grub_ieee1275_get_integer_property()
9143         where appropriate.
9144         * kern/powerpc/ieee1275/openfw.c (grub_available_iterate): Likewise.
9145         (grub_map): Likewise.
9146         * kern/sparc64/ieee1275/openfw.c (grub_map): Likewise.
9148 2008-01-15  Bean  <bean123ch@gmail.com>
9150         * normal/execute.c (grub_script_exec_argument_to_string): Check for undefined variable.
9151         (grub_script_execute_cmdline): Reset grub_errno.
9153         * normal/main.c (read_config_file): Reset grub_errno.
9155         * normal/parse.y (script_init): New.
9156         (script): Move function and menuentry here.
9157         (delimiter): New.
9158         (command): Add delimiter at the end of command.
9159         (commands): Adjust to match the new command.
9160         (commandblock): Remove grub_script_lexer_record_start.
9161         (menuentry): Add grub_script_lexer_record_start, use the new commands.
9162         (if): Use the new commands.
9164         * conf/common.rmk (pkgdata_MODULES): Add echo.mod.
9166 2008-01-15  Robert Millan  <rmh@aybabtu.com>
9168         * normal/menu.c (run_menu): Move timeout message from here ...
9169         (print_timeout): ... to here.
9170         (run_menu): Use print_timeout() once during initial draw to print
9171         the whole message, and again in every clock tick to update only
9172         the number of seconds.
9174 2008-01-15  Robert Millan  <rmh@aybabtu.com>
9176         * kern/powerpc/ieee1275/openfw.c (grub_available_iterate): Obtain
9177         actual size of `available' from grub_ieee1275_get_property(), and
9178         restrict parsing to that bound.
9180 2008-01-15  Christian Franke  <franke@computer.org>
9182         * util/grub-emu.c: Replace <argp.h> by <getopt.h>.
9183         (argp_program_version): Remove variable.
9184         (argp_program_bug_address): Likewise.
9185         (options): Convert from struct argp_option to struct option.
9186         (struct arguments): Remove.
9187         (parse_opt): Remove.
9188         (usage): New function.
9189         (main): Replace struct args members by simple variables.
9190         Replace argp_parse() by getopt_long().
9191         Add switch to evaluate options.
9192         Add missing "(...)" around root_dev in prefix string.
9194 2008-01-14  Robert Millan  <rmh@aybabtu.com>
9196         * kern/powerpc/ieee1275/init.c (grub_exit): Reimplement as a wrapper
9197         for grub_ieee1275_exit(), in order to improve portability.
9199 2008-01-14  Robert Millan  <rmh@aybabtu.com>
9201         * util/grub.d/10_linux.in (prefix): Define.
9202         (exec_prefix): Likewise.  Both definitions are later used by `libdir'.
9204 2008-01-13  Pavel Roskin  <proski@gnu.org>
9206         * disk/ieee1275/ofdisk.c (grub_ofdisk_open): Don't use
9207         grub_errno if no errors have been detected.
9209 2008-01-12  Robert Millan  <rmh@aybabtu.com>
9211         * include/grub/util/getroot.h (grub_dev_abstraction_types): New enum.
9212         (grub_util_get_dev_abstraction): New function prototype.
9214         * util/getroot.c: Include `<grub/util/getroot.h>'
9215         (grub_util_get_grub_dev): Move detection of abstraction type to ...
9216         (grub_util_get_dev_abstraction): ... here (new function).
9218         * util/grub-probe.c: Convert PRINT_* to an enum.  Add
9219         `PRINT_ABSTRACTION'.
9220         (probe): Probe for abstraction type when requested.
9221         (main): Understand `--target=abstraction'.
9223         * util/i386/efi/grub-install.in: Add abstraction module to core
9224         image when it is found to be necessary.
9225         * util/i386/pc/grub-install.in: Likewise.
9226         * util/powerpc/ieee1275/grub-install.in: Likewise.
9228         * util/update-grub_lib.in (font_path): Return system path without
9229         converting to GRUB path.
9230         * util/update-grub.in: Convert system path returned by font_path()
9231         to a GRUB path.  Use `grub-probe -t abstraction' to determine what
9232         abstraction module is needed for loading fonts (if any).  Export
9233         that as `GRUB_PRELOAD_MODULES'.
9234         * util/grub.d/00_header.in: Process `GRUB_PRELOAD_MODULES' (print
9235         insmod commands).
9237 2008-01-12  Yoshinori K. Okuji  <okuji@enbug.org>
9239         Remove some unused code from reiserfs.
9241         * fs/reiserfs.c (struct grub_reiserfs_key)
9242         [GRUB_REISERFS_KEYV2_BITFIELD]: Removed offset and type.
9243         (struct grub_reiserfs_node_body): Removed.
9244         (grub_reiserfs_get_key_v2_type) [GRUB_REISERFS_KEYV2_BITFIELD]:
9245         Likewise.
9246         (grub_reiserfs_get_key_offset) [GRUB_REISERFS_KEYV2_BITFIELD]:
9247         Likewise.
9248         (grub_reiserfs_set_key_offset) [GRUB_REISERFS_KEYV2_BITFIELD]:
9249         Likewise.
9250         (grub_reiserfs_set_key_offset) [GRUB_REISERFS_KEYV2_BITFIELD]:
9251         Likewise.
9252         (grub_reiserfs_set_key_type) [GRUB_REISERFS_KEYV2_BITFIELD]:
9253         Likewise.
9254         (grub_reiserfs_iterate_dir) [GRUB_REISERFS_KEYV2_BITFIELD]:
9255         Likewise.
9256         (grub_reiserfs_open) [GRUB_REISERFS_KEYV2_BITFIELD]: Likewise.
9257         (grub_reiserfs_read) [GRUB_REISERFS_KEYV2_BITFIELD]: Likewise.
9258         (grub_reiserfs_dir) [GRUB_REISERFS_KEYV2_BITFIELD]: Likewise.
9260 2008-01-10  Robert Millan  <rmh@aybabtu.com>
9262         * util/update-grub_lib.in (grub_file_is_not_garbage): New function.
9263         Determines if a file is garbage left by packaging systems, etc.
9264         * util/update-grub.in: Use grub_file_is_not_garbage() as a condition
9265         for processing /etc/grub.d scripts.
9266         * util/grub.d/10_hurd.in: Fix `GRUB_DISTRIBUTOR' comparison.
9267         * util/grub.d/10_linux.in: Likewise.  Use grub_file_is_not_garbage()
9268         as a condition for processing Linux images.
9270 2008-01-10  Pavel Roskin  <proski@gnu.org>
9272         * include/grub/powerpc/libgcc.h (__ucmpdi2): New export.  Needed
9273         to compile reiserfs.c on PowerPC.
9275 2008-01-10  Robert Millan  <rmh@aybabtu.com>
9277         * kern/device.c (grub_device_iterate): Do not abort device iteration
9278         when one of the devices cannot be opened.
9279         * kern/disk.c (grub_disk_open): Do not account previous failures of
9280         unrelated functions when grub_errno is checked for.
9282 2008-01-08  Robert Millan  <rmh@aybabtu.com>
9284         * loader/i386/pc/linux.c (grub_rescue_cmd_linux): For
9285         `! grub_linux_is_bzimage', change order of address comparison to make
9286         it more intuitive, and improve "too big zImage" error message.
9288 2008-01-08  Robert Millan  <rmh@aybabtu.com>
9290         * Makefile.in (uninstall): Handle `$(update-grub_SCRIPTS)' and
9291         `$(update-grub_DATA)'.
9292         (distcheck): Fix race condition when invoking `$(MAKE)' on multiple
9293         targets.
9295 2008-01-07  Robert Millan  <rmh@aybabtu.com>
9297         * boot/i386/pc/boot.S (boot_drive_check): Add a comment indicating
9298         which instruction is modified by grub-setup during installation
9299         (since it wasn't obvious by only looking at this file).
9301 2008-01-07  Robert Millan  <rmh@aybabtu.com>
9303         * TODO: Rewrite.  Just refer to the wiki and the BTS instead of
9304         listing actual TODO items.
9306 2008-01-06  Yoshinori K. Okuji  <okuji@enbug.org>
9308         * fs/reiserfs.c (grub_reiserfs_get_key_v2_type): Handle endianness
9309         correctly.
9310         (grub_reiserfs_get_key_offset): Likewise.
9311         (grub_reiserfs_set_key_offset): Likewise.
9312         (grub_reiserfs_set_key_type): Likewise.
9313         (grub_reiserfs_iterate_dir): Return 1 if found, otherwise 0.
9315         (GRUB_REISERFS_KEYV2_BITFIELD): Undefined. Probably it would be
9316         better to remove the bitfield version completely.
9318 2008-01-06  Yoshinori K. Okuji  <okuji@enbug.org>
9320         * fs/reiserfs.c (grub_reiserfs_iterate_dir): ENTRY_ITEM must be
9321         allocated from the heap, due to the fshelp implementation.
9322         (grub_reiserfs_dir): Free NODE, due to the same reason.
9324 2008-01-06  Yoshinori K. Okuji  <okuji@enbug.org>
9326         Mostly from Vincent Pelletier:
9328         * fs/reiserfs.c: New file.
9330         * conf/common.rmk (pkglib_MODULES): Added reiserfs.mod.
9331         (reiserfs_mod_SOURCES): New variable.
9332         (reiserfs_mod_CFLAGS): Likewise.
9333         (reiserfs_mod_LDFLAGS): Likewise.
9335         * DISTLIST: Added boot/i386/pc/lnxboot.S, commands/hexdump.c,
9336         disk/ata.c, fs/cpio.c, fs/ntfscomp.c, fs/reiserfs.c,
9337         include/grub/ntfs.h, include/grub/i386/pc/machine.h, and
9338         normal/color.c.
9340 2008-01-06  Robert Millan  <rmh@aybabtu.com>
9342         * normal/color.c: Remove `<grub/env.h>'.
9344 2008-01-05  Jeroen Dekkers  <jeroen@dekkers.cx>
9346         * include/grub/normal.h: Include <grub/env.h>.
9348 2008-01-05  Robert Millan  <rmh@aybabtu.com>
9350         * util/i386/pc/grub-setup.c (usage): Replace obsolete `(hd0,0)' in
9351         usage example with `(hd0,1)'.
9352         Reported by Samuel Thibault.
9354 2008-01-05  Robert Millan  <rmh@aybabtu.com>
9356         * kern/i386/loader.S (grub_linux_is_bzimage): New variable.
9357         (grub_linux_boot_zimage): Rename to ...
9358         (grub_linux_boot): ... this.
9359         (grub_linux_boot_bzimage): Merge with `grub_linux_boot_zimage'.
9360         (grub_linux_boot_zimage): Conditionalize zImage copy.
9362         * include/grub/i386/loader.h (grub_linux_is_bzimage): Add prototype.
9363         (grub_linux_boot_bzimage): Remove prototype.
9364         (grub_linux_boot_zimage): Rename to ...
9365         (grub_linux_boot): ... this.
9367         * loader/i386/pc/linux.c (big_linux): Replace with `grub_linux_is_bzimage'.
9368         (grub_linux_boot): Remove function.
9370 2008-01-05  Robert Millan  <rmh@aybabtu.com>
9372         * include/grub/normal.h (grub_env_write_color_normal): New prototype.
9373         (grub_env_write_color_highlight): Likewise.
9374         (grub_wait_after_message): Likewise.
9376         * normal/color.c: New file.
9378         * conf/i386-pc.rmk (grub_emu_SOURCES): Add `normal/color.c'.
9379         (normal_mod_DEPENDENCIES): Likewise.
9381         * conf/i386-efi.rmk (grub_emu_SOURCES): Add `normal/color.c'.
9382         (normal_mod_DEPENDENCIES): Likewise.
9384         * conf/i386-linuxbios.rmk (grub_emu_SOURCES): Add `normal/color.c'.
9385         (normal_mod_DEPENDENCIES): Likewise.
9387         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add `normal/color.c'.
9388         (normal_mod_DEPENDENCIES): Likewise.
9390         * normal/menu_entry.c (run): Rely on grub_wait_after_message()
9391         for waiting after a message is printed.
9392         * normal/main.c (read_config_file): Likewise.
9393         (grub_normal_init): Register grub_env_write_color_normal() and
9394         grub_env_write_color_highlight() hooks.  Mark `color_normal' and
9395         `color_highlight' variables as global.
9397         * normal/menu.c (grub_wait_after_message): New function.
9398         (grub_color_menu_normal): New variable.  Replaces ...
9399         (GRUB_COLOR_MENU_NORMAL): ... this macro.
9400         (grub_color_menu_highlight): New variable.  Replaces ...
9401         (GRUB_COLOR_MENU_HIGHLIGHT): ... this macro.
9402         (draw_border): Set color state to `GRUB_TERM_COLOR_NORMAL' instead of
9403         `GRUB_TERM_COLOR_STANDARD'.
9404         (print_message): Use `grub_setcolorstate' to reload colors.  Rename
9405         `normal_code' and `highlight_code' to `old_color_normal' and
9406         `old_color_highlight', respectively.
9407         (grub_menu_init_page): Update colors when drawing the menu, based on
9408         `menu_color_normal' and `menu_color_highlight' variables.
9409         (grub_menu_run): Rely on grub_wait_after_message() for waiting after
9410         a message is printed.
9412 2008-01-05  Robert Millan  <rmh@aybabtu.com>
9414         * kern/env.c (grub_env_context_open): Propagate hooks for global
9415         variables to new context.
9417         * kern/main.c (grub_set_root_dev): Export `root' variable.
9419 2008-01-05  Robert Millan  <rmh@aybabtu.com>
9421         * util/biosdisk.c (get_os_disk): Check for devfs-style IDE and SCSI
9422         discs unconditionally, since udev and others have options to provide
9423         them.
9425 2008-01-05  Robert Millan  <rmh@aybabtu.com>
9427         * normal/completion.c (iterate_dir): Skip `.' and `..' directories.
9429 2008-01-04  Christian Franke  <franke@computer.org>
9431         * kern/i386/pc/init.c (grub_machine_init): Fix evaluation
9432         of eisa_mmap.
9434 2008-01-03  Pavel Roskin  <proski@gnu.org>
9436         * kern/i386/linuxbios/init.c: Put "void" to all function
9437         declarations with no arguments.
9438         * kern/powerpc/ieee1275/init.c: Likewise.
9439         * term/i386/pc/at_keyboard.c: Likewise.
9440         * term/i386/pc/vga_text.c: Likewise.
9441         * util/grub-mkdevicemap.c: Likewise.
9443 2008-01-02  Robert Millan  <rmh@aybabtu.com>
9445         * loader/i386/pc/multiboot.c (grub_multiboot_load_elf32): Improve error
9446         message when loaded image is out of bounds.
9447         (grub_multiboot_load_elf64): Likewise.
9449 2008-01-02  Pavel Roskin  <proski@gnu.org>
9451         * util/grub.d/10_linux.in: Try version without ".old" when
9452         looking for initrd.  It's better to use initrd from the newer
9453         kernel of the same version than no initrd at all.
9455 2008-01-01  Robert Millan  <rmh@aybabtu.com>
9457         * util/biosdisk.c (get_os_disk): Fix check for IDE or SCSI discs.
9459 2008-01-01  Vesa Jaaskelainen  <chaac@nic.fi>
9461         * include/grub/video.h: Added grub_video_unmap_color and
9462         grub_video_get_active_render_target.
9463         (grub_video_adapter): Added unmap_color and get_active_render_target.
9465         * video/video.c: Added grub_video_unmap_color and
9466         grub_video_get_active_render_target.
9467         (grub_video_get_info): Changed method to accept NULL pointer as an
9468         argument to allow detection of active video adapter.
9470         * video/i386/pc/vbe.c: Renamed grub_video_vbe_unmap_color as
9471         grub_video_vbe_unmap_color_int.
9472         Added grub_video_vbe_unmap_color and
9473         grub_video_vbe_get_active_render_target.
9474         (grub_video_vbe_adapter): Added unmap_color and
9475         get_active_render_target.
9477         * video/i386/pc/vbeblit.c: Replaced grub_video_vbe_unmap_color usage
9478         with grub_video_vbe_unmap_color_int.
9480         * term/gfxterm.c (DEFAULT_STANDARD_COLOR): Added.
9481         (DEFAULT_NORMAL_COLOR): Likewise.
9482         (DEFAULT_HIGHLIGHT_COLOR) Likewise.
9483         (DEFAULT_FG_COLOR): Removed.
9484         (DEFAULT_BG_COLOR): Likewise.
9485         (DEFAULT_CURSOR_COLOR): Changed value.
9486         (grub_virtual_screen): Added standard_color_setting,
9487         normal_color_setting, highlight_color_setting and term_color.
9488         (grub_virtual_screen): Removed fg_color_setting and bg_color_setting.
9489         (bitmap_width): Added.
9490         (bitmap_height): Likewise.
9491         (bitmap): Likewise.
9492         (set_term_color): Likewise.
9493         (grub_virtual_screen_setup): Changed to use new terminal coloring
9494         settings.
9495         (grub_gfxterm_init): Added init for bitmap.
9496         (grub_gfxterm_fini): Added destroy for bitmap.
9497         (redraw_screen_rect): Updated to use background bitmap and new
9498         terminal coloring.
9499         (scroll_up): Added optimization for case when there is no bitmap.
9500         (grub_gfxterm_cls): Fixed to use correct background color.
9501         (grub_virtual_screen_setcolorstate): Changed to use new terminal
9502         coloring.
9503         (grub_virtual_screen_setcolor): Likewise.
9504         (grub_virtual_screen_getcolor): Added.
9505         (grub_gfxterm_background_image_cmd): Likewise.
9506         (grub_video_term): Added setcolor and getcolor.
9507         (MOD_INIT): Added registration of background_image command.
9508         (MOD_TERM): Added unregistration for background_image command.
9510 2007-12-30  Pavel Roskin  <proski@gnu.org>
9512         * loader/multiboot_loader.c: Fix multiboot command
9513         unregistration.  Fix all typos in the word "multiboot".
9515 2007-12-29  Pavel Roskin  <proski@gnu.org>
9517         * util/grub.d/10_linux.in: Refactor search for initrd.  Add
9518         support for initrd names used in Fedora.
9520 2007-12-26  Bean  <bean123ch@gmail.com>
9522         * conf/common.rmk (pkgdata_MODULES): Add cpio.mod.
9523         (cpio_mod_SOURCES): New variable.
9524         (cpio_mod_CFLAGS): Likewise.
9525         (cpio_mod_LDFLAGS): Likewise.
9527         * fs/cpio.c: New file.
9529         * conf/i386-pc.rmk (grub_emu_SOURCES): Add cpio.c.
9531         * conf/i386-efi.rmk (grub_emu_SOURCES): Likewise.
9533         * conf/i386-linuxbios.rmk (grub_emu_SOURCES): Likewise.
9535         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
9537 2007-12-25  Robert Millan  <rmh@aybabtu.com>
9539         * include/grub/term.h (struct grub_term): Add `getcolor' function.
9540         (grub_getcolor): New function.
9542         * kern/term.c (grub_getcolor): New function.
9543         * normal/menu.c (GRUB_COLOR_MENU_NORMAL): New macro.
9544         (GRUB_COLOR_MENU_HIGHLIGHT): New macro.
9545         (print_entry): Set normal and highlight colors to
9546         `GRUB_COLOR_MENU_NORMAL' and `GRUB_COLOR_MENU_HIGHLIGHT',
9547         respectively, before printing and restore them to old
9548         values afterwards.
9549         (grub_menu_init_page): Likewise.  Fill an additional colored space
9550         that would otherwise be left blank.
9552         * term/efi/console.c (grub_console_getcolor): New function.
9553         (struct grub_console_term.getcolor): New variable.
9554         * term/i386/pc/console.c (grub_console_getcolor): New function.
9555         (struct grub_console_term.getcolor): New variable.
9556         * term/ieee1275/ofconsole.c (grub_ofconsole_getcolor): New function.
9557         (struct grub_console_term.getcolor): New variable.
9559         * term/i386/pc/serial.c (grub_serial_setcolor): Remove function.
9560         (struct grub_console_term.setcolor): Remove variable.
9561         * term/i386/pc/vesafb.c (grub_virtual_screen_setcolor): Remove function.
9562         (struct grub_console_term.setcolor): Remove variable.
9563         * term/i386/pc/vga.c (grub_vga_setcolor): Remove function.
9564         (struct grub_console_term.setcolor): Remove variable.
9565         * term/gfxterm.c (grub_virtual_screen_setcolor): Remove function.
9566         (struct grub_console_term.setcolor): Remove variable.
9568 2007-12-25  Robert Millan  <rmh@aybabtu.com>
9570         * configure.ac: Search for possible unifont.hex locations, and
9571         define UNIFONT_HEX if found.
9573         * Makefile.in (UNIFONT_HEX): Define variable.
9574         (DATA): Rename to ...
9575         (PKGLIB): ... this.  Update all users.
9576         (PKGDATA): New variable.
9577         (pkgdata_IMAGES): Rename to ...
9578         (pkglib_IMAGES): ... this. Update all users.
9579         (pkgdata_MODULES): Rename to ...
9580         (pkglib_MODULES): ... this. Update all users.
9581         (pkgdata_PROGRAMS): Rename to ...
9582         (pkglib_PROGRAMS): ... this. Update all users.
9583         (pkgdata_DATA): Rename to ...
9584         (pkglib_DATA): ... this. Update all users.
9585         (CLEANFILES): Redefine to `$(pkglib_DATA) $(pkgdata_DATA)'.
9586         (unicode.pff, ascii.pff): New rules.
9587         (all-local): Add `$(PKGDATA)' dependency.
9588         (install-local): Process `$(PKGDATA)'.
9590         * util/update-grub_lib.in (font_path): Search for *.pff files in
9591         a few more locations, including `${pkgdata}'.
9593 2007-12-23  Robert Millan  <rmh@aybabtu.com>
9595         Patch from Bean  <bean123ch@gmail.com>:
9596         * disk/loopback.c (grub_loopback_read): Add missing bit shift to
9597         `size'.
9599 2007-12-21  Bean  <bean123ch@gmail.com>
9601         * conf/common.rmk (pkgdata_MODULES): Add ntfscomp.mod.
9602         (ntfscomp_mod_SOURCES): New variable.
9603         (ntfscomp_mod_CFLAGS): Likewise.
9604         (ntfscomp_mod_LDFLAGS): Likewise.
9606         * conf/i386-pc.rmk (grub_setup_SOURCES): Add fs/ntfscomp.c.
9607         (grub_probe_SOURCES): Likewise.
9608         (grub_emu_SOURCES): Likewise.
9610         * conf/i386-efi.rmk (grub_probe_SOURCES): Add fs/ntfscomp.c.
9611         (grub_emu_SOURCES): Likewise.
9613         * conf/i386-linuxbios.rmk (grub_probe_SOURCES): Add fs/ntfscomp.c.
9614         (grub_emu_SOURCES): Likewise.
9616         * conf/powerpc-ieee1275.rmk (grub_probe_SOURCES): Add fs/ntfscomp.c.
9617         (grub_emu_SOURCES): Likewise.
9619         * fs/ntfs.c (grub_ntfscomp_func): New variable.
9620         (read_run_list): Renamed to grub_ntfs_read_run_list.
9621         (decomp_nextvcn): Moved to ntfscomp.c.
9622         (decomp_getch): Likewise.
9623         (decomp_get16): Likewise.
9624         (decomp_block): Likewise.
9625         (read_block): Likewise.
9626         (read_data): Partially moved to ntfscomp.c.
9627         (fixup): Change unsigned to grub_uint16_t.
9628         (read_mft): Change unsigned long to grub_uint32_t.
9629         (read_attr): Likewise.
9630         (read_data): Likewise.
9631         (read_run_data): Likewise.
9632         (read_run_list): Likewise.
9633         (read_mft): Likewise.
9635         * fs/ntfscomp.c: New file.
9637         * include/grub/ntfs.h: New file.
9639 2007-12-16  Robert Millan  <rmh@aybabtu.com>
9641         * util/grub-mkdevicemap.c (make_device_map): Iterate up to 20 for
9642         IDE disk check, since Linux is known to support 20 IDE disks.
9643         Reported by Colin Watson.
9645 2007-12-15  Bean  <bean123ch@gmail.com>
9647         * conf/i386-pc.rmk (pkgdata_IMAGES): Add lnxboot.img.
9648         (lnxboot_img_SOURCES): New variable.
9649         (lnxboot_img_ASFLAGS): Likewise.
9650         (lnxboot_img_LDFLAGS): Likewise.
9652         * boot/i386/pc/lnxboot.S: New file.
9654 2007-11-24  Pavel Roskin  <proski@gnu.org>
9656         * configure.ac: Test if '--build-id=none' is supported by the
9657         linker.  If yes, add it to TARGET_LDFLAGS.  Build ID causes
9658         objcopy to generate incorrect binary files (binutils
9659         2.17.50.0.18-1 as shipped by Fedora 8).
9660         * aclocal.m4 (grub_PROG_OBJCOPY_ABSOLUTE): Use LDFLAGS when
9661         linking, so that build ID doesn't break the test.
9663 2007-11-24  Pavel Roskin  <proski@gnu.org>
9665         * include/grub/i386/time.h: use "void" in the argument list
9666         of grub_cpu_idle().
9667         * include/grub/powerpc/time.h: Likewise.
9668         * include/grub/sparc64/time.h: Likewise.
9670 2007-11-18  Christian Franke  <franke@computer.org>
9672         * util/console.c (grub_ncurses_getkey): Change curses KEY_* mapping,
9673         now return control chars instead of GRUB_CONSOLE_KEY_* constants.
9674         This fixes the problem that function keys did not work in grub-emu.
9676 2007-11-18  Christian Franke  <franke@computer.org>
9678         * disk/host.c (grub_host_open): Remove attribute unused from
9679         name parameter. Add check for "host". This fixes the problem
9680         that grub-emu does not find partitions.
9682 2007-11-18  Christian Franke  <franke@computer.org>
9684         * util/hostfs.c (is_dir): New function.
9685         (grub_hostfs_dir):  Handle missing dirent.d_type case.
9686         (grub_hostfs_read): Add missing fseek().
9687         (grub_hostfs_label): Clear label pointer.  This fixes a crash
9688         of grub-emu on "ls (host)".
9690 2007-11-18  Christian Franke  <franke@computer.org>
9692         * include/grub/i386/pc/init.h (struct grub_machine_mmap_entry):
9693         Add attribute packed, gcc 3.4.4 on Cygwin aligns this
9694         to 64 bit boundary by default.
9696 2007-11-18  Bean  <bean123ch@gmail.com>
9698         * conf/common.rmk (pkgdata_MODULES): Add hexdump.mod.
9699         (hexdump_mod_SOURCES): New variable.
9700         (hexdump_mod_CFLAGS): Likewise.
9701         (hexdump_mod_LDFLAGS): Likewise.
9703         * conf/i386-pc.rmk (grub_emu_SOURCES): Add command/hexdump.c.
9705         * conf/i386-efi.rmk (grub_emu_SOURCES): Add command/hexdump.c.
9707         * conf/i386-linuxbios.rmk (grub_emu_SOURCES): Add command/hexdump.c.
9709         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add command/hexdump.c.
9711         * include/grub/hexdump.h: New file.
9713         * commands/hexdump.c: New file.
9715 2007-11-10  Robert Millan  <rmh@aybabtu.com>
9717         * commands/i386/pc/play.c (beep_off): Switch order of arguments
9718         in grub_outb() calls.
9719         (beep_on): Likewise.
9721 2007-11-10  Christian Franke  <franke@computer.org>
9723         * normal/menu.c (run_menu): Check for empty menu to avoid crash.
9724         (grub_menu_run): Likewise.
9726 2007-11-10  Robert Millan  <rmh@aybabtu.com>
9728         * include/grub/i386/efi/machine.h: New file.
9729         * include/grub/i386/linuxbios/machine.h: Likewise.
9730         * include/grub/i386/pc/machine.h: Likewise.
9731         * include/grub/powerpc/ieee1275/machine.h: Likewise.
9732         * include/grub/sparc64/ieee1275/machine.h: Likewise.
9734         * term/i386/pc/serial.c: Include <grub/machine/machine.h>.
9735         (serial_hw_io_addr): New variable.
9736         (serial_hw_get_port): Obtain port address from `serial_hw_io_addr'
9737         instead of `(unsigned short *) 0x400'.
9739 2007-11-10  Bean  <bean123ch@gmail.com>
9741         * fs/ntfs.c (read_block): Fix a bug caused by adjacent blocks.
9743 2007-11-10  Vesa Jaaskelainen  <chaac@nic.fi>
9745         * conf/i386-pc.rmk (pkgdata_MODULES): Added vga.mod.
9746         (vga_mod_SOURCES): Added.
9747         (vga_mod_CFLAGS): Likewise.
9748         (vga_mod_LDFLAGS): Likewise.
9750         * term/i386/pc/vga.c (get_map_mask): Switch order of arguments in
9751         grub_outb() calls.
9752         (set_map_mask): Likewise.
9753         (set_read_map): Likewise.
9754         (set_read_address): Likewise.
9755         (vga_font): Removed variable.
9756         (get_vga_glyph): Removed function.
9757         (invalidate_char): Likewise.
9758         (write_char): Changed to use grub_font_get_glyph() for font
9759         information.
9760         (grub_vga_putchar): Likewise.
9761         (grub_vga_getcharwidth): Likewise.
9763 2007-11-10  Vesa Jaaskelainen  <chaac@nic.fi>
9765         * conf/i386-pc.rmk (boot_img_LDFLAGS): Use COMMON_LDFLAGS for target
9766         flags.
9767         (pxeboot_img_LDFLAGS): Likewise.
9768         (diskboot_img_LDFLAGS): Likewise.
9769         (kernel_img_LDFLAGS): Likewise.
9771 2007-11-06  Robert Millan  <rmh@aybabtu.com>
9773         * term/i386/pc/serial.c (serial_hw_put): Switch order of arguments
9774         in grub_outb() calls.
9775         (serial_hw_init): Likewise.
9777 2007-11-05  Robert Millan  <rmh@aybabtu.com>
9779         * util/update-grub.in: Allow files in ${update_grub_dir} to contain
9780         spaces.  Skip non-regular files.
9782 2007-11-05  Robert Millan  <rmh@aybabtu.com>
9784         * kern/disk.c (grub_disk_firmware_fini)
9785         (grub_disk_firmware_is_tainted): New variables.
9787         * include/grub/disk.h (grub_disk_firmware_fini)
9788         (grub_disk_firmware_is_tainted): Likewise.
9790         * disk/i386/pc/biosdisk.c (GRUB_MOD_FINI(biosdisk)): Moved from here ...
9791         (grub_disk_biosdisk_fini): ... to here.
9792         (GRUB_MOD_FINI(biosdisk)): Implement using grub_disk_biosdisk_fini().
9793         (GRUB_MOD_INIT(biosdisk)): Abort when `grub_disk_firmware_is_tainted'
9794         is set.  Register grub_disk_biosdisk_fini() in
9795         `grub_disk_firmware_fini'.
9797         * disk/ata.c: Remove `<grub/machine/biosdisk.h>'.
9798         (GRUB_MOD_INIT(ata)): Remove grub_biosdisk_fini() call.
9799         Use `grub_disk_firmware_is_tainted' and `grub_disk_firmware_fini'
9800         to finish existing firmware disk interface.
9802         * conf/i386-linuxbios.rmk (pkgdata_MODULES): Add `ata.mod'.
9803         (ata_mod_SOURCES): New variable.
9804         (ata_mod_CFLAGS): Likewise.
9805         (ata_mod_LDFLAGS): Likewise.
9807 2007-11-05  Robert Millan  <rmh@aybabtu.com>
9809         * disk/ata.c: Remove `<grub/machine/time.h>'.  Include `<grub/time.h>'.
9810         (grub_ata_wait): Reimplement using grub_millisleep().
9812         * include/grub/misc.h (grub_div_roundup): Fix parenthesization.
9813         * include/grub/i386/time.h (grub_cpu_idle): Disable `hlt' instruction.
9815 2007-11-03  Marco Gerards  <marco@gnu.org>
9817         * term/i386/pc/vga_text.c: Include <grub/cpu/io.h>.
9818         (CRTC_ADDR_PORT): New macro.
9819         (CRTC_DATA_PORT): Likewise.
9820         (CRTC_CURSOR): Likewise.
9821         (CRTC_CURSOR_ADDR_HIGH): Likewise.
9822         (CRTC_CURSOR_ADDR_LOW): Likewise.
9823         (update_cursor): New function.
9824         (grub_console_real_putchar): Call `update_cursor'.
9825         (grub_console_gotoxy): Likewise.
9826         (grub_console_cls): Set the default color when clearing the
9827         screen.
9828         (grub_console_setcursor): Implemented.
9830 2007-11-03  Marco Gerards  <marco@gnu.org>
9832         * disk/ata.c (grub_ata_pio_read): Don't wait for the command to
9833         become activate.
9834         (grub_ata_pio_write): Likewise.
9836         (grub_atapi_identify): Wait after issuing an ATA command.
9837         (grub_atapi_packet): Likewise.
9838         (grub_ata_identify): Likewise.
9839         (grub_ata_readwrite): Likewise.
9841 2007-11-03  Marco Gerards  <marco@gnu.org>
9843         * disk/ata.c (grub_ata_pio_read): Detect and return the error code.
9844         (grub_ata_pio_write): Likewise.
9845         (grub_ata_readwrite): Use `grub_error', instead of
9846         returning `grub_errno'.
9848 2007-11-03  Marco Gerards  <marco@gnu.org>
9850         * disk/ata.c (grub_ata_readwrite): Call grub_ata_pio_read and
9851         grub_ata_pio_write once for every single sector, instead of for
9852         multiple sectors.
9854 2007-10-31  Robert Millan  <rmh@aybabtu.com>
9856         * configure.ac: Add `i386-linuxbios' to the list of supported targets.
9858         * conf/i386-linuxbios.rmk: New file.
9860         * kern/i386/pc/hardware.c: Likewise.
9861         * term/i386/pc/at_keyboard.c: Likewise.
9862         * term/i386/pc/vga_text.c: Likewise.
9864         * include/grub/i386/linuxbios/boot.h: Likewise.
9865         * include/grub/i386/linuxbios/console.h: Likewise.
9866         * include/grub/i386/linuxbios/init.h: Likewise.
9867         * include/grub/i386/linuxbios/kernel.h: Likewise.
9868         * include/grub/i386/linuxbios/loader.h: Likewise.
9869         * include/grub/i386/linuxbios/memory.h: Likewise.
9870         * include/grub/i386/linuxbios/serial.h: Likewise.
9871         * include/grub/i386/linuxbios/time.h: Likewise.
9873         * kern/i386/linuxbios/init.c: Likewise.
9874         * kern/i386/linuxbios/startup.S: Likewise.
9875         * kern/i386/linuxbios/table.c: Likewise.
9877 2007-10-31  Marco Gerards  <marco@gnu.org>
9879         * conf/i386-pc.rmk (pkgdata_MODULES): Add `ata.mod'.
9880         (ata_mod_SOURCES): New variable.
9881         (ata_mod_CFLAGS): Likewise.
9882         (ata_mod_LDFLAGS): Likewise.
9884         * disk/ata.c: New file.
9886         * include/grub/disk.h (grub_disk_dev_id): Add
9887         `GRUB_DISK_DEV_ATA_ID'.
9889 2007-10-31  Robert Millan  <rmh@aybabtu.com>
9891         * include/grub/i386/pc/init.h (grub_lower_mem): Moved from here ...
9892         * include/grub/i386/pc/memory.h (grub_lower_mem): ... to here.
9894         * include/grub/i386/pc/init.h (grub_upper_mem): Moved from here ...
9895         * include/grub/i386/pc/memory.h (grub_upper_mem): ... to here.
9897         * include/grub/i386/pc/memory.h: Include `<grub/symbol.h>' and
9898         `<grub/types.h>'.
9900         * loader/i386/pc/multiboot.c: Include `<grub/machine/memory.h>'.
9902 2007-10-27  Robert Millan  <rmh@aybabtu.com>
9904         * include/grub/types.h (ULONG_MAX): Define macro.
9906 2007-10-22  Robert Millan  <rmh@aybabtu.com>
9908         * kern/i386/pc/startup.S: Remove `"kern/i386/realmode.S"'.  Include
9909         `"../realmode.S"'.
9910         Remove `"kern/i386/loader.S"'.  Include `"../loader.S"'.
9912 2007-10-22  Robert Millan  <rmh@aybabtu.com>
9914         * conf/i386-pc.rmk (kernel_img_SOURCES): Remove `disk/i386/pc/biosdisk.c'.
9915         (pkgdata_MODULES): Add `biosdisk.mod'.
9916         (biosdisk_mod_SOURCES, biosdisk_mod_CFLAGS, biosdisk_mod_LDFLAGS): New
9917         variables.
9919         * disk/i386/pc/biosdisk.c: Include `<grub/dl.h>'.
9920         (grub_biosdisk_init): Replace with ...
9921         (GRUB_MOD_INIT(biosdisk)): ... this.
9922         (grub_biosdisk_fini): Replace with ...
9923         (GRUB_MOD_FINI(biosdisk)): ... this.
9925         * kern/i386/pc/init.c: Remove `<grub/machine/biosdisk.h>'.
9926         (grub_machine_init): Remove call to grub_biosdisk_init().
9927         (grub_machine_fini): Remove call to grub_machine_fini().
9929         * util/i386/pc/grub-install.in (modules): Add `biosdisk'.
9931 2007-10-22  Robert Millan  <rmh@aybabtu.com>
9933         * include/grub/time.h: New file.
9934         * include/grub/i386/time.h: Likewise.
9935         * include/grub/powerpc/time.h: Likewise.
9936         * include/grub/sparc64/time.h: Likewise.
9938         * include/grub/i386/pc/time.h (KERNEL_TIME_HEADER): Rename all
9939         instances to ...
9940         (KERNEL_MACHINE_TIME_HEADER): ... this.
9941         * include/grub/powerpc/ieee1275/time.h (KERNEL_TIME_HEADER): Rename all
9942         instances to ...
9943         (KERNEL_MACHINE_TIME_HEADER): ... this.
9944         * include/grub/sparc64/ieee1275/time.h (KERNEL_TIME_HEADER): Rename all
9945         instances to ...
9946         (KERNEL_MACHINE_TIME_HEADER): ... this.
9948         * kern/i386/efi/init.c: Include `<grub/time.h>'.
9949         (grub_millisleep): New function.
9950         * kern/i386/pc/init.c: Include `<grub/time.h>'.
9951         (grub_millisleep): New function.
9952         * kern/powerpc/ieee1275/init.c: Include `<grub/time.h>'.
9953         Remove `grub/machine/time.h' include.
9954         (grub_millisleep): New function.
9955         * kern/sparc64/ieee1275/init.c: Include `<grub/time.h>'.
9956         Remove `grub/machine/time.h' include.
9957         (grub_millisleep): New function.
9959         * include/grub/misc.h (grub_div_roundup): New function.
9961         * kern/misc.c: Include `<grub/time.h>'.
9962         (grub_millisleep_generic): New function.
9964         * conf/i386-efi.rmk (kernel_mod_HEADERS): Remove `i386/efi/time.h'.
9965         Add `time.h'.
9966         * conf/i386-pc.rmk (kernel_img_HEADERS): Remove `machine/time.h'.
9967         Add `time.h'.
9968         * conf/powerpc-ieee1275.rmk (kernel_elf_HEADERS): Remove
9969         `machine/time.h'.  Add `time.h'.
9970         * conf/sparc64-ieee1275.rmk (kernel_elf_HEADERS): Likewise.
9972 2007-10-21  Robert Millan  <rmh@aybabtu.com>
9974         * include/grub/misc.h (grub_max): New function.
9976 2007-10-21  Robert Millan  <rmh@aybabtu.com>
9978         * util/misc.c (grub_util_info): Call fflush() before returning.
9980 2007-10-20  Robert Millan  <rmh@aybabtu.com>
9982         * genmk.rb (Image): Copy `extra_flags' from here ...
9983         (PModule): ... to here.  Use it in `#{obj}: #{src}' rule.
9985         * commands/i386/cpuid.c (grub_cmd_cpuid): Add __attribute__ ((unused))
9986         to `argc' and `args' arguments.
9988 2007-10-17  Robert Millan  <rmh@aybabtu.com>
9990         * kern/i386/loader.S: New file.
9992         * kern/i386/pc/startup.S (grub_linux_prot_size): Moved from here ...
9993         * kern/i386/loader.S (grub_linux_prot_size)... to here.
9994         * kern/i386/pc/startup.S (grub_linux_tmp_addr): Moved from here ...
9995         * kern/i386/loader.S (grub_linux_tmp_addr)... to here.
9996         * kern/i386/pc/startup.S (grub_linux_real_addr): Moved from here ...
9997         * kern/i386/loader.S (grub_linux_real_addr)... to here.
9998         * kern/i386/pc/startup.S (grub_linux_boot_zimage): Moved from here ...
9999         * kern/i386/loader.S (grub_linux_boot_zimage)... to here.
10000         * kern/i386/pc/startup.S (grub_linux_boot_bzimage): Moved from here ...
10001         * kern/i386/loader.S (grub_linux_boot_bzimage)... to here.
10002         * kern/i386/pc/startup.S (grub_multiboot_real_boot): Moved from here ...
10003         * kern/i386/loader.S (grub_multiboot_real_boot)... to here.
10004         * kern/i386/pc/startup.S (grub_multiboot2_real_boot): Moved from here ...
10005         * kern/i386/loader.S (grub_multiboot2_real_boot)... to here.
10007         * kern/i386/realmode.S: New file.
10009         * kern/i386/pc/startup.S (protstack): Moved from here ...
10010         * kern/i386/realmode.S (protstack)... to here.
10011         * kern/i386/pc/startup.S (gdt): Moved from here ...
10012         * kern/i386/realmode.S (gdt)... to here.
10013         * kern/i386/pc/startup.S (prot_to_real): Moved from here ...
10014         * kern/i386/realmode.S (prot_to_real)... to here.
10016         * kern/i386/pc/startup.S: Include `kern/i386/loader.S' and
10017         `kern/i386/realmode.S'.
10019 2007-10-17  Robert Millan  <rmh@aybabtu.com>
10021         * include/grub/i386/loader.h: New file.
10023         * include/grub/i386/pc/loader.h (grub_linux_prot_size)
10024         (grub_linux_tmp_addr, grub_linux_real_addr, grub_os_area_addr)
10025         (grub_os_area_size, grub_linux_boot_zimage, grub_linux_boot_bzimage)
10026         (grub_multiboot_real_boot, grub_multiboot2_real_boot)
10027         (grub_rescue_cmd_linux, grub_rescue_cmd_initrd): Moved from here ...
10028         * include/grub/i386/loader.h (grub_linux_prot_size)
10029         (grub_linux_tmp_addr, grub_linux_real_addr, grub_os_area_addr)
10030         (grub_os_area_size, grub_linux_boot_zimage, grub_linux_boot_bzimage)
10031         (grub_multiboot_real_boot, grub_multiboot2_real_boot)
10032         (grub_rescue_cmd_linux, grub_rescue_cmd_initrd): ... to here.
10034         * include/grub/i386/pc/loader.h: Include `grub/cpu/loader.h'.
10036 2007-10-15  Robert Millan  <rmh@aybabtu.com>
10038         * normal/misc.c (grub_normal_print_device_info): Do not probe for
10039         filesystem when dev->disk is unset.
10040         Do probe for filesystem even when dev->disk->has_partitions is set.
10041         In case a filesystem is found, always report it.
10042         In case it isn't, if dev->disk->has_partitions is set, report that
10043         a partition table was found instead of reporting that no filesystem
10044         could be identified.
10046 2007-10-12  Robert Millan  <rmh@aybabtu.com>
10048         * conf/powerpc-ieee1275.rmk (grub_mkimage_SOURCES): Replace reference
10049         to util/powerpc/ieee1275/grub-mkimage.c with util/elf/grub-mkimage.c.
10051         * include/grub/types.h (grub_host_to_target16): New macro.
10052         (grub_host_to_target32): Likewise.
10053         (grub_host_to_target64): Likewise.
10054         (grub_target_to_host16): Likewise.
10055         (grub_target_to_host32): Likewise.
10056         (grub_target_to_host64): Likewise.
10058         * include/grub/powerpc/ieee1275/kernel.h (GRUB_IEEE1275_MOD_ALIGN):
10059         Renamed from to ...
10060         (GRUB_MOD_ALIGN): ...this.  Update all users.
10062         * util/elf/grub-mkimage.c (load_note): Replace grub_cpu_to_be32 with
10063         grub_host_to_target32.
10064         Replace grub_be_to_cpu32 with grub_target_to_host32.
10065         (load_modules): Likewise.
10066         (add_segments): Replace grub_be_to_cpu16 with grub_target_to_host16.
10067         Replace grub_be_to_cpu32 with grub_target_to_host32.
10068         Replace grub_cpu_to_be16 with grub_host_to_target16.
10069         Replace grub_cpu_to_be32 grub_host_to_target32.
10071 2007-10-12  Robert Millan  <rmh@aybabtu.com>
10073         * util/powerpc/ieee1275/grub-mkimage.c: Moved to ...
10074         * util/elf/grub-mkimage.c: ... here.
10076         * DISTLIST: Add `util/elf/grub-mkimage.c'.  Remove
10077         `util/powerpc/ieee1275/grub-mkimage.c'.
10079 2007-10-07  Robert Millan  <rmh@aybabtu.com>
10081         * kern/powerpc/ieee1275/init.c: Rename HEAP_LIMIT to HEAP_MAX_ADDR,
10082         and make it easier to figure out.
10083         Add HEAP_MIN_SIZE and HEAP_MAX_ADDR definitions.
10084         (grub_claim_heap): Use HEAP_MAX_ADDR rather than taking a parameter.
10085         Do not avoid claiming a region above HEAP_MAX_ADDR if that would
10086         leave us with less than HEAP_MIN_SIZE total heap.
10087         Avoid our total amount of heap to surpass HEAP_MAX_SIZE.
10089 2007-10-03  Robert Millan  <rmh@aybabtu.com>
10091         * include/grub/i386/io.h: New file.
10092         * commands/i386/pc/play.c (inb): Removed.
10093         (outb): Removed.
10094         Include grub/cpu/io.h.  Replace inb() with grub_inb() and outb()
10095         with grub_outb().
10096         * term/i386/pc/serial.c  (inb): Removed.
10097         (outb): Removed.
10098         Include grub/cpu/io.h.  Replace inb() with grub_inb() and outb()
10099         with grub_outb().
10100         * term/i386/pc/vga.c  (inb): Removed.
10101         (outb): Removed.
10102         Include grub/cpu/io.h.  Replace inb() with grub_inb() and outb()
10103         with grub_outb().
10105 2007-10-02  Robert Millan  <rmh@aybabtu.com>
10107         * conf/i386-efi.rmk (grub_emu_SOURCES): Add util/hostfs.c.
10108         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
10109         Reported by Marcin Kurek.
10111 2007-09-07  Robert Millan  <rmh@aybabtu.com>
10113         * kern/powerpc/ieee1275/cmain.c (grub_ieee1275_test_flag): Detect
10114         SmartFirmware version updates (as released by Sven Luther), and avoid
10115         setting GRUB_IEEE1275_FLAG_NO_PARTITION_0 or
10116         GRUB_IEEE1275_FLAG_0_BASED_PARTITIONS unless the running version is
10117         known broken.
10119 2007-09-03  Yoshinori K. Okuji  <okuji@enbug.org>
10121         From Hitoshi Ozeki:
10122         * kern/i386/pc/init.c (compact_mem_regions): Decrease NUM_REGIONS
10123         when merging two regions.
10125 2007-09-03  Yoshinori K. Okuji  <okuji@enbug.org>
10127         * kern/rescue.c (grub_enter_rescue_mode): Free ARGS.
10128         * normal/completion.c (grub_normal_do_completion): Likewise.
10129         Reported by Hitoshi Ozeki.
10131 2007-09-03  Yoshinori K. Okuji  <okuji@enbug.org>
10133         Do not use devices at boot in chainloading.
10135         * loader/i386/pc/chainloader.c (boot_drive): New variable.
10136         (boot_part_addr): Likewise.
10137         (grub_chainloader_boot): Simply call grub_chainloader_real_boot
10138         with BOOT_DRIVE and BOOT_PART_ADDR.
10139         (grub_chainloader_cmd): Set BOOT_DRIVE and BOOT_PART_ADDR.
10140         Reported by Hitoshi Ozeki <h-ozeki@ck2.so-net.ne.jp>.
10142 2007-08-29  Robert Millan  <rmh@aybabtu.com>
10144         Patch from Simon Peter <dn.tlp@gmx.net>:
10145         * genmk.rb (Utility): Append $(#{src}_DEPENDENCIES) to #{obj} targets.
10146         * conf/i386-pc.rmk: Replace grub-probe_DEPENDENCIES with
10147         util/grub-probe.c_DEPENDENCIES.  Replace grub-setup_DEPENDENCIES with
10148         util/i386/pc/grub-setup.c_DEPENDENCIES.
10149         * conf/i386-efi.rmk: Replace grub-probe_DEPENDENCIES with
10150         util/grub-probe.c_DEPENDENCIES.
10151         * conf/powerpc-ieee1275.rmk: Likewise.
10153 2007-08-28  Robert Millan  <rmh@aybabtu.com>
10155         * util/i386/get_disk_name.c: New.  Implement grub_util_get_disk_name()
10156         to tell grub-mkdevicemap how to name devices.
10157         * util/ieee1275/get_disk_name.c: Likewise (using "ofpathname -a"
10158         feature).
10160         * conf/i386-efi.rmk (grub_mkdevicemap_SOURCES): Add
10161         util/i386/get_disk_name.c.
10162         * conf/i386-pc.rmk (grub_mkdevicemap_SOURCES): Likewise.
10163         * conf/powerpc-ieee1275.rmk (grub_mkdevicemap_SOURCES): Add
10164         util/ieee1275/get_disk_name.c.
10166         * include/grub/util/misc.h: grub_util_get_disk_name() declaration.
10168         * DISTLIST: Add util/i386/get_disk_name.c and
10169         util/ieee1275/get_disk_name.c.
10171         * util/grub-mkdevicemap.c: Replace device naming logic with
10172         grub_util_get_disk_name() calls.
10174 2007-08-20  Robert Millan  <rmh@aybabtu.com>
10176         * normal/menu.c (run_menu): Refer to seconds as "s" not "seconds"
10177         (so that it works for both plural and singular quantities).
10179 2007-08-05  Robert Millan  <rmh@aybabtu.com>
10181         * util/grub.d/10_linux.in (test_gt): Strip out vmlinu[xz]- prefix
10182         so that [xz] isn't taken into account when determining order.
10184 2007-08-02  Marco Gerards  <marco@gnu.org>
10186         * DISTLIST: Add `disk/host.c', `fs/ntfs.c', `include/multiboot.h',
10187         `include/multiboot2.h', `include/grub/elfload.h',
10188         `include/multiboot.h', `include/grub/multiboot.h',
10189         `include/grub/multiboot_loader.h', `include/grub/multiboot2.h',
10190         `include/grub/i386/pc/biosdisk.h', `include/grub/util/biosdisk.h',
10191         `kern/elf.c', `loader/multiboot_loader.c',
10192         `loader/multiboot_loader_normal.c', `loader/multiboot2.c',
10193         `loader/i386/pc/multiboot2.c',
10194         `loader/powerpc/ieee1275/multiboot2.c', `util/hostfs.c' and
10195         `util/i386/pc/grub-mkrescue.in'.  Remove
10196         `include/grub/biosdisk.h', `include/grub/i386/pc/multiboot.h',
10197         `include/grub/i386/pc/util/biosdisk.h' and
10198         `include/grub/powerpc/ieee1275/multiboot.h'.
10200 2007-08-02  Bean  <bean123ch@gmail.com>
10202         * conf/common.rmk (pkgdata_MODULES): Add ntfs.mod.
10203         (ntfs_mod_SOURCES): New variable.
10204         (ntfs_mod_CFLAGS): Likewise.
10205         (ntfs_mod_LDFLAGS): Likewise.
10207         * conf/i386-pc.rmk (grub_setup_SOURCES): Add fs/ntfs.c.
10208         (grub_probe_SOURCES): Likewise.
10209         (grub_emu_SOURCES): Likewise.
10211         * conf/i386-efi.rmk (grub_probe_SOURCES): Add fs/ntfs.c.
10212         (grub_emu_SOURCES): Likewise.
10214         * conf/powerpc-ieee1275.rmk (grub_probe_SOURCES): Add fs/ntfs.c.
10215         (grub_emu_SOURCES): Likewise.
10217         * conf/misc.c (grub_utf16_to_utf8): Fix unicode conversion bug.
10219         * fs/ntfs.c: New file.
10221 2007-08-02  Bean  <bean123ch@gmail.com>
10223         * disk.h (grub_disk): Use NESTED_FUNC_ATTR.
10225         * file.h (grub_file): Likewise.
10227         * fshelp.h (grub_fshelp_read_file): Likewise.
10229         * util/i386/pc/grub-setup.c (setup): Likewise.
10230         (save_first_sector): Likewise.
10231         (save_blocklists): Likewise.
10233         * fs/affs.c (grub_affs_read_file): Likewise.
10235         * fs/ext2.c (grub_ext2_read_file): Likewise.
10237         * fs/fat.c (grub_fat_read_data): Likewise.
10239         * fs/fshelp.c (grub_fshelp_read_file): Likewise.
10241         * fs/hfs.c (grub_hfs_read_file): Likewise.
10243         * fs/hfsplus.c (grub_hfsplus_read_file): Likewise.
10245         * fs/jfs.c (grub_jfs_read_file): Likewise.
10247         * fs/minix.c (grub_minix_read_file): Likewise.
10249         * fs/sfs.c (grub_sfs_read_file): Likewise.
10251         * fs/ufs.c (grub_ufs_read_file): Likewise.
10253         * fs/xfs.c (grub_xfs_read_file): Likewise.
10255         * command/blocklist.c (read_blocklist): Likewise.
10256         (print_blocklist): Likewise.
10258 2007-08-02  Marco Gerards  <marco@gnu.org>
10260         * conf/i386-pc.rmk (grub_emu_SOURCES): Add `disk/host.c' and
10261         `util/hostfs.c'.
10263         * disk/host.c: New file.
10265         * util/hostfs.c: Likewise.
10267         * fs/hfsplus.c (grub_hfsplus_mount): When reading out of disk,
10268         return `GRUB_ERR_BAD_FS'.
10269         * fs/sfs.c (grub_sfs_mount): Likewise.
10270         * fs/xfs.c (grub_xfs_mount): Likewise.
10272         * include/grub/disk.h (enum grub_disk_dev_id): Add
10273         `GRUB_DISK_DEVICE_HOST_ID'.
10275         * util/grub-emu.c (main): Initialize and de-initialize hostfs.
10277 2007-07-24  Jerone Young  <jerone@gmail.com>
10279         * conf/i386-pc.rmk: Add Multiboot loader and multiboot 2 to multiboot
10280         modules for compilation.
10281         * conf/powerpc-ieee1275.rmk: Likewise.
10283         * include/multiboot.h: Move multiboot definitions to one file. Rename
10284         many definitions to not get grub specific.
10285         * include/multiboot2.h: Create header with multiboot 2 definitions.
10286         * include/grub/multiboot.h: Header for grub specific function
10287         prototypes and definitions.
10288         * include/grub/multiboot2.h: Likewise.
10289         * include/grub/multiboot_loader.h: Likewise.
10290         * include/grub/i386/pc/multiboot.h: Removed.
10291         * include/grub/powerpc/ieee1275/multiboot.h: Removed.
10293         * loader/multiboot_loader.c: Created to act as a proxy for multiboot 1
10294         and 2 to allow for one multiboot and module commands.
10295         * loader/multiboot2.c: Add multiboot2 functionality.
10296         * loader/i386/pc/multiboot.c: Modify for new multiboot header location
10297         and definition names.
10298         * loader/i386/pc/multiboot2.c: Created to add i386 specific multiboot
10299         2 functions.
10300         * loader/powerpc/ieee1275/multiboot2.c: Created to add powerpc
10301         ieee1275 specific multiboot2 code.
10303         * kern/i386/pc/startup.S: Change headers and definition names for
10304         multiboot. Add function grub_multiboot2_real_boot for multiboot 2.
10306 2007-07-22  Robert Millan  <rmh@aybabtu.com>
10308         * geninitheader.sh: Process file specified in first parameter rather
10309         than hardcoding grub_modules_init.lst.
10310         * geninit.sh: Likewise.  Also, construct header name dynamically rather
10311         than hardcoding grub_modules_init.h.
10313         * conf/common.rmk: Rename grub_modules_init.[ch] files associated with
10314         grub-emu to grub_emu_init.[ch].  Add rules to build analogous
10315         grub_probe_init.[ch] and grub_setup_init.[ch].
10317         * conf/powerpc-ieee1275.rmk (grub_emu_DEPENDENCIES): Replace
10318         grub_modules_init.h with grub_emu_init.h.
10319         (grub_probe_DEPENDENCIES, grub_probe_SOURCES): Add new
10320         grub_probe_init.[ch] files.
10321         * conf/i386-efi.rmk: Likewise.
10322         * conf/i386-pc.rmk: Likewise.
10323         (grub_setup_DEPENDENCIES, grub_setup_SOURCES): Add new
10324         grub_setup_init.[ch] files.
10326         * util/grub-emu.c: Replace grub_modules_init.h with grub_emu_init.h.
10327         * util/grub-probe.c: Include grub_probe_init.h.  Use grub_init_all()
10328         to initialize modules rather than a list of hardcoded functions.
10329         * util/i386/pc/grub-setup.c: Include grub_setup_init.h.  Use
10330         grub_init_all() to initialize modules rather than a list of hardcoded
10331         functions.
10333 2007-07-22  Robert Millan  <rmh@aybabtu.com>
10335         * kern/powerpc/ieee1275/cmain.c (grub_ieee1275_find_options): Set
10336         GRUB_IEEE1275_FLAG_NO_PARTITION_0 flag when running on SmartFirmware.
10338 2007-07-22  Robert Millan  <rmh@aybabtu.com>
10340         * include/grub/ieee1275/ieee1275.h (grub_ieee1275_flag): Add
10341         GRUB_IEEE1275_FLAG_BROKEN_OUTPUT flag.
10342         * kern/powerpc/ieee1275/cmain.c (grub_ieee1275_find_options): Set this
10343         flag when running on SmartFirmware.
10344         * term/ieee1275/ofconsole.c (grub_ofconsole_init): Avoid running
10345         "output-device output" command when GRUB_IEEE1275_FLAG_BROKEN_OUTPUT
10346         was set.
10348         * kern/powerpc/ieee1275/openfw.c (grub_ieee1275_encode_devname):
10349         Increase partno when GRUB_IEEE1275_FLAG_0_BASED_PARTITIONS flag is set,
10350         rather than decreasing it.
10352         * util/i386/pc/grub-setup.c (setup): When embedding is required, but
10353         there's not enough space to do it, fail in the same way as when it
10354         can't be done because there are no partitions.
10356         * util/powerpc/ieee1275/grub-install.in: Improve error message shown
10357         when nvsetenv failed.
10359 2007-07-22  Yoshinori K. Okuji  <okuji@enbug.org>
10361         * conf/i386-pc.rmk (CLEANFILES): Removed for grub-mkrescue,
10362         because this rule is automatically generated.
10363         (grub-mkrescue): Removed for the same reason as above.
10365 2007-07-22  Yoshinori K. Okuji  <okuji@enbug.org>
10367         Migrate to GNU General Public License Version 3.
10369         * COPYING: Replaced with the plain text version of GPLv3.
10371         * config.guess: Updated from gnulib.
10372         * config.sub: Likewise.
10374         * geninit.sh: Output a GPLv3 copyright notice.
10375         * geninitheader.sh: Likewise.
10376         * genmodsrc.sh: Likewise.
10377         * gensymlist.sh.in: Likewise.
10379         * boot/i386/pc/boot.S: Upgraded to GPLv3.
10380         * boot/i386/pc/diskboot.S: Likewise.
10381         * boot/i386/pc/pxeboot.S: Likewise.
10382         * commands/blocklist.c: Likewise.
10383         * commands/boot.c: Likewise.
10384         * commands/cat.c: Likewise.
10385         * commands/cmp.c: Likewise.
10386         * commands/configfile.c: Likewise.
10387         * commands/echo.c: Likewise.
10388         * commands/help.c: Likewise.
10389         * commands/ls.c: Likewise.
10390         * commands/search.c: Likewise.
10391         * commands/terminal.c: Likewise.
10392         * commands/test.c: Likewise.
10393         * commands/videotest.c: Likewise.
10394         * commands/i386/cpuid.c: Likewise.
10395         * commands/i386/pc/halt.c: Likewise.
10396         * commands/i386/pc/play.c: Likewise.
10397         * commands/i386/pc/reboot.c: Likewise.
10398         * commands/i386/pc/vbeinfo.c: Likewise.
10399         * commands/i386/pc/vbetest.c: Likewise.
10400         * commands/ieee1275/halt.c: Likewise.
10401         * commands/ieee1275/reboot.c: Likewise.
10402         * commands/ieee1275/suspend.c: Likewise.
10403         * disk/loopback.c: Likewise.
10404         * disk/lvm.c: Likewise.
10405         * disk/raid.c: Likewise.
10406         * disk/efi/efidisk.c: Likewise.
10407         * disk/i386/pc/biosdisk.c: Likewise.
10408         * disk/ieee1275/ofdisk.c: Likewise.
10409         * font/manager.c: Likewise.
10410         * fs/affs.c: Likewise.
10411         * fs/ext2.c: Likewise.
10412         * fs/fat.c: Likewise.
10413         * fs/fshelp.c: Likewise.
10414         * fs/hfs.c: Likewise.
10415         * fs/hfsplus.c: Likewise.
10416         * fs/iso9660.c: Likewise.
10417         * fs/jfs.c: Likewise.
10418         * fs/minix.c: Likewise.
10419         * fs/sfs.c: Likewise.
10420         * fs/ufs.c: Likewise.
10421         * fs/xfs.c: Likewise.
10422         * hello/hello.c: Likewise.
10423         * include/grub/acorn_filecore.h: Likewise.
10424         * include/grub/arg.h: Likewise.
10425         * include/grub/bitmap.h: Likewise.
10426         * include/grub/boot.h: Likewise.
10427         * include/grub/cache.h: Likewise.
10428         * include/grub/device.h: Likewise.
10429         * include/grub/disk.h: Likewise.
10430         * include/grub/dl.h: Likewise.
10431         * include/grub/elfload.h: Likewise.
10432         * include/grub/env.h: Likewise.
10433         * include/grub/err.h: Likewise.
10434         * include/grub/file.h: Likewise.
10435         * include/grub/font.h: Likewise.
10436         * include/grub/fs.h: Likewise.
10437         * include/grub/fshelp.h: Likewise.
10438         * include/grub/gzio.h: Likewise.
10439         * include/grub/hfs.h: Likewise.
10440         * include/grub/kernel.h: Likewise.
10441         * include/grub/loader.h: Likewise.
10442         * include/grub/lvm.h: Likewise.
10443         * include/grub/misc.h: Likewise.
10444         * include/grub/mm.h: Likewise.
10445         * include/grub/net.h: Likewise.
10446         * include/grub/normal.h: Likewise.
10447         * include/grub/parser.h: Likewise.
10448         * include/grub/partition.h: Likewise.
10449         * include/grub/pc_partition.h: Likewise.
10450         * include/grub/raid.h: Likewise.
10451         * include/grub/rescue.h: Likewise.
10452         * include/grub/script.h: Likewise.
10453         * include/grub/setjmp.h: Likewise.
10454         * include/grub/symbol.h: Likewise.
10455         * include/grub/term.h: Likewise.
10456         * include/grub/terminfo.h: Likewise.
10457         * include/grub/tparm.h: Likewise.
10458         * include/grub/types.h: Likewise.
10459         * include/grub/video.h: Likewise.
10460         * include/grub/efi/api.h: Likewise.
10461         * include/grub/efi/chainloader.h: Likewise.
10462         * include/grub/efi/console.h: Likewise.
10463         * include/grub/efi/console_control.h: Likewise.
10464         * include/grub/efi/disk.h: Likewise.
10465         * include/grub/efi/efi.h: Likewise.
10466         * include/grub/efi/pe32.h: Likewise.
10467         * include/grub/efi/time.h: Likewise.
10468         * include/grub/i386/linux.h: Likewise.
10469         * include/grub/i386/setjmp.h: Likewise.
10470         * include/grub/i386/types.h: Likewise.
10471         * include/grub/i386/efi/kernel.h: Likewise.
10472         * include/grub/i386/efi/loader.h: Likewise.
10473         * include/grub/i386/efi/time.h: Likewise.
10474         * include/grub/i386/pc/biosdisk.h: Likewise.
10475         * include/grub/i386/pc/boot.h: Likewise.
10476         * include/grub/i386/pc/chainloader.h: Likewise.
10477         * include/grub/i386/pc/console.h: Likewise.
10478         * include/grub/i386/pc/init.h: Likewise.
10479         * include/grub/i386/pc/kernel.h: Likewise.
10480         * include/grub/i386/pc/loader.h: Likewise.
10481         * include/grub/i386/pc/memory.h: Likewise.
10482         * include/grub/i386/pc/multiboot.h: Likewise.
10483         * include/grub/i386/pc/serial.h: Likewise.
10484         * include/grub/i386/pc/time.h: Likewise.
10485         * include/grub/i386/pc/vbe.h: Likewise.
10486         * include/grub/i386/pc/vbeblit.h: Likewise.
10487         * include/grub/i386/pc/vbefill.h: Likewise.
10488         * include/grub/i386/pc/vbeutil.h: Likewise.
10489         * include/grub/i386/pc/vga.h: Likewise.
10490         * include/grub/ieee1275/ieee1275.h: Likewise.
10491         * include/grub/ieee1275/ofdisk.h: Likewise.
10492         * include/grub/powerpc/libgcc.h: Likewise.
10493         * include/grub/powerpc/setjmp.h: Likewise.
10494         * include/grub/powerpc/types.h: Likewise.
10495         * include/grub/powerpc/ieee1275/biosdisk.h: Likewise.
10496         * include/grub/powerpc/ieee1275/console.h: Likewise.
10497         * include/grub/powerpc/ieee1275/ieee1275.h: Likewise.
10498         * include/grub/powerpc/ieee1275/kernel.h: Likewise.
10499         * include/grub/powerpc/ieee1275/loader.h: Likewise.
10500         * include/grub/powerpc/ieee1275/multiboot.h: Likewise.
10501         * include/grub/powerpc/ieee1275/time.h: Likewise.
10502         * include/grub/powerpc/ieee1275/util/biosdisk.h: Likewise.
10503         * include/grub/sparc64/libgcc.h: Likewise.
10504         * include/grub/sparc64/setjmp.h: Likewise.
10505         * include/grub/sparc64/types.h: Likewise.
10506         * include/grub/sparc64/ieee1275/console.h: Likewise.
10507         * include/grub/sparc64/ieee1275/ieee1275.h: Likewise.
10508         * include/grub/sparc64/ieee1275/kernel.h: Likewise.
10509         * include/grub/sparc64/ieee1275/time.h: Likewise.
10510         * include/grub/util/biosdisk.h: Likewise.
10511         * include/grub/util/getroot.h: Likewise.
10512         * include/grub/util/lvm.h: Likewise.
10513         * include/grub/util/misc.h: Likewise.
10514         * include/grub/util/raid.h: Likewise.
10515         * include/grub/util/resolve.h: Likewise.
10516         * io/gzio.c: Likewise.
10517         * kern/device.c: Likewise.
10518         * kern/disk.c: Likewise.
10519         * kern/dl.c: Likewise.
10520         * kern/elf.c: Likewise.
10521         * kern/env.c: Likewise.
10522         * kern/err.c: Likewise.
10523         * kern/file.c: Likewise.
10524         * kern/fs.c: Likewise.
10525         * kern/loader.c: Likewise.
10526         * kern/main.c: Likewise.
10527         * kern/misc.c: Likewise.
10528         * kern/mm.c: Likewise.
10529         * kern/parser.c: Likewise.
10530         * kern/partition.c: Likewise.
10531         * kern/rescue.c: Likewise.
10532         * kern/term.c: Likewise.
10533         * kern/efi/efi.c: Likewise.
10534         * kern/efi/init.c: Likewise.
10535         * kern/efi/mm.c: Likewise.
10536         * kern/i386/dl.c: Likewise.
10537         * kern/i386/efi/init.c: Likewise.
10538         * kern/i386/efi/startup.S: Likewise.
10539         * kern/i386/pc/init.c: Likewise.
10540         * kern/i386/pc/lzo1x.S: Likewise.
10541         * kern/i386/pc/startup.S: Likewise.
10542         * kern/ieee1275/ieee1275.c: Likewise.
10543         * kern/powerpc/cache.S: Likewise.
10544         * kern/powerpc/dl.c: Likewise.
10545         * kern/powerpc/ieee1275/cmain.c: Likewise.
10546         * kern/powerpc/ieee1275/crt0.S: Likewise.
10547         * kern/powerpc/ieee1275/init.c: Likewise.
10548         * kern/powerpc/ieee1275/openfw.c: Likewise.
10549         * kern/sparc64/cache.S: Likewise.
10550         * kern/sparc64/dl.c: Likewise.
10551         * kern/sparc64/ieee1275/init.c: Likewise.
10552         * kern/sparc64/ieee1275/openfw.c: Likewise.
10553         * loader/efi/chainloader.c: Likewise.
10554         * loader/efi/chainloader_normal.c: Likewise.
10555         * loader/i386/efi/linux.c: Likewise.
10556         * loader/i386/efi/linux_normal.c: Likewise.
10557         * loader/i386/pc/chainloader.c: Likewise.
10558         * loader/i386/pc/chainloader_normal.c: Likewise.
10559         * loader/i386/pc/linux.c: Likewise.
10560         * loader/i386/pc/linux_normal.c: Likewise.
10561         * loader/i386/pc/multiboot.c: Likewise.
10562         * loader/i386/pc/multiboot_normal.c: Likewise.
10563         * loader/powerpc/ieee1275/linux.c: Likewise.
10564         * loader/powerpc/ieee1275/linux_normal.c: Likewise.
10565         * normal/arg.c: Likewise.
10566         * normal/cmdline.c: Likewise.
10567         * normal/command.c: Likewise.
10568         * normal/completion.c: Likewise.
10569         * normal/execute.c: Likewise.
10570         * normal/function.c: Likewise.
10571         * normal/lexer.c: Likewise.
10572         * normal/main.c: Likewise.
10573         * normal/menu.c: Likewise.
10574         * normal/menu_entry.c: Likewise.
10575         * normal/misc.c: Likewise.
10576         * normal/parser.y: Likewise.
10577         * normal/script.c: Likewise.
10578         * normal/i386/setjmp.S: Likewise.
10579         * normal/powerpc/setjmp.S: Likewise.
10580         * normal/sparc64/setjmp.S: Likewise.
10581         * partmap/acorn.c: Likewise.
10582         * partmap/amiga.c: Likewise.
10583         * partmap/apple.c: Likewise.
10584         * partmap/gpt.c: Likewise.
10585         * partmap/pc.c: Likewise.
10586         * partmap/sun.c: Likewise.
10587         * term/gfxterm.c: Likewise.
10588         * term/terminfo.c: Likewise.
10589         * term/efi/console.c: Likewise.
10590         * term/i386/pc/console.c: Likewise.
10591         * term/i386/pc/serial.c: Likewise.
10592         * term/i386/pc/vesafb.c: Likewise.
10593         * term/i386/pc/vga.c: Likewise.
10594         * term/ieee1275/ofconsole.c: Likewise.
10595         * util/biosdisk.c: Likewise.
10596         * util/console.c: Likewise.
10597         * util/genmoddep.c: Likewise.
10598         * util/getroot.c: Likewise.
10599         * util/grub-emu.c: Likewise.
10600         * util/grub-mkdevicemap.c: Likewise.
10601         * util/grub-probe.c: Likewise.
10602         * util/lvm.c: Likewise.
10603         * util/misc.c: Likewise.
10604         * util/raid.c: Likewise.
10605         * util/resolve.c: Likewise.
10606         * util/update-grub.in: Likewise.
10607         * util/update-grub_lib.in: Likewise.
10608         * util/grub.d/00_header.in: Likewise.
10609         * util/grub.d/10_hurd.in: Likewise.
10610         * util/grub.d/10_linux.in: Likewise.
10611         * util/i386/efi/grub-install.in: Likewise.
10612         * util/i386/efi/grub-mkimage.c: Likewise.
10613         * util/i386/pc/grub-install.in: Likewise.
10614         * util/i386/pc/grub-mkimage.c: Likewise.
10615         * util/i386/pc/grub-mkrescue.in: Likewise.
10616         * util/i386/pc/grub-setup.c: Likewise.
10617         * util/i386/pc/misc.c: Likewise.
10618         * util/powerpc/ieee1275/grub-install.in: Likewise.
10619         * util/powerpc/ieee1275/grub-mkimage.c: Likewise.
10620         * util/powerpc/ieee1275/misc.c: Likewise.
10621         * video/bitmap.c: Likewise.
10622         * video/video.c: Likewise.
10623         * video/i386/pc/vbe.c: Likewise.
10624         * video/i386/pc/vbeblit.c: Likewise.
10625         * video/i386/pc/vbefill.c: Likewise.
10626         * video/i386/pc/vbeutil.c: Likewise.
10627         * video/readers/tga.c: Likewise.
10629 2007-07-02  Robert Millan  <rmh@aybabtu.com>
10631         * conf/i386-efi.rmk: Replace obsolete reference to
10632         util/i386/pc/biosdisk.c with util/biosdisk.c, and util/i386/pc/getroot.c
10633         with util/getroot.c.
10634         * conf/powerpc-ieee1275.rmk: Likewise.
10635         * conf/sparc64-ieee1275.rmk: Likewise.
10637         * util/grub-emu.c (main): Fix unchecked pointer handling.
10639 2007-07-02  Robert Millan  <rmh@aybabtu.com>
10641         * util/i386/efi/grub-install.in: Allow `grub_probe --target=partmap'
10642         invocation to fail, in order to support partition-less media.
10644         * util/i386/pc/grub-install.in: Likewise.
10646         * util/powerpc/ieee1275/grub-install.in: Use grub-probe to determine
10647         which fs or partmap modules are needed (akin to its sister scripts).
10649         Also use grub-probe to get rid of unportable /proc/mounts check.
10651         Print the same informational message that the other scripts do, before
10652         exiting.
10654 2007-06-23  Robert Millan  <rmh@aybabtu.com>
10656         * util/update-grub_lib.in (font_path): New function.  Determine whether
10657         a font file can be found and, if so, echo the GRUB path to it.
10659         * util/update-grub.in: Handle multiple terminals depending on user
10660         input, platform availability and font file presence.  Propagate
10661         variables of our findings to /etc/grub.d/ children.
10663         * util/grub.d/00_header.in: Handle multiple terminals, based on
10664         environment setup by update-grub.
10666 2007-06-23  Robert Millan  <rmh@aybabtu.com>
10668         * conf/i386-pc.rmk (pkgdata_MODULES): Add serial.mod.
10670 2007-06-21  Robert Millan  <rmh@aybabtu.com>
10672         * include/grub/i386/pc/kernel.h: Define GRUB_KERNEL_MACHINE_DATA_END to
10673         indicate end of data section in kernel image.
10674         * include/grub/i386/efi/kernel.h: Define GRUB_KERNEL_MACHINE_PREFIX and
10675         GRUB_KERNEL_MACHINE_DATA_END.
10677         * kern/i386/pc/startup.S: Do not initialize grub_prefix, only reserve
10678         space for it.
10679         * kern/i386/efi/startup.S: Likewise.
10681         * util/i386/pc/grub-mkimage.c: Initialize grub_prefix to /boot/grub
10682         during image generation.  Implement --prefix option to override this
10683         patch.
10684         * util/i386/efi/grub-mkimage.c: Likewise.
10686         * util/update-grub_lib.in (convert_system_path_to_grub_path): Split
10687         code to make path relative to its root into a separate function.
10689         * util/i386/pc/grub-install.in: Use newly provided
10690         make_system_path_relative_to_its_root() to convert ${grubdir}, then
10691         pass the result to grub-install --prefix.
10693 2007-06-13  Robert Millan  <rmh@aybabtu.com>
10695         * include/grub/util/misc.h: Define DEFAULT_DIRECTORY and
10696         DEFAULT_DEVICE_MAP.
10697         * util/grub-emu.c: Use above definitions from misc.h instead of
10698         defining them.
10699         * util/grub-mkdevicemap.c: Likewise.
10700         * util/i386/pc/grub-setup.c: Likewise.
10701         * util/grub-probe.c: Likewise.
10702         (probe): Abort with grub_util_error() when either
10703         grub_guess_root_device or grub_util_get_grub_dev fails.
10705 2007-06-12  Robert Millan  <rmh@aybabtu.com>
10707         * normal/command.c (grub_command_execute): Use NULL rather than 0 for
10708         "pager" assignment.
10709         * util/biosdisk.c (grub_util_biosdisk_get_grub_dev): Likewise for
10710         "pcdata".
10711         * util/grub-probe.c (probe): Likewise for "drive_name".
10713 2007-06-11  Robert Millan  <rmh@aybabtu.com>
10715         * util/i386/pc/grub-mkrescue.in: Pad both floppy images with zeroes,
10716         not just the cdrom one.
10718 2007-06-11  Robert Millan  <rmh@aybabtu.com>
10720         * util/i386/pc/grub-mkrescue.in: Add "set -e".
10721         Add --pkglibdir=DIR option to override pkglibdir.
10722         Mention --image-type=TYPE in help output.
10723         Fix --grub-mkimage (it was a no-op).
10724         Abort gracefully when no parameter is given.
10726 2007-06-11  Robert Millan  <rmh@aybabtu.com>
10728         * util/i386/pc/grub-mkrescue.in: New file.
10729         * conf/i386-pc.rmk: Add its build declarations.  Put it in bin_SCRIPTS.
10730         * Makefile.in: Handle bin_SCRIPTS.
10732 2007-06-10  Vesa Jaaskelainen  <chaac@nic.fi>
10734         * term/gfxterm.c (grub_gfxterm_init): Added support for specifying
10735         list of video modes.
10737 2007-06-06  Robert Millan  <rmh@aybabtu.com>
10739         * util/update-grub_lib.in (convert_system_path_to_grub_path): Abort if
10740         file doesn't exist, or if it is in a filesystem grub can't read.
10742         * util/update-grub.in: Set fallback for GRUB_FS check to "unknown".  Do
10743         not abort if GRUB_DRIVE could not be defined.  Rearrange generated
10744         header comment to fit in 80 columns when the variables are resolved.
10746         * util/grub.d/00_header.in: Only set root variable when GRUB_DRIVE
10747         could be identified by update-grub.  Remove redundant check for
10748         unifont.pff existence (since convert_system_path_to_grub_path now
10749         handles that).
10751 2007-06-04  Robert Millan  <rmh@aybabtu.com>
10753         * conf/i386-efi.rmk (grub_probe_SOURCES): Add partmap/apple.c.
10755         * conf/i386-pc.rmk (grub_probe_SOURCES): Likewise.
10757         * conf/powerpc-ieee1275.rmk (grub_probe_SOURCES): Add partmap/pc.c.
10759 2007-06-04  Robert Millan  <rmh@aybabtu.com>
10761         * conf/powerpc-ieee1275.rmk: Enable grub-mkdevicemap and grub-probe.
10763         * include/grub/partition.h: Declare grub_apple_partition_map_init and
10764         grub_apple_partition_map_fini.
10766         * util/biosdisk.c
10767         (grub_util_biosdisk_open): Replace BLKGETSIZE with BLKGETSIZE64 (needed
10768         to access >2 TiB disks).
10770         Print disk->total_sectors with %llu instead of %lu, since this
10771         variable is always 64-bit (prevents wrong disk size from being displayed
10772         on either >2 TiB disk or big-endian CPU).
10774         (grub_util_biosdisk_get_grub_dev): Convert gpt_partition_map handling
10775         into a generic case that supports all (sane) partition maps.
10777         Stop using grub_cpu_to_le32() on dos_part / bsd_part since it actually
10778         breaks big-endian.
10780         * util/grub-probe.c: Call grub_apple_partition_map_init() before probe()
10781         and grub_apple_partition_map_fini() after that.
10783 2007-06-01  Robert Millan  <rmh@aybabtu.com>
10785         * util/update-grub.in: Export GRUB_CMDLINE_LINUX.
10787         * util/grub.d/00_header.in: Only enable gfxterm when
10788         convert_system_path_to_grub_path() succeeds.
10790 2007-05-20  Robert Millan  <rmh@aybabtu.com>
10792         * util/update-grub_lib.in: New file.
10793         * DISTLIST: Add update-grub_lib.in.
10794         * conf/common.rmk: Generate update-grub_lib and install it in
10795         $(lib_DATA).
10796         * Makefile.in: Add install routine for $(lib_DATA).
10798         * util/grub.d/00_header.in: Use convert_system_path_to_grub_path()
10799         function provided by update-grub_lib to support arbitrary paths of
10800         unifont.pff.
10801         * util/update-grub.in: Use convert_system_path_to_grub_path() to
10802         initialize GRUB_DRIVE_BOOT and GRUB_DRIVE_BOOT_GRUB variables.
10804 2007-05-19  Robert Millan  <rmh@aybabtu.com>
10806         * commands/i386/cpuid.c: New module.
10807         * DISTLIST: Add it.
10808         * conf/i386-efi.rmk: Enable cpuid.mod.
10809         * conf/i386-pc.rmk: Likewise.
10811 2007-05-18  Jeroen Dekkers  <jeroen@dekkers.cx>
10813         * kern/disk.c (grub_disk_read): Check return value of
10814         grub_realloc().
10816 2007-05-18  Jeroen Dekkers  <jeroen@dekkers.cx>
10818         * util/getroot.c (grub_util_get_grub_dev): Support partitionable
10819         arrays.
10820         * disk/raid.c (grub_raid_open): Likewise.
10822 2007-05-17  Jeroen Dekkers  <jeroen@dekkers.cx>
10824         * util/biosdisk.c (linux_find_partition): Allocate real_dev on the
10825         stack instead of on the heap.
10827         * kern/disk.c (grub_disk_read): Make sure tmp_buf is big enough
10828         before doing a read on it.
10830         * configure.ac: Only use -fno-stack-protector for the target
10831         environment.
10833 2007-05-17  Jeroen Dekkers  <jeroen@dekkers.cx>
10835         * video/i386/pc/vbe.c (grub_video_vbe_create_render_target): Add
10836         __attribute_ ((unused)) to mode_type argument.
10838         * util/getroot.c (grub_guess_root_device): Fix #endif.
10840         * kern/misc.c (memcmp): Fix prototype.
10842         * include/grub/partition.h [GRUB_UTIL]
10843         (grub_gpt_partition_map_init): Add prototype.
10844         (grub_gpt_partition_map_fini): Likewise.
10846         * fs/jfs.c (struct grub_jfs_inode): Put __attribute__ ((packed)
10847         at the right place.
10849         * fs/fat.c (grub_fat_mount): Replace ~0UL with ~0U.
10850         (grub_fat_read_data): Likewise.
10851         (grub_fat_find_dir): Likewise.
10853         * font/manager.c (find_glyph): Make table a const.
10854         (grub_font_get_glyph): Remove bitmap from if statement.
10856 2007-05-16  Jeroen Dekkers  <jeroen@dekkers.cx>
10858         * util/getroot.c (grub_guess_root_device): Remove RAID and LVM
10859         code, first search for device in /dev/mapper, then in /dev.
10860         (grub_util_get_grub_dev): New function.
10861         * include/grub/util/getroot.h (grub_util_get_grub_dev): Add
10862         prototype.
10863         * util/grub-probe.c (probe): Remove check for RAID, call
10864         grub_util_get_grub_dev() instead of
10865         grub_util_biosdisk_get_grub_dev().
10866         * util/grub-emu.c (main): Call grub_util_get_grub_dev() instead of
10867         grub_util_biosdisk_get_grub_dev().
10868         * util/i386/pc/grub-setup.c (main): Likewise.
10870 2007-05-16  Robert Millan  <rmh@aybabtu.com>
10872         * DISTLIST: Update for the latest changes.
10873         * conf/i386-pc.rmk: Use the new paths for util/getroot.c,
10874         util/grub-mkdevicemap.c, util/grub-probe.c and util/biosdisk.c.
10875         * util/grub-emu.c: Replace grub/i386/pc/util/biosdisk.h with
10876         grub/util/biosdisk.h.
10877         * util/i386/pc/grub-setup.c: Replace grub/machine/util/biosdisk.h with
10878         grub/util/biosdisk.h.
10880 2007-05-16  Robert Millan  <rmh@aybabtu.com>
10882         * util/grub.d/00_header.in: Set default gfxmode to `640x480'.
10884 2007-05-16  Robert Millan  <rmh@aybabtu.com>
10886         * util/i386/efi/grub-install.in: New.
10887         * conf/i386-efi.rmk: Enable grub-mkdevicemap, grub-probe and the
10888         newly added grub-install.
10889         * util/biosdisk.c: Remove unnecessary grub/machine/biosdisk.h
10890         include.
10891         * util/getroot.c: Replace grub/i386/pc/util/biosdisk.h with
10892         grub/util/biosdisk.h.
10893         * util/grub-probe.c: Replace grub/machine/util/biosdisk.h with
10894         grub/util/biosdisk.h.
10896 2007-05-16  Robert Millan  <rmh@aybabtu.com>
10898         * include/grub/i386/pc/util/biosdisk.h: Moved to ...
10899         * include/grub/util/biosdisk.h: ... here.
10900         * util/i386/pc/biosdisk.c: Moved to ...
10901         * util/biosdisk.c: ... here.
10902         * util/i386/pc/getroot.c: Moved to ...
10903         * util/getroot.c: ... here.
10904         * util/i386/pc/grub-mkdevicemap.c: Moved to ...
10905         * util/grub-mkdevicemap.c: ... here.
10906         * util/i386/pc/grub-probe.c: Moved to ...
10907         * util/grub-probe.c: ... here.
10909 2007-05-15  Robert Millan  <rmh@aybabtu.com>
10911         * util/update-grub.in: Remove duplicated line in grub.cfg header
10912         message.
10914 2007-05-13  Robert Millan  <rmh@aybabtu.com>
10916         * util/update-grub.in: Fix a few assumptions about the devices holding
10917         /, /boot and /boot/grub being the same.
10918         * util/grub.d/00_header.in: Likewise.
10919         * util/grub.d/10_hurd.in: Likewise.
10920         * util/grub.d/10_linux.in: Likewise.
10922         * util/grub.d/10_linux.in: Implement Linux image sorting with arbitrary
10923         patterns.  Use that to define the `.old' suffix as older than `'.
10925         * util/grub.d/00_header.in: Set default gfxmode to `800x600x16'.
10927         * util/update-grub.in: Add a reference to ${sysconfdir}/default/grub in
10928         the grub.cfg header message.
10930 2007-05-11  Robert Millan  <rmh@aybabtu.com>
10932         * util/update-grub.in: Create device.map if it doesn't already exist,
10933         before attempting to run grub-probe.
10934         Check for grub-probe and grub-mkdevicemap with the same code
10935         grub-install is using.
10936         Remove test mode.
10938 2007-05-09  Jeroen Dekkers  <jeroen@dekkers.cx>
10940         * Makefile.in: Add the datarootdir autoconf variable.
10942 2007-05-09  Robert Millan  <rmh@aybabtu.com>
10944         * util/i386/pc/grub-probe.c (probe): When detecting partition map,
10945         fail gracefully if dev->disk->partition == NULL.
10947 2007-05-07  Robert Millan  <rmh@aybabtu.com>
10949         * util/i386/pc/grub-probe.c: Add `grub-probe -t partmap' parameter to
10950         determine partition map module.
10951         * util/i386/pc/grub-install.in: Use this feature to decide which
10952         partition module to load, instead of hardcoding pc and gpt.
10954 2007-05-07  Robert Millan  <rmh@aybabtu.com>
10956         * Makefile.in: Fix assumption that $(srcdir) has a trailing slash when
10957         source directory differs from build directory.
10959 2007-05-05  Robert Millan  <rmh@aybabtu.com>
10961         * util/powerpc/ieee1275/grub-install.in: Fix syntax error in pkglibdir
10962         initialisation.
10964 2007-05-05  Robert Millan  <rmh@aybabtu.com>
10966         * util/update-grub.in: Create ${grub_prefix} if it doesn't exist.
10968 2007-05-05  Robert Millan  <rmh@aybabtu.com>
10970         * util/grub.d/10_linux.in: Allow the administrator to insert Linux
10971         command-line arguments via ${GRUB_CMDLINE_LINUX}.
10973 2007-05-05  Robert Millan  <rmh@aybabtu.com>
10975         * conf/i386-pc.rmk (grub_setup_SOURCES): Add partmap/gpt.c.
10976         (grub_probe_SOURCES): Likewise.
10977         * util/i386/pc/biosdisk.c (grub_util_biosdisk_get_grub_dev): Detect
10978         GPT and initialize dos_part and bsd_part accordingly.
10979         * util/i386/pc/grub-setup.c (setup): Ditto for install_dos_part and
10980         install_bsd_part.
10981         (main): Activate gpt module for use during partition identification,
10982         and deactivate it afterwards.
10983         * util/i386/pc/grub-install.in: Add gpt module to core.img.
10984         * util/i386/pc/grub-probe.c (main): Activate gpt module for use during
10985         partition identification, and deactivate it afterwards.
10987 2007-05-05  Robert Millan  <rmh@aybabtu.com>
10989         * term/i386/pc/console.c (grub_console_fini): Call
10990         grub_term_set_current() before grub_term_unregister().
10992 2007-05-04  Robert Millan  <rmh@aybabtu.com>
10994         * DISTLIST: Add util/update-grub.in, util/grub.d/00_header.in,
10995         util/grub.d/10_hurd.in, util/grub.d/10_linux.in and util/grub.d/README.
10996         * Makefile.in: Build update-grub_SCRIPTS.  Install update-grub_SCRIPTS
10997         and update-grub_DATA.
10998         * conf/common.rmk: Build and install update-grub components.
10999         * conf/common.mk: Regenerate.
11000         * util/update-grub.in: New.  Core of update-grub.
11001         * util/grub.d/00_header.in: New.  Generates grub.cfg header.
11002         * util/grub.d/10_hurd.in: New.  Generates boot entries for the Hurd.
11003         * util/grub.d/10_linux.in: New.  Generates boot entries for Linux.
11004         * util/grub.d/README: New.  Document grub.d directory layout.
11006 2007-05-01  Robert Millan  <rmh@aybabtu.com>
11008         * util/grub-emu.c: Move initialization functions
11009         grub_util_biosdisk_init() and grub_init_all() before
11010         grub_util_biosdisk_get_grub_dev(), which relies on them.
11012 2007-04-19  Robert Millan  <rmh@aybabtu.com>
11014         * util/powerpc/ieee1275/grub-install.in: Initialize ${bindir}, since
11015         it is used later.
11017 2007-04-18  Jerone Young  <jerone@gmail.com>
11019         * kernel/elf.c: Add missing parenthesis for conditional statement
11020         stanza.
11022 2007-04-10  Jerone Young  <jerone@gmail.com>
11024         * util/i386/pc/getroot.c: Update so that if root device is /dev/root ,
11025         continue on and look for device node with real device name.
11027 2007-04-10  Jerone Young  <jerone@gmail.com>
11029         * configure.ac: Add argument for autoconf to use transformation
11030         ability.
11031         * Makefile.in: Add autoconf package transformation code.
11032         * util/i386/pc/grub-install.in: Likewise.
11033         * util/powerpc/ieee1275/grub-install.in: Likewise.
11035 2007-03-19  Yoshinori K. Okuji  <okuji@enbug.org>
11037         * fs/ext2.c (EXT2_GOOD_OLD_REVISION): New macro.
11038         (EXT2_GOOD_OLD_INODE_SIZE): Likewise.
11039         (EXT2_REVISION): Likewise.
11040         (EXT2_INODE_SIZE): Likewise.
11041         (struct grub_ext2_block_group): Added a missing member
11042         "used_dirs".
11043         (grub_ext2_read_inode): Divide by the inode size in a superblock
11044         instead of 128 to obtain INODES_PER_BLOCK.
11045         Use the macro EXT2_INODE_SIZE instead of directly using
11046         SBLOCK->INODE_SIZE.
11048 2007-03-18  Yoshinori K. Okuji  <okuji@enbug.org>
11050         * fs/ext2.c (grub_ext2_read_inode): Use the inode size in a
11051         superblock instead of the structure size to compute an
11052         offset. This fixes the problem that GRUB could not read a
11053         filesystem when inode size is different from 128-byte.
11055 2007-03-05  Marco Gerards  <marco@gnu.org>
11057         * normal/main.c (read_config_file): When "menu" is not set, create
11058         an initial context.
11060 2007-02-21  Hollis Blanchard  <hollis@penguinppc.org>
11062         * kern/powerpc/ieee1275/init.c (HEAP_SIZE): Removed.
11063         (HEAP_LIMIT): New macro.
11064         (grub_claim_heap): Claim memory up to `heaplimit'.
11066 2007-02-21  Hollis Blanchard  <hollis@penguinppc.org>
11068         * conf/powerpc-ieee1275.rmk (kernel_elf_LDFLAGS): Link at 64KB.
11069         * kern/powerpc/ieee1275/init.c (_end): Add declaration.
11070         (_start): Likewise.
11071         (grub_arch_modules_addr): Return address after `_end'.
11072         * util/powerpc/ieee1275/grub-mkimage.c: Include grub/misc.h.
11073         (load_modules): Use new parameter as `p_paddr' and `p_vaddr'.
11074         (add_segments): Calculate `_end' from phdr size and location.
11075         (ALIGN_UP): Moved to ...
11076         * include/grub/misc.h: here.
11077         * include/grub/powerpc/ieee1275/kernel.h (GRUB_IEEE1275_MOD_ALIGN):
11078         New macro.
11079         (GRUB_IEEE1275_MODULE_BASE): Removed.
11081 2007-02-20  Hollis Blanchard  <hollis@penguinppc.org>
11083         * kern/powerpc/ieee1275/openfw.c (grub_available_iterate): Correct
11084         loop boundary.
11086 2007-02-20  Hollis Blanchard  <hollis@penguinppc.org>
11088         * include/grub/elfload.h (grub_elf32_load_hook_t): Return grub_err_t.
11089         All users updated.
11090         (grub_elf64_load_hook_t): Likewise.
11091         * kern/elf.c: Call `grub_error_push' before `grub_error'. Improve
11092         debug output.
11094 2007-02-20  Hollis Blanchard  <hollis@penguinppc.org>
11096         * kern/mm.c: Update copyright.
11097         (grub_mm_debug): Correct syntax error.
11098         (grub_mm_dump_free): New function.
11099         (grub_debug_free): Call `grub_free'.
11100         * include/grub/mm.h: Update copyright.
11101         (grub_mm_dump_free): Add declaration.
11103 2007-02-12  Hollis Blanchard  <hollis@penguinppc.org>
11105         * include/grub/ieee1275/ieee1275.h: Update copyright.
11106         * kern/powerpc/ieee1275/init.c: Likewise.
11107         * kern/powerpc/ieee1275/openfw.c: Likewise.
11109         * loader/powerpc/ieee1275/linux.c: Likewise.
11110         * include/grub/elfload.h: Likewise.
11111         * kern/elf.c: Likewise.
11112         (grub_elf32_load): Pass `base' and `size' parameters.  Update all
11113         callers.
11114         (grub_elf64_load): Likewise.
11115         (grub_elf32_load_segment): Move to a nested function.
11116         (grub_elf64_load_segment): Likewise.
11118 2007-02-12  Hollis Blanchard  <hollis@penguinppc.org>
11120         * include/grub/ieee1275/ieee1275.h (grub_available_iterate): New
11121         prototype.
11122         * kern/powerpc/ieee1275/init.c (grub_heap_start): Removed.
11123         (grub_heap_len): Likewise.
11124         (HEAP_SIZE): New macro.
11125         (grub_claim_heap): New function.
11126         (grub_machine_init): Don't claim heap directly.  Call
11127         `grub_claim_heap'.
11128         * kern/powerpc/ieee1275/openfw.c: Include alloca.h.
11129         (grub_available_iterate): New function.
11131 2007-02-03  Thomas Schwinge  <tschwinge@gnu.org>
11133         * aclocal.m4 (grub_CHECK_STACK_PROTECTOR): New definition.
11134         * configure.ac: Use it for testing the HOST and TARGET compilers.
11136 2006-12-13  Thomas Schwinge  <tschwinge@gnu.org>
11138         * Makefile.in (enable_grub_emu): New variable.
11139         * configure.ac (--enable-grub-emu): New option.
11140         Do the checks for (n)curses only if `--enable-grub-emu' is requested.
11141         * conf/i386-efi.rmk (sbin_UTILITIES): Add `grub-emu' only if requested.
11142         * conf/i386-pc.rmk: Likewise.
11143         * conf/powerpc-ieee1275.rmk: Likewise.
11144         * conf/sparc64-ieee1275.rmk (bin_UTILITIES): Likewise.
11146 2006-12-12  Marco Gerards  <marco@gnu.org>
11148         * include/grub/err.h (grub_err_t): Add `GRUB_ERR_MENU'.
11150         * kern/env.c (grub_env_unset): Don't free the member `value' when
11151         the type is GRUB_ENV_VAR_DATA, in this case it's a user defined
11152         pointer.
11154         * normal/main.c (current_menu): Removed.
11155         (free_menu): Unset the `menu' environment variable.
11156         (grub_normal_menu_addentry): Make use of the environment variable
11157         `menu', instead of using the global `current_menu'.  Allocate
11158         memory for the sourcecode of this entry.
11159         (read_config_file): New argument `nested', changed all callers.
11160         Only in the case of a new context, initialize a new menu.  Set the
11161         `menu' environment variable.
11162         (grub_normal_execute): Don't set and unset the environment
11163         variable `menu' here anymore.  Only free the menu when leaving the
11164         context.
11166         * util/i386/pc/biosdisk.c (linux_find_partition): Fixed a memory
11167         leak.
11169 2006-12-11  Marco Gerards  <marco@gnu.org>
11171         * normal/menu_entry.c (run): Fix off by one bug so the last line
11172         is executed.  Move the loader check to outside the loop.
11174 2006-12-08  Hollis Blanchard  <hollis@penguinppc.org>
11176         * kern/powerpc/ieee1275/cmain.c (cmain): Mark r3 and r4 as `UNUSED'.
11178 2006-11-25  Yoshinori K. Okuji  <okuji@enbug.org>
11180         * util/i386/pc/grub-mkimage.c (generate_image): Fix the offset of
11181         the number of sectors.  Reported by Andrey Shuvikov
11182         <mr_hyro@yahoo.com>.
11184 2006-11-11  Jeroen Dekkers  <jeroen@dekkers.cx>
11186         * kern/disk.c (grub_disk_read): When there is a read error, always
11187         try to read only the necessary data.
11189         * conf/i386-pc.rmk (grub_probe_SOURCES): Add disk/lvm.c and
11190         disk/raid.c.
11191         * include/grub/disk.h [GRUB_UTIL] (grub_raid_init): New
11192         prototype.
11193         [GRUB_UTIL] (grub_raid_fini): Likewise.
11194         [GRUB_UTIL] (grub_lvm_init): Likewise.
11195         [GRUB_UTIL] (grub_lvm_fini): Likewise.
11196         * util/i386/pc/grub-probe.c (probe): Check whether DEVICE_NAME is
11197         RAID device and copy DEVICE_NAME to DRIVE_NAME in that case.
11198         (main): Call grub_raid_init(), grub_lvm_init(), grub_lvm_fini()
11199         and grub_raid_fini().
11201 2006-11-09  Jeroen Dekkers  <jeroen@dekkers.cx>
11203         * include/grub/types.h (__unused): Rename to UNUSED.
11204         * kern/elf.c (grub_elf32_size): Use UNUSED instead of __unused.
11205         (grub_elf64_size): Likewise.
11207 2006-11-03  Hollis Blanchard  <hollis@penguinppc.org>
11209         * kern/elf.c (grub_elf_file): Call grub_file_seek. Call
11210         grub_error_push and grub_error_pop in the error-handling path.
11211         (grub_elf32_load_segment): Only call grub_file_read with non-zero
11212         length.
11214 2006-11-03  Hollis Blanchard  <hollis@penguinppc.org>
11216         * conf/i386-efi.rmk (grub_emu_SOURCES): Add kern/elf.c.
11217         * conf/i386-pc.rmk (grub_emu_SOURCES): Likewise.
11218         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
11219         (kernel_elf_SOURCES): Likewise.
11220         * conf/i386-efi.rmk (kernel_mod_HEADERS): Add elfload.h and cache.h.
11221         * conf/i386-pc.rmk (kernel_mod_HEADERS): Likewise.
11222         * conf/powerpc-ieee1275.rmk (kernel_elf_HEADERS): Likewise.
11223         * conf/sparc64-ieee1275.rmk (kernel_elf_HEADERS): Likewise.
11224         * conf/common.rmk (pkgdata_MODULES): Add elf.mod.
11225         (elf_mod_SOURCES): New variable.
11226         (elf_mod_CFLAGS): Likewise.
11227         (elf_mod_LDFLAGS): Likewise.
11228         * include/grub/types.h (__unused): New macro.
11229         * include/grub/elfload.h: New file.
11230         * kern/elf.c: Likewise.
11231         * loader/powerpc/ieee1275/linux.c: Include elfload.h.
11232         (ELF32_LOADMASK): New macro.
11233         (ELF64_LOADMASK): Likewise.
11234         (vmlinux): Removed.
11235         (grub_linux_load32): New function.
11236         (grub_linux_load64): Likewise.
11237         (grub_rescue_cmd_linux): Call grub_linux_load32 or grub_linux_load64.
11238         Use grub_elf_t instead of grub_file_t.
11240 2006-11-02  Hollis Blanchard  <hollis@penguinppc.org>
11242         * kern/ieee1275/ieee1275.c (grub_ieee1275_set_color): Add
11243         `catch_result' to struct set_color_args.
11245 2006-10-28  Yoshinori K. Okuji  <okuji@enbug.org>
11247         * normal/menu.c: Include grub/script.h.
11248         * normal/menu_entry.c: Likewise.
11249         * include/grub/normal.h: Do not include grub/script.h.
11251 2006-10-27  Hollis Blanchard  <hollis@penguinppc.org>
11253         * kern/disk.c (grub_disk_read): Correct debug printf formatting.
11255 2006-10-27  Hollis Blanchard  <hollis@penguinppc.org>
11257         * kern/disk.c (grub_disk_open): Print debug messages when opening a
11258         disk.
11259         (grub_disk_close): Print debug messages when closing a disk.
11260         (grub_disk_read): Print debug messages when disk read fails.
11261         * kern/fs.c (grub_fs_probe): Print debug messages when detecting
11262         filesystem type.
11263         * kern/partition.c: Include misc.h.
11264         (grub_partition_iterate): Print debug messages when detecting
11265         partition type.
11267 2006-10-27  Hollis Blanchard  <hollis@penguinppc.org>
11269         * disk/ieee1275/ofdisk.c (grub_ofdisk_read): Return error if `status'
11270         is negative.
11271         * kern/ieee1275/ieee1275.c (IEEE1275_IHANDLE_INVALID): Change to 0.
11273 2006-10-26  Hollis Blanchard  <hollis@penguinppc.org>
11275         * kern/powerpc/ieee1275/openfw.c (grub_ieee1275_encode_devname):
11276         Reverse GRUB_IEEE1275_FLAG_0_BASED_PARTITIONS test.
11278 2006-10-25  Jeroen Dekkers  <jeroen@dekkers.cx>
11280         * disk/lvm.c (grub_lvm_scan_device): Malloc sizeof(*lv) bytes
11281         instead of sizeof(lv). Patch by Michael Guntsche.
11283 2006-10-18  Jeroen Dekkers  <jeroen@dekkers.cx>
11285         * disk/lvm.c: Rename VGS to VG_LIST.
11286         (grub_lvm_iterate): Change VGS->LV to VG-LV.
11287         (grub_lvm_open): Likewise.
11288         Thanks to Michael Guntsche for finding this bug.
11290 2006-10-15  Yoshinori K. Okuji  <okuji@enbug.org>
11292         * configure.ac (AC_INIT): Bumped to 1.95.
11294 2006-10-14  Robert Millan  <rmh@aybabtu.com>
11296         * util/i386/pc/getroot.c (grub_guess_root_device): Don't compare os_dev
11297         with "/dev/.static/dev/md".
11299 2006-10-14  Yoshinori K. Okuji  <okuji@enbug.org>
11301         * util/i386/pc/grub-probe.c (probe): Print DEVICE_NAME instead of
11302         DRIVE_NAME when grub_util_biosdisk_get_grub_dev fails. Open
11303         DRIVE_NAME instead of DEVICE_NAME. Make sure that DEVICE_NAME and
11304         DRIVE_NAME are always freed.
11306         * util/i386/pc/biosdisk.c (make_device_name): Add one into
11307         DOS_PART, as a DOS partition is counted from one instead of zero
11308         now. Reported by Robert Millan.
11310 2006-10-14  Robert Millan  <rmh@aybabtu.com>
11312         * util/i386/pc/getroot.c (grub_guess_root_device): Stop using
11313         grub_util_biosdisk_get_grub_dev to convert system device to GRUB device.
11314         * util/grub-emu.c (main): Use grub_util_biosdisk_get_grub_dev with the
11315         string returned by grub_guess_root_device.
11316         * util/i386/pc/grub-setup.c: Likewise.
11317         * util/i386/pc/grub-probefs.c: Likewise.
11319         * util/i386/pc/grub-probefs.c: Rename to ...
11320         * util/i386/pc/grub-probe.c: ... this.
11321         * DISTLIST: Remove grub-probefs, add grub-probe.
11322         * conf/i386-efi.rmk: Likewise.
11323         * conf/i386-pc.rmk: Likewise.
11324         * util/i386/pc/grub-install.in: Likewise.
11326         * util/i386/pc/grub-probe.c: Add --target=(fs|device|drive) option to
11327         choose which information we want to print.
11329 2006-10-14  Yoshinori K. Okuji  <okuji@enbug.org>
11331         * DISTLIST: Added commands/echo.c, disk/lvm.c, disk/raid.c,
11332         include/grub/bitmap.h, include/grub/lvm.h, include/grub/raid.h,
11333         include/grub/i386/pc/vbeutil.h, include/grub/util/lvm.h,
11334         include/grub/util/raid.h, util/lvm.c, util/raid.c, video/bitmap.c,
11335         video/readers/tga.c and video/i386/pc/vbeutil.c.
11337 2006-10-14  Jeroen Dekkers  <jeroen@dekkers.cx>
11339         Added support for RAID and LVM.
11341         * disk/lvm.c: New file.
11342         * disk/raid.c: Likewise.
11343         * include/grub/lvm.h: Likewise.
11344         * include/grub/raid.h: Likewise.
11345         * include/grub/util/lvm.h: Likewise.
11346         * include/grub/util/raid.h: Likewise.
11347         * util/lvm.c: Likewise.
11348         * util/raid.c: Likewise.
11350         * include/grub/disk.h (grub_disk_dev_id): Add
11351         GRUB_DISK_DEVICE_RAID_ID and GRUB_DISK_DEVICE_LVM_ID.
11352         (grub_disk_get_size): New prototype.
11353         * kern/disk.c (grub_disk_open): Check whether grub_partition_probe()
11354         returns a partition.
11355         (grub_disk_get_size): New function.
11357         * kern/i386/pc/init.c (make_install_device): Copy the prefix
11358         verbatim if grub_install_dos_part is -2.
11360         * util/i386/pc/getroot.c (grub_guess_root_device): Support RAID
11361         and LVM devices.
11363         * util/i386/pc/grub-setup.c (setup): New argument
11364         MUST_EMBED. Force embedding of GRUB when the argument is
11365         true. Close FILE before returning.
11366         (main): Add support for RAID and LVM.
11368         * conf/common.rmk: Add RAID and LVM modules.
11369         * conf/i386-pc.rmk (grub_setup_SOURCES): Add util/raid.c and
11370         util/lvm.c.
11371         (grub_emu_SOURCES): Add disk/raid.c and disk/lvm.c.
11373         * kern/misc.c (grub_strstr): New function.
11374         * include/grub/misc.h (grub_strstr): New prototype.
11376 2006-10-10  Tristan Gingold  <tristan.gingold@bull.net>
11378         * include/grub/efi/api.h (GRUB_EFI_ERROR_CODE): Long constant.
11380 2006-10-05  Tristan Gingold  <tristan.gingold@bull.net>
11382         * kern/misc.c (grub_strtoull): Guess the base only if not
11383         specified.
11385 2006-10-01  Hollis Blanchard  <hollis@penguinppc.org>
11387         * kern/powerpc/ieee1275/cmain.c (cmain): Remove incomplete Old World
11388         PowerMac support.
11390 2006-10-01  Hollis Blanchard  <hollis@penguinppc.org>
11392         * disk/ieee1275/ofdisk.c (grub_ofdisk_iterate): Cast `size' to long.
11394         * include/grub/ieee1275/ieee1275.h (grub_ieee1275_next_property):
11395         Remove `flags' argument.  All callers changed.
11396         * kern/ieee1275/ieee1275.c (IEEE1275_PHANDLE_ROOT): Removed.
11397         (IEEE1275_IHANDLE_INVALID): New variable.
11398         (IEEE1275_CELL_INVALID): New variable.
11399         (grub_ieee1275_finddevice, grub_ieee1275_get_property,
11400         grub_ieee1275_get_property_length, grub_ieee1275_instance_to_package,
11401         grub_ieee1275_package_to_path, grub_ieee1275_instance_to_path,
11402         grub_ieee1275_peer, grub_ieee1275_child, grub_ieee1275_open,
11403         grub_ieee1275_claim, grub_ieee1275_set_property): Error-check return
11404         codes from Open Firmware.  All callers updated.
11405         (grub_ieee1275_next_property): Directly return Open Firmware return
11406         code.
11407         * kern/powerpc/ieee1275/cmain.c (grub_ieee1275_find_options):
11408         Standardize error checking from `grub_ieee1275_get_property'.
11409         * kern/powerpc/ieee1275/openfw.c (grub_devalias_iterate): Rename
11410         `devalias' to `aliases'.  Correct comments.  Consolidate error paths.
11412 2006-10-01  Hollis Blanchard  <hollis@penguinppc.org>
11414         * kern/ieee1275/ieee1275.c (grub_ieee1275_instance_to_path): Rename
11415         `instance_to_package_args' to `instance_to_path_args'.
11417         * kern/powerpc/ieee1275/init.c (grub_machine_init): Use
11418         `grub_ieee1275_chosen'.
11420         * term/ieee1275/ofconsole.c (grub_ofconsole_init): Call
11421         `grub_ieee1275_interpret'.
11423 2006-09-25  Hollis Blanchard  <hollis@penguinppc.org>
11425         * util/powerpc/ieee1275/grub-mkimage.c: Include config.h.
11427 2006-09-25  Hollis Blanchard  <hollis@penguinppc.org>
11429         * include/grub/powerpc/libgcc.h (__floatdisf): New prototype.
11430         (__cmpdi): Likewise.
11432         * kern/powerpc/ieee1275/openfw.c (grub_devalias_iterate): Pass 0 as
11433         `flags' to `grub_ieee1275_next_property'.  Change `pathlen' to type
11434         `grub_ssize_t'.
11436         * kern/powerpc/ieee1275/cmain.c: Include grub/misc.h.
11438         * loader/powerpc/ieee1275/linux.c (grub_linux_boot): Change `actual'
11439         to type `grub_ssize_t'.
11440         (grub_rescue_cmd_linux): Cast -1 to `grub_off_t'.
11442 2006-09-22  Marco Gerards  <marco@gnu.org>
11444         * normal/script.c (grub_script_create_cmdmenu): Skip leading
11445         newlines.
11447 2006-09-22  Marco Gerards  <marco@gnu.org>
11449         * commands/echo.c: New file.
11451         * conf/i386-pc.rmk (grub_emu_SOURCES): Add `commands/echo.c'.
11453         * conf/common.rmk (echo_mod_SOURCES): New variable.
11454         (echo_mod_CFLAGS): Likewise.
11455         (echo_mod_LDFLAGS): Likewise.
11457 2006-09-22  Marco Gerards  <marco@gnu.org>
11459         * normal/main.c (get_line): Malloc memory instead of using
11460         preallocated memory.  Removed the arguments `cmdline' and
11461         `max_len'.  Updated all callers.
11463 2006-09-22  Marco Gerards  <marco@gnu.org>
11465         * conf/i386-efi.rmk (grub_emu_DEPENDENCIES): New variable.
11466         (normal_mod_DEPENDENCIES): Likewise.
11468         * conf/powerpc-ieee1275.rmk (grub_emu_DEPENDENCIES): Likewise.
11469         (normal_mod_DEPENDENCIES): Likewise.
11471         * conf/sparc64-ieee1275.rmk (normal_mod_DEPENDENCIES): Likewise.
11473 2006-09-22  Johan Rydberg  <jrydberg@gnu.org>
11475         * genmk.rb: Add DEPENDENCIES variables to modules, utilities, and
11476         programs.
11477         * conf/i386-pc.rmk (grub_emu_DEPENDENCIES): Declare.
11478         (normal_mod_DEPENDENCIES): Likewise.
11479         * conf/i386-pc.mk: Regenerate.
11480         * conf/i386-efi.mk: Likewise
11481         * conf/common.mk: Likewise.
11482         * conf/powerpc-ieee1275.mk: Likewise.
11483         * conf/sparc64-ieee1275.mk: Likewise.
11485 2006-09-22  Robert Millan  <rmh@aybabtu.com>
11487         Sync with i386 version.
11488         * conf/powerpc-ieee1275.rmk (bin_UTILITIES): Remove grub-emu, add grub-mkimage.
11489         * conf/powerpc-ieee1275.rmk (sbin_UTILITIES): Remove grub-mkimage, add grub-emu.
11491 2006-09-21  Robert Millan  <rmh@aybabtu.com>
11493         Import from GRUB Legacy (lib/device.c):
11494         * util/i386/pc/grub-mkdevicemap.c (get_i2o_disk_name): New function.
11495         (init_device_map) [__linux__]: Add support for I2O devices.
11497 2006-09-14  Marco Gerards  <marco@gnu.org>
11499         * conf/i386-pc.rmk (COMMON_LDFLAGS): Use `-m32' instead of
11500         `-melf_i386'.
11502 2006-09-14  Robert Millan  <rmh@aybabtu.com>
11504         * util/i386/pc/grub-install.in: Skip menu.lst when removing
11505         /boot/grub/*.lst.
11507         * util/i386/pc/getroot.c: Don't recurse into dotdirs (e.g. ".static").
11509         * util/i386/pc/grub-mkdevicemap.c: Make sure the floppy device exists
11510         before adding it to device.map.
11512 2006-08-15  Johan Rydberg  <jrydberg@gnu.org>
11514         * genmk.rb: Let GCC generate dependencies the first time it
11515         compiles a file; using the -MD option.
11516         * conf/common.mk: Regenerate.
11517         * conf/i386-pc.mk: Likewise.
11518         * conf/i386-efi.mk: Likewise.
11519         * conf/powerpc-ieee1275.mk: Likewise.
11520         * conf/sparc64-ieee1275.mk: Likewise.
11522 2006-08-04  Yoshinori K. Okuji  <okuji@enbug.org>
11524         Move the prototypes of grub_setjmp and grub_longjmp to
11525         cpu/setjmp.h, so that each architecture may specify different
11526         attributes.
11528         * include/grub/i386/setjmp.h (grub_setjmp): New prototype.
11529         (grub_longjmp): Likewise.
11530         * include/grub/powerpc/setjmp.h (grub_setjmp): Likewise..
11531         (grub_longjmp): Likewise.
11532         * include/grub/sparc64/setjmp.h (grub_setjmp): Likewise..
11533         (grub_longjmp): Likewise.
11535         * include/grub/setjmp.h [!GRUB_UTIL] (grub_setjmp): Removed.
11536         [!GRUB_UTIL] (grub_longjmp): Removed.
11538 2006-08-01  Pelletier Vincent  <subdino2004@yahoo.fr>
11540         * kern/ieee1275/ieee1275.c (grub_ieee1275_set_color): IEEE1275
11541         "color!" method does not return any value.
11543 2006-07-29  Vesa Jaaskelainen  <chaac@nic.fi>
11545         * include/grub/bitmap.h: New file.
11547         * include/grub/i386/pc/vbeutil.h: Likewise.
11549         * video/bitmap.c: Likewise.
11551         * video/readers/tga.c: Likewise.
11553         * video/i386/pc/vbeutil.c: Likewise.
11555         * commands/videotest.c: Code cleanup and updated to reflect to new
11556         video API.
11558         * term/gfxterm.c: Likewise.
11560         * video/video.c: Likewise.
11562         * conf/i386-pc.rmk (pkgdata_MODULES): Added tga.mod and bitmap.mod.
11563         (vbe_mod_SOURCES): Added video/i386/pc/vbeutil.c.
11564         (bitmap_mod_SOURCES): New entry.
11565         (bitmap_mod_CFLAGS): Likewise.
11566         (bitmap_mod_LDFLAGS): Likewise.
11567         (tga_mod_SOURCES): Likewise.
11568         (tga_mod_CFLAGS): Likewise.
11569         (tga_mod_LDFLAGS): Likewise.
11571         * include/grub/video.h (grub_video_blit_operators): New enum type.
11572         (grub_video_render_target): Changed as forward declaration and moved
11573         actual definition to be video driver specific.
11574         (grub_video_adapter.blit_bitmap): Added blitting operator.
11575         (grub_video_adapter.blit_render_target): Likewise.
11576         (grub_video_blit_bitmap): Likewise.
11577         (grub_video_blit_render_target): Likewise.
11579         * include/grub/i386/pc/vbe.h (grub_video_render_target): Added
11580         driver specific render target definition.
11581         (grub_video_vbe_map_rgba): Added driver internal helper.
11582         (grub_video_vbe_unmap_color): Updated to use
11583         grub_video_i386_vbeblit_info.
11584         (grub_video_vbe_get_video_ptr): Likewise.
11586         * include/grub/i386/pc/vbeblit.h
11587         (grub_video_i386_vbeblit_R8G8B8A8_R8G8B8A8): Updated to use
11588         grub_video_i386_vbeblit_info.
11589         (grub_video_i386_vbeblit_R8G8B8_R8G8B8A8): Likewise.
11590         (grub_video_i386_vbeblit_index_R8G8B8A8): Likewise.
11591         (grub_video_i386_vbeblit_R8G8B8A8_R8G8B8): Likewise.
11592         (grub_video_i386_vbeblit_R8G8B8_R8G8B8): Likewise.
11593         (grub_video_i386_vbeblit_index_R8G8B8): Likewise.
11594         (grub_video_i386_vbeblit_index_index): Likewise.
11595         (grub_video_i386_vbeblit_R8G8B8X8_R8G8B8X8): New blitter function.
11596         (grub_video_i386_vbeblit_R8G8B8_R8G8B8X8): Likewise.
11597         (grub_video_i386_vbeblit_index_R8G8B8X8): Likewise.
11598         (grub_video_i386_vbeblit_blend): Added generic blitter for blend
11599         operator.
11600         (grub_video_i386_vbeblit_replace): Added generic blitter for replace
11601         operator.
11603         * video/i386/pc/vbeblit.c: Updated to reflect changes on
11604         include/grub/i386/pc/vbeblit.h.
11606         * include/grub/i386/pc/vbefill.h (grub_video_i386_vbefill_R8G8B8A8):
11607         Updated to use grub_video_i386_vbeblit_info.
11608         (grub_video_i386_vbefill_R8G8B8): Likewise.
11609         (grub_video_i386_vbefill_index): Likewise.
11610         (grub_video_i386_vbefill): Added generic filler.
11612         * video/i386/pc/vbefill.c: Updated to reflect changes on
11613         include/grub/i386/pc/vbefill.h.
11615         * video/i386/pc/vbe.c (grub_video_vbe_get_video_ptr): Updated to use
11616         grub_video_i386_vbeblit_info.
11617         (grub_video_vbe_unmap_color): Likewise.
11618         (grub_video_vbe_blit_glyph): Likewise.
11619         (grub_video_vbe_scroll): Likewise.
11620         (grub_video_vbe_draw_pixel): Removed function.
11621         (grub_video_vbe_get_pixel): Likewise.
11622         (grub_video_vbe_fill_rect): Moved all blitters to vbefill.c and
11623         updated code to use it.
11624         (common_blitter): Added common blitter for render target and bitmap.
11625         (grub_video_vbe_blit_bitmap): Updated to use common_blitter.
11626         (grub_video_vbe_blit_render_target): Likewise.
11628 2006-07-30  Johan Rydberg  <jrydberg@gnu.org>
11630         * kern/efi/efi.c (grub_efi_set_text_mode): Assume console already
11631         is in text mode if there is no console control protocol instance
11632         available.
11634 2006-07-29  Vesa Jaaskelainen  <chaac@nic.fi>
11636         * include/grub/video.h: Code cleanup.
11638         * include/grub/i386/pc/vbe.h: Likewise.
11640         * video/i386/pc/vbe.c: Likewise.
11642         * video/i386/pc/vbeblit.c: Likewise.
11644         * video/i386/pc/vbefill.c: Likewise.
11646         * video/video.c: Likewise.  Also added more comments.
11648 2006-07-29  Vesa Jaaskelainen  <chaac@nic.fi>
11650         * disk/i386/pc/biosdisk.c (struct grub_biosdisk_drp): Moved to ...
11651         (struct grub_biosdisk_dap): Likewise.
11653         * include/grub/i386/pc/biosdisk.h: ... to here.  Also corrected
11654         linkage settings for all functions.
11656 2006-07-12  Marco Gerards  <marco@gnu.org>
11658         * configure.ac (--enable-mm-debug): Fix typo.
11660         * genkernsyms.sh.in: Use proper quoting for `CC'.
11662 2006-07-02  Jeroen Dekkers  <jeroen@dekkers.cx>
11664         * conf/i386-pc.rmk (COMMON_ASFLAGS): Add "-m32".
11665         (normal_mod_ASFLAGS): Remove "-m32".
11667 2006-06-14  Yoshinori K. Okuji  <okuji@enbug.org>
11669         * util/misc.c: Include config.h.
11670         [!HAVE_MEMALIGN]: Do not include malloc.h.
11671         (grub_memalign): Use posix_memalign, if present. Then, use
11672         memalign, if present. Otherwise, emit an error.
11674         * util/grub-emu.c: Do not include malloc.h.
11676         * include/grub/util/misc.h: Include unistd.h. This is required for
11677         FreeBSD, because off_t is defined in unistd.h. Reported by Harley
11678         D. Eades III <hde@foobar-qux.org>.
11680         * configure.ac (AC_GNU_SOURCE): Added.
11681         (AC_CHECK_FUNCS): Check posix_memalign and memalign for the host
11682         type.
11684 2006-06-09  Yoshinori K. Okuji  <okuji@enbug.org>
11686         * loader/i386/pc/linux.c (grub_rescue_cmd_initrd): Make sure that
11687         ADDR_MAX does not exceed GRUB_LINUX_INITRD_MAX_ADDRESS.
11689 2006-06-07  Jeroen Dekkers  <jeroen@dekkers.cx>
11691         * include/grub/types.h (grub_host_addr_t): Rename to
11692         grub_target_addr_t.
11693         (grub_host_off_t): Rename to grub_target_off_t.
11694         (grub_host_size_t): Rename to grub_target_size_t.
11695         (grub_host_ssize_t): Rename to grub_target_ssize_t.
11696         Refer to GRUB_TARGET_SIZEOF_VOID_P to define those variables.
11698         * include/grub/kernel.h (struct grub_module_header): Change type
11699         of OFFSET to grub_target_off_t and type of SIZE to grub_target_size_t.
11700         (grub_module_info): Likewise.
11702 2006-06-05  Yoshinori K. Okuji  <okuji@enbug.org>
11704         * loader/i386/pc/linux.c (grub_rescue_cmd_initrd): The conditional
11705         of checking LINUX_MEM_SIZE was reverse. Reported by Jesus
11706         Velazquez <jesus.velazquez@gmail.com>.
11708 2006-06-05  Yoshinori K. Okuji  <okuji@enbug.org>
11710         Count partitions from 1 instead of 0 in the string representation
11711         of partitions. Still use 0-based internally.
11713         * partmap/sun.c (grub_sun_is_valid): A cosmetic change.
11714         (sun_partition_map_iterate): Use grub_partition_t instead of
11715         struct grub_partition *. Cast DESC->START_CYLINDER to
11716         grub_uint64_t after converting the endian.
11717         (sun_partition_map_probe): Subtract 1 for PARTNUM.
11718         (sun_partition_map_get_name): Add 1 to P->INDEX.
11720         * partmap/pc.c (grub_partition_parse): Subtract 1 for
11721         PCDATA->DOS_PART.
11722         (pc_partition_map_get_name): Add 1 into PCDATA->DOS_PART.
11724         * partmap/gpt.c (gpt_partition_map_iterate): Initialize PARTNO to
11725         zero instead of one.
11726         (gpt_partition_map_probe): Subtract 1 for PARTNUM.
11727         (gpt_partition_map_get_name): Add 1 into P->INDEX.
11729         * partmap/apple.c (apple_partition_map_iterate): Change the type
11730         of POS to unsigned.
11731         (apple_partition_map_probe): Subtract 1 for PARTNUM.
11732         (apple_partition_map_get_name): Add 1 into P->INDEX.
11734         * partmap/amiga.c (amiga_partition_map_iterate): Change the type
11735         of POS to unsigned.
11736         (amiga_partition_map_iterate): Cast NEXT to grub_off_t to
11737         calculate the offset of a partition.
11738         (amiga_partition_map_probe): Subtract 1 for PARTNUM.
11739         (amiga_partition_map_get_name): Add 1 into P->INDEX.
11741         * partmap/acorn.c (acorn_partition_map_find): Change the type of
11742         SECTOR to grub_disk_addr_t.
11743         (acorn_partition_map_iterate): Likewise.
11744         (acorn_partition_map_probe): Subtract 1 for PARTNUM.
11745         Change the type of SECTOR to grub_disk_addr_t. Declare P on the
11746         top.
11747         (acorn_partition_map_get_name): Add 1 into P->INDEX.
11749         * kern/i386/pc/init.c (make_install_device): Add 1 into
11750         GRUB_INSTALL_DOS_PART.
11752         * fs/iso9660.c (grub_iso9660_mount): Fixed a reversed
11753         conditional.
11755 2006-06-04  Yoshinori K. Okuji  <okuji@enbug.org>
11757         Clean up the code to support 64-bit addressing in disks and
11758         files. This change is not enough for filesystems yet.
11760         * util/i386/pc/grub-setup.c (struct boot_blocklist): Change the
11761         type of "start" to grub_uint64_t.
11762         (setup): Change the types of KERNEL_SECTOR and FIRST_SECTOR to
11763         grub_disk_addr_t * and grub_disk_addr_t. Fix the format string in
11764         save_first_sector and save_blocklists. Use grub_le_to_cpu64 to
11765         convert addresses.
11767         * util/i386/pc/biosdisk.c (open_device): Change the type of SECTOR
11768         to grub_disk_addr_t.
11770         * partmap/gpt.c (gpt_partition_map_iterate): Fix the format
11771         string.
11773         * partmap/pc.c (pc_partition_map_iterate): Likewise.
11775         * partmap/amiga.c (amiga_partition_map_iterate): Cast RDSK.MAGIC
11776         to char *.
11778         * normal/script.c (grub_script_parse): Remove unused MEMFREE.
11780         * normal/parser.y (YYLTYPE_IS_TRIVIAL): New macro.
11782         * normal/lexer.c (grub_script_yyerror): Specify unused to LEX.
11784         * loader/i386/pc/multiboot.c (grub_multiboot_load_elf64): Cast -1
11785         to grub_off_t, to detect an error from grub_file_seek.
11786         (grub_multiboot_load_elf32): Likewise.
11788         * kern/misc.c (grub_strtoul): Use grub_strtoull. Return the
11789         maximum unsigned long value when an overflow is detected.
11790         (grub_strtoull): New function.
11791         (grub_divmod64): Likewise.
11792         (grub_lltoa): use grub_divmod64.
11794         * kern/fs.c (struct grub_fs_block): Change the type of "offset" to
11795         grub_disk_addr_t.
11796         (grub_fs_blocklist_open): Increase P if P is not NULL to advance
11797         the pointer to next character. Use grub_strtoull instead of
11798         grub_strtoul.
11799         (grub_fs_blocklist_read): Change the types of SECTOR, OFFSET and
11800         SIZE to grub_disk_addr_t, grub_off_t and grub_size_t,
11801         respectively.
11803         * kern/file.c (grub_file_read): Prevent an overflow of LEN, as the
11804         return value is signed.
11805         (grub_file_seek): Change the type of OLD to grub_off_t. Do not
11806         test if OFFSET is less than zero, as OFFSET is unsigned now.
11808         * kern/disk.c (struct grub_disk_cache): Change the type of
11809         "sector" to grub_disk_addr_t.
11810         (grub_disk_cache_get_index): Change the type of SECTOR to
11811         grub_disk_addr_t. Calculate the hash with SECTOR casted to
11812         unsigned after shifting.
11813         (grub_disk_cache_invalidate): Change the type of SECTOR to
11814         grub_disk_addr_t.
11815         (grub_disk_cache_unlock): Likewise.
11816         (grub_disk_cache_store): Likewise.
11817         (grub_disk_check_range): Change the types of SECTOR, OFFSET, SIZE,
11818         START and LEN to grub_disk_addr_t *, grub_off_t *, grub_size_t,
11819         grub_disk_addr_t and grub_uint64_t, respectively.
11820         (grub_disk_read): Use an unsigned variable REAL_OFFSET for the
11821         body, as the value of OFFSET is tweaked by
11822         grub_disk_check_range. Change the types of START_SECTOR, LEN and
11823         POS to grub_disk_addr_t, grub_size_t and grub_size_t,
11824         respectively.
11825         (grub_disk_write): Use an unsigned variable REAL_OFFSET for the
11826         body, as the value of OFFSET is tweaked by
11827         grub_disk_check_range. Change the types of LEN and N to
11828         grub_size_t.
11830         * io/gzio.c (struct grub_gzio): Change the types of "data_offset"
11831         and "saved_offset" to grub_off_t.
11832         (test_header): Cast BUF to char *.
11833         (get_byte): Cast GZIO->DATA_OFFSET to grub_off_t. Cast GZIO->INBUF
11834         to char *.
11835         (grub_gzio_read): Change the types of OFFSET and SIZE to
11836         grub_off_t and grub_size_t, respectively.
11838         * include/grub/i386/pc/boot.h (GRUB_BOOT_MACHINE_FORCE_LBA):
11839         Removed.
11840         (GRUB_BOOT_MACHINE_BOOT_DRIVE): Changed to 0x4c.
11841         (GRUB_BOOT_MACHINE_KERNEL_ADDRESS): Changed to 0x40.
11842         (GRUB_BOOT_MACHINE_KERNEL_SEGMENT): Changed to 0x42.
11843         (GRUB_BOOT_MACHINE_DRIVE_CHECK): Changed to 0x4e.
11844         (GRUB_BOOT_MACHINE_LIST_SIZE): Increased to 12.
11846         * include/grub/types.h (grub_off_t): Unconditionally set to
11847         grub_uint64_t.
11848         (grub_disk_addr_t): Changed to grub_uint64_t.
11850         * include/grub/partition.h (struct grub_partition): Change the
11851         types of "start", "len" and "offset" to grub_disk_addr_t,
11852         grub_uint64_t and grub_disk_addr_t, respectively.
11853         (grub_partition_get_start): Return grub_disk_addr_t.
11854         (grub_partition_get_len): Return grub_uint64_t.
11856         * include/grub/misc.h (grub_strtoull): New prototype.
11857         (grub_divmod64): Likewise.
11859         * include/grub/fshelp.h (grub_fshelp_read_file): Change the types
11860         of SECTOR, LEN and FILESIZE to grub_disk_addr_t, grub_size_t and
11861         grub_off_t, respectively.
11862         All callers and references changed.
11864         * include/grub/fs.h (struct grub_fs): Change the type of LEN to
11865         grub_size_t in "read".
11866         All callers and references changed.
11868         * include/grub/file.h (struct grub_file): Change the types of
11869         "offset" and "size" to grub_off_t and grub_off_t,
11870         respectively. Change the type of SECTOR to grub_disk_addr_t in
11871         "read_hook".
11872         (grub_file_read): Change the type of LEN to grub_size_t.
11873         (grub_file_seek): Return grub_off_t. Change the type of OFFSET to
11874         grub_off_t.
11875         (grub_file_size): Return grub_off_t.
11876         (grub_file_tell): Likewise.
11877         All callers and references changed.
11879         * include/grub/disk.h (struct grub_disk_dev): Change the types of
11880         SECTOR and SIZE to grub_disk_addr_t and grub_size_t in "read" and
11881         "write".
11882         (struct grub_disk): Change the type of "total_sectors" to
11883         grub_uint64_t. Change the type of SECTOR to grub_disk_addr_t in
11884         "read_hook".
11885         (grub_disk_read): Change the types of SECTOR, OFFSET and SIZE to
11886         grub_disk_addr_t, grub_off_t and grub_size_t, respectively.
11887         (grub_disk_write): Likewise.
11888         All callers and references changed.
11890         * fs/iso9660.c (grub_iso9660_susp_iterate): Cast parameters to
11891         char * for grub_strncmp to silence gcc.
11892         (grub_iso9660_mount): Likewise.
11893         (grub_iso9660_mount): Likewise.
11894         (grub_iso9660_read_symlink): Likewise. Also, remove the nonsense
11895         return statement.
11896         (grub_iso9660_iterate_dir): Likewise.
11897         (grub_iso9660_label): Cast DATA->VOLDESC.VOLNAME to char *.
11899         * fs/hfs.c (grub_hfs_read_file): Change the types of SECTOR and
11900         LEN to grub_disk_addr_t and grub_size_t, respectively.
11902         * fs/hfsplus.c (grub_hfsplus_read_file): Likewise.
11904         * fs/jfs.c (grub_jfs_read_file): Likewise.
11906         * fs/minix.c (grub_jfs_read_file): Likewise.
11908         * fs/sfs.c (grub_jfs_read_file): Likewise.
11910         * fs/ufs.c (grub_jfs_read_file): Likewise.
11912         * fs/xfs.c (grub_jfs_read_file): Likewise.
11914         * fs/fat.c (grub_fat_read_data): Change the types of SECTOR, LEN
11915         and SIZE to grub_disk_addr_t, grub_size_t and grub_size_t,
11916         respectively.
11918         * fs/ext2.c (grub_ext2_read_block): When an error happens, set
11919         BLKNR to -1 instead of returning GRUB_ERRNO.
11920         (grub_ext2_read_file): Change the types of SECTOR and
11921         LEN to grub_disk_addr_t and grub_size_t, respectively.
11923         * fs/affs.c (grub_affs_read_file): Change the types of SECTOR and
11924         LEN to grub_disk_addr_t and grub_size_t, respectively.
11926         * font/manager.c (grub_font_get_glyph): Cast BITMAP to char * for
11927         grub_file_read.
11929         * disk/ieee1275/ofdisk.c (grub_ofdisk_read): Fix the format
11930         string. Do not cast SECTOR explicitly.
11932         * disk/i386/pc/biosdisk.c (grub_biosdisk_open): Change the type of
11933         TOTAL_SECTORS to grub_uint64_t. Do not mask DRP->TOTAL_SECTORS.
11934         (grub_biosdisk_rw): Change the types of SECTOR and SIZE to
11935         grub_disk_addr_t and grub_size_t, respectively. If the sector is
11936         over 2TB and LBA mode is not supported, raise an error.
11937         (get_safe_sectors): New function.
11938         (grub_biosdisk_read): Use get_safe_sectors.
11939         (grub_biosdisk_write): Likewise.
11941         * disk/efi/efidisk.c (grub_efidisk_read): Fix the format string.
11942         (grub_efidisk_write): Likewise.
11944         * disk/loopback.c (delete_loopback): Cosmetic changes.
11945         (grub_cmd_loopback): Likewise. Also, test NEWDEV->FILENAME
11946         correctly.
11947         (grub_loopback_open): Likewise.
11948         (grub_loopback_read): Likewise. Also, change the type of POS to
11949         grub_off_t, and fix the usage of grub_memset.
11951         * commands/i386/pc/play.c: Include grub/machine/time.h.
11953         * commands/ls.c (grub_ls_list_files): Use "llu" instead of "d" to
11954         print FILE->SIZE.
11956         * commands/configfile.c: Include grub/env.h.
11958         * commands/cmp.c (grub_cmd_cmp): Do not use ERR, but use
11959         GRUB_ERRNO directly instead. Change the type of POS to
11960         grub_off_t. Follow the coding standard.
11962         * commands/blocklist.c: Include grub/partition.h.
11963         (grub_cmd_blocklist): Return an error if the underlying device is
11964         not a disk. Take the starting sector of a partition into account,
11965         if a partition is used.
11967         * boot/i386/pc/diskboot.S (bootloop): Adapted to the new offset of
11968         a length field.
11969         (lba_mode): Support 64-bit addresses.
11970         (chs_mode): Likewise.
11971         (copy_buffer): Adapted to the new offsets of a length field and a
11972         segment field.
11973         (blocklist_default_start): Allocate 64-bit space.
11975         * boot/i386/pc/boot.S (force_lba): Removed.
11976         (boot_drive): Moved to under KERNEL_SECTOR.
11977         (kernel_sector): Moved to under KERNEL_SEGMENT. Allocate 64-bit
11978         space.
11979         (real_start): Set %si earlier. Remove code for FORCE_LBA, since it
11980         is useless.
11981         (lba_mode): Refactored to support a 64-bit address. More size
11982         optimization.
11983         (setup_sectors): Likewise.
11985 2006-06-04  Yoshinori K. Okuji  <okuji@enbug.org>
11987         * DISTLIST: Added include/grub/i386/linux.h. Removed
11988         include/grub/i386/pc/linux.h
11990         * configure.ac (AC_INIT): Bumped to 1.94.
11992         * config.guess: Updated from gnulib.
11993         * config.sub: Likewise.
11994         * install-sh: Likewise.
11995         * mkinstalldirs: Likewise.
11997 2006-06-02  Yoshinori K. Okuji  <okuji@enbug.org>
11999         * conf/common.rmk (grub_modules_init.lst): Depended on
12000         grub_emu_SOURCES, excluding grub_emu_init.c, instead of
12001         MODSRCFILES.
12003         * genmk.rb (PModule::rule): Reverted the previous change.
12005 2006-06-02  Yoshinori K. Okuji  <okuji@enbug.org>
12007         * conf/common.rmk (grub_modules_init.lst): Depends on
12008         $(MODSRCFILES). Grep only the files in $(MODSRCFILES). Make sure
12009         that the target does not exist before producing.
12010         (grub_modules_init.h): Remove the target before generating.
12011         (grub_emu_init.c): Likewise.
12013         * genmk.rb (PModule::rule): Add source files into MODSRCFILES.
12015 2006-05-31  Jeroen Dekkers  <jeroen@dekkers.cx>
12017         * configure.ac: Don't set host_m32 for x86_64. Also reset LIBS
12018         for the target-specific tests. Make sure that we also have the
12019         up-to-date target variables for those tests.
12021 2006-05-31  Yoshinori K. Okuji  <okuji@enbug.org>
12023         * genmk.rb (Image::rule): Prefix CFLAGS or ASFLAGS with TARGET_.
12024         (PModule::rule): Likewise.
12026 2006-05-31  Yoshinori K. Okuji  <okuji@enbug.org>
12028         * genmk.rb (Image::rule): Set FLAG to CFLAGS or ASFLAGS instead of
12029         TARGET_CFLAGS or TARGET_ASFLAGS. There is no reason why
12030         target-specific flags should be prefixed.
12031         (PModule::rule): Likewise.
12033 2006-05-30  Yoshinori K. Okuji  <okuji@enbug.org>
12035         * configure.ac (CMP): Check if cmp is available explicitly.
12037 2006-05-29  Yoshinori K. Okuji  <okuji@enbug.org>
12039         * util/powerpc/ieee1275/grub-install.in (host_cpu): Removed.
12040         (target_cpu): New variable.
12041         (pkglibdir): Use target_cpu instead of host_cpu.
12043         * util/i386/pc/grub-install.in (host_cpu): Removed.
12044         (target_cpu): New variable.
12045         (pkglibdir): Use target_cpu instead of host_cpu.
12047         * util/genmoddep.c: Removed.
12049         * kern/efi/mm.c (filter_memory_map): Use GRUB_CPU_SIZEOF_VOID_P
12050         instead of GRUB_HOST_SIZEOF_VOID_P.
12051         * kern/dl.c: Likewise.
12053         * include/grub/i386/types.h (GRUB_HOST_SIZEOF_VOID_P): Renamed to
12054         ...
12055         (GRUB_TARGET_SIZEOF_VOID_P): ... this.
12056         (GRUB_HOST_SIZEOF_LONG): Renamed to ...
12057         (GRUB_TARGET_SIZEOF_LONG): ... this.
12058         (GRUB_HOST_WORDS_BIGENDIAN): Renamed to ...
12059         (GRUB_TARGET_WORDS_BIGENDIAN): ... this.
12060         * include/grub/powerpc/types.h (GRUB_HOST_SIZEOF_VOID_P): Renamed
12061         to ...
12062         (GRUB_TARGET_SIZEOF_VOID_P): ... this.
12063         (GRUB_HOST_SIZEOF_LONG): Renamed to ...
12064         (GRUB_TARGET_SIZEOF_LONG): ... this.
12065         (GRUB_HOST_WORDS_BIGENDIAN): Renamed to ...
12066         (GRUB_TARGET_WORDS_BIGENDIAN): ... this.
12067         * include/grub/sparc64/types.h (GRUB_HOST_SIZEOF_VOID_P): Renamed
12068         to ...
12069         (GRUB_TARGET_SIZEOF_VOID_P): ... this.
12070         (GRUB_HOST_SIZEOF_LONG): Renamed to ...
12071         (GRUB_TARGET_SIZEOF_LONG): ... this.
12072         (GRUB_HOST_WORDS_BIGENDIAN): Renamed to ...
12073         (GRUB_TARGET_WORDS_BIGENDIAN): ... this.
12075         * include/grub/types.h [!GRUB_UTIL] (GRUB_CPU_SIZEOF_VOID_P): Use
12076         GRUB_TARGET_SIZEOF_VOID_P instead of GRUB_HOST_SIZEOF_VOID_P.
12077         [!GRUB_UTIL] (GRUB_CPU_SIZEOF_LONG): Use GRUB_TARGET_SIZEOF_LONG
12078         instead of GRUB_HOST_SIZEOF_LONG.
12079         [!GRUB_UTIL]: Refer to GRUB_TARGET_WORDS_BIGENDIAN instead of
12080         GRUB_HOST_WORDS_BIGENDIAN to define or undefine
12081         GRUB_CPU_WORDS_BIGENDIAN.
12082         Refer to SIZEOF_VOID_P instead of GRUB_HOST_SIZEOF_VOID_P to
12083         define grub_host_addr_t, grub_host_off_t, grub_host_size_t and
12084         grub_host_ssize_t.
12086         * conf/i386-efi.rmk (noinst_UTILITIES): Removed.
12087         (genmoddep_SOURCES): Likewise.
12088         * conf/i386-pc.rmk (noinst_UTILITIES): Likewise.
12089         (genmoddep_SOURCES): Likewise.
12090         * conf/conf/powerpc-ieee1275.rmk (noinst_UTILITIES): Likewise.
12091         (genmoddep_SOURCES): Likewise.
12092         * conf/conf/conf/sparc64-ieee1275.rmk (noinst_UTILITIES):
12093         Likewise.
12094         (genmoddep_SOURCES): Likewise.
12096         * genmoddep.awk: New file.
12098         * genmk.rb (Image::rule): Use TARGET_CC, TARGET_CPPFLAGS,
12099         TARGET_CFLAGS, TARGET_ASFLAGS and TARGET_LDFLAGS instead of CC,
12100         CPPFLAGS, CFLAGS, ASFLAGS and LDFLAGS, respectively.
12101         (PModule::rule): Likewise.
12102         (Program::rule): Likewise.
12103         (Utility::rule): Use CC, CPPFLAGS, CFLAGS and LDFLAGS instead of
12104         BUILD_CC, BUILD_CPPFLAGS, BUILD_CFLAGS and BUILD_LDFLAGS,
12105         respectively.
12107         * configure.ac: Rewritten intensively to use host and target
12108         instead of build and host, respectively.
12110         * Makefile.in (pkglibdir): Use target_cpu instead of host_cpu.
12111         (host_cpu): Removed.
12112         (target_cpu): New variable.
12113         (CPPFLAGS): Added @CPPFLAGS@ and -DGRUB_LIBDIR=\"$(pkglibdir)\".
12114         (BUILD_CC): Removed.
12115         (BUILD_CFLAGS): Likewise.
12116         (BUILD_CPPFLAGS): Likewise.
12117         (TARGET_CC): New variable.
12118         (TARGET_CFLAGS): Likewise.
12119         (TARGET_CPPFLAGS): Likewise.
12120         (TARGET_LDFLAGS): Likewise.
12121         (AWK): Likewise.
12122         (include): Use target_cpu instead of host_cpu.
12123         (moddep.lst:): Use genmoddep.awk instead of genmoddep.
12125         * DISTLIST: Added genmoddep.awk. Removed util/genmoddep.c.
12127 2006-05-29  Vesa Jaaskelainen  <chaac@nic.fi>
12129         * include/grub/script.h (grub_script_cmdif): Renamed field 'bool' to
12130         'exec_to_evaluate'.  Renamed field 'true' to 'exec_on_true'.  Renamed
12131         field 'false' to 'exec_on_false'.
12132         (grub_script_create_cmdif): Renamed argument names to reflect above
12133         changes.
12135         * normal/execute.c (grub_script_execute_cmdif): Likewise.
12137         * normal/script.c (grub_script_create_cmdif): Likewise.
12139 2006-05-28  Yoshinori K. Okuji  <okuji@enbug.org>
12141         * fs/hfsplus.c (grub_hfsplus_btree_recoffset): Moved to near the
12142         top.
12143         (grub_hfsplus_btree_recptr): Likewise.
12144         (grub_hfsplus_find_block): Do not take RETRY any longer. Use
12145         FILEBLOCK both to pass a block number and store next block
12146         number.
12147         (grub_hfsplus_read_block): Rewritten heavily to support an extent
12148         overflow file correctly. Specify errors appropriately, because
12149         fshelp expects that GRUB_ERRNO is set when fails. Reuse
12150         grub_hfsplus_btree_recptr to get the pointer to a found key.
12151         (grub_hfsplus_btree_search): Return 1 instead of 0 when no match
12152         is found.
12154         * conf/i386-efi.rmk (pkgdata_MODULES): Added _linux.mod and
12155         linux.mod.
12156         (_linux_mod_SOURCES): New variable.
12157         (_linux_mod_CFLAGS): Likewise.
12158         (_linux_mod_LDFLAGS): Likewise.
12159         (linux_mod_SOURCES): Likewise.
12160         (linux_mod_CFLAGS): Likewise.
12161         (linux_mod_LDFLAGS): Likewise.
12163         * DISTLIST: Added loader/i386/efi/linux.c,
12164         loader/i386/efi/linux_normal.c and
12165         include/grub/i386/efi/loader.h.
12167         * loader/i386/efi/linux.c: New file.
12168         * loader/i386/efi/linux_normal.c: Likewise.
12169         * include/grub/i386/efi/loader.h: Likewise.
12171 2006-05-27  Yoshinori K. Okuji  <okuji@enbug.org>
12173         * commands/blocklist.c: New file.
12175         * DISTLIST: Added commands/blocklist.c.
12177         * term/efi/console.c (grub_console_highlight_color): Use a lighter
12178         color for the background, and a darker color for the foreground.
12179         (grub_console_checkkey): Return READ_KEY.
12180         (grub_console_cls): Set the background to
12181         GRUB_EFI_BACKGROUND_BLACK temporarily to clean out the screen.
12183         * kern/efi/efi.c (grub_efi_exit_boot_services): New function.
12185         * include/grub/i386/linux.h (struct linux_kernel_params): Fixed
12186         the size of "padding5", "hd0_drive_info" and "hd1_drive_info".
12188         * include/grub/efi/efi.h (grub_efi_exit_boot_services): New
12189         prototype.
12191         * include/grub/efi/api.h (GRUB_EFI_TEXT_ATTR): Do not shift
12192         BG. The spec is wrong again.
12194         * include/grub/normal.h [GRUB_UTIL] (grub_blocklist_init): New
12195         prototype.
12196         [GRUB_UTIL] (grub_blocklist_fini): Likewise.
12198         * conf/i386-pc.rmk (grub_emu_SOURCES): Added
12199         commands/blocklist.c.
12200         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
12202         * conf/common.rmk (pkgdata_MODULES): Added blocklist.mod.
12203         (blocklist_mod_SOURCES): New variable.
12204         (blocklist_mod_CFLAGS): Likewise.
12205         (blocklist_mod_LDFLAGS): Likewise.
12207 2006-05-20  Yoshinori K. Okuji  <okuji@enbug.org>
12209         * boot/i386/pc/boot.S (real_start): Set %si earlier to eliminate
12210         duplication.
12211         (lba_mode): Use %eax more intensively to reduce the code size.
12213 2006-05-20  Marco Gerards  <marco@gnu.org>
12215         * normal/lexer.c (grub_script_yylex): Don't filter out newlines.
12217         * normal/parser.y (commandblock): Defined as <cmd>.  A subroutine
12218         for `menuentry'.
12219         (script): Accept leading newlines.
12220         (newlines): New rule to describe 0 or more newlines.
12221         (commands): Accept `command' with trailing newline.  Fixed the
12222         order in which arguments were passed to `grub_script_add_cmd'.
12223         Accept commands separated by newlines.
12224         (function): Changed to accept newlines.
12225         (menuentry) Rewritten.
12227         * normal/script.c (grub_script_create_cmdmenu): Add new entries in
12228         front of the list, instead of to the end.
12230 2006-05-19  Yoshinori K. Okuji  <okuji@enbug.org>
12232         * util/i386/pc/grub-install.in (bindir): New variable.
12233         (grub_mkimage): Use BINDIR instead of SBINDIR. Reported by Lee
12234         Shaver <lbgwjl@gmail.com>.
12236 2006-05-14  Yoshinori K. Okuji  <okuji@enbug.org>
12238         * kern/i386/pc/startup.S: Include grub/cpu/linux.h instead of
12239         grub/machine/linux.h
12240         * loader/i386/pc/linux.c: Likewise.
12242         * include/grub/i386/pc/linux.h: Moved to ...
12243         * include/grub/i386/linux.h: ... here.
12245         * include/grub/i386/linux.h (struct linux_kernel_params): New
12246         struct.
12248 2006-05-09  Vesa Jaaskelainen  <chaac@nic.fi>
12250         * video/i386/pc/vbe.c (grub_video_vbe_fill_rect): Corrected bounds
12251         checking.
12252         (grub_video_vbe_blit_glyph): Likewise.
12253         (grub_video_vbe_blit_bitmap): Likewise.
12254         (grub_video_vbe_blit_render_target): Likewise.
12256 2006-05-09  Yoshinori K. Okuji  <okuji@enbug.org>
12258         * configure.ac (--with-platform): Properly quote the square
12259         brackets.
12261 2006-05-08  Marco Gerards  <marco@gnu.org>
12263         * conf/powerpc-ieee1275.rmk (grubof_HEADERS): Renamed from
12264         this...
12265         (kernel_elf_HEADERS): ...to this.  Updated all users.
12266         (grubof_symlist.c): Renamed from this...
12267         (kernel_elf_symlist.c): ...to this.  Updated all users.
12268         (pkgdata_PROGRAMS): Changed `grubof' to `kernel.elf'.
12269         (grubof_SOURCES): Renamed from this...
12270         (kernel_elf_SOURCES): ...to this.
12271         (grubof_HEADERS): Renamed from this...
12272         (kernel_elf_HEADERS): ...to this.
12273         (grubof_CFLAGS): Renamed from this...
12274         (kernel_elf_CFLAGS): ...to this.
12275         (grubof_ASFLAGS): Renamed from this...
12276         (kernel_elf_ASFLAGS): ...to this.
12277         (grubof_LDFLAGS): Renamed from this...
12278         (kernel_elf_LDFLAGS): ...to this.
12280         * conf/sparc64-ieee1275.rmk (grubof_HEADERS): Renamed from
12281         this...
12282         (kernel_elf_HEADERS): ...to this.  Updated all users.
12283         (grubof_symlist.c): Renamed from this...
12284         (kernel_elf_symlist.c): ...to this.  Updated all users.
12285         (pkgdata_PROGRAMS): Changed `grubof' to `kernel.elf'.
12286         (grubof_SOURCES): Renamed from this...
12287         (kernel_elf_SOURCES): ...to this.
12288         (grubof_HEADERS): Renamed from this...
12289         (kernel_elf_HEADERS): ...to this.
12290         (grubof_CFLAGS): Renamed from this...
12291         (kernel_elf_CFLAGS): ...to this.
12292         (grubof_ASFLAGS): Renamed from this...
12293         (kernel_elf_ASFLAGS): ...to this.
12294         (grubof_LDFLAGS): Renamed from this...
12295         (kernel_elf_LDFLAGS): ...to this.
12297         * util/powerpc/ieee1275/grub-mkimage.c (add_segments): Use
12298         `kernel.elf' instead of `grubof'.
12300 2006-05-08  Yoshinori K. Okuji  <okuji@enbug.org>
12302         Add --with-platform to configure. Use pkglibdir instead of
12303         pkgdatadir. This is reported by Roger Leigh.
12305         * util/powerpc/ieee1275/grub-install.in (datadir): Removed.
12306         (host_vendor): Likewise.
12307         (host_os): Likewise.
12308         (pkgdatadir): Likewise.
12309         (platform): New variable.
12310         (pkglibdir): Likewise.
12311         Use PKGLIBDIR instead of PKGDATADIR.
12313         * util/i386/pc/grub-install.in (datadir): Removed.
12314         (host_vendor): Likewise.
12315         (host_os): Likewise.
12316         (pkgdatadir): Likewise.
12317         (platform): New variable.
12318         (pkglibdir): Likewise.
12319         Use PKGLIBDIR instead of PKGDATADIR.
12321         * util/powerpc/ieee1275/grub-mkimage.c (usage): Use GRUB_LIBDIR
12322         instead of GRUB_DATADIR.
12323         (main): Likewise.
12324         * util/i386/pc/grub-mkimage.c (usage): Likewise.
12325         (main): Likewise.
12326         * util/i386/efi/grub-mkimage.c (usage): Likewise.
12327         (main): Likewise.
12329         * configure.ac (--with-platform): New option.
12330         Use PLATFORM instead of HOST_VENDOR to specify a platform.
12332         * Makefile.in: Include a makefile based on PLATFORM instead of
12333         HOST_VENDOR.
12334         (pkgdatadir): Not appended by the machine type.
12335         (pkglibdir): Appended by the machine type.
12336         (host_vendor): Removed.
12337         (platform): New variable.
12338         (BUILD_CPPFLAGS): Specify GRUB_LIBDIR instead of GRUB_DATADIR.
12339         (install-local): Use PKGLIBDIR instead of PKGDATADIR.
12340         (uninstall): Likewise.
12342 2006-05-07  Yoshinori K. Okuji  <okuji@enbug.org>
12344         Use the environment context in the menu. Remove the commands
12345         "default" and "timeout", and use variables instead.
12347         * normal/menu.c: Include grub/env.h.
12348         (print_entry): Cast TITLE to silence gcc.
12349         (get_timeout): New function.
12350         (set_timeout): Likewise.
12351         (get_entry_number): Likewise.
12352         (run_menu): Use a default entry, a fallback entry and a timeout
12353         in the environment variables "default", "fallback" and
12354         "timeout". Also, tweak the default entry if it is not within the
12355         current menu entries.
12356         (grub_menu_run): Use a fallback entry in the environment variable
12357         "fallback".
12359         * normal/main.c (read_config_file): Do not initialize
12360         NEWMENU->DEFAULT_ENTRY, NEWMENU->FALLBACK_ENTRY or
12361         NEWMENU->TIMEOUT.
12362         (grub_normal_execute): Use a data slot to store the menu.
12364         * include/grub/normal.h (struct grub_menu): Removed default_entry,
12365         fallback_entry and timeout.
12366         (struct grub_menu_list): Removed.
12367         (grub_menu_list_t): Likewise.
12368         (struct grub_context): Likewise.
12369         (grub_context_t): Likewise.
12370         (grub_context_get): Likewise.
12371         (grub_context_get_current_menu): Likewise.
12372         (grub_context_push_menu): Likewise.
12373         (grub_context_pop_menu): Likewise.
12374         (grub_default_init): Likewise.
12375         (grub_default_fini): Likewise.
12376         (grub_timeout_init): Likewise.
12377         (grub_timeout_fini): Likewise.
12379         * conf/sparc64-ieee1275.rmk (pkgdata_MODULES): Removed default.mod
12380         and timeout.mod.
12381         (normal_mod_SOURCES): Removed normal/context.c.
12383         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Removed
12384         commands/default.c, commands/timeout.c and normal/context.c.
12385         (normal_mod_SOURCES): Removed normal/context.c.
12387         * conf/i386-pc.rmk (grub_emu_SOURCES): Removed commands/default.c,
12388         commands/timeout.c and normal/context.c.
12389         (normal_mod_SOURCES): Removed normal/context.c.
12391         * conf/i386-efi.rmk (grub_emu_SOURCES): Removed
12392         commands/default.c, commands/timeout.c and normal/context.c.
12393         (normal_mod_SOURCES): Removed normal/context.c.
12395         * conf/common.rmk (pkgdata_MODULES): Removed default.mod and
12396         timeout.mod.
12397         (default_mod_SOURCES): Removed.
12398         (default_mod_CFLAGS): Likewise.
12399         (default_mod_LDFLAGS): Likewise.
12400         (timeout_mod_SOURCES): Removed.
12401         (timeout_mod_CFLAGS): Likewise.
12402         (timeout_mod_LDFLAGS): Likewise.
12404         * DISTLIST: Removed commands/default.c, commands/timeout.c and
12405         normal/context.c.
12407         * commands/default.c: Removed.
12408         * commands/timeout.c: Likewise.
12409         * normal/context.c: Likewise.
12411 2006-05-07  Vesa Jaaskelainen  <chaac@nic.fi>
12413         * kern/i386/pc/startup.S (grub_exit): Added missing .code32 tag.
12415 2006-05-02  Yoshinori K. Okuji  <okuji@enbug.org>
12417         * kern/env.c (struct grub_env_context): Removed "sorted". Renamed
12418         "next" to "prev" for readability.
12419         (struct grub_env_sorted_var): New struct.
12420         (grub_env_context): Renamed to ...
12421         (initial_context): ... this.
12422         (grub_env_var_context): Renamed to ...
12423         (current_context): ... this.
12424         (grub_env_find): Look only at CURRENT_CONTEXT.
12425         (grub_env_context_open): Rewritten to copy exported variables from
12426         previous context.
12427         (grub_env_context_close): Rewritten according to the new
12428         scheme. Also, add an assertion to prevent the initial context from
12429         removed.
12430         (grub_env_insert): Removed the code for the sorted list.
12431         (grub_env_remove): Likewise.
12432         (grub_env_export): Simply mark the variable with
12433         GRUB_ENV_VAR_GLOBAL.
12434         (grub_env_set): A cosmetic change for naming consistency.
12435         (grub_env_get): Likewise.
12436         (grub_env_unset): Likewise.
12437         (grub_env_iterate): Rewritten to sort variables within this
12438         function.
12439         (grub_register_variable_hook): Fixed for naming consistency. Call
12440         grub_env_find again, only if NAME is not found at the first time.
12441         (mangle_data_slot_name): New function.
12442         (grub_env_set_data_slot): Likewise.
12443         (grub_env_get_data_slot): Likewise.
12444         (grub_env_unset_data_slot): Likewise.
12446         * include/grub/env.h (grub_env_var_type): New enum.
12447         (GRUB_ENV_VAR_LOCAL): New constant.
12448         (GRUB_ENV_VAR_GLOBAL): Likewise.
12449         (GRUB_ENV_VAR_DATA): Likewise.
12450         (struct grub_env_var): Removed "sort_next" and "sort_prevp". Added
12451         "type".
12452         (grub_env_set): Replace VAR with NAME for consistency.
12453         (grub_register_variable_hook): Likewise.
12454         (grub_env_export): Specify the name of the argument.
12455         (grub_env_set_data_slot): New prototype.
12456         (grub_env_get_data_slot): Likewise.
12457         (grub_env_unset_data_slot): Likewise.
12459 2006-04-30  Yoshinori K. Okuji  <okuji@enbug.org>
12461         Extend the loader so that GRUB can accept a loader which comes
12462         back to GRUB when a loaded image exits. Also, this change adds
12463         support for a chainloader on EFI.
12465         * term/efi/console.c: Include grub/misc.h.
12466         (grub_console_checkkey): Display a scan code on the top for
12467         debugging. This will be removed once the EFI port gets stable.
12468         Correct the scan code mapping.
12470         * kern/efi/mm.c (sort_memory_map): Sort in a descending order to
12471         allocate memory from larger regions, in order to reduce the number
12472         of allocated regions. Otherwise, the MacOSX loader panics.
12473         (filter_memory_map): Avoid less than 1MB for compatibility with
12474         other loaders.
12475         (add_memory_regions): Allocate from the tail of a region, if
12476         possible, to avoid allocating a region near to 1MB, for the MacOSX
12477         loader.
12479         * kern/efi/init.c (grub_efi_set_prefix): Specify
12480         GRUB_EFI_IMAGE_HANDLE to grub_efi_get_loaded_image.
12482         * kern/efi/efi.c (grub_efi_get_loaded_image): Accept a new
12483         argument IMAGE_HANDLE and specify it to get a loaded image.
12484         (grub_arch_modules_addr): Specify GRUB_EFI_IMAGE_HANDLE to
12485         grub_efi_get_loaded_image.
12486         (grub_efi_get_filename): Divide the length by the size of
12487         grub_efi_char16_t.
12488         (grub_efi_get_device_path): New function.
12489         (grub_efi_print_device_path): Print End Device Path nodes. Divide
12490         the length by the size of grub_efi_char16_t for a file path device
12491         path node.
12493         * kern/loader.c (grub_loader_noreturn): New variable.
12494         (grub_loader_set): Accept a new argument NORETURN. Set
12495         GRUB_LOADER_NORETURN to NORETURN.
12496         All callers changed.
12497         (grub_loader_boot): If GRUB_LOADER_NORETURN is false, do not call
12498         grub_machine_fini.
12500         * include/grub/efi/efi.h (grub_efi_get_device_path): New
12501         prototype.
12502         (grub_efi_get_loaded_image): Take an argument to specify an image
12503         handle.
12505         * include/grub/loader.h (grub_loader_set): Added one more argument
12506         NORETURN.
12508         * disk/efi/efidisk.c (make_devices): Use grub_efi_get_device_path
12509         instead of grub_efi_open_protocol.
12510         (grub_efidisk_get_device_name): Likewise.
12511         (grub_efidisk_close): Print a newline.
12512         (grub_efidisk_get_device_handle): Fixed to use
12513         GRUB_EFI_DEVICE_PATH_SUBTYPE instead of
12514         GRUB_EFI_DEVICE_PATH_TYPE.
12516         * disk/efi/efidisk.c (device_path_guid): Moved to ...
12517         * kern/efi/efi.c (device_path_guid): ... here.
12519         * conf/i386-efi.rmk (pkgdata_MODULES): Added _chain.mod and
12520         chain.mod.
12521         (kernel_mod_HEADERS): Added efi/disk.h.
12522         (_chain_mod_SOURCES): New variable.
12523         (_chain_mod_CFLAGS): Likewise.
12524         (_chain_mod_LDFLAGS): Likewise.
12525         (chain_mod_SOURCES): Likewise.
12526         (chain_mod_CFLAGS): Likewise.
12527         (chain_mod_LDFLAGS): Likewise.
12529         * DISTLIST: Added include/grub/efi/chainloader.h,
12530         loader/efi/chainloader.c and loader/efi/chainloader_normal.c.
12532         * include/grub/efi/chainloader.h: New file.
12533         * loader/efi/chainloader.c: Likewise.
12534         * loader/efi/chainloader_normal.c: Likewise.
12536 2006-04-30  Marco Gerards  <marco@gnu.org>
12538         * commands/configfile.c (grub_cmd_source): New function.
12539         (GRUB_MOD_INIT): Register the commands `source' and `.'.
12540         (GRUB_MOD_FINI): De-register the commands `source' and `.'.
12542 2006-04-30  Marco Gerards  <marco@gnu.org>
12544         * normal/execute.c (grub_script_execute_cmd): Change the return
12545         type to `grub_err_t'.  Correctly return the error.
12546         (grub_script_execute_cmdline): In case a command line is not a
12547         command or a function, try to interpret it as an assignment.
12549 2006-04-30  Yoshinori K. Okuji  <okuji@enbug.org>
12551         * fs/hfsplus.c (grub_hfsplus_read_block): Fixed a memory leak.
12552         (grub_hfsplus_iterate_dir): Reordered to skip unknown nodes. Also,
12553         skip a node whose name is obviously invalid as UTF-16,
12554         i.e. contains a NUL character. Stop the iteration when the last
12555         directory entry is found. Instead of using the return value of
12556         grub_hfsplus_btree_iterate_node, store the value in RET and use
12557         it, because the iterator can be stopped by the last directory
12558         entry.
12560 2006-04-30  Marco Gerards  <marco@gnu.org>
12562         * include/grub/env.h (grub_env_export): New prototype.  Reported
12563         by Jan C. Kleinsorge <jan.kleinsorge@udo.edu>.
12565 2006-04-30  Marco Gerards  <marco@gnu.org>
12567         * fs/hfsplus.c (grub_hfsplus_iterate_dir): Correctly calculate the
12568         size of the extents in a catalog file record.
12570 2006-04-29  Marco Gerards  <marco@gnu.org>
12572         * commands/configfile.c (grub_cmd_configfile): Execute the
12573         configfile within its own context.
12575         * include/grub/env.h (grub_env_context_open): New prototype.
12576         (grub_env_context_close): Likewise.
12578         * kern/env.c (grub_env): Removed.
12579         (grub_env_sorted): Likewise.
12580         (grub_env_context): New variable.
12581         (grub_env_var_context): Likewise.
12582         (grub_env_find): Search both the active context and the global
12583         context.
12584         (grub_env_context_open): New function.
12585         (grub_env_context_close): Likewise.
12586         (grub_env_insert): Likewise.
12587         (grub_env_remove): Likewise.
12588         (grub_env_export): Likewise.
12589         (grub_env_set): Changed to use helper functions to avoid code
12590         duplication.
12591         (grub_env_iterate): Rewritten so both the current context and the
12592         global context are being used.
12594         * normal/command.c (export_command): New function.
12595         (grub_command_init): Register the `export' function.
12597 2006-04-26  Yoshinori K. Okuji  <okuji@enbug.org>
12599         * util/i386/pc/grub-mkimage.c (compress_kernel): Cast arguments
12600         explicitly to suppress gcc's warnings.
12601         * fs/fat.c (grub_fat_find_dir): Likewise.
12602         (grub_fat_label): Likewise.
12603         * fs/xfs.c (grub_xfs_read_inode): Likewise.
12604         (grub_xfs_mount): Likewise.
12605         (grub_xfs_label): Likewise.
12606         * fs/affs.c (grub_affs_mount): Likewise.
12607         (grub_affs_label): Likewise.
12608         (grub_affs_iterate_dir): Likewise.
12609         * fs/sfs.c (grub_sfs_mount): Likewise.
12610         (grub_sfs_iterate_dir): Likewise.
12611         * fs/ufs.c (grub_ufs_lookup_symlink): Likewise.
12612         * fs/hfs.c (grub_hfs_mount): Likewise.
12613         (grub_hfs_cmp_catkeys): Likewise.
12614         (grub_hfs_find_dir): Likewise.
12615         (grub_hfs_dir): Likewise.
12616         (grub_hfs_label): Likewise.
12617         * fs/jfs.c (grub_jfs_mount): Likewise.
12618         (grub_jfs_opendir): Likewise.
12619         (grub_jfs_getent): Likewise.
12620         (grub_jfs_lookup_symlink): Likewise.
12621         (grub_jfs_label): Likewise.
12622         * fs/hfsplus.c (grub_hfsplus_cmp_catkey): Likewise.
12623         (grub_hfsplus_iterate_dir): Likewise.
12624         (grub_hfsplus_btree_iterate_node): Made static.
12626         * util/grub-emu.c (prefix): New variable.
12627         (grub_machine_set_prefix): New function.
12628         (main): Do not set the environment variable "prefix" here. Only
12629         set PREFIX, which is used later by grub_machine_set_prefix.
12631         * include/grub/video.h: Do not include grub/symbol.h.
12632         (grub_video_register): Not exported. This symbol is not defined in
12633         the kernel.
12634         (grub_video_unregister): Likewise.
12635         (grub_video_iterate): Likewise.
12636         (grub_video_setup): Likewise.
12637         (grub_video_restore): Likewise.
12638         (grub_video_get_info): Likewise.
12639         (grub_video_get_blit_format): Likewise.
12640         (grub_video_set_palette): Likewise.
12641         (grub_video_get_palette): Likewise.
12642         (grub_video_set_viewport): Likewise.
12643         (grub_video_get_viewport): Likewise.
12644         (grub_video_map_color): Likewise.
12645         (grub_video_map_rgb): Likewise.
12646         (grub_video_map_rgba): Likewise.
12647         (grub_video_fill_rect): Likewise.
12648         (grub_video_blit_glyph): Likewise.
12649         (grub_video_blit_bitmap): Likewise.
12650         (grub_video_blit_render_target): Likewise.
12651         (grub_video_scroll): Likewise.
12652         (grub_video_swap_buffers): Likewise.
12653         (grub_video_create_render_target): Likewise.
12654         (grub_video_delete_render_target): Likewise.
12655         (grub_video_set_active_render_target): Likewise.
12657         * include/grub/symbol.h [GRUB_SYMBOL_GENERATOR] (EXPORT_FUNC):
12658         Undefined.
12659         [GRUB_SYMBOL_GENERATOR] (EXPORT_VAR): Likewise.
12661         * conf/sparc64-ieee1275.rmk (grubof_symlist.c): Depended on
12662         config.h. Use gensymlist.sh instead of $(srcdir)/gensymlist.sh.
12663         (kernel_syms.lst): Depended on config.h. Use genkernsyms.sh
12664         instead of $(srcdir)/genkernsyms.sh.
12666         * conf/powerpc-ieee1275.rmk (grubof_symlist.c): Depended on
12667         config.h. Use gensymlist.sh instead of $(srcdir)/gensymlist.sh.
12668         (kernel_syms.lst): Depended on config.h. Use genkernsyms.sh
12669         instead of $(srcdir)/genkernsyms.sh.
12671         * conf/i386-pc.rmk (symlist.c): Depended on config.h. Use
12672         gensymlist.sh instead of $(srcdir)/gensymlist.sh.
12673         (kernel_syms.lst): Depended on config.h. Use genkernsyms.sh
12674         instead of $(srcdir)/genkernsyms.sh.
12676         * conf/i386-efi.rmk (symlist.c): Depended on config.h. Use
12677         gensymlist.sh instead of $(srcdir)/gensymlist.sh.
12678         (kernel_syms.lst): Depended on config.h. Use genkernsyms.sh
12679         instead of $(srcdir)/genkernsyms.sh.
12681         * configure.ac (AC_CONFIG_FILES): Added gensymlist.sh and
12682         genkernsyms.sh.
12684         * Makefile.in (DISTCLEANFILES): Added gensymlist.sh and
12685         genkernsyms.sh.
12686         (gensymlist.sh): New target.
12687         (genkernsyms.sh): Likewise.
12689         * DISTLIST: Removed genkernsyms.sh and gensymlist.sh. Added
12690         genkernsyms.sh.in and gensymlist.sh.in.
12692         * genkernsyms.sh: Removed.
12693         * gensymlist.sh: Likewise.
12695         * genkernsyms.sh.in: New file.
12696         * gensymlist.sh.in: Likewise.
12698 2006-04-25  Hollis Blanchard  <hollis@penguinppc.org>
12700         * kern/powerpc/ieee1275/init.c (grub_machine_set_prefix): Do not
12701         clobber "prefix", since we may have already set it manually.
12703 2006-04-25  Hollis Blanchard  <hollis@penguinppc.org>
12705         * kern/misc.c (abort): New alias for grub_abort.
12707 2006-04-25  Yoshinori K. Okuji  <okuji@enbug.org>
12709         A new machine-specific function "grub_machine_set_prefix" is
12710         defined. This is called after loading modules, so that a prefix
12711         initialization can use modules. Also, this change adds an
12712         intensive debugging feature for the memory manager via the
12713         configure option "--enable-mm-debug".
12715         * partmap/gpt.c (gpt_partition_map_iterate): Add one more into
12716         PART.LEN.
12718         * kern/sparc64/ieee1275/init.c (abort): Removed.
12719         (grub_stop): Likewise.
12720         (grub_exit): New function.
12721         (grub_set_prefix): Renamed to ...
12722         (grub_machine_set_prefix): ... this.
12723         (grub_machine_init): Do not call grub_set_prefix.
12725         * kern/powerpc/ieee1275/init.c (grub_set_prefix): Renamed to ...
12726         (grub_machine_set_prefix): ... this.
12727         (grub_machine_init): Do not call grub_set_prefix.
12729         * kern/i386/pc/init.c (grub_machine_set_prefix): New function.
12730         (grub_machine_init): Do not set the prefix here.
12732         * kern/i386/efi/init.c (grub_machine_set_prefix): New function.
12734         * kern/efi/init.c: Include grub/mm.h.
12735         (grub_efi_set_prefix): New function.
12737         * kern/efi/efi.c (grub_exit): Call grub_efi_fini.
12738         (grub_efi_get_filename): New function.
12739         (grub_print_device_path): Renamed to ...
12740         (grub_efi_print_device_path): ... this.
12742         * kern/mm.c [MM_DEBUG] (grub_malloc): Undefined.
12743         [MM_DEBUG] (grub_realloc): Likewise.
12744         [MM_DEBUG] (grub_free): Likewise.
12745         [MM_DEBUG] (grub_memalign): Likewise.
12746         [MM_DEBUG] (grub_mm_debug): New variable.
12747         [MM_DEBUG] (grub_debug_malloc): New function.
12748         [MM_DEBUG] (grub_debug_free): New function.
12749         [MM_DEBUG] (grub_debug_realloc): New function.
12750         [MM_DEBUG] (grub_debug_memalign): New function.
12752         * kern/misc.c (grub_abort): Print a newline to distinguish
12753         the message.
12755         * kern/main.c (grub_main): Call grub_machine_set_prefix and
12756         grub_set_root_dev after loading modules. This is necessary when
12757         setting a prefix depends on modules.
12759         * include/grub/efi/efi.h (grub_print_device_path): Renamed to ...
12760         (grub_efi_print_device_path): ... this.
12761         (grub_efi_get_filename): New prototype.
12762         (grub_efi_set_prefix): Likewise.
12764         * include/grub/efi/disk.h: Include grub/efi/api.h, grub/symbol.h
12765         and grub/disk.h.
12766         (grub_efidisk_get_device_handle): New prototype.
12767         (grub_efidisk_get_device_name): Likewise.
12769         * include/grub/mm.h: Include config.h.
12770         (MM_DEBUG): Removed.
12771         [MM_DEBUG && !GRUB_UTIL] (grub_mm_debug): New prototype.
12772         [MM_DEBUG && !GRUB_UTIL] (grub_malloc): New macro.
12773         [MM_DEBUG && !GRUB_UTIL] (grub_realloc): Likewise.
12774         [MM_DEBUG && !GRUB_UTIL] (grub_memalign): Likewise.
12775         [MM_DEBUG && !GRUB_UTIL] (grub_free): Likewise.
12776         [MM_DEBUG && !GRUB_UTIL] (grub_debug_malloc): New prototype.
12777         [MM_DEBUG && !GRUB_UTIL] (grub_debug_realloc): New prototype.
12778         [MM_DEBUG && !GRUB_UTIL] (grub_debug_memalign): New prototype.
12779         [MM_DEBUG && !GRUB_UTIL] (grub_debug_free): New prototype.
12781         * include/grub/kernel.h (grub_machine_set_prefix): New prototype.
12783         * disk/efi/efidisk.c: Include grub/partition.h.
12784         (iterate_child_devices): New function.
12785         (add_device): First, compare only last device path nodes, so that
12786         devices are sorted by the types.
12787         (grub_efidisk_get_device_handle): New function.
12788         (grub_efidisk_get_device_name): Likewise.
12790         * configure.ac (--enable-mm-debug): New option to enable the
12791         memory manager debugging feature. This makes the binary much
12792         bigger, so is disabled by default.
12794 2006-04-23  Yoshinori K. Okuji  <okuji@enbug.org>
12796         Use grub_abort instead of grub_stop, and grub_exit must be
12797         define in each architecture now. Also, this change adds support
12798         for EFI disks.
12800         * util/i386/pc/grub-probefs.c: Include grub/term.h.
12801         (grub_getkey): New function.
12802         (grub_term_get_current): Likewise.
12804         * util/i386/pc/grub-setup.c: Include grub/term.h.
12805         (grub_getkey): New function.
12806         (grub_term_get_current): Likewise.
12808         * util/misc.c (grub_stop): Renamed to ...
12809         (grub_exit): ... this.
12811         * kern/powerpc/ieee1275/init.c (abort): Renamed to ...
12812         (grub_exit): ... this.
12813         (grub_machine_init): Use grub_abort instead of abort.
12814         (grub_stop): Removed.
12816         * kern/powerpc/ieee1275/cmain.c (cmain): Use grub_abort instead of
12817         abort.
12819         * kern/i386/pc/startup.S (grub_exit): New function.
12820         (cold_reboot): New label.
12822         * kern/efi/init.c: Include grub/efi/disk.h and grub/env.h.
12823         (grub_efi_init): Call grub_efidisk_init.
12824         (grub_efi_fini): Call grub_efidisk_fini.
12826         * kern/efi/efi.c: Include grub/mm.h.
12827         (grub_efi_console_control_guid): Renamed to ...
12828         (console_control_guid): ... this.
12829         (grub_efi_loaded_image_guid): Renamed to ...
12830         (loaded_image_guid): ... this.
12831         (grub_efi_locate_handle): New function.
12832         (grub_efi_open_protocol): Likewise.
12833         (grub_efi_set_text_mode): Use CONSOLE_CONTROL_GUID instead of
12834         GRUB_EFI_CONSOLE_CONTROL_GUID.
12835         (grub_efi_exit): Removed.
12836         (grub_stop): Likewise.
12837         (grub_efi_get_loaded_image): Use grub_efi_open_protocol.
12838         (grub_exit): New function.
12839         (grub_print_device_path): Likewise.
12841         * kern/rescue.c (grub_rescue_cmd_exit): New function.
12842         (grub_enter_rescue_mode): Register "exit".
12844         * kern/misc.c (grub_real_dprintf): A cosmetic change.
12845         (grub_abort): New function.
12847         * kern/err.c (grub_fatal): Use grub_abort instead of grub_stop.
12849         * include/grub/sparc64/ieee1275/kernel.h (abort): Removed.
12851         * include/grub/powerpc/ieee1275/kernel.h (abort): Removed.
12853         * include/grub/efi/efi.h (grub_efi_exit): Removed.
12854         (grub_print_device_path): New prototype.
12855         (grub_efi_locate_handle): Likewise.
12856         (grub_efi_open_protocol): Likewise.
12858         * include/grub/efi/disk.h (grub_efidisk_fini): New file.
12859         * disk/efi/efidisk.c: Likewise.
12861         * DISTLIST: Added disk/efi/efidisk.c and include/grub/efi/disk.h.
12863         * include/grub/efi/console_control.h
12864         (GRUB_EFI_CONSOLE_CONTROL_GUID): Use an array for the last 8 bytes.
12866         * include/grub/efi/api.h (GRUB_EFI_LOADED_IMAGE_GUID): Specify the
12867         last 8 bytes as an array.
12868         (GRUB_EFI_DISK_IO_GUID): New macro.
12869         (GRUB_EFI_BLOCK_IO_GUID): Likewise.
12870         (GRUB_EFI_DEVICE_PATH_GUID): Likewise.
12871         (grub_efi_ipv6_address_t): Change the type to grub_uint16_t from
12872         grub_uint8_t.
12873         (struct grub_efi_guid): Use an array to specify the last 8 bytes.
12874         (struct grub_efi_device_path): Rename the member "sub_type" to
12875         "subtype".
12876         (GRUB_EFI_DEVICE_PATH_TYPE): New macro.
12877         (GRUB_EFI_DEVICE_PATH_SUBTYPE): Likewise.
12878         (GRUB_EFI_DEVICE_PATH_LENGTH): Likewise.
12879         (GRUB_EFI_END_DEVICE_PATH_TYPE): Likewise.
12880         (GRUB_EFI_END_ENTIRE_DEVICE_PATH_SUBTYPE): Likewise.
12881         (GRUB_EFI_END_THIS_DEVICE_PATH_SUBTYPE): Likewise.
12882         (GRUB_EFI_END_ENTIRE_DEVICE_PATH): Likewise.
12883         (GRUB_EFI_NEXT_DEVICE_PATH): Likewise.
12884         (GRUB_EFI_HARDWARE_DEVICE_PATH_TYPE): Likewise.
12885         (GRUB_EFI_PCI_DEVICE_PATH_SUBTYPE): Likewise.
12886         (struct grub_efi_pci_device_path): New structure.
12887         (grub_efi_pci_device_path_t): New type.
12888         (GRUB_EFI_PCCARD_DEVICE_PATH_SUBTYPE): New macro.
12889         (struct grub_efi_pccard_device_path): New structure.
12890         (grub_efi_pccard_device_path_t): New type.
12891         (GRUB_EFI_MEMORY_MAPPED_DEVICE_PATH_SUBTYPE): New macro.
12892         (struct grub_efi_memory_mapped_device_path): New structure.
12893         (grub_efi_memory_mapped_device_path_t): New type.
12894         (GRUB_EFI_VENDOR_DEVICE_PATH_SUBTYPE): New macro.
12895         (struct grub_efi_vendor_device_path): New structure.
12896         (grub_efi_vendor_device_path_t): New type.
12897         (GRUB_EFI_CONTROLLER_DEVICE_PATH_SUBTYPE): New macro.
12898         (struct grub_efi_controller_device_path): New structure.
12899         (grub_efi_controller_device_path_t): New type.
12900         (GRUB_EFI_ACPI_DEVICE_PATH_TYPE): New macro.
12901         (GRUB_EFI_ACPI_DEVICE_PATH_SUBTYPE): Likewise.
12902         (struct grub_efi_acpi_device_path): New structure.
12903         (grub_efi_acpi_device_path_t): New type.
12904         (GRUB_EFI_EXPANDED_ACPI_DEVICE_PATH_SUBTYPE): New macro.
12905         (struct grub_efi_expanded_acpi_device_path): New structure.
12906         (grub_efi_expanded_acpi_device_path_t): New type.
12907         (GRUB_EFI_EXPANDED_ACPI_HIDSTR): New macro.
12908         (GRUB_EFI_EXPANDED_ACPI_UIDSTR): Likewise.
12909         (GRUB_EFI_EXPANDED_ACPI_CIDSTR): Likewise.
12910         (GRUB_EFI_MESSAGING_DEVICE_PATH_TYPE): Likewise.
12911         (GRUB_EFI_ATAPI_DEVICE_PATH_SUBTYPE): Likewise.
12912         (struct grub_efi_atapi_device_path): New structure.
12913         (grub_efi_atapi_device_path_t): New type.
12914         (GRUB_EFI_FIBRE_CHANNEL_DEVICE_PATH_SUBTYPE): New macro.
12915         (struct grub_efi_fibre_channel_device_path): New structure.
12916         (grub_efi_fibre_channel_device_path_t): New type.
12917         (GRUB_EFI_1394_DEVICE_PATH_SUBTYPE): New macro.
12918         (struct grub_efi_1394_device_path): New structure.
12919         (grub_efi_1394_device_path_t): New type.
12920         (GRUB_EFI_USB_DEVICE_PATH_SUBTYPE): New macro.
12921         (struct grub_efi_usb_device_path): New structure.
12922         (grub_efi_usb_device_path_t): New type.
12923         (GRUB_EFI_USB_CLASS_DEVICE_PATH_SUBTYPE): New macro.
12924         (struct grub_efi_usb_class_device_path): New structure.
12925         (grub_efi_usb_class_device_path_t): New type.
12926         (GRUB_EFI_I2O_DEVICE_PATH_SUBTYPE): New macro.
12927         (struct grub_efi_i2o_device_path): New structure.
12928         (grub_efi_i2o_device_path_t): New type.
12929         (GRUB_EFI_MAC_ADDRESS_DEVICE_PATH_SUBTYPE): New macro.
12930         (struct grub_efi_mac_address_device_path): New structure.
12931         (grub_efi_mac_address_device_path_t): New type.
12932         (GRUB_EFI_IPV4_DEVICE_PATH_SUBTYPE): New macro.
12933         (struct grub_efi_ipv4_device_path): New structure.
12934         (grub_efi_ipv4_device_path_t): New type.
12935         (GRUB_EFI_IPV6_DEVICE_PATH_SUBTYPE): New macro.
12936         (struct grub_efi_ipv6_device_path): New structure.
12937         (grub_efi_ipv6_device_path_t): New type.
12938         (GRUB_EFI_INFINIBAND_DEVICE_PATH_SUBTYPE): New macro.
12939         (struct grub_efi_infiniband_device_path): New structure.
12940         (grub_efi_infiniband_device_path_t): New type.
12941         (GRUB_EFI_UART_DEVICE_PATH_SUBTYPE): New macro.
12942         (struct grub_efi_uart_device_path): New structure.
12943         (grub_efi_uart_device_path_t): New type.
12944         (GRUB_EFI_VENDOR_MESSAGING_DEVICE_PATH_SUBTYPE): New macro.
12945         (struct grub_efi_vendor_messaging_device_path): New structure.
12946         (grub_efi_vendor_messaging_device_path_t): New type.
12947         (GRUB_EFI_MEDIA_DEVICE_PATH_TYPE): New macro.
12948         (GRUB_EFI_HARD_DRIVE_DEVICE_PATH_SUBTYPE): Likewise.
12949         (struct grub_efi_hard_drive_device_path): New structure.
12950         (grub_efi_hard_drive_device_path_t): New type.
12951         (GRUB_EFI_CDROM_DEVICE_PATH_SUBTYPE): New macro.
12952         (struct grub_efi_cdrom_device_path): New structure.
12953         (grub_efi_cdrom_device_path_t): New type.
12954         (GRUB_EFI_VENDOR_MEDIA_DEVICE_PATH_SUBTYPE): New macro.
12955         (struct grub_efi_vendor_media_device_path): New structure.
12956         (grub_efi_vendor_media_device_path_t): New type.
12957         (GRUB_EFI_FILE_PATH_DEVICE_PATH_SUBTYPE): New macro.
12958         (struct grub_efi_file_path_device_path): New structure.
12959         (grub_efi_file_path_device_path_t): New type.
12960         (GRUB_EFI_PROTOCOL_DEVICE_PATH_SUBTYPE): New macro.
12961         (struct grub_efi_protocol_device_path): New structure.
12962         (grub_efi_protocol_device_path_t): New type.
12963         (GRUB_EFI_BIOS_DEVICE_PATH_TYPE): New macro.
12964         (GRUB_EFI_BIOS_DEVICE_PATH_SUBTYPE): Likewise.
12965         (struct grub_efi_bios_device_path): New structure.
12966         (grub_efi_bios_device_path_t): New type.
12967         (struct grub_efi_disk_io): New structure.
12968         (grub_efi_disk_io_t): New type.
12969         (struct grub_efi_block_io_media): New structure.
12970         (grub_efi_block_io_media_t): New type.
12971         (struct grub_efi_block_io): New structure.
12972         (grub_efi_block_io_t): New type.
12974         * include/grub/misc.h (grub_stop): Removed.
12975         (grub_exit): New prototype.
12976         (grub_abort): Likewise.
12978         * include/grub/disk.h (enum grub_disk_dev_id): Added
12979         GRUB_DISK_DEVICE_EFIDISK_ID.
12981         * conf/i386-efi.rmk (kernel_mod_SOURCES): Added
12982         disk/efi/efidisk.c.
12983         (kernel_syms.lst): Remove the target if an error occurs.
12985 2006-04-22  Yoshinori K. Okuji  <okuji@enbug.org>
12987         * kern/misc.c (grub_lltoa): Rewritten the decimal conversion part,
12988         as it was simply too buggy.
12990 2006-04-21  Yoshinori K. Okuji  <okuji@enbug.org>
12992         * kern/misc.c (grub_lltoa): New function.
12993         (grub_vsprintf): Added support for the long long suffix,
12994         i.e. "ll".
12996 2006-04-20  Hollis Blanchard  <hollis@penguinppc.org>
12998         * Makefile.in (LDFLAGS): Add variable.
12999         (LD): Remove variable.
13000         * configure.ac: Add -m32 to LDFLAGS.
13001         * genmk.rb (PModule#rule): Use $(CC) instead of $(LD).
13002         * conf/powerpc-ieee1275.rmk (COMMON_LDFLAGS): Add variable.
13003         (grubof_LDFLAGS): Use $(COMMON_LDFLAGS).
13004         (_linux_mod_LDFLAGS, linux_mod_LDFLAGS, normal_mod_LDFLAGS,
13005         suspend_mod_LDFLAGS, reboot_mod_LDFLAGS, halt_mod_LDFLAGS): New
13006         variables.
13007         * conf/sparc64-ieee1275.rmk (COMMON_LDFLAGS): Add -nostdlib.
13008         * conf/i386-pc.rmk (COMMON_LDFLAGS): Add -nostdlib.
13009         * conf/i386-efi.rmk (COMMON_LDFLAGS): Add -nostdlib.
13011 2006-04-20  Vesa Jaaskelainen  <chaac@nic.fi>
13013         * term/gfxterm.c (grub_gfxterm_getcharwidth): Fixed character
13014         length for unknown glyph.
13016 2006-04-20  Yoshinori K. Okuji  <okuji@enbug.org>
13018         Add support for pre-loaded modules into the EFI port.
13020         * util/i386/efi/grub-mkimage.c (make_mods_section): Rewritten
13021         completely. Accept one more argument DIR. The caller has changed.
13023         * kern/i386/efi/init.c (grub_arch_modules_addr): Removed.
13025         * kern/efi/efi.c: Include grub/efi/pe32.h and grub/kernel.h.
13026         (grub_efi_loaded_image_guid): New variable.
13027         (grub_efi_get_loaded_image): New function.
13028         (grub_arch_modules_addr): Likewise.
13030         * include/grub/efi/efi.h (grub_efi_get_loaded_image): New
13031         prototype.
13033         * include/grub/efi/api.h (GRUB_EFI_LOADED_IMAGE_GUID): New macro.
13034         (struct grub_efi_loaded_image): New structure.
13035         (grub_efi_loaded_image_t): New type.
13037 2006-04-20  Yoshinori K. Okuji  <okuji@enbug.org>
13039         * loader/i386/pc/linux.c (grub_rescue_cmd_linux): Compare the file
13040         size with GRUB_OS_AREA_SIZE as grub_size_t instead of
13041         grub_ssize_t. Reported by Jeff Chua <jeff84@silk.corp.fedex.com>.
13043 2006-04-19  Roger Leigh  <rleigh@whinlatter.ukfsn.org>
13045         * DISTLIST: Added `util/powerpc/ieee1275/grub-install.in'.
13047 2006-04-19  Yoshinori K. Okuji  <okuji@enbug.org>
13049         * DISTLIST: Added include/grub/efi/console.h,
13050         include/grub/efi/time.h, include/grub/i386/efi/kernel.h,
13051         kern/efi/init.c, kern/efi/mm.c, and term/efi/console.c.
13053         * include/grub/efi/console.h: New file.
13054         * include/grub/efi/time.h: Likewise.
13055         * include/grub/i386/efi/kernel.h: Likewise.
13056         * kern/efi/init.c: Likewise.
13057         * kern/efi/mm.c: Likewise.
13058         * term/efi/console.c: Likewise.
13060         * kern/i386/efi/init.c: Do not include grub/machine/time.h.
13061         (grub_stop): Removed.
13062         (grub_get_rtc): Likewise.
13063         (grub_machine_init): Simply call grub_efi_init.
13064         (grub_machine_fini): Call grub_efi_fini.
13066         * kern/efi/efi.c: Include grub/machine/time.h and grub/term.h.
13067         (grub_efi_output_string): Removed.
13068         (grub_efi_stall): New function.
13069         (grub_stop): Likewise.
13070         (grub_get_rtc): Likewise.
13072         * include/grub/efi/efi.h (grub_efi_output_string): Removed.
13073         (grub_efi_stall): New prototype.
13074         (grub_efi_allocate_pages): Likewise.
13075         (grub_efi_free_pages): Likewise.
13076         (grub_efi_get_memory_map): Likewise.
13077         (grub_efi_mm_init): Likewise.
13078         (grub_efi_mm_fini): Likewise.
13079         (grub_efi_init): Likewise.
13080         (grub_efi_fini): Likewise.
13082         * include/grub/i386/efi/time.h: Do not include
13083         grub/symbol.h. Include grub/efi/time.h.
13084         (GRUB_TICKS_PER_SECOND): Removed.
13085         (grub_get_rtc): Likewise.
13087         * include/grub/efi/api.h (struct grub_efi_memory_descriptor):
13088         Added padding. The EFI spec is buggy.
13089         (GRUB_EFI_BLACK): New macro.
13090         (GRUB_EFI_BLUE): Likewise.
13091         (GRUB_EFI_GREEN): Likewise.
13092         (GRUB_EFI_CYAN): Likewise.
13093         (GRUB_EFI_RED): Likewise.
13094         (GRUB_EFI_MAGENTA): Likewise.
13095         (GRUB_EFI_BROWN): Likewise.
13096         (GRUB_EFI_LIGHTGRAY): Likewise.
13097         (GRUB_EFI_BRIGHT): Likewise.
13098         (GRUB_EFI_DARKGRAY): Likewise.
13099         (GRUB_EFI_LIGHTBLUE): Likewise.
13100         (GRUB_EFI_LIGHTGREEN): Likewise.
13101         (GRUB_EFI_LIGHTCYAN): Likewise.
13102         (GRUB_EFI_LIGHTRED): Likewise.
13103         (GRUB_EFI_LIGHTMAGENTA): Likewise.
13104         (GRUB_EFI_YELLOW): Likewise.
13105         (GRUB_EFI_WHITE): Likewise.
13106         (GRUB_EFI_BACKGROUND_BLACK): Likewise.
13107         (GRUB_EFI_BACKGROUND_BLUE): Likewise.
13108         (GRUB_EFI_BACKGROUND_GREEN): Likewise.
13109         (GRUB_EFI_BACKGROUND_CYAN): Likewise.
13110         (GRUB_EFI_BACKGROUND_RED): Likewise.
13111         (GRUB_EFI_BACKGROUND_MAGENTA): Likewise.
13112         (GRUB_EFI_BACKGROUND_BROWN): Likewise.
13113         (GRUB_EFI_BACKGROUND_LIGHTGRAY): Likewise.
13114         (GRUB_EFI_TEXT_ATTR): Likewise.
13116         * conf/i386-efi.rmk (kernel_mod_SOURCES): Added kern/efi/efi.c,
13117         kern/efi/init.c, kern/efi/mm.c, and term/efi/console.c.
13118         (kernel_mod_HEADERS): Added efi/time.h.
13120 2006-04-18  Yoshinori K. Okuji  <okuji@enbug.org>
13122         * DISTLIST: Added conf/i386-efi.mk, conf/i386-efi.rmk,
13123         include/grub/efi/api.h, include/grub/efi/console_control.h,
13124         include/grub/efi/efi.h, include/grub/efi/pe32.h,
13125         include/grub/i386/efi/time.h, kern/efi/efi.c,
13126         kern/i386/efi/init.c, kern/i386/efi/startup.S,
13127         and util/i386/efi/grub-mkimage.c.
13129         * Makefile.in (RMKFILES): Added i386-efi.rmk.
13131         * genmk.rb (PModule#rule): Do not export symbols if
13132         #{prefix}_EXPORTS is set to "no".
13134         * conf/i386-efi.mk: New file.
13135         * conf/i386-efi.rmk: Likewise.
13136         * include/grub/efi/api.h: Likewise.
13137         * include/grub/efi/console_control.h: Likewise.
13138         * include/grub/efi/efi.h: Likewise.
13139         * include/grub/efi/pe32.h: Likewise.
13140         * include/grub/i386/efi/time.h: Likewise.
13141         * kern/efi/efi.c: Likewise.
13142         * kern/i386/efi/init.c: Likewise.
13143         * kern/i386/efi/startup.S: Likewise.
13144         * util/i386/efi/grub-mkimage.c: Likewise.
13146 2006-04-17  Marco Gerards  <marco@gnu.org>
13148         * include/grub/script.h: Include <grub/parser.h> and
13149         "grub_script.tab.h".
13150         (struct grub_lexer_param): New struct.
13151         (struct grub_parser_param): Likewise.
13152         (grub_script_create_arglist): Pass the state in an argument.
13153         (grub_script_add_arglist): Likewise.
13154         (grub_script_create_cmdline): Likewise.
13155         (grub_script_create_cmdblock): Likewise.
13156         (grub_script_create_cmdif): Likewise.
13157         (grub_script_create_cmdmenu): Likewise.
13158         (grub_script_add_cmd): Likewise.
13159         (grub_script_arg_add): Likewise.
13160         (grub_script_lexer_ref): Likewise.
13161         (grub_script_lexer_deref): Likewise.
13162         (grub_script_lexer_record_start): Likewise.
13163         (grub_script_lexer_record_stop): Likewise.
13164         (grub_script_mem_record): Likewise.
13165         (grub_script_mem_record_stop): Likewise.
13166         (grub_script_malloc): Likewise.
13167         (grub_script_yylex): Likewise.
13168         (grub_script_yyparse): Likewise.
13169         (grub_script_yyerror): Likewise.
13170         (grub_script_yylex): Likewise.
13171         (grub_script_lexer_init): Return the state.
13173         * normal/lexer.c (grub_script_lexer_state): Removed variable.
13174         (grub_script_lexer_done): Likewise.
13175         (grub_script_lexer_getline): Likewise.
13176         (grub_script_lexer_refs): Likewise.
13177         (script): Likewise.
13178         (newscript): Likewise.
13179         (record): Likewise.
13180         (recording): Likewise.
13181         (recordpos): Likewise.
13182         (recordlen): Likewise.
13183         (grub_script_lexer_init): Return the state instead of setting
13184         global variables.
13185         (grub_script_lexer_ref): Use the newly added argument for state
13186         instead of globals.
13187         (grub_script_lexer_deref): Likewise.
13188         (grub_script_lexer_record_start): Likewise.
13189         (grub_script_lexer_record_stop): Likewise.
13190         (recordchar): Likewise.
13191         (nextchar): Likewise.
13192         (grub_script_yylex2): Likewise.
13193         (grub_script_yylex): Likewise.
13194         (grub_script_yyerror): Likewise.
13196         * normal/parser.y (func_mem): Removed variable.
13197         (menu_entry): Likewise.
13198         (err): Likewise.
13199         (%lex-param): New parser option.
13200         (%parse-param): Likewise.
13201         (script): Always return the AST.
13202         (argument): Pass the state around.
13203         (arguments): Likewise.
13204         (grubcmd): Likewise.
13205         (commands): Likewise.
13206         (function): Likewise.
13207         (menuentry): Likewise.
13208         (if_statement): Likewise.
13209         (if): Likewise.
13211         * normal/script.c (grub_script_memused): Removed variable.
13212         (grub_script_parsed): Likewise.
13213         (grub_script_malloc): Added a state argument.  Use that instead of
13214         global variables.
13215         (grub_script_mem_record): Likewise.
13216         (grub_script_mem_record_stop): Likewise.
13217         (grub_script_arg_add): Likewise.
13218         (grub_script_add_arglist): Likewise.
13219         (grub_script_create_cmdline): Likewise.
13220         (grub_script_create_cmdif): Likewise.
13221         (grub_script_create_cmdmenu): Likewise.
13222         (grub_script_add_cmd): Likewise.
13223         (grub_script_parse): Setup the state before calling the parser.
13225 2006-04-16  Marco Gerards  <marco@gnu.org>
13227         * normal/command.c (grub_command_init): Remove the title command.
13229         * normal/lexer.c (grub_script_yylex): Renamed from this...
13230         (grub_script_yylex2): ... to this.
13231         (grub_script_yylex): New function.  Temporary
13232         introduced to filter some tokens.
13233         (grub_script_yyerror): Print a newline.
13235         * normal/main.c (read_config_file): Output information about the
13236         lines that contain errors.  Wait for a key after all lines have
13237         been processed.  Don't return an empty menu.
13239         * normal/parser.y (func_mem): Don't initialize.
13240         (menu_entry): Likewise.
13241         (err): New variable.
13242         (script): Don't return anything when an error was encountered.
13243         (ws, returns): Removed rules.
13244         (argument): Disabled concatenated variable support.
13245         (arguments): Remove explicit separators.
13246         (grubcmd): Likewise.
13247         (function): Likewise.
13248         (menuentry): Likewise.
13249         (if): Likewise.
13250         (commands): Likewise.  Add error handling.
13252         * normal/script.c (grub_script_create_cmdline): If
13253         `grub_script_parsed' is 0, assume the parser encountered an error.
13255 2006-04-02  Yoshinori K. Okuji  <okuji@enbug.org>
13257         * configure.ac: Add support for EFI. Fix the typo
13258         BUILD_LDDFLAGS. Restore the LDFLAGS after testing.
13260 2006-04-01  Vesa Jaaskelainen  <chaac@nic.fi>
13262         * util/unifont2pff.rb: Removed unnecessary byte ordering.  Now
13263         foreign multibyte characters should be shown correctly.
13265 2006-04-01  Vesa Jaaskelainen  <chaac@nic.fi>
13267         * normal/main.c (grub_normal_menu_addentry): Fixed menu size
13268         calculation.
13269         (read_config_file): Made it to close file before returning.
13271 2006-03-31  Vesa Jaaskelainen  <chaac@nic.fi>
13273         * DISTLIST: Added include/grub/i386/pc/vbeblit.h,
13274         include/grub/i386/pc/vbefill.h, video/i386/pc/vbeblit.c,
13275         video/i386/pc/vbefill.c.
13277         * conf/i386-pc.rmk (vbe_mod_SOURCES): Added video/i386/pc/vbeblit.c,
13278         video/i386/pc/vbefill.c.
13280         * include/grub/video.h (grub_video_blit_format): New enum.
13281         (grub_video_mode_info): Added new member blit_format.
13282         (grub_video_get_blit_format): New function prototype.
13284         * include/grub/i386/pc/vbe.h (grub_video_vbe_get_video_ptr): New
13285         function prototype.
13286         (grub_video_vbe_map_rgb): Likewise.
13287         (grub_video_vbe_unmap_color): Likewise.
13289         * include/grub/i386/pc/vbeblit.h: New file.
13291         * include/grub/i386/pc/vbefill.h: New file.
13293         * video/video.c (grub_video_get_blit_format): New function.
13294         (grub_video_vbe_get_video_ptr): Re-declared as non-static.
13295         (grub_video_vbe_map_rgb): Likewise.
13296         (grub_video_vbe_unmap_color): Likewise.
13298         * video/i386/pc/vbe.c (grub_video_vbe_fill_rect): Changed to use more
13299         optimized fills.
13300         (grub_video_vbe_blit_render_target): Changed to use more optimized
13301         blits.
13302         (grub_video_vbe_setup): Added detection for optimized settings.
13303         (grub_video_vbe_create_render_target): Likewise.
13305         * video/i386/pc/vbeblit.c: New file.
13307         * video/i386/pc/vbefill.c: New file.
13309 2006-03-30  Vesa Jaaskelainen  <chaac@nic.fi>
13311         * font/manager.c (grub_font_get_glyph): Removed font fixup from
13312         here...
13314         * util/unifont2pff.rb: ... and moved it to here.  Improved argument
13315         parsing to support both hex and dec ranges.  If filename was missing
13316         show usage information.
13318 2006-03-14  Vesa Jaaskelainen  <chaac@nic.fi>
13320         * DISTLIST: Added include/grub/video.h, term/gfxterm.c,
13321         video/video.c, commands/videotest.c.  Removed term/i386/pc/vesafb.c.
13323         * conf/i386-pc.rmk (pkgdata_MODULES): Added video.mod,
13324         gfxterm.mod, videotest.mod.  Removed vga.mod, vesafb.mod.
13325         (video_mod_SOURCES): Added.
13326         (video_mod_CFLAGS): Likewise.
13327         (video_mod_LDFLAGS): Likewise.
13328         (gfxterm_mod_SOURCES): Likewise.
13329         (gfxterm_mod_CFLAGS): Likewise.
13330         (gfxterm_mod_LDFLAGS): Likewise.
13331         (videotest_mod_SOURCES): Likewise.
13332         (videotest_mod_CFLAGS): Likewise.
13333         (videotest_mod_LDFLAGS): Likewise.
13334         (vesafb_mod_SOURCES): Removed.
13335         (vesafb_mod_CFLAGS): Likewise.
13336         (vesafb_mod_LDFLAGS): Likewise.
13337         (vga_mod_SOURCES): Likewise.
13338         (vga_mod_CFLAGS): Likewise.
13339         (vga_mod_LDFLAGS): Likewise.
13341         * commands/videotest.c: New file.
13343         * font/manager.c (fill_with_default_glyph): Modified to use
13344         grub_font_glyph.
13345         (grub_font_get_glyph): Likewise.
13346         (fontmanager): Renamed from this...
13347         (font_manager): ... to this.
13349         * include/grub/font.h (grub_font_glyph): Added new structure.
13350         (grub_font_get_glyph): Modified to use grub_font_glyph.
13352         * include/grub/misc.h (grub_abs): Added as inline function.
13354         * include/grub/video.h: New file.
13356         * include/grub/i386/pc/vbe.h (GRUB_VBE_STATUS_OK): New macro.
13357         (GRUB_VBE_MEMORY_MODEL_PACKED_PIXEL): Likewise.
13358         (GRUB_VBE_MEMORY_MODEL_DIRECT_COLOR): Likewise.
13359         (grub_vbe_get_controller_info): Renamed from this...
13360         (grub_vbe_bios_get_controller_info): ... to this.
13361         (grub_vbe_get_mode_info): Renamed from this...
13362         (grub_vbe_bios_get_mode_info): ... to this.
13363         (grub_vbe_set_mode): Renamed from this...
13364         (grub_vbe_bios_set_mode): ... to this.
13365         (grub_vbe_get_mode): Renamed from this...
13366         (grub_vbe_bios_get_mode): ... to this.
13367         (grub_vbe_set_memory_window): Renamed from this...
13368         (grub_vbe_bios_set_memory_window): ... to this.
13369         (grub_vbe_get_memory_window): Renamed from this...
13370         (grub_vbe_bios_get_memory_window): ... to this.
13371         (grub_vbe_set_scanline_length): Renamed from this...
13372         (grub_vbe_set_scanline_length): ... to this.
13373         (grub_vbe_get_scanline_length): Renamed from this...
13374         (grub_vbe_bios_get_scanline_length): ... to this.
13375         (grub_vbe_set_display_start): Renamed from this...
13376         (grub_vbe_bios_set_display_start): ... to this.
13377         (grub_vbe_get_display_start): Renamed from this...
13378         (grub_vbe_bios_get_display_start): ... to this.
13379         (grub_vbe_set_palette_data): Renamed from this...
13380         (grub_vbe_bios_set_palette_data): ... to this.
13381         (grub_vbe_set_pixel_rgb): Removed.
13382         (grub_vbe_set_pixel_index): Likewise.
13384         * kern/i386/pc/startup.S (grub_vbe_get_controller_info): Renamed
13385         from this...
13386         (grub_vbe_bios_get_controller_info): ... to this.
13387         (grub_vbe_get_mode_info): Renamed from this...
13388         (grub_vbe_bios_get_mode_info): ... to this.
13389         (grub_vbe_set_mode): Renamed from this...
13390         (grub_vbe_bios_set_mode): ... to this.
13391         (grub_vbe_get_mode): Renamed from this...
13392         (grub_vbe_bios_get_mode): ... to this.
13393         (grub_vbe_set_memory_window): Renamed from this...
13394         (grub_vbe_bios_set_memory_window): ... to this.
13395         (grub_vbe_get_memory_window): Renamed from this...
13396         (grub_vbe_bios_get_memory_window): ... to this.
13397         (grub_vbe_set_scanline_length): Renamed from this...
13398         (grub_vbe_set_scanline_length): ... to this.
13399         (grub_vbe_get_scanline_length): Renamed from this...
13400         (grub_vbe_bios_get_scanline_length): ... to this.
13401         (grub_vbe_set_display_start): Renamed from this...
13402         (grub_vbe_bios_set_display_start): ... to this.
13403         (grub_vbe_get_display_start): Renamed from this...
13404         (grub_vbe_bios_get_display_start): ... to this.
13405         (grub_vbe_set_palette_data): Renamed from this...
13406         (grub_vbe_bios_set_palette_data): ... to this.
13407         (grub_vbe_bios_get_controller_info): Fixed problem with registers
13408         getting corrupted after calling it.  Added more pushes and pops.
13409         (grub_vbe_bios_set_mode): Likewise.
13410         (grub_vbe_bios_get_mode): Likewise.
13411         (grub_vbe_bios_get_memory_window): Likewise.
13412         (grub_vbe_bios_set_scanline_length): Likewise.
13413         (grub_vbe_bios_get_scanline_length): Likewise.
13414         (grub_vbe_bios_get_display_start): Likewise.
13415         (grub_vbe_bios_set_palette_data): Likewise.
13417         * normal/cmdline.c (cl_set_pos): Refresh the screen.
13418         (cl_insert): Likewise.
13419         (cl_delete): Likewise.
13421         * term/gfxterm.c: New file.
13423         * term/i386/pc/vesafb.c: Removed file.
13425         * video/video.c: New file.
13427         * video/i386/pc/vbe.c (real2pm): Added new function.
13428         (grub_video_vbe_draw_pixel): Likewise.
13429         (grub_video_vbe_get_video_ptr): Likewise.
13430         (grub_video_vbe_get_pixel): Likewise
13431         (grub_video_vbe_init): Likewise.
13432         (grub_video_vbe_fini): Likewise.
13433         (grub_video_vbe_setup): Likewise.
13434         (grub_video_vbe_get_info): Likewise.
13435         (grub_video_vbe_set_palette): Likewise.
13436         (grub_video_vbe_get_palette): Likewise.
13437         (grub_video_vbe_set_viewport): Likewise.
13438         (grub_video_vbe_get_viewport): Likewise.
13439         (grub_video_vbe_map_color): Likewise.
13440         (grub_video_vbe_map_rgb): Likewise.
13441         (grub_video_vbe_map_rgba): Likewise.
13442         (grub_video_vbe_unmap_color): Likewise.
13443         (grub_video_vbe_fill_rect): Likewise.
13444         (grub_video_vbe_blit_glyph): Likewise.
13445         (grub_video_vbe_blit_bitmap): Likewise.
13446         (grub_video_vbe_blit_render_target): Likewise.
13447         (grub_video_vbe_scroll): Likewise.
13448         (grub_video_vbe_swap_buffers): Likewise.
13449         (grub_video_vbe_create_render_target): Likewise.
13450         (grub_video_vbe_delete_render_target): Likewise.
13451         (grub_video_vbe_set_active_render_target): Likewise.
13452         (grub_vbe_set_pixel_rgb): Remove function.
13453         (grub_vbe_set_pixel_index): Likewise.
13454         (index_color_mode): Remove static variable.
13455         (active_mode): Likewise.
13456         (framebuffer): Likewise.
13457         (bytes_per_scan_line): Likewise.
13458         (grub_video_vbe_adapter): Added new static variable.
13459         (framebuffer): Likewise.
13460         (render_target): Likewise.
13461         (initial_mode): Likewise.
13462         (mode_in_use): Likewise.
13463         (mode_list): Likewise.
13465 2006-03-10  Marco Gerards  <marco@gnu.org>
13467         * configure.ac (AC_INIT): Bumped to 1.93.
13469         * DISTLIST: Added `include/grub/hfs.h'.
13471 2006-02-01  Yoshinori K. Okuji  <okuji@enbug.org>
13473         * boot/i386/pc/boot.S (general_error): Before looping, try INT
13474         18H, which might help the BIOS falling back to next boot media.
13476 2006-01-25  Yoshinori K. Okuji  <okuji@enbug.org>
13478         * util/i386/pc/grub-install.in: Escape a backslash. Reported by
13479         Poe Chen <poe.poechen@gmail.com>.
13481 2006-01-17  Marco Gerards  <marco@gnu.org>
13483         * include/grub/normal.h: Include <grub/script.h>.
13484         (grub_command_list): Removed struct.
13485         (grub_command_list_t): Removed type.
13486         (grub_menu_entry): Remove members `num' and `command_list'.  Add
13487         members `commands' and `sourcecode'.
13488         * include/grub/script.h: Add inclusion guards.
13489         (grub_script_cmd_menuentry): New struct.
13490         (grub_script_execute_menuentry): New prototype.
13491         (grub_script_lexer_record_start): Likewise.
13492         (grub_script_lexer_record_stop): Likewise.
13493         * normal/execute.c (grub_script_execute_menuentry): New function.
13494         * normal/lexer.c (record, recording, recordpos, recordlen): New
13495         variables.
13496         (grub_script_lexer_record_start): New function.
13497         (grub_script_lexer_record_stop): Likewise.
13498         (recordchar): Likewise.
13499         (nextchar): Likewise.
13500         (grub_script_yylex): Use `nextchar' to fetch new characters.  Use
13501         2048 as the buffer size.  Add the tokens `menuentry' and `@'.
13502         * normal/main.c: Include <grub/parser.h> and <grub/script.h>
13503         (current_menu): New variable.
13504         (free_menu): Mainly rewritten.
13505         (grub_normal_menu_addentry): New function.
13506         (read_config_file): Rewritten.
13507         * normal/menu.c (run_menu_entry): Mainly rewritten.
13508         * normal/menu_entry.c (make_screen): Rewritten the code to insert
13509         the menu entry.
13510         (run): Mainly rewritten.
13511         * normal/parser.y (menu_entry): New variable.
13512         (GRUB_PARSER_TOKEN_MENUENTRY): New token.
13513         (menuentry): New rule.
13514         (command): Add `menuentry'.
13515         (if_statement): Allow additional returns before `fi'.
13516         * normal/script.c (grub_script_create_cmdmenu): New function.
13518 2006-01-03  Marco Gerards  <marco@gnu.org>
13520         * INSTALL: GNU Bison is required.
13521         * configure.ac: Rewritten the test to detect Bison.
13522         * Makefile.in (YACC): New variable.  Reported by Xun Sun
13523         <xun.sun.cn@gmail.com>.
13525 2006-01-03  Marco Gerards  <marco@gnu.org>
13527         * fs/hfsplus.c (grub_hfsplus_read_block): Convert the offset of
13528         the HFS+ filesystem to filesystem blocks.
13529         (grub_hfsplus_iterate_dir): Cast the `fileinfo' assignment so a
13530         GCC warning is silenced.
13532 2006-01-03  Marco Gerards  <marco@gnu.org>
13534         * partmap/apple.c (apple_partition_map_iterate): Convert the data
13535         read from disk from big endian to host byte order.
13537 2006-01-03  Hollis Blanchard  <hollis@penguinppc.org>
13539         * fs/hfs.c: Include <grub/hfs.h>.  Added reference to the official
13540         documentation.
13541         (GRUB_HFS_EMBED_HFSPLUS_SIG): New macro.
13542         (grub_hfs_mount): Grammar fix in error. Make sure this is not an
13543         embedded HFS+ filesystem.
13544         (GRUB_HFS_MAGIC, grub_hfs_extent, grub_hfs_datarecord_t)
13545         (grub_hfs_sblock): Move from here...
13546         * include/grub/hfs.h: To here...  New file.
13547         * fs/hfsplus.c: Include <grub/hfs.h>.  Added reference to the official
13548         documentation.
13549         (GRUB_HFSPLUS_MAGIC, GRUB_HFSPLUSX_MAGIC, GRUB_HFSPLUS_SBLOCK):
13550         New macros.
13551         (grub_hfsplus_volheader): Change type of member `magic' to
13552         `grub_uint16_t'.
13553         (grub_hfsplus_data): Add new member `embedded_offset'.
13554         (grub_hfsplus_read_block): Add the HFS+ wrapper offset to the
13555         returned block.
13556         (grub_hfsplus_mount): Read the HFS+ wrapper if it exists.
13557         Calculate the offset.
13559 2005-12-25  Yoshinori K. Okuji  <okuji@enbug.org>
13561         * include/grub/i386/pc/boot.h (GRUB_BOOT_MACHINE_DRP_ADDR):
13562         Removed.
13563         (GRUB_BOOT_MACHINE_DRP_SIZE): Likewise.
13565 2005-12-25  Yoshinori K. Okuji  <okuji@enbug.org>
13567         * kern/env.c (grub_env_set): Check if ENV->VALUE instead of
13568         ENV->NAME is NULL after allocating ENV->VALUE.
13570 2005-12-25  Marco Gerards  <marco@gnu.org>
13572         * kern/env.c (grub_env_set): Rewritten the error handling code.
13574 2005-12-25  Yoshinori K. Okuji  <okuji@enbug.org>
13576         * geninit.sh: Made more robust, and more portable.
13578 2005-12-25  Marco Gerards  <marco@gnu.org>
13580         Add support for Apple HFS+ filesystems.
13582         * fs/hfsplus.c: New file.
13584         * DISTLIST: Added `fs/hfsplus.c'.
13586         * conf/common.rmk (pkgdata_MODULES): Add `hfsplus.mod'.
13587         (hfsplus_mod_SOURCES): New variable.
13588         (hfsplus_mod_CFLAGS): Likewise.
13589         (hfsplus_mod_LDFLAGS): Likewise.
13590         * conf/i386-pc.rmk (grub_setup_SOURCES): Add `fs/hfsplus.c'.
13591         (grub_setup_SOURCES): Likewise.
13592         (grub_mkdevicemap_SOURCES): Likewise.
13593         (grub_emu_SOURCES): Likewise.
13594         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
13596         * fs/fshelp.c (grub_fshelp_log2blksize): New function.
13598         * include/grub/fshelp.h (grub_fshelp_log2blksize): new prototype.
13600 2005-12-25  Yoshinori K. Okuji  <okuji@enbug.org>
13602         * DISTLIST: Added geninitheader.sh, geninit.sh, commands/test.c,
13603         commands/i386/pc/play.c, conf/common.mk, conf/common.rmk,
13604         include/grub/parser.h, include/grub/script.h, kern/parser.c,
13605         kern/sparc64/cache.S, normal/execute.c, normal/function.c,
13606         normal/lexer.c, normal/parser.y, normal/script.c, and
13607         partmap/gpt.c.
13608         Removed kern/sparc64/cache.c.
13610         * conf/common.rmk (DISTCLEANFILES): Added grub_script.tab.c,
13611         grub_script.tab.h, grub_modules_init.lst, grub_modules_init.h,
13612         grub_emu_init.c.
13614         * configure.ac (AC_INIT): Bumped to 1.92.
13616 2005-12-24  Vesa Jaaskelainen  <chaac@nic.fi>
13618         * kern/err.c (grub_error_push): Added new function to support error
13619         stacks.
13620         (grub_error_pop): Likewise.
13621         (grub_error_stack_items): New local variable to support error stacks.
13622         (grub_error_stack_pos): Likewise.
13623         (grub_error_stack_assert): Likewise.
13624         (GRUB_ERROR_STACK_SIZE): Added new define to configure maximum error
13625         stack depth.
13626         (grub_print_error): Added support to print errors from error stack.
13628         * include/grub/err.h (grub_error_push): Added function prototype.
13629         (grub_error_pop): Likewise.
13631 2005-12-09  Hollis Blanchard  <hollis@penguinppc.org>
13633         * configure.ac: Accept `powerpc64' as host_cpu.
13634         (amd64): Rename to `biarch32'.
13636         * kern/powerpc/cache.S (grub_arch_sync_caches): Handle
13637         non-cacheline-aligned addresses.
13639         * kern/dl.c (grub_dl_load_core): Add grub_dprintf messages.
13640         (grub_dl_flush_cache): Likewise.  Only call `grub_arch_sync_caches'
13641         if `size' is non-zero.
13643 2005-12-03  Marco Gerards  <mgerards@xs4all.nl>
13645         * conf/common.rmk (grub_modules_init.lst): Use `-printf "%P\n"'
13646         and `cd' to make sure the filename is not prefixed with a
13647         directory name.
13648         (pkgdata_MODULES): Add `gpt.mod'.
13649         (gpt_mod_SOURCES): New variable.
13650         (gpt_mod_CFLAGS): Likewise.
13651         (gpt_mod_LDFLAGS): Likewise.
13653         * conf/i386-pc.rmk (grub_emu_SOURCES): Add `partmap/gpt.c'.
13655         * include/grub/pc_partition.h (GRUB_PC_PARTITION_TYPE_GPT_DISK):
13656         New macro.
13658         * partmap/gpt.c: New file.
13660         * partmap/pc.c (pc_partition_map_iterate): Don't continue when a
13661         GPT partition map is detected.
13663 2005-12-03  Vincent Pelletier  <subdino2004@yahoo.fr>
13665         * commands/i386/pc/play.c: New file.
13666         * conf/i386-pc.rmk (pkgdata_MODULES): Added play.mod.
13667         (play_mod_SOURCES, play_mod_CFLAGS, play_mod_LDFLAGS): New
13668         macros.
13670 2005-11-27  Marco Gerards  <mgerards@xs4all.nl>
13672         * include/grub/dl.h (GRUB_MOD_INIT): Use `__attribute__
13673         ((unused))' to silence gcc warning.
13675 2005-11-26  Hollis Blanchard  <hollis@penguinppc.org>
13677         * configure.ac: Correct `AC_PROG_YACC' test.
13679 2005-11-22  Hollis Blanchard  <hollis@penguinppc.org>
13681         * util/powerpc/ieee1275/grub-install.in: Run the mount point
13682         check before installing files.
13684 2005-11-22  Mike Small  <smallm@panix.com>
13686         * util/powerpc/ieee1275/grub-install.in (grubdir): Fixed partition
13687         number regex so multidigit numbers are recognized correctly.
13689 2005-11-22  Mike Small  <smallm@panix.com>
13691         * loader/powerpc/ieee1275/linux.c (grub_rescue_cmd_linux): Add a
13692         debugging message before attempting to claim memory.
13693         (grub_rescue_cmd_initrd): Add a claim debugging message and try
13694         multiple addresses in case of failure.
13696 2005-11-22  Hollis Blanchard  <hollis@penguinppc.org>
13698         * term/tparm.c (get_space): Remove empty `if' statement.
13700         * fs/ufs.c (grub_ufs_find_file): Remove `grub_le_to_cpu32'.
13702         * kern/parser.c (check_varstate): Rename `state' to 's'.
13704 2005-11-22  Hollis Blanchard  <hollis@penguinppc.org>
13706         * partmap/acorn.c: Change `unsigned' to `unsigned int'.  Move all
13707         variable definitions to the beginning of each function.  Sort stack
13708         variables by size.
13709         (find): Rename to `acorn_partition_map_find'.  Cast `grub_disk_read'
13710         `buf' argument to `char *'.
13712 2005-11-22  Hollis Blanchard  <hollis@penguinppc.org>
13714         * conf/powerpc-ieee1275.rmk: Include conf/common.mk.
13715         (pkgdata_MODULES): Removed fshelp.mod, fat.mod, ext2.mod, ufs.mod,
13716         minix.mod, hfs.mod, jfs.mod, xfs.mod, affs.mod, sfs.mod,
13717         hello.mod, boot.mod, terminal.mod, ls.mod, cmp.mod, cat.mod,
13718         help.mod, font.mod, terminfo.mod, amiga.mod, apple.mod, pc.mod,
13719         sun.mod, acorn.mod, loopback.mod, default.mod, timeout.mod,
13720         configfile.mod, search.mod, gzio.mod and test.mod.
13721         (symlist.c, grub_script.tab.c, grub_script.tab.h, kernel_syms.lst)
13722         (grub_modules_init.lst, grub_modules_init.h, grub_emu_init.c)
13723         (fshelp_mod_SOURCES, fshelp_mod_CFLAGS, fshelp_mod_LDFLAGS)
13724         (fat_mod_SOURCES, fat_mod_CFLAGS, fat_mod_LDFLAGS)
13725         (ext2_mod_SOURCES, ext2_mod_CFLAGS, ext2_mod_LDFLAGS)
13726         (ufs_mod_SOURCES, ufs_mod_CFLAGS, ufs_mod_LDFLAGS)
13727         (minix_mod_SOURCES, minix_mod_CFLAGS, minix_mod_LDFLAGS)
13728         (hfs_mod_SOURCES, hfs_mod_CFLAGS, hfs_mod_LDFLAGS, jfs_mod_SOURCES)
13729         (jfs_mod_CFLAGS, jfs_mod_LDFLAGS, iso9660_mod_SOURCES)
13730         (iso9660_mod_CFLAGS, iso9660_mod_LDFLAGS, xfs_mod_SOURCES)
13731         (xfs_mod_CFLAGS, xfs_mod_LDFLAGS, affs_mod_SOURCES)
13732         (affs_mod_CFLAGS, affs_mod_LDFLAGS, sfs_mod_SOURCES)
13733         (sfs_mod_CFLAGS, sfs_mod_LDFLAGS, hello_mod_SOURCES)
13734         (hello_mod_CFLAGS, hello_mod_LDFLAGS, boot_mod_SOURCES)
13735         (boot_mod_CFLAGS, boot_mod_LDFLAGS, terminal_mod_SOURCES)
13736         (terminal_mod_CFLAGS, terminal_mod_LDFLAGS, ls_mod_SOURCES)
13737         (ls_mod_CFLAGS, ls_mod_LDFLAGS, cmp_mod_SOURCES, cmp_mod_CFLAGS)
13738         (cmp_mod_LDFLAGS, cat_mod_SOURCES, cat_mod_CFLAGS, cat_mod_LDFLAGS)
13739         (help_mod_SOURCES, help_mod_CFLAGS, help_mod_LDFLAGS)
13740         (font_mod_SOURCES, font_mod_CFLAGS, font_mod_LDFLAGS)
13741         (terminfo_mod_SOURCES, terminfo_mod_CFLAGS, terminfo_mod_LDFLAGS)
13742         (amiga_mod_SOURCES, amiga_mod_CFLAGS, amiga_mod_LDFLAGS)
13743         (apple_mod_SOURCES, apple_mod_CFLAGS, apple_mod_LDFLAG): Removed.
13745         * conf/common.mk (grub_modules_init.lst): Use `find' instead of
13746         `grep --include'.
13747         (pkgdata_MODULES): Add test.mod.
13749 2005-11-18  Timothy Baldwin  <T.E.Baldwin99@members.leeds.ac.uk>
13751         * genmk.rb: Fixed list rules moved to Makefile.in.  Recognise
13752         appending to variables with "+=".
13753         (PModule): Use full pathname to generate *.lst filenames.
13755         * Makefile.in: Fixed list rules moved from genmk.rb.
13756         (.DELETE_ON_ERROR): New special target.
13757         (RMKFILES): Add common.rmk and sparc64-ieee1275.rmk.
13759         * conf/i386-pc.rmk: Include conf/common.mk.
13760         (pkgdata_MODULES): Removed fshelp.mod, fat.mod, ext2.mod, ufs.mod,
13761         minix.mod, hfs.mod, jfs.mod, xfs.mod, affs.mod, sfs.mod,
13762         hello.mod, boot.mod, terminal.mod, ls.mod, cmp.mod, cat.mod,
13763         help.mod, font.mod, terminfo.mod, amiga.mod, apple.mod, pc.mod,
13764         sun.mod, acorn.mod, loopback.mod, default.mod, timeout.mod,
13765         configfile.mod, search.mod, gzio.mod and test.mod.
13766         (symlist.c, grub_script.tab.c, grub_script.tab.h, kernel_syms.lst)
13767         (grub_modules_init.lst, grub_modules_init.h, grub_emu_init.c)
13768         (fshelp_mod_SOURCES, fshelp_mod_CFLAGS, fshelp_mod_LDFLAGS)
13769         (fat_mod_SOURCES, fat_mod_CFLAGS, fat_mod_LDFLAGS)
13770         (ext2_mod_SOURCES, ext2_mod_CFLAGS, ext2_mod_LDFLAGS)
13771         (ufs_mod_SOURCES, ufs_mod_CFLAGS, ufs_mod_LDFLAGS)
13772         (minix_mod_SOURCES, minix_mod_CFLAGS, minix_mod_LDFLAGS)
13773         (hfs_mod_SOURCES, hfs_mod_CFLAGS, hfs_mod_LDFLAGS, jfs_mod_SOURCES)
13774         (jfs_mod_CFLAGS, jfs_mod_LDFLAGS, iso9660_mod_SOURCES)
13775         (iso9660_mod_CFLAGS, iso9660_mod_LDFLAGS, xfs_mod_SOURCES)
13776         (xfs_mod_CFLAGS, xfs_mod_LDFLAGS, affs_mod_SOURCES)
13777         (affs_mod_CFLAGS, affs_mod_LDFLAGS, sfs_mod_SOURCES)
13778         (sfs_mod_CFLAGS, sfs_mod_LDFLAGS, hello_mod_SOURCES)
13779         (hello_mod_CFLAGS, hello_mod_LDFLAGS, boot_mod_SOURCES)
13780         (boot_mod_CFLAGS, boot_mod_LDFLAGS, terminal_mod_SOURCES)
13781         (terminal_mod_CFLAGS, terminal_mod_LDFLAGS, ls_mod_SOURCES)
13782         (ls_mod_CFLAGS, ls_mod_LDFLAGS, cmp_mod_SOURCES, cmp_mod_CFLAGS)
13783         (cmp_mod_LDFLAGS, cat_mod_SOURCES, cat_mod_CFLAGS, cat_mod_LDFLAGS)
13784         (help_mod_SOURCES, help_mod_CFLAGS, help_mod_LDFLAGS)
13785         (font_mod_SOURCES, font_mod_CFLAGS, font_mod_LDFLAGS)
13786         (terminfo_mod_SOURCES, terminfo_mod_CFLAGS, terminfo_mod_LDFLAGS)
13787         (amiga_mod_SOURCES, amiga_mod_CFLAGS, amiga_mod_LDFLAGS)
13788         (apple_mod_SOURCES, apple_mod_CFLAGS, apple_mod_LDFLAG): Move from
13789         here...
13790         * conf/common.rmk: ... to here.  New file.
13792         * conf/common.mk: New file.
13794 2005-11-18  Yoshinori K. Okuji  <okuji@enbug.org>
13796         * conf/powerpc-ieee1275.rmk (grub_script.tab.h): Unified to ...
13797         (grub_script.tab.c): ... here.
13799         * conf/sparc64-ieee1275.rmk (grub_script.tab.h): Unified to ...
13800         (grub_script.tab.c): ... here.
13802         * conf/i386-pc.rmk (grub_script.tab.h): Unified to ...
13803         (grub_script.tab.c): ... here.
13805         * normal/command.c (grub_command_find): Fixed a memory leak of
13806         MODULE_NAME. Reported by Mike Small <smallm@panix.com>.
13808 2005-11-13  Timothy Baldwin  <T.E.Baldwin99@members.leeds.ac.uk>
13810         * include/grub/symbol.h: (FUNCTION): Use double quotes instead of
13811         "@" which marks the start of a comment on ARM.
13812         (VARIABLE): Likewise.
13814 2005-11-13  Timothy Baldwin  <T.E.Baldwin99@members.leeds.ac.uk>
13816         Add support for Linux/ADFS partition tables.
13818         * partmap/acorn.c: New file.
13820         * include/grub/acorn_filecore.h: Likewise.
13822         * DISTLIST: Added `partmap/acorn.c' and
13823         `include/grub/acorn_filecore.h'.
13825         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add
13826         `partmap/acorn.c'.
13827         (pkgdata_MODULES): Add `acorn.mod'.
13828         (acorn_mod_SOURCES): New variable.
13829         (acorn_mod_CFLAGS): Likewise.
13831         * conf/sparc64-ieee1275.rmk (grub_emu_SOURCES): Add
13832         `partmap/acorn.c'.
13833         (pkgdata_MODULES): Add `acorn.mod'.
13834         (acorn_mod_SOURCES): New variable.
13835         (acorn_mod_CFLAGS): Likewise.
13837         * conf/i386-pc.rmk (grub_emu_SOURCES): Add `partmap/acorn.c'.
13838         (pkgdata_MODULES): Add `acorn.mod'.
13839         (acorn_mod_SOURCES): New variable.
13840         (acorn_mod_CFLAGS): Likewise.
13841         (acorn_mod_LDFLAGS): Likewise.
13843         * include/types.h (grub_disk_addr_t): New typedef.
13845 2005-11-13  Marco Gerards  <mgerards@xs4all.nl>
13847         * geninit.sh: New file.
13849         * geninitheader.sh: Likewise.
13851         * commands/boot.c (grub_boot_init, grub_boot_fini): Removed.
13852         * commands/cat.c (grub_cat_init, grub_cat_fini): Likewise.
13853         * commands/cmp.c (grub_cmp_init, grub_cmp_fini): Likewise.
13854         * commands/configfile.c (grub_configfile_init)
13855         (grub_configfile_fini): Likewise.
13856         * commands/default.c (grub_default_init, grub_default_fini):
13857         Likewise.
13858         * commands/help.c (grub_help_init, grub_help_fini): Likewise.
13859         * commands/ls.c (grub_ls_init, grub_ls_fini): Likewise.
13860         * commands/search.c (grub_search_init, grub_search_fini): Likewise.
13861         * commands/terminal.c (grub_terminal_init, grub_terminal_fini):
13862         Likewise.
13863         * commands/test.c (grub_test_init, grub_test_fini): Likewise.
13864         * commands/timeout.c (grub_timeout_init, grub_timeout_fini):
13865         Likewise.
13866         * commands/i386/pc/halt.c (grub_halt_init, grub_halt_fini): Likewise.
13867         * commands/ieee1275/halt.c (grub_halt_init, grub_halt_fini):
13868         Likewise.
13869         * commands/i386/pc/reboot.c (grub_reboot_init, grub_reboot_fini):
13870         Likewise.
13871         * commands/ieee1275/reboot.c (grub_reboot_init, grub_reboot_fini):
13872         Likewise.
13873         * disk/loopback.c (grub_loop_init, grub_loop_fini): Likewise.
13874         * fs/affs.c (grub_affs_init, grub_affs_fini): Likewise.
13875         * fs/ext2.c (grub_ext2_init, grub_ext2_fini): Likewise.
13876         * fs/fat.c (grub_fat_init, grub_fat_fini): Likewise.
13877         * fs/hfs.c (grub_hfs_init, grub_hfs_fini): Likewise.
13878         * fs/iso9660.c (grub_iso9660_init, grub_iso9660_fini): Likewise.
13879         * fs/jfs.c (grub_jfs_init, grub_jfs_fini): Likewise.
13880         * fs/minix.c (grub_minix_init, grub_minix_fini): Likewise.
13881         * fs/sfs.c (grub_sfs_init, grub_sfs_fini): Likewise.
13882         * fs/ufs.c (grub_ufs_init, grub_ufs_fini): Likewise.
13883         * fs/xfs.c (grub_xfs_init, grub_xfs_fini): Likewise.
13884         * normal/main.c (grub_normal_init, grub_normal_fini): Likewise.
13885         * partmap/amiga.c (grub_amiga_partition_map_init)
13886         (grub_amiga_partition_map_fini): Likewise.
13887         * partmap/apple.c (grub_apple_partition_map_init)
13888         (grub_apple_partition_map_fini): Likewise.
13889         * partmap/pc.c (grub_pc_partition_map_init)
13890         (grub_pc_partition_map_fini): Likewise.
13891         * partmap/sun.c (grub_sun_partition_map_init,
13892         grub_sun_partition_map_fini): Likewise.
13893         * term/terminfo.c (grub_terminal_init, grub_terminal_fini):
13894         Likewise.
13896         * util/grub-emu.c: Include <grub_modules_init.h>.
13897         (main): Don't initialize and de-initialize any modules directly,
13898         use `grub_init_all' and `grub_fini_all' instead.
13900         * term/i386/pc/vesafb.c (grub_vesafb_init): Renamed to
13901         `grub_vesafb_mod_init'.
13902         (grub_vesafb_fini): Renamed to `grub_vesafb_mod_fini'.  Updated
13903         all users.
13904         * term/i386/pc/vga.c (grub_vga_init): Renamed to
13905         `grub_vga_mod_init'.  Updated all users.
13906         (grub_vga_fini): Renamed to `grub_vga_mod_fini'.
13908         * conf/i386-pc.rmk (grub_emu_SOURCES): Add `grub_emu_init.c'.
13909         (grub_modules_init.lst, grub_modules_init.h, grub_emu_init.c): New
13910         rules.
13912         * include/grub/dl.h (GRUB_MOD_INIT): Add argument `name'.
13913         Generate a function to initialize the module in utilities.
13914         Updated all callers.
13915         (GRUB_MOD_FINI): Add argument `name'.  Generate a function to
13916         initialize the module in utilities.  Updated all callers.
13918 2005-11-09  Hollis Blanchard  <hollis@penguinppc.org>
13920         * term/ieee1275/ofconsole.c (grub_ofconsole_cls): Use both the ANSI
13921         escape sequence and a literal ^L to clear the screen.
13923         * commands/ieee1275/suspend.c (grub_cmd_suspend): Clear the screen
13924         when returning from Open Firmware.
13926 2005-11-09  Hollis Blanchard  <hollis@penguinppc.org>
13928         * term/ieee1275/ofconsole.c (grub_ofconsole_width): New variable.
13929         (grub_ofconsole_height): Likewise.
13930         (grub_ofconsole_putchar): If `grub_curr_x' exceeds console width,
13931         manually insert a '\n'.
13932         (grub_ofconsole_getwh): Set and return `grub_ofconsole_width' and
13933         `grub_ofconsole_height'.  Return early if these are already set.
13935 2005-11-07  Vincent Pelletier  <subdino2004@yahoo.fr>
13937         * conf/sparc64-ieee1275.rmk (grub_emu_SOURCES): Add
13938         `commands/test.c', `fs/affs.c', `fs/sfs.c', `fs/xfs.c',
13939         `normal/execute.c', `normal/lexer.c', `io/gzio.c',
13940         `kern/parser.c', `grub_script.tab.c', `normal/function.c'
13941         and `normal/script.c'.
13942         (normal_mod_SOURCES): `normal/execute.c', `normal/lexer.c',
13943         `grub_script.tab.c', `normal/function.c' and `normal/script.c'.
13944         (test_mod_SOURCES): New variable.
13945         (test_mod_CFLAGS): Likewise.
13946         (test_mod_LDFLAGS): Likewise.
13947         (pkgdata_MODULES): Add `test.mod'.
13948         (grub_script.tab.c): New rule.
13949         (grub_script.tab.h): Likewise.
13951 2005-11-07  Marco Gerards  <mgerards@xs4all.nl>
13953         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add
13954         `commands/test.c', `normal/execute.c', `normal/lexer.c',
13955         `grub_script.tab.c', `normal/function.c' and `normal/script.c'.
13956         (normal_mod_SOURCES): `normal/execute.c', `normal/lexer.c',
13957         `grub_script.tab.c', `normal/function.c' and `normal/script.c'.
13958         (test_mod_SOURCES): New variable.
13959         (test_mod_CFLAGS): Likewise.
13960         (pkgdata_MODULES): Add `test.mod'.
13961         (grub_script.tab.c): New rule.
13962         (grub_script.tab.h): Likewise.
13964 2005-11-06  Marco Gerards  <mgerards@xs4all.nl>
13966         Add initial scripting support.
13968         * commands/test.c: New file.
13969         * include/grub/script.h: Likewise.
13970         * normal/execute.c: Likewise.
13971         * normal/function.c: Likewise.
13972         * normal/lexer.c: Likewise.
13973         * normal/parser.y: Likewise.
13974         * normal/script.c: Likewise.
13976         * configure.ac: Add `AC_PROG_YACC' test.
13978         * conf/i386-pc.rmk (grub_emu_SOURCES): Add `commands/test.c',
13979         `normal/execute.c', `normal/lexer.c', `grub_script.tab.c',
13980         `normal/function.c' and `normal/script.c'.
13981         (normal_mod_SOURCES): `normal/execute.c', `normal/lexer.c',
13982         `grub_script.tab.c', `normal/function.c' and `normal/script.c'.
13983         (test_mod_SOURCES, test_mod_CFLAGS, test_mod_LDFLAGS): New
13984         variables.
13985         (pkgdata_MODULES): Add `test.mod'.
13986         (grub_script.tab.c): New rule.
13987         (grub_script.tab.h): Likewise.
13989         * include/grub/err.h (grub_err_t): Add `GRUB_ERR_TEST_FAILURE'.
13991         * include/grub/normal.h (grub_test_init): New prototype.
13992         (grub_test_fini): Likewise.
13994         * normal/command.c: Include <grub/script.h>.
13995         (grub_command_execute): Rewritten.
13997         * util/grub-emu.c (main): Call `grub_test_init' and
13998         `grub_test_fini'.
14000 2005-11-03  Hollis Blanchard  <hollis@penguinppc.org>
14002         * kern/powerpc/ieee1275/init.c (grub_get_rtc): Initialize `msecs'
14003         to 0.
14004         * term/ieee1275/ofconsole.c (grub_ofconsole_checkkey): Return -1 if
14005         there are no pending characters.
14007 2005-11-03  Hollis Blanchard  <hollis@penguinppc.org>
14009         * kern/powerpc/ieee1275/openfw.c (grub_ieee1275_get_devname): Use
14010         `grub_strndup' to drop device arguments. Replace unnecessary
14011         `grub_strndup' with `grub_strdup'.
14013 2005-11-03  Hollis Blanchard  <hollis@penguinppc.org>
14015         * kern/term.c (grub_cls): Do not call grub_cur_term->cls() if the
14016         `debug' environment variable has been set.
14018 2005-11-02  Hollis Blanchard  <hollis@penguinppc.org>
14020         * Makefile.in (install-local): Use $(DATA).
14021         (uninstall): Likewise.
14022         * conf/powerpc-ieee1275.rmk (bin_UTILITIES): Move grub-mkimage...
14023         (sbin_UTILITIES): ... to here.
14024         (sbin_SCRIPTS): New variable.
14025         (grub_install_SOURCES): New variable.
14026         * util/powerpc/ieee1275/grub-install.in: New file.
14027         * util/powerpc/ieee1275/grub-mkimage.c (kernel_path): Remove
14028         variable.
14029         (add_segments): Call `grub_util_get_path'.
14031 2005-10-28  Yoshinori K. Okuji  <okuji@enbug.org>
14033         From Timothy Baldwin:
14034         * commands/ls.c (grub_ls_list_files): Close FILE with
14035         grub_file_close.
14036         * kern/misc.c (grub_vsprintf): Terminate the string S with NUL.
14038 2005-10-24  Marco Gerards  <mgerards@xs4all.nl>
14040         * include/grub/parser.h: New file.
14042         * kern/parser.c: Likewise.
14044         * conf/i386-pc.rmk (kernel_img_SOURCES): Add `kern/parser.c'.
14045         (grub_setup_SOURCES): Likewise.
14046         (grub_probefs_SOURCES): Likewise.
14047         (grub_emu_SOURCES): Likewise.
14048         (kernel_img_HEADERS): Add `parser.h'.
14050         * conf/powerpc-ieee1275.rmk (grubof_HEADERS): Add `parser.h'.
14051         (grub_emu_SOURCES): Add `kern/parser.c'.
14052         (grubof_SOURCES): Likewise.
14054         * conf/sparc64-ieee1275.rmk (grubof_HEADERS): Add `parser.h'.
14055         (grubof_SOURCES): Add `kern/parser.c'.
14057         * include/grub/misc.h (grub_split_cmdline): Removed prototype.
14059         * kern/misc.c (grub_split_cmdline): Removed function.
14061         * kern/rescue.c: Include <grub/parser.h>.
14062         (grub_enter_rescue_mode): Use `grub_parser_split_cmdline' instead
14063         of `grub_split_cmdline'.
14065         * normal/command.c: Include <grub/parser.h>.
14066         (grub_command_execute):  Use `grub_parser_split_cmdline' instead
14067         of `grub_split_cmdline'.
14069         * normal/completion.c: Include <grub/parser.h>.
14070         (cmdline_state): New variable.
14071         (iterate_dir): End the filename with a quote depending on the
14072         command line state.
14073         (get_state): new function.
14074         (grub_normal_do_completion): Use `grub_parser_split_cmdline' to
14075         split the arguments and determine the current argument.  When the
14076         argument string is not quoted, escape all spaces.
14078 2005-10-23  Vincent Pelletier  <subdino2004@yahoo.fr>
14080         * normal/sparc64/setjmp.S: New file.
14082 2005-10-23  Vincent Pelletier  <subdino2004@yahoo.fr>
14084         * include/grub/sparc64/libgcc.h: New file.
14085         * conf/sparc64-ieee1275.rmk (COMMON_ASFLAGS): Remove -Av9.
14086         (normal_mod_SOURCES): Use normal/sparc64/setjmp.S instead of
14087         normal/sparc64/setjmp.c.
14089 2005-10-23  Vincent Pelletier  <subdino2004@yahoo.fr>
14091         * kern/sparc64/dl.c: Rewritten for SPARCV9 ELF.
14092         * kern/sparc64/cache.S: New file.
14093         * kern/sparc64/cache.c: Removed.
14094         * conf/sparc64-ieee1275.rmk (COMMON_ASFLAGS): Add -Av9.
14095         (COMMON_CFLAGS): Add -mno-app-regs.  Remove -mcpu=v9 and
14096         -mtune=ultrasparc.
14097         (COMMON_LDFLAGS): Add -melf64_sparc.
14098         (grubof_HEADERS): Add sparc64/libgcc.h and machine/kernel.h.
14099         (grubof_SOURCES): Use cache.S instead of cache.c.
14100         (grubof_LDFLAGS): Add -mno-app-regs.  Replace "-Xlinker
14101         --oformat -Xlinker elf64-sparc" by "-Bstatic,-melf64_sparc".
14102         (pkgdata_MODULES): Uncomment. Leave linux.mod and _linux.mod
14103         commented though.
14104         (normal_mod_SOURCES): Add normal/completion.c and normal/misc.c.
14105         (_linux_mod_SOURCES, _linux_mod_CFLAGS, linux_mod_SOURCES)
14106         (linux_mod_CFLAGS): Commented out.
14107         (_linux_mod_LDFLAGS, linux_mod_LDFLAGS): New macro, commented
14108         out because module isn't built.
14109         (fshelp_mod_LDFLAGS, fat_mod_LDFLAGS, ext2_mod_LDFLAGS)
14110         (ufs_mod_LDFLAGS, minix_mod_LDFLAGS, hfs_mod_LDFLAGS)
14111         (jfs_mod_LDFLAGS, iso9660_mod_LDFLAGS, normal_mod_LDFLAGS)
14112         (hello_mod_LDFLAGS, boot_mod_LDFLAGS, terminal_mod_LDFLAGS)
14113         (ls_mod_LDFLAGS, cmp_mod_LDFLAGS, cat_mod_LDFLAGS)
14114         (font_mod_LDFLAGS, amiga_mod_LDFLAGS, apple_mod_LDFLAGS)
14115         (pc_mod_LDFLAGS, sun_mod_LDFLAGS, loopback_mod_LDFLAGS)
14116         (suspend_mod_LDFLAGS, reboot_mod_LDFLAGS, halt_mod_LDFLAGS)
14117         (help_mod_LDFLAGS, default_mod_LDFLAGS, timeout_mod_LDFLAGS)
14118         (configfile_mod_LDFLAGS, search_mod_LDFLAGS, xfs_mod_SOURCES)
14119         (xfs_mod_CFLAGS, xfs_mod_LDFLAGS, affs_mod_SOURCES)
14120         (affs_mod_CFLAGS, affs_mod_LDFLAGS, sfs_mod_SOURCES)
14121         (sfs_mod_CFLAGS, sfs_mod_LDFLAGS, gzio_mod_SOURCES)
14122         (gzio_mod_CFLAGS, gzio_mod_LDFLAGS): New macro.
14124 2005-10-20  Yoshinori K. Okuji  <okuji@enbug.org>
14126         * util/i386/pc/grub-probefs.c (main): Call grub_xfs_init and
14127         grub_xfs_fini. Do not call grub_hfs_init or grub_hfs_fini any
14128         longer, because HFS should not be used on PC.
14130 2005-10-20  Timothy Baldwin  <T.E.Baldwin99@members.leeds.ac.uk>
14132         * io/gzio.c (grub_gzio_read): Use OFFSET instead of FILE->OFFSET
14133         consistently within the loop.
14135 2005-10-15  Marco Gerards  <mgerards@xs4all.nl>
14137         * fs/xfs.c (grub_xfs_iterate_dir): Detect an error if part of a
14138         directory can not be read.
14140 2005-10-15  Yoshinori K. Okuji  <okuji@enbug.org>
14142         * configure.ac (AC_INIT): Increase the version number to 1.91.
14144         * DISTLIST: Added include/grub/terminfo.h, include/grub/tparm.h,
14145         include/grub/i386/pc/serial.h, term/terminfo.c, term/tparm.c and
14146         term/i386/pc/serial.c.
14148 2005-10-15  Yoshinori K. Okuji  <okuji@enbug.org>
14150         * kern/file.c (grub_file_seek): Seeking to an offset equal to a
14151         file size must be permitted.
14153         * kern/i386/pc/startup.S (multiboot_trampoline): Fix a mistake
14154         between %ah and %al.
14156 2005-10-15  Yoshinori K. Okuji  <okuji@enbug.org>
14158         * fs/xfs.c (grub_xfs_iterate_dir): Change the type of BLK to
14159         grub_uint64_t.
14160         Call the hook with a NUL-terminated filename.
14161         (grub_xfs_mount): Use grub_be_to_cpu32 instead of
14162         grub_cpu_to_be32.
14164         * kern/term.c (cursor_state): New variable.
14165         (grub_term_set_current): Reset the cursor state on a new
14166         terminal.
14167         (grub_setcursor): Rewritten to use CURSOR_STATE.
14168         (grub_getcursor): New function.
14170         * include/grub/term.h (grub_getcursor): New prototype.
14172         * io/gzio.c (test_header): Align BUF for accessing it as 32-bit
14173         integers on ARM. Reported by Timothy Baldwin
14174         <T.E.Baldwin99@members.leeds.ac.uk>.
14176 2005-10-11  Marco Gerards  <mgerards@xs4all.nl>
14178         * fs/sfs.c (grub_sfs_open): Don't free `data->label' if it is not
14179         allocated.
14180         (grub_sfs_dir): Likewise.
14182 2005-10-09  Marco Gerards  <mgerards@xs4all.nl>
14184         Add support for the SFS filesystem.
14186         * fs/sfs.c: New file.
14188         * DISTLIST: Added `fs/sfs.c'.
14190         * conf/i386-pc.rmk (grub_setup_SOURCES): Add `fs/sfs.c'.
14191         (grub_probefs_SOURCES): Likewise.
14192         (grub_emu_SOURCES): Likewise.
14193         (pkgdata_MODULES): Add `sfs.mod'.
14194         (sfs_mod_SOURCES): New variable.
14195         (sfs_mod_CFLAGS): Likewise.
14196         (sfs_mod_LDFLAGS): Likewise.
14198         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add `fs/sfs.c'.
14199         (pkgdata_MODULES): Add `sfs.mod'.
14200         (sfs_mod_SOURCES): New variable.
14201         (sfs_mod_CFLAGS): Likewise.
14203         * util/grub-emu.c (main): Call `grub_sfs_init' and
14204         `grub_sfs_fini'.
14206         * include/grub/fs.h (grub_sfs_init): New prototype.
14207         (grub_sfs_fini): Likewise.
14209 2005-10-07  Marco Gerards  <mgerards@xs4all.nl>
14211         Add support for the AFFS filesystem.
14213         * fs/affs.c: New file.
14215         * DISTLIST: Added `fs/affs.c'.
14217         * conf/i386-pc.rmk (grub_setup_SOURCES): Add `fs/affs.c'.
14218         (grub_probefs_SOURCES): Likewise.
14219         (grub_emu_SOURCES): Likewise.
14220         (pkgdata_MODULES): Add `affs.mod'.
14221         (affs_mod_SOURCES): New variable.
14222         (affs_mod_CFLAGS): Likewise.
14223         (affs_mod_LDFLAGS): Likewise.
14225         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add `fs/affs.c'.
14226         (pkgdata_MODULES): Add `affs.mod'.
14227         (affs_mod_SOURCES): New variable.
14228         (affs_mod_CFLAGS): Likewise.
14230         * util/grub-emu.c (main): Call `grub_affs_init' and
14231         `grub_affs_fini'.
14233         * include/grub/fs.h (grub_affs_init): New prototype.
14234         (grub_affs_fini): Likewise.
14236 2005-10-01  Marco Gerards  <mgerards@xs4all.nl>
14238         * fs/xfs.c (grub_xfs_iterate_dir): Add parentheses.
14240 2005-10-01  Marco Gerards  <mgerards@xs4all.nl>
14242         * configure.ac: Accept `x86_64' as host_cpu.  In that case add
14243         `-m32' to CFLAGS.
14245         * genmk.rb (class PModule): Always use `$(#{prefix}_LDFLAGS)' when
14246         linking.
14248         * conf/i386-pc.rmk (COMMON_CFLAGS): Add `-m32'.
14249         (COMMON_LDFLAGS): New variable.
14250         (kernel_img_LDFLAGS): Include `COMMON_FLAGS'.
14251         (_chain_mod_LDFLAGS, fshelp_mod_LDFLAGS, fat_mod_LDFLAGS)
14252         (ext2_mod_LDFLAGS, ufs_mod_LDFLAGS, minix_mod_LDFLAGS)
14253         (hfs_mod_LDFLAGS, jfs_mod_LDFLAGS, iso9660_mod_LDFLAGS)
14254         (xfs_mod_LDFLAGS, _linux_mod_LDFLAGS, linux_mod_LDFLAGS)
14255         (normal_mod_LDFLAGS, hello_mod_LDFLAGS, boot_mod_LDFLAGS)
14256         (terminal_mod_LDFLAGS, ls_mod_LDFLAGS, cmp_mod_LDFLAGS)
14257         (cat_mod_LDFLAGS, help_mod_LDFLAGS, reboot_mod_LDFLAGS)
14258         (halt_mod_LDFLAGS, vga_mod_LDFLAGS, font_mod_LDFLAGS)
14259         (terminfo_mod_LDFLAGS, serial_mod_LDFLAGS, _multiboot_mod_LDFLAGS)
14260         (multiboot_mod_LDFLAGS, amiga_mod_LDFLAGS, apple_mod_LDFLAGS)
14261         (pc_mod_LDFLAGS, sun_mod_LDFLAGS, loopback_mod_LDFLAGS)
14262         (default_mod_LDFLAGS, timeout_mod_LDFLAGS, configfile_mod_LDFLAGS)
14263         (vbe_mod_LDFLAGS, vesafb_mod_LDFLAGS, vbeinfo_mod_LDFLAGS)
14264         (vbetest_mod_LDFLAGS, search_mod_LDFLAGS, gzio_mod_LDFLAGS): New
14265         variables.
14266         (normal_mod_ASFLAGS): Add `-m32'.
14268         * include/grub/types.h (grub_host_addr_t, grub_host_off_t)
14269         (grub_host_size_t, grub_host_ssize_t): New types.
14270         (grub_addr_t, grub_off_t, grub_size_t, grub_ssize_t): Make type
14271         dependent of `GRUB_CPU_SIZEOF_VOID_P' instead on
14272         `GRUB_HOST_SIZEOF_VOID_P'.
14274         * include/grub/kernel.h (struct grub_module_header): Type of
14275         member offset changed to `grub_host_off_t'.  Type of member size
14276         changed to `grub_host_size_t'.
14277         (struct grub_module_info): Type of member offset changed to
14278         `grub_host_off_t'.  Type of member size changed to
14279         `grub_host_size_t'.
14281 2005-09-29  Yoshinori K. Okuji  <okuji@enbug.org>
14283         Make GRUB's kernel compliant to Multiboot Specification.
14285         * kern/i386/pc/startup.S (multiboot_header): New label.
14286         (multiboot_entry): Likewise.
14287         (multiboot_trampoline): Likewise.
14289         * include/grub/i386/pc/kernel.h (GRUB_KERNEL_MACHINE_RAW_SIZE):
14290         Increased to 0x4A0.
14292         * fs/xfs.c (grub_xfs_iterate_dir): Fix a syntax error. You may not
14293         put parentheses after a question mark.
14294         [!GRUB_UTIL] (my_mod): New variable.
14296         * util/grub-emu.c (main): Call grub_xfs_init and grub_xfs_fini.
14298 2005-09-28  Marco Gerards  <mgerards@xs4all.nl>
14300         Adds support for the XFS filesystem.  Btrees are not supported
14301         yet.
14303         * fs/xfs.c: New file.
14305         * DISTLIST: Added `fs/xfs.c'.
14307         * conf/i386-pc.rmk (grub_setup_SOURCES): Add `fs/xfs.c'.
14308         (grub_probefs_SOURCES): Likewise.
14309         (grub_emu_SOURCES): Likewise.
14310         (pkgdata_MODULES): Add `xfs.mod'.
14311         (xfs_mod_SOURCES): New variable.
14312         (xfs_mod_CFLAGS): Likewise.
14314         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add `fs/xfs.c'.
14315         (pkgdata_MODULES): Add `xfs.mod'.
14316         (xfs_mod_SOURCES): New variable.
14317         (xfs_mod_CFLAGS): Likewise.
14319         * util/grub-emu.c (main): Call `grub_xfs_init' and
14320         `grub_xfs_fini'.
14322         * include/grub/fs.h (grub_xfs_init): New prototype.
14323         (grub_xfs_fini): Likewise.
14326 2005-09-18  Vesa Jaaskelainen  <chaac@nic.fi>
14328         * video/i386/pc/vbe.c (grub_vbe_set_video_mode): In indexed
14329         color modes, allow greater than 16 colors to be configured as
14330         a default palette.
14332 2005-09-03  Yoshinori K. Okuji  <okuji@enbug.org>
14334         * normal/completion.c (complete_arguments): Add the qualifier
14335         const into OPTIONS.
14337         From Omniflux <omniflux+lists@omniflux.com>:
14338         * include/grub/terminfo.h: New file.
14339         * include/grub/tparm.h: Likewise.
14340         * include/grub/i386/pc/serial.h: Likewise.
14341         * term/terminfo.c: Likewise.
14342         * term/tparm.c: Likewise.
14343         * term/i386/pc/serial.c: Likewise.
14344         * conf/i386-pc.rmk (pkgdata_MODULES): Added terminfo.mod and
14345         serial.mod.
14346         (terminfo_mod_SOURCES): New variable.
14347         (terminfo_mod_CFLAGS): Likewise.
14348         (serial_mod_SOURCES): Likewise.
14349         (serial_mod_CFLAGS): Likewise.
14351 2005-08-31  Yoshinori K. Okuji  <okuji@enbug.org>
14353         * DISTLIST: Replaced boot/powerpc/ieee1275/crt0.S and
14354         boot/powerpc/ieee1275/cmain.c with kern/powerpc/ieee1275/crt0.S
14355         and kern/powerpc/ieee1275/cmain.c, respectively.
14357         * boot/powerpc/ieee1275/crt0.S: Moved to ...
14358         * kern/powerpc/ieee1275/crt0.S: ... here.
14360         * boot/powerpc/ieee1275/cmain.c: Moved to ...
14361         * kern/powerpc/ieee1275/cmain.c: ... here.
14363         * conf/powerpc-ieee1275.rmk (grubof_SOURCES): Use
14364         kern/powerpc/ieee1275/crt0.S and kern/powerpc/ieee1275/cmain.c
14365         instead of boot/powerpc/ieee1275/crt0.S and
14366         boot/powerpc/ieee1275/cmain.c, respectively.
14368         * boot/i386/pc/boot.S (lba_mode): Do not store the total number of
14369         sectors. It was not used anyway.
14371 2005-08-30  Hollis Blanchard  <hollis@penguinppc.org>
14373         * term/ieee1275/ofconsole.c (grub_ofconsole_getcharwidth): Fix
14374         `unused parameter' warning.
14376 2005-08-30  Hollis Blanchard  <hollis@penguinppc.org>
14378         * term/ieee1275/ofconsole.c (grub_ofconsole_getcharwidth): New
14379         function.
14380         (grub_ofconsole_term): Specify grub_ofconsole_getcharwidth as
14381         getcharwidth.
14383 2005-08-28  Marco Gerards  <metgerards@student.han.nl>
14385         * include/grub/normal.h (enum grub_completion_type): Added
14386         `GRUB_COMPLETION_TYPE_ARGUMENT'.
14388         * normal/cmdline.c (print_completion): Handle
14389         the `GRUB_COMPLETION_TYPE_ARGUMENT' type.
14390         * normal/menu_entry.c (store_completion): Likewise.
14392         * normal/completion.c (complete_arguments): New function.
14393         (grub_normal_do_completion): Call `complete_arguments' when the
14394         current words start with a dash.
14396 2005-08-27  Marco Gerards  <metgerards@student.han.nl>
14398         * conf/powerpc-ieee1275.rmk (pkgdata_MODULES): Fix typo (use
14399         `gzio.mod' instead of `io.mod').
14401 2005-08-22  Yoshinori K. Okuji  <okuji@enbug.org>
14403         * gendistlist.sh (EXTRA_DISTFILES): Added genfslist.sh.
14404         (DISTDIRS): Added io and video.
14405         Rewrite the search routine to make an output consistently.
14407         * DISTLIST: Added conf/sparc64-ieee1275.mk,
14408         conf/sparc64-ieee1275.rmk, include/grub/gzio.h,
14409         include/grub/ieee1275/ieee1275.h, include/grub/ieee1275/ofdisk.h,
14410         io/gzio.c, kern/sparc64/cache.c, kern/sparc64/dl.c,
14411         kern/sparc64/ieee1275/init.c, kern/sparc64/ieee1275/openfw.c and
14412         util/powerpc/ieee1275/misc.c.
14414         * include/grub/gzio.h: New file.
14415         * io/gzio.c: Likewise.
14417         * kern/file.c (grub_file_close): Call grub_device_close only if
14418         FILE->DEVICE is not NULL.
14420         * include/grub/mm.h [!NULL] (NULL): New macro.
14422         * include/grub/err.h (GRUB_ERR_BAD_GZIP_DATA): New constant.
14424         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Added io/gzip.c.
14425         (pkgdata_MODULES): Added gzio.mod.
14426         (gzio_mod_SOURCES): New variable.
14427         (gzio_mod_CFLAGS): Likewise.
14429         * conf/i386-pc.rmk (grub_emu_SOURCES): Added io/gzip.c.
14430         (pkgdata_MODULES): Added gzio.mod.
14431         (gzio_mod_SOURCES): New variable.
14432         (gzio_mod_CFLAGS): Likewise.
14434         * commands/cat.c: Include grub/gzio.h.
14435         (grub_cmd_cat): Use grub_gzfile_open instead of
14436         grub_file_open.
14438         * commands/cmp.c: Include grub/gzio.h.
14439         (grub_cmd_cmp): Use grub_gzfile_open instead of
14440         grub_file_open.
14442         * loader/i386/pc/multiboot.c: Include grub/gzio.h.
14443         (grub_rescue_cmd_multiboot): Use grub_gzfile_open instead of
14444         grub_file_open.
14445         (grub_rescue_cmd_module): Likewise.
14447 2005-08-21  Vincent Pelletier  <subdino2004@yahoo.fr>
14449         * conf/sparc64-ieee1275.rmk (grubof_SOURCES): The first file must be
14450         kern/sparc64/ieee1275/init.c because it contains _start.
14451         * conf/sparc64-ieee1275.mk: Generated from conf/sparc64-ieee1275.rmk.
14453 2005-08-21  Vincent Pelletier  <subdino2004@yahoo.fr>
14455         * configure.ac: Add support for sparc64 host with ieee1275
14456         firmware.
14457         * configure: Generated from configure.ac.
14458         * disk/ieee1275/ofdisk.c (grub_ofdisk_open): Use grub_ssize_t
14459         instead of int.
14460         (grub_ofdisk_read): Likewise.
14461         (grub_ofdisk_open): Use %p to print pointer values, and cast the
14462         pointers as (void *) to remove a warning.
14463         (grub_ofdisk_close): Likewise.
14464         (grub_ofdisk_read): Likewise.
14465         * kern/ieee1275/ieee1275.c (grub_ieee1275_exit): This never
14466         returns, so make it return void to remove a warning.
14467         * include/grub/ieee1275/ieee1275.h (grub_ieee1275_exit):
14468         Corresponding prototype change.
14469         * kern/mm.c (grub_mm_init_region): Use %p to print pointer
14470         values, and cast the pointers as (void *) to remove a warning.
14471         (grub_mm_dump): Likewise.
14472         * conf/sparc64-ieee1275.mk: New file.
14473         * conf/sparc64-ieee1275.rmk: Likewise.
14474         * include/grub/sparc64/setjmp.h: Likewise.
14475         * include/grub/sparc64/types.h: Likewise.
14476         * include/grub/sparc64/ieee1275/console.h: Likewise.
14477         * include/grub/sparc64/ieee1275/ieee1275.h: Likewise.
14478         * include/grub/sparc64/ieee1275/kernel.h: Likewise.
14479         * include/grub/sparc64/ieee1275/time.h: Likewise.
14480         * kern/sparc64/cache.c: Likewise.
14481         * kern/sparc64/dl.c: Likewise.
14482         * kern/sparc64/ieee1275/init.c: Likewise.
14483         * kern/sparc64/ieee1275/openfw.c: Likewise.
14485 2005-08-21  Yoshinori K. Okuji  <okuji@enbug.org>
14487         * util/console.c (grub_ncurses_putchar): If C is greater than
14488         0x7f, set C to a question mark.
14489         (grub_ncurses_getcharwidth): New function.
14490         (grub_ncurses_term): Specify grub_ncurses_getcharwidth as
14491         getcharwidth.
14493         * normal/menu.c (print_entry): Made aware of Unicode. First,
14494         convert TITLE to UCS-4, and predict the cursor position by
14495         grub_getcharwidth.
14497         * include/grub/misc.h (grub_utf8_to_ucs4): Specify the qualifier
14498         const to SRC.
14499         * kern/misc.c (grub_utf16_to_utf8): Likewise.
14501 2005-08-20  Yoshinori K. Okuji  <okuji@enbug.org>
14503         * loader/powerpc/ieee1275/linux.c (grub_rescue_cmd_linux): Specify
14504         the boot file by the option BOOT_IMAGE. Use grub_stpcpy instead of
14505         grub_strcat.
14507         * loader/i386/pc/linux.c (grub_rescue_cmd_linux): Specify the boot
14508         file by the option BOOT_IMAGE. Use grub_stpcpy instead of
14509         grub_strcpy and grub_strlen. Take it into account that a space
14510         character is inserted as a delimiter.
14512 2005-08-20  Yoshinori K. Okuji  <okuji@enbug.org>
14514         * partmap/pc.c (pc_partition_map_iterate): Include the value of an
14515         invalid magic in the error.
14517         * commands/search.c: New file.
14519         * util/grub-emu.c (main): Call grub_search_init and
14520         grub_search_fini.
14522         * kern/rescue.c (grub_rescue_print_disks): Removed.
14523         (grub_rescue_print_devices): New function.
14524         (grub_rescue_cmd_ls): Use grub_device_iterate with
14525         grub_rescue_print_devices instead of grub_disk_dev_iterate with
14526         grub_rescue_print_disks.
14528         * kern/partition.c (grub_partition_iterate): Return the result of
14529         PARTMAP->ITERATE instead of GRUB_ERRNO.
14531         * kern/device.c: Include grub/partition.h.
14532         (grub_device_iterate): New function.
14534         * include/grub/partition.h (grub_partition_iterate): Return int
14535         instead of grub_err_t.
14537         * include/grub/normal.h [GRUB_UTIL] (grub_search_init): New
14538         prototype.
14539         [GRUB_UTIL] (grub_search_fini): Likewise.
14541         * include/grub/device.h (grub_device_iterate): New prototype.
14543         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Added
14544         commands/search.c.
14545         (pkgdata_MODULES): Added search.mod.
14546         (search_mod_SOURCES): New variable.
14547         (search_mod_CFLAGS): Likewise.
14549         * conf/i386-pc.rmk (grub_emu_SOURCES): Added commands/search.c.
14550         (pkgdata_MODULES): Added search.mod.
14551         (search_mod_SOURCES): New variable.
14552         (search_mod_CFLAGS): Likewise.
14554         * commands/ls.c (grub_ls_list_disks): Renamed to ...
14555         (grub_ls_list_devices): ... this, and use grub_device_iterate.
14556         All callers changed.
14558         * DISTLIST: Added commands/search.c.
14560 2005-08-20  Yoshinori K. Okuji  <okuji@enbug.org>
14562         * kern/term.c (grub_putchar): Use grub_utf8_to_ucs4 for the
14563         conversion.
14564         (grub_getcharwidth): New function.
14566         * kern/misc.c (grub_utf8_to_ucs4): New function.
14568         * include/grub/term.h (struct grub_term): Added a new member
14569         "getcharwidth".
14570         (grub_getcharwidth): New prototype.
14572         * include/grub/misc.h (grub_utf8_to_ucs4): New prototype.
14574         * term/i386/pc/console.c (map_char): New function. Segregated from
14575         grub_console_putchar.
14576         (grub_console_putchar): Use map_char.
14577         (grub_console_getcharwidth): New function.
14578         (grub_console_term): Specified grub_console_getcharwidth as
14579         getcharwidth.
14581         * term/i386/pc/vga.c (grub_vga_getcharwidth): New function.
14582         (grub_vga_term): Specified grub_vga_getcharwidth as getcharwidth.
14584         * term/i386/pc/vesafb.c (grub_virtual_screen_setup): Return
14585         GRUB_ERRNO.
14586         (grub_vesafb_init): Do not use RC. Instead, use GRUB_ERRNO. Rely
14587         on grub_strtoul completely.
14588         (write_char): Declare local variables in the beginning of the
14589         function.
14590         (grub_vesafb_getcharwidth): New function.
14591         (grub_vesafb_term): Specified grub_vesafb_getcharwidth as
14592         getcharwidth.
14594 2005-08-19  Yoshinori K. Okuji  <okuji@enbug.org>
14596         * DISTLIST: Replace commands/i386/pc/vbe_list_modes.c and
14597         commands/i386/pc/vbe_test.c with commands/i386/pc/vbeinfo.c and
14598         commands/i386/pc/vbetest.c.
14600         * video/i386/pc/vbe.c (grub_vbe_probe): If INFOBLOCK is not NULL,
14601         call grub_vbe_get_controller_info again, because the returned
14602         information is volatile.
14603         (grub_vbe_set_video_mode): Mostly rewritten.
14604         (grub_vbe_get_video_mode): Use grub_vbe_probe and use
14605         grub_vbe_status_t correctly.
14606         (grub_vbe_get_video_mode_info): Likewise.
14607         (grub_vbe_set_pixel_rgb): Use a switch statement rather than
14608         several if statements.
14610         * commands/i386/pc/vbe_list_modes.c: Renamed to ...
14611         * commands/i386/pc/vbeinfo.c: ... this.
14613         * commands/i386/pc/vbe_test.c: Renamed to ...
14614         * commands/i386/pc/vbetest.c: ... this.
14616         * commands/i386/pc/vbeinfo.c (grub_cmd_vbe_list_modes): Renamed to
14617         ...
14618         (grub_cmd_vbeinfo): ... this. Save video modes before
14619         iterating. Skip a video mode, if it is not available, not enough
14620         information is given or it is monochrome. Show the memory
14621         model. Leave the interpretation of MODEVAR to grub_strtoul
14622         completely.
14623         (GRUB_MOD_INIT): Rename vbe_list_modes to vbeinfo.
14624         (GRUB_MOD_FINI): Likewise.
14626         * commands/i386/pc/vbetest.c (grub_cmd_vbe_test): Renamed to ...
14627         (grub_cmd_vbetest): ... this. Don't print unnecessarily. Use
14628         grub_err_t instead of grub_uint32_t. Don't use SPTR. Remove a
14629         duplicated grub_env_get. Leave the interpretation of MODEVAR to
14630         grub_strtoul completely.
14631         (real2pm): Removed.
14632         (GRUB_MOD_INIT): Rename vbe_test to vbetest.
14633         (GRUB_MOD_FINI): Likewise.
14635         * normal/misc.c: Include grub/mm.h.
14637         * conf/i386-pc.rmk (pkgdata_MODULES): Replaced vbe_test.mod and
14638         vbe_list_modes with vbetest.mod and vbeinfo.mod.
14639         (vbe_list_modes_mod_SOURCES): Removed.
14640         (vbe_list_modes_mod_CFLAGS): Likewise.
14641         (vbe_test_mod_SOURCES): Likewise.
14642         (vbe_test_mod_CFLAGS): Likewise.
14643         (vbeinfo_mod_SOURCES): New variable.
14644         (vbeinfo_mod_CFLAGS): Likewise.
14645         (vbetest_mod_SOURCES): Likewise.
14646         (vbetest_mod_CFLAGS): Likewise.
14648 2005-08-18  Yoshinori K. Okuji  <okuji@enbug.org>
14650         * normal/misc.c: New file.
14652         * DISTLIST: Added normal/misc.c.
14654         * partmap/amiga.c (amiga_partition_map_iterate): Add an argument
14655         DISK to HOOK. Call HOOK with DISK.
14656         * partmap/apple.c (apple_partition_map_iterate): Likewise.
14657         * partmap/pc.c (pc_partition_map_iterate): Likewise.
14658         * partmap/sun.c (sun_partition_map_iterate): Likewise.
14660         * normal/menu_entry.c (struct screen): Added a new member
14661         "completion_shown".
14662         (completion_buffer): New global variable.
14663         (make_screen): Set SCREEN->COMPLETION_SHOWN to zero.
14664         (store_completion): New function.
14665         (complete): Likewise.
14666         (clear_completions): Likewise.
14667         (grub_menu_entry_run): If SCREEN->COMPLETION_SHOWN is non-zero,
14668         call clear_completions and reset SCREEN->COMPLETION_SHOWN. If C is
14669         a tab, call complete.
14671         * normal/completion.c (disk_dev): Removed.
14672         (print_simple_completion): Likewise.
14673         (print_partition_completion): Likewise.
14674         (print_func): New global variable.
14675         (add_completion): Do not take the arguments WHAT or PRINT any
14676         longer. Added a new argument TYPE. Instead of printing directly,
14677         call PRINT_FUNC if not NULL.
14678         All callers changed.
14679         (complete_device): Use a local variable DEV instead of
14680         DISK_DEV. Do not move CURRENT_WORD to the end of a device name.
14681         (grub_normal_do_completion): Take a new argument HOOK. Do not
14682         initialize DISK_DEV. Initialize PRINT_FUNC to HOOK. If RET is an
14683         empty string, return NULL instead.
14684         All callers changed.
14686         * normal/cmdline.c (print_completion): New function.
14688         * kern/partition.c (grub_partition_iterate): Add an argument DISK
14689         to HOOK.
14690         All callers changed.
14692         * kern/disk.c (grub_print_partinfo): Removed.
14694         * include/grub/partition.h (struct grub_partition_map): Add a new
14695         argument DISK into HOOK of ITERATE.
14696         (grub_partition_iterate): Add a new argument DISK to HOOK.
14698         * include/grub/normal.h (enum grub_completion_type): New enum.
14699         (grub_completion_type_t): New type.
14700         (GRUB_COMPLETION_TYPE_COMMAND): New constant.
14701         (GRUB_COMPLETION_TYPE_DEVICE): Likewise.
14702         (GRUB_COMPLETION_TYPE_PARTITION): Likewise.
14703         (GRUB_COMPLETION_TYPE_FILE): Likewise.
14704         (grub_normal_do_completion): Added a new argument HOOK.
14705         (grub_normal_print_device_info): New prototype.
14707         * include/grub/disk.h (grub_print_partinfo): Removed.
14709         * conf/i386-pc.rmk (grub_emu_SOURCES): Added normal/misc.c.
14710         (normal_mod_SOURCES): Likewise.
14711         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
14712         (normal_mod_SOURCES): Likewise.
14714         * commands/ls.c (grub_ls_list_disks): Use
14715         grub_normal_print_device_info instead of grub_print_partinfo. Free
14716         PNAME.
14717         (grub_ls_list_files): Use grub_normal_print_device_info instead of
14718         duplicating the code.
14720 2005-08-16  Vesa Jaaskelainen  <chaac@nic.fi>
14722         * commands/i386/pc/vbe_list_modes.c: Update source formatting to
14723         follow GCS more precisely.
14724         * commands/i386/pc/vbe_test.c: Likewise.
14725         * include/grub/i386/pc/vbe.h: Likewise.
14726         * term/i386/pc/vesafb.c: Likewise.
14727         * video/i386/pc/vbe.c: Likewise.
14729 2005-08-16  Vesa Jaaskelainen  <chaac@nic.fi>
14731         * DISTLIST: Added term/i386/pc/vesafb.c
14732         DISTLIST: Added video/i386/pc/vbe.c
14733         DISTLIST: Added commands/i386/pc/vbe_list_modes.c.
14734         DISTLIST: Added commands/i386/pc/vbe_test.c.
14735         * commands/i386/pc/vbe_list_modes.c: New file.
14736         * commands/i386/pc/vbe_test.c: Likewise.
14737         * term/i386/pc/vesafb.c: Likewise.
14738         * video/i386/pc/vbe.c: Likewise.
14739         * include/grub/i386/pc/vbe.h (GRUB_VBE_DEFAULT_VIDEO_MODE): Added define.
14740         (grub_vbe_probe) Added prototype.
14741         (grub_vbe_set_video_mode) Likewise.
14742         (grub_vbe_get_video_mode) Likewise.
14743         (grub_vbe_get_video_mode_info) Likewise.
14744         (grub_vbe_set_pixel_rgb) Likewise.
14745         (grub_vbe_set_pixel_index) Likewise.
14746         * conf/i386-pc.rmk (pkgdata_MODULES): Added vbe.mod.
14747         (pkgdata_MODULES): Added vesafb.mod.
14748         (pkgdata_MODULES): Added vbe_list_modes.mod.
14749         (pkgdata_MODULES): Added vbe_test.mod.
14750         (vbe_mod_SOURCES): Added.
14751         (vbe_mod_CFLAGS): Likewise.
14752         (vesafb_mod_SOURCES): Likewise.
14753         (vesafb_mod_CFLAGS): Likewise.
14754         (vbe_list_modes_mod_SOURCES): Likewise.
14755         (vbe_list_modes_mod_CFLAGS): Likewise.
14756         (vbe_test_mod_SOURCES): Likewise.
14757         (vbe_test_mod_CFLAGS): Likewise.
14759 2005-08-14  Yoshinori K. Okuji  <okuji@enbug.org>
14761         * normal/command.c (grub_command_execute): If INTERACTIVE is
14762         false and GRUB_COMMAND_FLAG_NO_ECHO is not specified, print
14763         CMDLINE. Disable the pager if INTERACTIVE is true.
14764         All callers are changed.
14766         * normal/main.c (grub_normal_execute): Read command.lst and fs.lst
14767         before reading a config file.
14768         * normal/main.c (read_config_file): Even if a command is not
14769         found, register it if it is within an entry.
14771         * util/grub-emu.c: Include sys/types.h and unistd.h.
14772         (options): Added --hold.
14773         (struct arguments): Added a new member "hold".
14774         (parse_opt): If KEY is 'H', set ARGS->HOLD to ARG or -1 if ARG is
14775         missing.
14776         (main): Initialize ARGS.HOLD to zero. Wait until ARGS.HOLD is
14777         cleared by a debugger, if it is not zero.
14779         * include/grub/normal.h (grub_command_execute): Add an argument
14780         INTERACTIVE.
14782 2005-08-14  Vesa Jaaskelainen  <chaac@nic.fi>
14784         * DISTLIST: Added include/grub/i386/pc/vbe.h.
14786 2005-08-13  Yoshinori K. Okuji  <okuji@enbug.org>
14788         * aclocal.m4 (grub_I386_CHECK_REGPARM_BUG): Replace the test
14789         program with another one, because the old one didn't detect a bug
14790         in gcc-3.4. Always use regparm 2, because the new test is still
14791         not enough for gcc-4.0. Someone must investigate a simple test
14792         case which detects a bug in gcc-4.0.
14794 2005-08-12  Yoshinori K. Okuji  <okuji@enbug.org>
14796         * DISTLIST: Added normal/completion.c.
14798         * normal/completion.c: New file.
14800         * term/i386/pc/console.c (grub_console_getwh): New function.
14801         (grub_console_term): Assign grub_console_getwh to getwh.
14803         * normal/cmdline.c (grub_tab_complete): Removed. Now the same
14804         function is defined in normal/completion.c as
14805         grub_normal_do_completion.
14806         (grub_cmdline_get): Use grub_normal_do_completion instead of
14807         grub_tab_complete.
14809         * kern/partition.c (grub_partition_map_iterate): Return 1 if HOOK
14810         returns non-zero, otherwise return 0.
14811         (grub_partition_iterate): First, probe the partition map. Then,
14812         call ITERATE only for this partition map.
14814         * kern/misc.c (grub_strncmp): Rewritten.
14816         * kern/disk.c (grub_disk_dev_iterate): Return 1 if P->ITERATE
14817         returns non-zero. Otherwise return 0.
14819         * include/grub/partition.h (grub_partition_map_iterate): Return
14820         int instead of void.
14822         * include/grub/normal.h (grub_normal_do_completion): New prototype.
14824         * include/grub/misc.h (grub_strncmp): Change the type of N to
14825         grub_size_t.
14827         * include/grub/disk.h (grub_disk_dev_iterate): Return int instead
14828         of void.
14830         * normal/menu.c (draw_border): Cast GRUB_TERM_BORDER_WIDTH to
14831         unsigned explicitly before comparing it with I.
14833         * kern/main.c (grub_env_write_root): Add the attribute unused into
14834         VAR.
14836         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Added
14837         normal/completion.c.
14838         (normal_mod_SOURCES): Likewise.
14839         * conf/i386-pc.rmk (grub_emu_SOURCES): Likewise.
14840         (normal_mod_SOURCES): Likewise.
14842         * normal/command.c (grub_iterate_commands): If ITERATE returns
14843         non-zero, return one immediately.
14845 2005-08-09  Vesa Jaaskelainen  <chaac@nic.fi>
14847         * conf/i386-pc.rmk (kernel_img_HEADERS): Added machine/vbe.h.
14848         * kern/i386/pc/startup.S: Updated Global Descriptor table's
14849         descriptions.
14850         (grub_vbe_get_controller_info): New function.
14851         (grub_vbe_get_mode_info): Likewise.
14852         (grub_vbe_set_mode): Likewise.
14853         (grub_vbe_get_mode): Likewise.
14854         (grub_vbe_set_memory_window): Likewise.
14855         (grub_vbe_get_memory_window): Likewise.
14856         (grub_vbe_set_scanline_length): Likewise.
14857         (grub_vbe_get_scanline_length): Likewise.
14858         (grub_vbe_set_display_start): Likewise.
14859         (grub_vbe_get_display_start): Likewise.
14860         (grub_vbe_set_palette_data): Likewise.
14861         * include/grub/i386/pc/vbe.h: New file.
14863 2005-08-08  Hollis Blanchard  <hollis@penguinppc.org>
14865         * conf/powerpc-ieee1275.rmk (grubof_SOURCES): Replaced
14866         kern/ieee1275/of.c with kern/ieee1275/ieee1275.c.
14867         * DISTLIST: Likewise.
14868         * kern/ieee1275/of.c: Moved to ...
14869         * kern/ieee1275/ieee1275.c: ... here.
14871 2005-08-08  Hollis Blanchard  <hollis@penguinppc.org>
14873         * term/ieee1275/ofconsole.c: Include <grub/mm.h>.
14874         (grub_ofconsole_getwh): Cast -1 to type grub_ieee1275_ihandle_t.
14875         Pass 0 as `end' parameter to grub_strtoul().
14877 2005-08-08  Hollis Blanchard  <hollis@penguinppc.org>
14879         * include/grub/powerpc/ieee1275/console.h: Do not include
14880         <grub/types.h>.  Do not include <grub/symbol.h>.  Remove ASM_FILE
14881         ifdef.
14882         (grub_console_cur_color): Remove i386-specific prototype.
14883         (grub_console_real_putchar): Likewise.
14884         (grub_console_checkkey): Likewise.
14885         (grub_console_getkey): Likewise.
14886         (grub_console_getxy): Likewise.
14887         (grub_console_gotoxy): Likewise.
14888         (grub_console_cls): Likewise.
14889         (grub_console_setcursor): Likewise.
14890         * kern/powerpc/ieee1275/init.c: Don't include <grub/console.h>.
14891         Include <grub/machine/console.h>.
14892         * term/ieee1275/ofconsole.c: Likewise.
14894 2005-08-08  Yoshinori K. Okuji  <okuji@enbug.org>
14896         * Makefile.in (LIBLZO): New variable.
14898         * configure.ac: Check for LZO version 2.
14900         * util/i386/pc/grub-mkimage.c [HAVE_LZO_LZO1X_H]: Include
14901         lzo/lzo1x.h instead of lzo1x.h.
14903         * conf/i386-pc.rmk (grub_mkimage_LDFLAGS): Use $(LIBLZO) instead
14904         of -llzo.
14906         * util/i386/pc/grub-setup.c (main): Do not free PREFIX
14907         twice. Reported by Vladimir Serbinenko <phcoder@gmail.com>.
14909         * partmap/pc.c (pc_partition_map_probe): Restore P->DATA after
14910         copying the data from PARTITION to P.
14912 2005-08-07  Yoshinori K. Okuji  <okuji@enbug.org>
14914         * kern/rescue.c (grub_rescue_cmd_rmmod): If the reference count is
14915         negative, unload the module.
14917         * util/i386/pc/grub-setup.c (setup): The name of the PC partition
14918         map is "pc_partition_map" but not "pc".
14919         (usage): Fix the description. The options are --boot-image and
14920         --core-image but not --boot-file or --core-file.
14921         (main): If not specified explicitly, make BOOT_FILE and CORE_FILE
14922         based on DEFAULT_BOOT_FILE and DEFAULT_CORE_FILE with DIR or
14923         DEFAULT_DIRECTORY.
14925         * util/i386/pc/grub-install.in: Do not specify --boot-file or
14926         --core-file. Specify INSTALL_DEVICE as an argument.
14928         * util/console.c: Include config.h.
14929         [HAVE_NCURSeS_CURSES_H]: Include ncurses/curses.h.
14930         [HAVE_NCURSES_H]: Include ncurses.h.
14931         [HAVE_CURSES_H]: Include curses.h.
14932         [!A_NORMAL] (A_NORMAL): Defined as zero.
14933         [!A_STANDOUT] (A_STANDOUT): Likewise.
14935         * conf/i386-pc.rmk (grub_emu_LDFLAGS): Use $(LIBCURSES) instead of
14936         -lncurses.
14937         * conf/powerpc-ieee1275.rmk (grub_emu_LDFLAGS): Likewise.
14939         * configure.ac: Check for curses libraries and headers.
14941         * Makefile.in (LIBCURSES): New variable.
14943         * genmk.rb (Script::rule): Set the executable bits.
14945         * util/i386/pc/biosdisk.c (grub_util_biosdisk_get_grub_dev): The
14946         name of the PC partition map is "pc_partition_map" but not "pc".
14948 2005-08-07  Yoshinori K. Okuji  <okuji@enbug.org>
14950         * util/i386/pc/grub-install.in (grub_probefs): New variable.
14951         (modules): Likewise.
14952         (usage): Added descriptions for --modules and --grub-probefs.
14953         Handle --modules and --grub-probefs. Save the arguments in MODULES
14954         and GRUB_PROBEFS, respectively.
14955         Auto-detect a filesystem module against GRUBDIR. If the result is
14956         empty and modules are not specified explicitly, abort the
14957         installation. Add the result to MODULES.
14959         * DISTLIST: Removed boot/powerpc/ieee1275/ieee1275.c,
14960         disk/powerpc/ieee1275/ofdisk.c,
14961         include/grub/powerpc/ieee1275/init.h and
14962         term/powerpc/ieee1275/ofconsole.c.
14963         Added disk/ieee1275/ofdisk.c, kern/ieee1275/of.c and
14964         term/ieee1275/ofconsole.c.
14966         * include/grub/powerpc/ieee1275/console.h: Resurrected.
14968         * COPYING: Upgraded to the latest version. Only the address of the
14969         FSF office has changed.
14971 2005-08-07  Yoshinori K. Okuji  <okuji@enbug.org>
14973         * conf/powerpc-ieee1275.rmk (grubof_SOURCES): Replaced
14974         kern/ieee1275.c with kern/ieee1275/of.c.
14976         * kern/ieee1275.c: Moved to ...
14977         * kern/ieee1275/of.c: ... here.
14979 2005-08-06  Yoshinori K. Okuji  <okuji@enbug.org>
14981         * conf/i386-pc.rmk (kernel_img_HEADERS): Reordered for
14982         readability.
14984         * config.guess: Updated to the latest version from gnulib.
14985         * config.sub: Likewise.
14986         * install.sh: Likewise.
14987         * mkinstalldirs: Likewise.
14989         * include/grub/console.h: Removed. This file is arch-specific. Do
14990         not put this in include/grub.
14992         * include/grub/i386/pc/console.h: Resurrected.
14994         * util/console.c: Include grub/machine/console.h instead of
14995         grub/console.h.
14996         * util/grub-emu.c: Likewise.
14998 2005-08-04  Marco Gerards  <metgerards@student.han.nl>
15000         * kern/term.c (grub_putcode): Use `grub_getwh' instead of
15001         hardcoded value.
15003         From Vincent Pelletier  <subdino2004@yahoo.fr>
15004         * include/grub/term.h (GRUB_TERM_WIDTH, GRUB_TERM_HEIGHT):
15005         Redefined to use grub_getwh.
15006         (grub_term): New member named getwh.
15007         (grub_getwh): New prototype.
15008         * kern/term.c (grub_getwh): New function.
15009         * term/i386/pc/console.c (grub_console_getwh): New function.
15010         (grub_console_term): New member `getwh'.
15011         * term/i386/pc/vga.c (grub_vga_getwh): New function.
15012         (grub_vga_term): New member `getwh'.
15013         * term/ieee1275/ofconsole.c (grub_ofconsole_readkey): Use
15014         grub_ssize_t.
15015         (grub_ofconsole_getw): New function.
15016         (grub_ofconsole_init): Use grub_ssize_t and unsigned char.
15017         (grub_ofconsole_term): New field named getwh and new initial
15018         value.
15020 2005-08-03  Hollis Blanchard  <hollis@penguinppc.org>
15022         * include/grub/powerpc/ieee1275/ieee1275.h: Move ...
15023         * include/grub/ieee1275/ieee1275.h: ... to here.  All users updated.
15024         Move `abort', `grub_reboot', and `grub_halt' prototypes ...
15025         * include/grub/powerpc/ieee1275/kernel.h: ... to here.
15026         * commands/ieee1275/halt.c: Include <grub/machine/kernel.h> instead
15027         of <grub/machine/ieee1275.h>.
15028         * commands/ieee1275/reboot.c: Likewise.
15029         * boot/powerpc/ieee1275/ieee1275.c: Move ...
15030         * kern/ieee1275.c: ... to here.  All users updated.  Change all
15031         parameter structs to use new type `grub_ieee1275_cell_t'.
15032         * term/powerpc/ieee1275/ofconsole.c: Move ...
15033         * term/ieee1275/ofconsole.c: ... to here.  All users updated.
15034         * disk/powerpc/ieee1275/ofdisk.c: Move ...
15035         * disk/ieee1275/ofdisk.c: ... to here.  All users updated.
15036         * boot/powerpc/ieee1275/cmain.c: Change `grub_ieee1275_entry_fn' type
15037         to return int.
15038         * include/grub/i386/pc/console.h: Move to include/grub/console.h.
15039         Remove unused prototypes.  All users updated.
15040         * include/grub/powerpc/ieee1275/console.h: Removed.
15041         * include/grub/powerpc/ieee1275/ieee1275.h: Define
15042         `grub_ieee1275_cell_t'.
15043         * kern/powerpc/ieee1275/openfw.c: Include <grub/machine/kernel.h>.
15044         Cast comparisons with -1 to the correct type.
15045         * loader/powerpc/ieee1275/linux.c (kernel_entry_t): Change parameter
15046         type to match `grub_ieee1275_entry_fn'.
15048 2005-08-01  Yoshinori K. Okuji  <okuji@enbug.org>
15050         * DISTLIST: Added util/i386/pc/grub-probefs.c.
15052         * conf/i386-pc.rmk (sbin_UTILITIES): Added grub-probefs.
15053         (grub_setup_SOURCES): Removed partmap/amiga.c, partmap/apple.c and
15054         partmap/sun.c.
15055         (grub_probefs_SOURCES): New variable.
15057         * util/i386/pc/grub-probefs.c: New file.
15059         * util/i386/pc/grub-setup.c (main): Call
15060         grub_pc_partition_map_init, grub_ufs_init, grub_minix_init,
15061         grub_hfs_init and grub_jfs_init to initialize the system. Call
15062         grub_ufs_fini, grub_minix_fini, grub_hfs_fini, grub_jfs_init and
15063         grub_pc_partition_map_fini to finish the system.
15065 2005-07-31  Yoshinori K. Okuji  <okuji@enbug.org>
15067         * loader/i386/pc/multiboot.c (grub_multiboot_is_elf32): New
15068         function.
15069         (grub_multiboot_load_elf32): Likewise.
15070         (grub_multiboot_is_elf64): Likewise.
15071         (grub_multiboot_load_elf64): Likewise.
15072         (grub_multiboot_load_elf): Likewise.
15073         (grub_rescue_cmd_multiboot): Call grub_multiboot_load_elf to load
15074         an ELF32 or ELF64 file.
15075         This is based on a patch from Ruslan Nikolaev <nruslan@mail.com>.
15077         From Serbinenko Vladimir <serbinenko.vova@list.ru>:
15078         * kern/disk.c (grub_print_partinfo): Check if FS->LABEL is not
15079         NULL before calling FS->LABEL.
15080         * fs/fat.c (grub_fat_dir): Initialize DIRNAME to NULL.
15081         * commands/ls.c (grub_ls_list_files): Show labels, if possible.
15082         (grub_ls_list_disks): Check if FS and FS->LABEL are not NULL
15083         before calling FS->LABEL.
15085 2005-07-26  Yoshinori K. Okuji  <okuji@enbug.org>
15087         * util/i386/pc/grub-install.in (datadir): New variable.
15088         (libdir): Removed.
15089         (pkgdatadir): New variable.
15090         (pkglibdir): Removed.
15092 2005-07-24  Yoshinori K. Okuji  <okuji@enbug.org>
15094         * DISTLIST: Added util/i386/pc/grub-install.in.
15096         * util/i386/pc/grub-install.in: New file.
15098         * conf/i386-pc.rmk (sbin_SCRIPTS): New variable.
15099         (grub_install_SOURCES): Likewise.
15101         * genmk.rb: Added support for scripts.
15102         (Script): New class.
15103         (scripts): New variable.
15105         * Makefile.in (install-local): Install sbin_SCRIPTS by
15106         INSTALL_SCRIPT.
15107         (uninstall): Remove sbin_SCRIPTS.
15109         * util/i386/pc/grub-setup.c (main): If the argument is not a GRUB
15110         device, try to get a GRUB device by
15111         grub_util_biosdisk_get_grub_dev.
15112         Free DEST_DEV.
15114         * util/i386/pc/grub-mkdevicemap.c (usage): Remove a duplicated
15115         description for --device-map.
15117 2005-07-20  Yoshinori K. Okuji  <okuji@enbug.org>
15119         Change the semantics of variable hooks. They now return strings
15120         instead of error values.
15122         * util/i386/pc/grub-setup.c: Include grub/env.h.
15123         (setup): Use grub_device_set_root instead of grub_env_set.
15125         * kern/rescue.c (grub_rescue_cmd_root): Use grub_env_set and
15126         grub_env_get instead of grub_device_set_root and
15127         grub_device_get_root, respectively.
15129         * kern/main.c (grub_env_write_root): New function.
15130         (grub_set_root_dev): Register grub_env_write_hook for "root". Use
15131         grub_env_set instead of grub_device_set_root.
15133         * kern/env.c (HASHSZ): Reduced to 13, because GRUB does not need
15134         many variables.
15135         (grub_env_set): Set ENV->VALUE to the result of ENV->WRITE_HOOK
15136         rather than calling ENV->WRITE_HOOK afterwards.
15137         (grub_env_get): Return the result of ENV->READ_HOOK rather than
15138         passing a pointer of a pointer.
15139         (grub_register_variable_hook): Change the types of "read_hook" and
15140         "write_hook" to grub_env_read_hook_t and grub_env_write_hook_t,
15141         respectively.
15142         Allocate the default empty string on the heap, because this string
15143         may be freed later.
15145         * kern/device.c: Include grub/env.h.
15146         (grub_device_set_root): Removed.
15147         (grub_device_get_root): Likewise.
15148         (grub_device_open): Use grub_env_get instead of
15149         grub_device_get_root.
15151         * include/grub/env.h (grub_env_read_hook_t): New type.
15152         (grub_env_write_hook_t): Likewise.
15153         (grub_env_var): Change the types of "read_hook" and "write_hook"
15154         to grub_env_read_hook_t and grub_env_write_hook_t, respectively.
15155         (grub_register_variable_hook): Likewise.
15157         * include/grub/device.h (grub_device_set_root): Removed.
15158         (grub_device_set_root): Likewise.
15160         * fs/fat.c (grub_fat_dir): Make a copy of PATH in DIRNAME, and
15161         make sure that DIRNAME terminates with '/', so that
15162         grub_fat_find_dir will fail if PATH is not a directory.
15164         * commands/ls.c (grub_ls_list_files): Remove the qualifier const
15165         from DIRNAME.
15166         Use the qualifier auto for print_files and print_files_long.
15167         If FS->DIR sets GRUB_ERRNO to GRUB_ERR_BAD_FILE_TYPE, try DIRNAME
15168         as a regular file.
15169         Put a newline only if there is no error.
15170         (grub_cmd_ls): Remove grub_ls_print_files, because this is not
15171         used.
15173 2005-07-20  Yoshinori K. Okuji  <okuji@enbug.org>
15175         * kern/partition.c (grub_partition_probe): Initialize PART to
15176         NULL. Otherwise, when no partition map is registered, this returns
15177         a garbage.
15179 2005-07-19  Yoshinori K. Okuji  <okuji@enbug.org>
15181         * partmap/apple.c (apple_partition_map_iterate): Check if POS
15182         equals GRUB_DISK_SECTOR_SIZE to see if the partition table is
15183         valid.
15185 2005-07-18  Yoshinori K. Okuji  <okuji@enbug.org>
15187         * commands/ls.c (grub_ls_list_disks): Print the filesystem
15188         information on each device, if it does not have partitions. Print
15189         "Device" instead of "Disk", because this function is not specific
15190         to disk devices.
15192         * normal/main.c (grub_rescue_cmd_normal): Make the variable CONFIG
15193         static to ensure that it is put on the memory rather than a
15194         register.
15196 2005-07-17  Yoshinori Okuji  <okuji@enbug.org>
15198         * commands/cat.c (GRUB_MOD_INIT): Use better documentation.
15199         (grub_cat_init): Likewise.
15200         * loader/i386/pc/chainloader_normal.c (GRUB_MOD_INIT): Likewise.
15201         (options): Likewise.
15202         * commands/configfile.c (GRUB_MOD_INIT): Likewise.
15203         (grub_configfile_init): Likewise.
15204         * font/manager.c (GRUB_MOD_INIT): Likewise.
15205         * commands/help.c (GRUB_MOD_INIT): Likewise.
15206         (grub_help_init): Likewise.
15207         * normal/command.c (grub_command_init): Likewise.
15208         * loader/i386/pc/linux_normal.c (GRUB_MOD_INIT): Likewise.
15209         * disk/loopback.c (grub_loop_init): Likewise.
15210         (GRUB_MOD_INIT): Likewise.
15211         * commands/ls.c (grub_ls_init): Likewise.
15212         (GRUB_MOD_INIT): Likewise.
15213         (options): Likewise.
15214         * commands/boot.c (grub_boot_init): Likewise.
15215         (GRUB_MOD_INIT): Likewise.
15216         * loader/i386/pc/multiboot_normal.c (GRUB_MOD_INIT): Likewise.
15217         * commands/i386/pc/reboot.c (grub_reboot_init): Likewise.
15218         (GRUB_MOD_INIT): Likewise.
15219         * commands/cmp.c (grub_cmp_init): Likewise.
15220         (GRUB_MOD_INIT): Likewise.
15222         * normal/arg.c: Use <> instead of "" to include header files.
15223         (SHORT_ARG_HELP): New macro.
15224         (SHORT_ARG_USAGE): Likewise.
15225         (help_options): Specify SHORT_ARG_HELP and SHORT_ARG_USAGE instead
15226         of 'h' and 'u' for help and usage, respectively. Use more GNU-like
15227         descriptions.
15228         (find_short): Check if C is 'h' or 'u' explicitly.
15229         (grub_arg_show_help): Use space characters instead of tabs. Treat
15230         SHORT_ARG_HELP and SHORT_ARG_USAGE exceptionally so that -h and -u
15231         are shown with --help and --usage only if they are not used for
15232         the command itself.
15233         (parse_option): Use SHORT_ARG_HELP and SHORT_ARG_USAGE instead of
15234         'h' and 'u'.
15236         * include/grub/arg.h (struct grub_arg_option): Add the qualifier
15237         const into "longarg". Change the type of "shortarg" to int.
15239 2005-07-17  Yoshinori Okuji  <okuji@enbug.org>
15241         * boot/i386/pc/boot.S (boot_drive_check): New label.
15243         * include/grub/i386/pc/boot.h (GRUB_BOOT_MACHINE_DRIVE_CHECK): New
15244         macro.
15246         * util/i386/pc/grub-setup.c (setup): Added a workaround for BIOSes
15247         which do not pass a boot drive correctly. Copied from GRUB Legacy.
15249 2005-07-17  Yoshinori Okuji  <okuji@enbug.org>
15251         * kern/i386/pc/startup.S (gate_a20_try_system_control_port_a):
15252         When turning off Gate A20, skip the check and return immediately,
15253         because this is not fatal usually.
15255 2005-07-17  Yoshinori Okuji  <okuji@enbug.org>
15257         * conf/i386-pc.rmk (pxeboot_img_LDFLAGS): The text address should
15258         be 0x7C00 instead of 0x8000.
15260         * boot/i386/pc/pxeboot.S: Rewritten.
15262         * kern/i386/pc/startup.S (gate_a20_try_bios): No need to specify
15263         EXT_C.
15264         (gate_a20_check_state): Read a byte from 0x108000. Invert the
15265         result.
15267 2005-07-16  Yoshinori K. Okuji  <okuji@enbug.org>
15269         * kern/i386/pc/startup.S (grub_gate_a20): Rewritten for
15270         robustness. This routine now supports a BIOS call and System
15271         Control Port A to modify the gate A20.
15273         * include/grub/i386/pc/kernel.h (GRUB_KERNEL_MACHINE_RAW_SIZE):
15274         Increased to 0x440.
15276 2005-07-12  Hollis Blanchard  <hollis@penguinppc.org>
15278         * disk/powerpc/ieee1275/ofdisk.c (grub_ofdisk_open): dprintf the
15279         device path and resulting ihandle.
15280         (grub_ofdisk_close): dprintf the ihandle being closed.
15281         (grub_ofdisk_read): dprintf function parameters.
15282         * kern/mm.c (grub_mm_init_region): Likewise.
15283         * loader/powerpc/ieee1275/linux.c: Remove extra whitespace.
15284         (grub_linux_boot): dprintf the Linux entry point, initrd address and
15285         size, and boot arguments.
15286         (grub_rescue_cmd_linux): dprintf each ELF segment's address and size
15287         before loading into memory.
15288         (grub_rescue_cmd_initrd): dprintf the initrd's address and size
15289         before loading into memory.
15291 2005-07-12  Yoshinori K. Okuji  <okuji@enbug.org>
15293         * kern/mm.c: Added much documentation.
15294         (GRUB_MM_ALIGN_LOG2): When GRUB_CPU_SIZEOF_VOID_P is
15295         8, set to 5 instead of 8.
15297 2005-07-10  Yoshinori Okuji  <okuji@enbug.org>
15299         * DISTLIST: Added util/i386/pc/grub-mkimage.c.
15301         * conf/i386-pc.rmk (sbin_UTILITIES): Added grub-mkdevicemap.
15302         (grub_mkdevicemap_SOURCES): New variable.
15304         * util/i386/pc/grub-mkdevicemap.c: New file. Mostly copied from
15305         lib/device.c of GRUB Legacy.
15307 2005-07-10  Yoshinori Okuji  <okuji@enbug.org>
15309         * commands/ls.c (grub_ls_list_files): Check if *PATH is NUL
15310         instead of PATH is NULL.
15312 2005-07-09  Vincent Pelletier  <subdino2004@yahoo.fr>
15314         * commands/cmp.c (BUFFER_SIZE): New macro.
15315         (grub_cmd_cmp): Close the right file at the right time.  Compare
15316         only data just read.  Don't report files of different  size as
15317         identical.  Dynamically allocate buffers.  Move variable
15318         declarations at the beginning of function.
15320 2005-07-09  Yoshinori Okuji  <okuji@enbug.org>
15322         * aclocal.m4 (grub_I386_CHECK_REGPARM_BUG): The return value was
15323         reverse.
15325 2004-07-04  Vincent Pelletier  <subdino2004@yahoo.fr>
15327         * normal/cmdline.c (grub_cmdline_get): Don't fallback on ctrl-d
15328         when backspace is pressed at beginning of line.
15330 2005-07-03  Yoshinori Okuji  <okuji@enbug.org>
15332         * DISTLIST: Added genfslist.sh.
15334         * normal/main.c (fs_module_list): New variable.
15335         (autoload_fs_module): New function.
15336         (read_fs_list): Likewise.
15337         (grub_normal_execute): Call read_fs_list.
15339         * kern/fs.c (grub_fs_autoload_hook): New variable.
15340         (grub_fs_probe): Added support for auto-loading.
15342         * include/grub/normal.h (struct grub_fs_module_list): New struct.
15343         (grub_fs_module_list_t): New type.
15345         * include/grub/fs.h (grub_fs_autoload_hook_t): New type.
15346         (grub_fs_autoload_hook): New prototype.
15348         * genfslist.sh: New file.
15350         * genmk.rb: Added a rule to generate a filesystem list.
15352 2005-06-30  Marco Gerards  <metgerards@student.han.nl>
15354         * configure.ac: Fix the test for cross-compiling.
15356         * genmk.rb (Program): Use `$(CC)' instead of `$(BUILD_CC)'.  Don't
15357         define GRUB_UTIL anymore.
15359         * util/powerpc/ieee1275/grub-mkimage.c (load_note): Endian fixes
15360         so this function works on other systems than just big endian.
15361         (load_modules): Likewise.
15362         (add_segments): Likewise.
15364 2005-06-23  Hollis Blanchard  <hollis@penguinppc.org>
15366         * kern/misc.c (grub_vsprintf): Add `longfmt'.  If format string
15367         contains `l' modifier, get a long from va_arg().
15369 2005-06-23  Yoshinori K. Okuji  <okuji@enbug.org>
15371         * kern/mm.c (grub_free): If the next free block which is being
15372         merged is the first free block, set the first block to the block
15373         being freed.
15374         Reported by Vincent Guffens <guffens@inma.ucl.ac.be>.
15376 2005-05-08  Hollis Blanchard  <hollis@penguinppc.org>
15378         * boot/powerpc/ieee1275/cmain.c (cmain): Initialize
15379         `grub_ieee1275_chosen'.
15381 2005-05-08  Hollis Blanchard  <hollis@penguinppc.org>
15383         * boot/powerpc/ieee1275/cmain.c (module_info): Remove definition.
15384         (grub_ieee1275_chosen): New variable.
15385         (cmain): Initialize and use `grub_ieee1275_chosen' instead of
15386         `chosen'.
15387         * boot/powerpc/ieee1275/crt0.S (init_stack): Remove stack space.
15388         * boot/powerpc/ieee1275/ieee1275.c (grub_ieee1275_get_property):
15389         Rename first argument to `phandle' for consistency.
15390         (grub_ieee1275_get_property_length): Likewise.
15391         (grub_ieee1275_next_property): Likewise.  Change type of first argument
15392         to grub_ieee1275_phandle_t.
15393         * include/grub/powerpc/ieee1275/ieee1275.h (grub_ieee1275_entry_fn):
15394         Move export next to declaration.
15395         (grub_ieee1275_chosen): New variable.
15396         * include/grub/powerpc/ieee1275/kernel.h (GRUB_IEEE1275_MODULE_BASE):
15397         Correct cosmetic typo.
15398         * kern/powerpc/ieee1275/init.c (grub_set_prefix): Use
15399         `grub_ieee1275_chosen'.
15400         * kern/powerpc/ieee1275/openfw.c (grub_map): Likewise.
15401         * loader/powerpc/ieee1275/linux.c (grub_linux_boot): Likewise.
15402         (grub_rescue_cmd_linux): Set `initrd_addr' to 0.
15403         * term/powerpc/ieee1275/ofconsole.c (grub_ofconsole_refresh): Use
15404         `grub_ieee1275_chosen'.
15406 2005-05-10  Hollis Blanchard  <hollis@penguinppc.org>
15408         * boot/powerpc/ieee1275/cmain.c (cmain): Remove code to parse
15409         /chosen/bootargs.
15410         * kern/powerpc/ieee1275/init.c (grub_machine_init): Parse
15411         /chosen/bootargs as "variable=value" pairs.
15413 2005-05-08  Vincent Pelletier  <subdino2004@yahoo.fr>
15415         * include/grub/misc.h (grub_dprintf): New macro.
15416         (grub_real_dprintf): New prototype.
15417         (grub_strword): Likewise.
15418         (grub_iswordseparator): Likewise.
15419         * kern/misc.c (grub_real_dprintf): New function.
15420         (grub_strword): Likewise.
15421         (grub_iswordseparator): Likewise.
15423 2005-04-30  Hollis Blanchard  <hollis@penguinppc.org>
15425         * boot/powerpc/ieee1275/cmain.c: Don't include grub/machine/init.h.
15426         (roundup): Remove macro.
15427         (grub_ieee1275_flags): Make static.
15428         (grub_ieee1275_realmode): Remove.
15429         (grub_ieee1275_test_flag): New function.
15430         (grub_ieee1275_set_flag): Likewise.
15431         (find_options): Rename to `grub_ieee1275_find_options'; update
15432         callers. Set GRUB_IEEE1275_FLAG_REAL_MODE and
15433         GRUB_IEEE1275_FLAG_0_BASED_PARTITIONS.
15434         (cmain): New prototype.
15435         (cmain): Use `grub_ieee1275_set_flag' instead of accessing
15436         `grub_ieee1275_flags' directly.
15437         * conf/powerpc-ieee1275.rmk (grubof_HEADERS): Remove
15438         machine/biosdisk.h.
15439         * disk/powerpc/ieee1275/ofdisk.c: Include grub/machine/ofdisk.h.
15440         Don't include grub/machine/init.h.
15441         (grub_ofdisk_open): Call `grub_ieee1275_test_flag'.
15442         * include/grub/powerpc/ieee1275/ieee1275.h (grub_ieee1275_flags):
15443         Remove prototype.
15444         (grub_ieee1275_realmode): Likewise.
15445         (grub_ieee1275_flag): New enum.
15446         (grub_ieee1275_test_flag): New prototype.
15447         (grub_ieee1275_set_flag): New prototype.
15448         * include/grub/powerpc/ieee1275/init.h: Remove file.
15449         * include/grub/powerpc/ieee1275/ofdisk.h: New file.
15450         * kern/powerpc/ieee1275/init.c: Don't include grub/machine/init.h.
15451         Include grub/machine/console.h.  Include grub/machine/ofdisk.h.
15452         (grub_machine_fini): Don't call `grub_ieee1275_release'.  Remove
15453         comment.
15454         * kern/powerpc/ieee1275/openfw.c (grub_claimmap): Call
15455         `grub_ieee1275_test_flag'.
15456         (grub_ieee1275_encode_devname): Likewise.
15458 2005-04-21  Hollis Blanchard  <hollis@penguinppc.org>
15460         * include/grub/powerpc/ieee1275/ieee1275.h
15461         (grub_ieee1275_encode_devname): New prototype.
15462         (grub_ieee1275_get_filename): Likewise.
15463         * kern/powerpc/ieee1275/init.c (grub_translate_ieee175_path): New
15464         function.
15465         (grub_set_prefix): Likewise.
15466         (grub_machine_init): Call grub_set_prefix.
15467         * kern/powerpc/ieee1275/openfw.c: Fix typos.
15468         (grub_parse_type): New enum.
15469         (grub_ieee1275_get_devargs): New function.
15470         (grub_ieee1275_get_devname): Likewise.
15471         (grub_ieee1275_parse_args): Likewise.
15472         (grub_ieee1275_get_filename): Likewise.
15473         (grub_ieee1275_encode_devname): Likewise.
15475 2005-03-30  Marco Gerards  <metgerards@student.han.nl>
15477         * kern/powerpc/ieee1275/init.c (grub_machine_fini): Don't call
15478         `grub_loader_unset'.
15480 2005-03-26  Hollis Blanchard  <hollis@penguinppc.org>
15482         * commands/ieee1275/halt.c (grub_cmd_halt): Call grub_halt
15483         instead of grub_ieee1275_interpret.
15484         (grub_halt_init): New function.
15485         (grub_halt_fini): Likewise.
15486         (GRUB_MOD_INIT): Correct message grammar.
15487         * commands/ieee1275/reboot.c (grub_cmd_reboot): Call grub_reboot
15488         instead of grub_ieee1275_interpret.
15489         (grub_reboot_init): New function.
15490         (grub_reboot_fini): Likewise.
15491         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Replace
15492         commands/i386/pc/halt.c, commands/i386/pc/reboot.c, and
15493         util/i386/pc/misc.c with commands/ieee1275/halt.c,
15494         commands/ieee1275/reboot.c, and util/powerpc/ieee1275/misc.c.
15495         * disk/powerpc/ieee1275/ofdisk.c (grub_ofdisk_fini): New
15496         function.
15497         * include/grub/powerpc/ieee1275/console.h (grub_console_fini):
15498         Add prototype.
15499         * include/grub/powerpc/ieee1275/ieee1275.h (grub_reboot): Add
15500         prototype.
15501         (grub_halt): Likewise.
15502         * include/grub/powerpc/ieee1275/init.h: Remove inaccurate comment.
15503         (cmain): Remove __attribute__((unused)).
15504         * kern/powerpc/ieee1275/init.c (grub_heap_start): New variable.
15505         (grub_heap_len): Likewise.
15506         (grub_machine_fini): New function.
15507         * kern/powerpc/ieee1275/openfw.c (grub_reboot): New function.
15508         (grub_halt): Likewise.
15509         * term/powerpc/ieee1275/ofconsole.c (grub_console_fini): New
15510         function.
15511         * util/powerpc/ieee1275/misc.c: New file.
15513 2005-03-19  Yoshinori K. Okuji  <okuji@enbug.org>
15515         * DISTLIST: New file.
15516         * gendistlist.sh: Likewise.
15518         * Makefile.in (COMMON_DISTFILES): Removed.
15519         (BOOT_DISTFILES): Likewise.
15520         (CONF_DISTFILES): Likewise.
15521         (DISK_DISTFILES): Likewise.
15522         (FS_DISTFILES): Likewise.
15523         (INCLUDE_DISTFILES): Likewise.
15524         (KERN_DISTFILES): Likewise.
15525         (LOADER_DISTFILES): Likewise.
15526         (TERM_DISTFILES): Likewise.
15527         (UTIL_DISTFILES): Likewise.
15528         (DISTFILES): Likewise.
15529         (uninstall): Uninstall files in $(pkgdata_DATA).
15530         (DISTLIST): New target.
15531         (distdir): Use the contents of the file DISTLIST to get a list of
15532         distributed files.
15534 2005-03-18  Yoshinori K. Okuji  <okuji@enbug.org>
15536         * fs/fat.c (grub_fat_mount): Ignore the 3rd bit of a media
15537         descriptor. This is ported from GRUB Legacy.
15539         * gencmdlist.sh: Added an extra semicolon to make it work with
15540         old sed versions. Reported by Robert Bihlmeyer
15541         <robbe@orcus.priv.at>.
15543 2005-03-08  Yoshinori Okuji  <okuji@enbug.org>
15545         Automatic loading of commands is supported.
15547         * normal/main.c (read_command_list): New function.
15548         (grub_normal_execute): Call read_command_list.
15550         * normal/command.c (grub_register_command): Return zero or CMD.
15551         Allocate CMD->NAME from the heap.
15552         Initialize CMD->MODULE_NAME to zero.
15553         Find the same name as well. If the same command is found and it is
15554         a dummy command, overwrite members. If it is not a dummy command,
15555         return zero.
15556         (grub_unregister_command): Free Q->NAME and Q->MODULE_NAME.
15557         (grub_command_find): If a dummy command is found, load a module
15558         and retry to find a command only once.
15560         * normal/cmdline.c (grub_tab_complete): Call grub_command_find to
15561         make sure that each command is loaded.
15563         * include/grub/normal.h (GRUB_COMMAND_FLAG_NOT_LOADED): New
15564         macro.
15565         (struct grub_command): Remove const from the member `name'.
15566         Add a new member `module_name'.
15567         (grub_register_command): Return grub_command_t.
15569         * commands/help.c (grub_cmd_help): Call grub_command_find to make
15570         sure that each command is loaded.
15572         * genmk.rb (PModule::rule): Specify a module name without the
15573         suffix ".mod" to gencmdlist.sh.
15575 2005-03-02  Yoshinori K. Okuji  <okuji@enbug.org>
15577         * gencmdlist.sh: New file.
15579         * genmk.rb (PModule::rule): Generate a rule for a command list.
15580         Clean command.lst.
15581         Generate command.lst from $(COMMANDFILES).
15583         * Makefile.in (COMMON_DISTFILES): Added gencmdlist.sh.
15584         (DATA): Added $(pkgdata_DATA).
15585         (install-local): Install files in $(pkgdata_DATA).
15587 2005-03-02  Yoshinori K. Okuji  <okuji@enbug.org>
15589         * term/i386/pc/vga.c (debug_command): Removed.
15590         (GRUB_MOD_INIT): Do not register the command "debug".
15592         From Hollis Blanchard:
15593         * commands/configfile.c: New file.
15594         * conf/i386-pc.rmk (grub_emu_SOURCES): Added
15595         commands/configfile.c.
15596         (pkgdata_MODULES): Added configfile.mod.
15597         (configfile_mod_SOURCES): New variable.
15598         (configfile_mod_CFLAGS): Likewise.
15599         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Added
15600         commands/configfile.c.
15601         (pkgdata_MODULES): Added configfile.mod.
15602         (configfile_mod_SOURCES): New variable.
15603         (configfile_mod_CFLAGS): Likewise.
15604         * util/grub-emu.c (main): Call grub_configfile_init and
15605         grub_configfile_fini.
15606         * include/grub/normal.h [GRUB_UTIL] (grub_configfile_init): New
15607         prototype.
15608         [GRUB_UTIL] (grub_configfile_fini): Likewise.
15610 2005-02-27  Yoshinori K. Okuji  <okuji@enbug.org>
15612         * normal/arg.c (grub_arg_show_help): Do not show the bug report
15613         address.
15615         * commands/help.c (grub_cmd_help): Do not print newlines after
15616         the last command in print_command_help.
15618 2005-02-27  Yoshinori K. Okuji  <okuji@enbug.org>
15620         * commands/default.h: New file.
15621         * commands/timeout.h: Likewise.
15622         * normal/context.c: Likewise.
15624         * util/misc.c: Do not include sys/times.h.
15625         Include sys/time.h and grub/machine/time.h.
15626         (grub_get_rtc): Rewritten with gettimeofday.
15628         * util/grub-emu.c (main): Call grub_default_init and
15629         grub_timeout_init before grub_normal_init, and call
15630         grub_timeout_fini and grub_default_fini after grub_main.
15632         * util/console.c (grub_ncurses_checkkey): Return the read
15633         character or -1.
15635         * normal/menu.c (run_menu): Set MENU->TIMEOUT to -1 once it
15636         timeouts.
15638         * normal/main.c (read_config_file): Push MENU. If this fails,
15639         print an error and wait for a user input.
15640         Print an error only if GRUB_ERRNO is not GRUB_ERR_NONE.
15641         If a menu is empty or an error occurs, pop MENU.
15642         (grub_normal_execute): Pop and free MENU after grub_menu_run
15643         returns.
15645         * kern/loader.c (grub_loader_boot): Call grub_machine_fini.
15647         * include/grub/powerpc/ieee1275/time.h [GRUB_UTIL]: Do not
15648         include time.h.
15649         [GRUB_UTIL] (GRUB_TICKS_PER_SECOND): Use the same definition as
15650         without GRUB_UTIL.
15651         * include/grub/i386/pc/time.h [GRUB_UTIL]: Do not include
15652         time.h.
15653         [GRUB_UTIL] (GRUB_TICKS_PER_SECOND): Use the same definition as
15654         without GRUB_UTIL.
15656         * include/grub/normal.h (struct grub_menu_list): New struct.
15657         (grub_menu_list_t): New type.
15658         (struct grub_context): New struct.
15659         (grub_context_t): New type.
15660         (grub_register_command): Got rid of EXPORT_FUNC.
15661         (grub_unregister_command): Likewise.
15662         (grub_context_get): New prototype.
15663         (grub_context_get_current_menu): Likewise.
15664         (grub_context_push_menu): Likewise.
15665         (grub_context_pop_menu): Likewise.
15666         [GRUB_UTIL] (grub_default_init): Likewise.
15667         [GRUB_UTIL] (grub_default_fini): Likewise.
15668         [GRUB_UTIL] (grub_timeout_init): Likewise.
15669         [GRUB_UTIL] (grub_timeout_fini): Likewise.
15671         * conf/i386-pc.rmk (grub_emu_SOURCES): Added commands/default.c,
15672         commands/timeout.c and normal/context.c.
15673         (pkgdata_MODULES): Added default.mod and timeout.mod.
15674         (normal_mod_SOURCES): Added normal/context.c.
15675         (default_mod_SOURCES): New variable.
15676         (default_mod_CFLAGS): Likewise.
15677         (timeout_mod_SOURCES): Likewise.
15678         (timeout_mod_CFLAGS): Likewise.
15679         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Copied from
15680         conf/i386-pc.rmk.
15681         (pkgdata_MODULES): Added default.mod and timeout.mod.
15682         (normal_mod_SOURCES): Added normal/context.c.
15683         (default_mod_SOURCES): New variable.
15684         (default_mod_CFLAGS): Likewise.
15685         (timeout_mod_SOURCES): Likewise.
15686         (timeout_mod_CFLAGS): Likewise.
15688         * Makefile.in (all-local): Added $(MKFILES).
15690 2005-02-21  Vincent Pelletier  <subdino2004@yahoo.fr>
15692         * conf/i386-pc.rmk (grub_setup_SOURCES): Add `partmap/sun.c'.
15693         (grub_emu_SOURCES): Likewise.
15694         (pkgdata_MODULES): Add `sun.mod'.
15695         (sun_mod_SOURCES, sun_mod_CFLAGS): New variables.
15696         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add
15697         `partmap/sun.c'.
15698         (pkgdata_MODULES): Add `sun.mod'.
15699         (sun_mod_SOURCES, sun_mod_CFLAGS): New variables.
15700         * include/grub/partition.h (grub_sun_partition_map_init): New
15701         prototype.
15702         (grub_sun_partition_map_fini): Likewise.
15703         * partmap/sun.c: New file.
15704         * util/grub-emu.c (main): Initialize and de-initialize the sun
15705         partitionmap support.
15707 2005-02-19  Yoshinori K. Okuji  <okuji@enbug.org>
15709         This implements an Emacs-like menu entry editor.
15711         * normal/menu_entry.c: New file.
15713         * util/console.c (grub_ncurses_putchar): Translate some Unicode
15714         characters to ASCII.
15715         (saved_char): New variable.
15716         (grub_ncurses_checkkey): Rewritten completely.
15717         (grub_ncurses_getkey): Likewise.
15718         (grub_ncurses_init): Call raw instead of cbreak.
15720         * normal/menu.c (print_entry): Do not put a space.
15721         (init_page): Renamed to ...
15722         (grub_menu_init_page): ... this. All callers changed.
15723         (edit_menu_entry): Removed.
15724         (run_menu): Call grub_menu_entry_run instead of edit_menu_entry.
15726         * normal/cmdline.c (grub_cmdline_run): Call grub_setcursor.
15728         * kern/misc.c (grub_vprintf): Call grub_refresh.
15730         * normal/menu.c (DISP_LEFT): Renamed to ...
15731         * include/grub/term.h (GRUB_TERM_DISP_LEFT): ... this.
15732         * normal/menu.c (DISP_UP): Renamed to ...
15733         * include/grub/term.h (GRUB_TERM_DISP_UP): ... this.
15734         * normal/menu.c (DISP_RIGHT): Renamed to ...
15735         * include/grub/term.h (GRUB_TERM_DISP_RIGHT): ... this.
15736         * normal/menu.c (DISP_DOWN): Renamed to ...
15737         * include/grub/term.h (GRUB_TERM_DISP_DOWN): ... this.
15738         * normal/menu.c (DISP_HLINE): Renamed to ...
15739         * include/grub/term.h (GRUB_TERM_DISP_HLINE): ... this.
15740         * normal/menu.c (DISP_VLINE): Renamed to ...
15741         * include/grub/term.h (GRUB_TERM_DISP_VLINE): ... this.
15742         * normal/menu.c (DISP_UL): Renamed to ...
15743         * include/grub/term.h (GRUB_TERM_DISP_UL): ... this.
15744         * normal/menu.c (DISP_UR): Renamed to ...
15745         * include/grub/term.h (GRUB_TERM_DISP_UR): ... this.
15746         * normal/menu.c (DISP_LL): Renamed to ...
15747         * include/grub/term.h (GRUB_TERM_DISP_LL): ... this.
15748         * normal/menu.c (DISP_LR): Renamed to ...
15749         * include/grub/term.h (GRUB_TERM_DISP_LR): ... this.
15750         * normal/menu.c (TERM_WIDTH): Renamed to ...
15751         * include/grub/term.h (GRUB_TERM_WIDTH): ... this.
15752         * normal/menu.c (TERM_HEIGHT): Renamed to ...
15753         * include/grub/term.h (GRUB_TERM_HEIGHT): ... this.
15754         * normal/menu.c (TERM_INFO_HEIGHT): Renamed to ...
15755         * include/grub/term.h (GRUB_TERM_INFO_HEIGHT): ... this.
15756         * normal/menu.c (TERM_MARGIN): Renamed to ...
15757         * include/grub/term.h (GRUB_TERM_MARGIN): ... this.
15758         * normal/menu.c (TERM_SCROLL_WIDTH): Renamed to ...
15759         * include/grub/term.h (GRUB_TERM_SCROLL_WIDTH): ... this.
15760         * normal/menu.c (TERM_TOP_BORDER_Y): Renamed to ...
15761         * include/grub/term.h (GRUB_TERM_TOP_BORDER_Y): ... this.
15762         * normal/menu.c (TERM_LEFT_BORDER_X): Renamed to ...
15763         * include/grub/term.h (GRUB_TERM_LEFT_BORDER_X): ... this.
15764         * normal/menu.c (TERM_BORDER_WIDTH): Renamed to ...
15765         * include/grub/term.h (GRUB_TERM_BORDER_WIDTH): ... this.
15766         * normal/menu.c (TERM_MESSAGE_HEIGHT): Renamed to ...
15767         * include/grub/term.h (GRUB_TERM_MESSAGE_HEIGHT): ... this.
15768         * normal/menu.c (TERM_BORDER_HEIGHT): Renamed to ...
15769         * include/grub/term.h (GRUB_TERM_BORDER_HEIGHT): ... this.
15770         * normal/menu.c (TERM_NUM_ENTRIES): Renamed to ...
15771         * include/grub/term.h (GRUB_TERM_NUM_ENTRIES): ... this.
15772         * normal/menu.c (TERM_FIRST_ENTRY_Y): Renamed to ...
15773         * include/grub/term.h (GRUB_TERM_FIRST_ENTRY_Y): ... this.
15774         * normal/menu.c (TERM_ENTRY_WIDTH): Renamed to ...
15775         * include/grub/term.h (GRUB_TERM_ENTRY_WIDTH): ... this.
15776         * normal/menu.c (TERM_CURSOR_X): Renamed to ...
15777         * include/grub/term.h (GRUB_TERM_CURSOR_X): ... this.
15778         All callers changed.
15780         * include/grub/normal.h: New prototype.
15782         * conf/i386-pc.rmk (grub_emu_SOURCES): Added
15783         normal/menu_entry.c.
15784         (normal_mod_SOURCES): Likewise.
15785         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
15786         (normal_mod_SOURCES): Likewise.
15788 2005-02-15  Yoshinori K. Okuji  <okuji@enbug.org>
15790         * include/grub/normal.h (grub_halt_init): New prototype.
15791         (grub_halt_fini): Likewise.
15792         (grub_reboot_init): Likewise.
15793         (grub_reboot_fini): Likewise.
15795         * util/grub-emu.c: Include signal.h.
15796         (main_env): New global variable.
15797         (grub_machine_init): Ignore SIGINT. Otherwise grub-emu cannot
15798         catch C-c.
15799         (grub_machine_fini): New function.
15800         (main): Call grub_halt_init and grub_reboot_init before
15801         grub_main, and grub_reboot_fini and grub_halt_fini after it.
15802         Call setjmp with MAIN_ENV to go back afterwards.
15803         Call grub_machine_fini right before return.
15805         * include/grub/util/misc.h: Include setjmp.h.
15806         (main_env): New prototype.
15808         * include/grub/kernel.h (grub_machine_fini): New prototype.
15809         * include/grub/i386/pc/biosdisk.h (grub_biosdisk_fini): Likewise.
15810         * include/grub/i386/pc/console.h (grub_console_fini): Likewise.
15812         * disk/i386/pc/biosdisk.c (grub_biosdisk_fini): New function.
15813         * kern/i386/pc/init.c (grub_machine_fini): Likewise.
15814         * term/i386/pc/console.c (grub_console_fini): Likewise.
15816         * util/i386/pc/misc.c: New file.
15818         * conf/i386-pc.rmk (grub_emu_SOURCES): Added
15819         util/i386/pc/misc.c, commands/i386/pc/halt.c and
15820         commands/i386/pc/reboot.c.
15822 2005-02-14  Guillem Jover  <guillem@hadrons.org>
15824         * include/grub/dl.h (grub_dl_check_header): New prototype.
15825         (grub_arch_dl_check_header): Change return type to grub_err_t,
15826         remove size parameter and export function.  Update all callers.
15827         * kern/dl.c (grub_dl_check_header): New function.
15828         (grub_dl_load_core): Use `grub_dl_check_header' instead of
15829         `grub_arch_dl_check_header'.  Check ELF type.  Check if sections
15830         are inside the core.
15831         * kern/i386/dl.c (grub_arch_dl_check_header): Remove arch
15832         independent ELF header checks.
15833         * kern/powerpc/dl.c (grub_arch_dl_check_header): Likewise.
15834         * loader/i386/pc/multiboot.c (grub_rescue_cmd_multiboot): Use
15835         `grub_dl_check_header' instead of explicit checks.  Check for the
15836         ELF type.
15837         * loader/powerpc/ieee1275/linux.c (grub_rescue_cmd_linux): Use
15838         `grub_dl_check_header' instead of explicit checks.  Remove arch
15839         specific ELF header checks.
15841         * util/grub-emu.c (grub_arch_dl_check_header): Remove the
15842         argument SIZE.
15844 2005-02-13  Hollis Blanchard  <hollis@penguinppc.org>
15846         * conf/powerpc-ieee1275.rmk (pkgdata_MODULES): Add ls.mod.
15847         * include/grub/powerpc/libgcc.h (__mulsf3): New prototype.
15849 2005-02-12  Hollis Blanchard  <hollis@penguinppc.org>
15851         * kern/partition.c (grub_partition_probe): Clear `grub_errno' and
15852         return 0 if `grub_errno' is GRUB_ERR_BAD_PART_TABLE.
15853         (part_map_iterate): Clear `grub_errno' and return 0 if
15854         `partmap->iterate' returns GRUB_ERR_BAD_PART_TABLE.
15855         * partmap/amiga.c (amiga_partition_map_iterate): Return
15856         GRUB_ERR_BAD_PART_TABLE if no partition map magic is found.
15857         * partmap/apple.c (apple_partition_map_iterate): Likewise.
15859 2005-02-01  Guillem Jover  <guillem@hadrons.org>
15861         * loader/i386/pc/multiboot_normal.c (GRUB_MOD_INIT): Fix module
15862         help info.
15864 2005-01-31  Marco Gerards  <metgerards@student.han.nl>
15866         * include/grub/powerpc/ieee1275/loader.h (grub_load_linux):
15867         Removed prototype.
15868         (grub_rescue_cmd_linux): New prototype.
15869         (grub_rescue_cmd_initrd): Likewise.
15870         * powerpc/ieee1275/linux.c (grub_linux_boot): Remove struct
15871         `bi_rec'.
15872         (grub_linux_release_mem): Release the memory for the initrd.
15873         (grub_load_linux): Renamed from this...
15874         (grub_rescue_cmd_linux): ...To this.  Changed all callers.
15875         Changed `entry' not to be static.  Loop over memory regions to
15876         find another one when the default fails.
15877         (grub_rescue_cmd_initrd): New function.
15878         (grub_linux_init): Remove function.
15879         (grub_linux_fini): Likewise.
15880         (GRUB_MOD_INIT): Register `initrd'.
15881         (GRUB_MOD_FINI): Unregister `initrd'.
15882         * powerpc/ieee1275/linux_normal.c (grub_linux_normal_init):
15883         Function removed.
15884         (grub_linux_normal_fini): Likewise.
15885         (GRUB_MOD_INIT): Register `initrd'.
15886         (GRUB_MOD_FINI): Unregister `initrd'.
15888 2005-01-31  Marco Gerards  <metgerards@student.han.nl>
15890         * commands/help.c: New file.
15891         * normal/arg.c (show_help): Renamed to...
15892         (grub_arg_show_help): ... this.
15893         * commands/i386/pc/halt.c: New file.
15894         * commands/i386/pc/reboot.c: Likewise.
15895         * conf/i386-pc.rmk (grub_emu_SOURCES): Add `commands/help.c'.
15896         (pkgdata_MODULES): Add `reboot.mod', `halt.mod' and `help.mod'.
15897         (help_mod_SOURCES, help_mod_CFLAGS, reboot_mod_SOURCES)
15898         (reboot_mod_CFLAGS, halt_mod_SOURCES, halt_mod_CFLAGS): New
15899         variables.
15900         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add
15901         `commands/help.c'.
15902         (pkgdata_MODULES): Add `help.mod'.
15903         (help_mod_SOURCES, help_mod_CFLAGS): New variables.
15904         * grub/i386/pc/init.h (grub_reboot): New prototype.
15905         (grub_halt): Likewise.
15906         * include/grub/normal.h (grub_arg_show_help): New prototype.
15907         (grub_help_init): Likewise.
15908         (grub_help_fini): Likewise.
15909         * util/grub-emu.c (main): Initialize and deinitialize the help
15910         command.
15912         * normal/cmdline.c (grub_cmdline_get): Doc fix.
15914         * normal/command.c (grub_command_init): Fixed the description of
15915         the `set' and `unset' commands.
15917 2005-01-31  Marco Gerards  <metgerards@student.han.nl>
15919         * boot/powerpc/ieee1275/ieee1275.c (grub_ieee1275_interpret): New
15920         function.
15921         * commands/ieee1275/halt.c: New file.
15922         * commands/ieee1275/reboot.c: Likewise.
15923         * commands/ieee1275/suspend.c (grub_cmd_suspend): Use
15924         `__attribute__ ((unused))'.  Some GCS related fixed.
15925         (grub_suspend_init) [GRUB_UTIL]: Function removed.
15926         (grub_suspend_fini): Likewise.
15927         * conf/powerpc-ieee1275.rmk (pkgdata_MODULES): Add `reboot.mod'
15928         and `halt.mod'.
15929         (reboot_mod_SOURCES, reboot_mod_CFLAGS, halt_mod_SOURCES)
15930         (halt_mod_CFLAGS): New variables.
15931         * include/grub/powerpc/ieee1275/ieee1275.h
15932         (grub_ieee1275_interpret): New prototype.
15934 2005-01-29  Yoshinori K. Okuji  <okuji@enbug.org>
15936         * include/grub/misc.h (memmove): New prototype.
15937         (memcpy): Likewise.
15939 2005-01-22  Hollis Blanchard  <hollis@penguinppc.org>
15941         * disk/powerpc/ieee1275/ofdisk.c (grub_ofdisk_open): Don't initialize
15942         `devpath' to 0.  Use `name' instead of `devpath' with `grub_strndup'.
15944 2005-01-22  Marco Gerards  <metgerards@student.han.nl>
15946         * kern/misc.c (grub_strndup): Function rewritten.
15948 2005-01-22  Vincent Pelletier  <subdino2004@yahoo.fr>
15950         * normal/menu.c (TERM_WIDTH): Macro redefined.
15951         (TERM_TOP_BORDER_Y): Likewise.
15952         (draw_border): Replaced while-loop by a for-loop.  Make the number
15953         of lines consistent with the number of lines displayed in
15954         print_entries.  Added a margin below the rectangle.
15955         (print_entry): Make the entry fit in the rectangle.
15956         (print_entries): Display the scroll arrows next to the right
15957         border.
15959 2005-01-21  Marco Gerards  <metgerards@student.han.nl>
15961         * fs/minix.c (grub_minix_find_file): Reserve more space for
15962         `fpath' so the \0 can be stored.  Use `grub_strcpy' instead of
15963         `grub_strncpy' to copy `path' into it.
15965 2005-01-21  Marco Gerards  <metgerards@student.han.nl>
15967         Add the loopback device, a device via which files can be accessed
15968         as devices.
15970         * conf/i386-pc.rmk (grub_emu_SOURCES): Add `disk/loopback.c'.
15971         (pkgdata_MODULES): Add loopback.mod.
15972         (loopback_mod_SOURCES): New variable.
15973         (loopback_mod_CFLAGS): Likewise.
15974         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add
15975         `disk/loopback.c'.
15976         (pkgdata_MODULES): Add loopback.mod.
15977         (loopback_mod_SOURCES): New variable.
15978         (loopback_mod_CFLAGS): Likewise.
15979         * disk/loopback.c: new file.
15980         * include/grub/normal.h (grub_loop_init): New prototype.
15981         (grub_loop_fini): New prototype.
15982         * util/grub-emu.c (main): Initialize and de-initialize loopback
15983         support.
15984         * include/grub/disk.h (grub_disk_dev_id): Add
15985         `GRUB_DISK_DEVICE_LOOPBACK_ID'.
15987 2005-01-20  Hollis Blanchard  <hollis@penguinppc.org>
15989         * boot/powerpc/ieee1275/ieee1275.c (grub_ieee1275_enter): New
15990         function.
15991         * conf/powerpc-ieee1275.rmk (pkgdata_MODULES): Add suspend.mod.
15992         (suspend_mod_SOURCES): New variable.
15993         (suspend_mod_CFLAGS): Likewise.
15994         * include/grub/powerpc/ieee1275/ieee1275.h (grub_ieee1275_enter):
15995         New prototype.
15996         * commands/ieee1275/suspend.c: New file.
15998 2005-01-20  Timothy Baldwin  <T.E.Baldwin99@members.leeds.ac.uk>
16000         * include/grub/dl.h (GRUB_MOD_INIT): Changed `__attribute__
16001         ((unused))' to `__attribute__ ((used))'.
16002         (GRUB_MOD_FINI): Likewise.
16003         * kern/dl.c (grub_dl_load_file): Fix null pointer dereference.
16004         * genmk.rb (PModule): Assign space to common symbols when linking
16005         modules.
16007 2005-01-20  Marco Gerards  <metgerards@student.han.nl>
16009         * include/grub/mm.h (grub_mm_init_region): Change the type of the
16010         `unsigned' arguments to `grub_size_t'.
16011         (grub_malloc): Likewise.
16012         (grub_realloc): Likewise.
16013         (grub_memalign): Likewise.
16014         * kern/i386/dl.c (grub_arch_dl_check_header): Likewise.
16015         * kern/powerpc/dl.c (grub_arch_dl_check_header): Likewise.
16016         * util/misc.c (grub_malloc): Likewise.
16017         (grub_realloc): Likewise.
16018         * kern/mm.c (get_header_from_pointer): Change the casts to
16019         `unsigned' into a cast to `grub_size_t'.
16021         * fs/fshelp.c (grub_fshelp_find_file): The `oldnode' should always
16022         point to `currnode' when `currnode' is changed.
16024         * util/grub-emu.c (main): Initialize `progname'.  Reported by Nico
16025         Schottelius <nico-linux@schottelius.org>.
16027 2005-01-09  Hollis Blanchard  <hollis@penguinppc.org>
16029         * util/powerpc/ieee1275/grub-mkimage.c: Include <string.h>.
16030         (note_path): Remove variable.
16031         (GRUB_IEEE1275_NOTE_NAME): New macro.
16032         (GRUB_IEEE1275_NOTE_TYPE): Likewise.
16033         (grub_ieee1275_note_hdr): New structure.
16034         (grub_ieee1275_note_desc): Likewise.
16035         (grub_ieee1275_note): Likewise.
16036         (load_note): Remove `dir' argument.  All callers updated.  Remove
16037         `note_img' and `path'.  Do not load a file from `note_path'.
16038         Initialize a struct grub_ieee1275_note and write that to `out'.
16039         Use GRUB_IEEE1275_MODULE_BASE instead of MODULE_BASE.
16041 2005-01-05  Marco Gerards  <metgerards@student.han.nl>
16043         * util/misc.c (grub_util_read_image): Revert last change.  It
16044         called `grub_util_read_at', which seeks from the beginning of the
16045         file.
16047 2005-01-04  Hollis Blanchard  <hollis@penguinppc.org>
16049         * TODO: Add note about endianness in grub-mkimage.
16050         * boot/powerpc/ieee1275/crt0.S (note): Remove unused .note
16051         section.
16052         * conf/powerpc-ieee1275.rmk (bin_UTILITIES): Add grub-mkimage.
16053         (grub_mkimage_SOURCES): New target.
16054         * include/grub/kernel.h (grub_start_addr): Remove variable.
16055         (grub_end_addr): Likewise.
16056         (grub_total_module_size): Likewise.
16057         (grub_kernel_image_size): Likewise.
16058         (GRUB_MODULE_MAGIC): New constant.
16059         (grub_module_info): New structure.
16060         (grub_arch_modules_addr): New prototype.
16061         (grub_get_end_addr): Remove prototype.
16062         * include/grub/i386/pc/kernel.h (grub_end_addr): New prototype.
16063         * include/grub/powerpc/ieee1275/kernel.h: New file.
16064         * include/grub/util/misc.h (grub_util_get_fp_size): New
16065         prototype.
16066         (grub_util_read_at): Likewise.
16067         (grub_util_write_image_at): Likewise.
16068         * kern/main.c (grub_get_end_addr): Remove function.
16069         (grub_load_modules): Call grub_arch_modules_addr instead of using
16070         grub_end_addr.  Look for a grub_module_info struct in memory.  Use
16071         the grub_module_info fields instead of calling grub_get_end_addr
16072         as loop conditions.  Move grub_add_unused_region code here.
16073         (grub_add_unused_region): Remove function.
16074         * kern/i386/pc/init.c: Include grub/cache.h.
16075         (grub_machine_init): Remove call to grub_get_end_addr.  Remove
16076         one call to add_mem_region.
16077         (grub_arch_modules_addr): New function.
16078         * kern/powerpc/ieee1275/init.c (grub_end_addr): Remove variable.
16079         (grub_total_module_size): Likewise.
16080         Include grub/machine/kernel.h.
16081         (grub_arch_modules_addr): New function.
16082         * util/grub-emu.c (grub_end_addr): Remove variable.
16083         (grub_total_module_size): Likewise.
16084         (grub_arch_modules_addr): New function.
16085         * util/misc.c: Include unistd.h.
16086         (grub_util_get_fp_size): New function.
16087         (grub_util_read_at): Likewise.
16088         (grub_util_write_image_at): Likewise.
16089         (grub_util_read_image): Call grub_util_read_at.
16090         (grub_util_write_image): Call grub_util_write_image_at.
16091         * util/i386/pc/grub-mkimage.c (generate_image): Allocate
16092         additional memory in kernel_img for a struct grub_module_info.
16093         Fill in that grub_module_info.
16094         * util/powerpc/ieee1275/grub-mkimage.c: New file.
16096 2005-01-03  Hollis Blanchard  <hollis@penguinppc.org>
16098         * boot/powerpc/ieee1275/ieee1275.c (grub_ieee1275_milliseconds):
16099         New function.
16100         * include/grub/powerpc/ieee1275/ieee1275.h
16101         (grub_ieee1275_milliseconds): New prototype.
16102         * include/grub/powerpc/ieee1275/time.h (GRUB_TICKS_PER_SECOND):
16103         Change to 1000.
16104         * kern/powerpc/ieee1275/init.c (grub_get_rtc): Call
16105         grub_ieee1275_milliseconds.
16107 2005-01-03  Hollis Blanchard  <hollis@penguinppc.org>
16109         * boot/powerpc/ieee1275/cmain.c (grub_ieee1275_realmode): New
16110         variable.
16111         (find_options): New function.
16112         (cmain): Call find_options.
16113         * include/grub/powerpc/ieee1275/ieee1275.h
16114         (grub_ieee1275_realmode): New extern variable.
16115         * kern/powerpc/ieee1275/openfw.c (grub_claimmap): Only call
16116         grub_map if grub_ieee1275_realmode is false.
16118 2004-12-29  Marco Gerards  <metgerards@student.han.nl>
16120         * normal/cmdline.c (grub_cmdline_get): Redone logic so no empty
16121         lines are inserted and make it work like readline.  Reported by
16122         Vincent Pelletier <subdino2004@yahoo.fr>.
16124 2004-12-28  Marco Gerards  <metgerards@student.han.nl>
16126         * boot/powerpc/ieee1275/crt0.S (_start): Don't set up the stack.
16128         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCE): Remove
16129         `kern/powerpc/cache.S'.
16131 2004-12-27  Marco Gerards  <metgerards@student.han.nl>
16133         * genmk.rb: Handle the `Program' class in the main loop.  Written
16134         by Johan Rydberg <jrydberg@gnu.org>.
16135         (Program): New class.
16136         (programs): New variable.
16137         * boot/powerpc/ieee1275/cmain.c: Include <grub/machine/ieee1275.h>
16138         instead of "grub/machine/ieee1275.h".  Include <grub/kernel.h>
16139         instead of "grub/kernel.h".  Include <grub/machine/init.h>.
16140         (help_arch): Function removed.
16141         * conf/powerpc-ieee1275.rmk (grubof_HEADERS): Add
16142         `powerpc/libgcc.h' and `loader.h'.
16143         (pkgdata_PROGRAMS): New variable.
16144         (sbin_UTILITIES): Variable removed.
16145         (grub_emu_SOURCES): Added kern/powerpc/cache.S.
16146         (grubof_SOURCES): Variable re-defined so it only includes the
16147         core functionality.
16148         (grubof_CFLAGS): Remove `-DGRUBOF'.
16149         (pkgdata_MODULES, fshelp_mod_SOURCES, fshelp_mod_CFLAGS,
16150         (fat_mod_SOURCES, fat_mod_CFLAGS, ext2_mod_SOURCES)
16151         (ext2_mod_CFLAGS, ufs_mod_SOURCES, ufs_mod_CFLAGS)
16152         (minix_mod_SOURCES, minix_mod_CFLAGS, hfs_mod_SOURCES)
16153         (hfs_mod_CFLAGS, jfs_mod_SOURCES, jfs_mod_CFLAGS)
16154         (iso9660_mod_SOURCES, iso9660_mod_CFLAGS, _linux_mod_SOURCES)
16155         (_linux_mod_CFLAGS, linux_mod_SOURCES, linux_mod_CFLAGS)
16156         (normal_mod_SOURCES, normal_mod_CFLAGS, normal_mod_ASFLAGS)
16157         (hello_mod_SOURCES, hello_mod_CFLAGS, boot_mod_SOURCES)
16158         (boot_mod_CFLAGS, terminal_mod_SOURCES, terminal_mod_CFLAGS)
16159         (ls_mod_SOURCES, ls_mod_CFLAGS, cmp_mod_SOURCES, cmp_mod_CFLAGS)
16160         (cat_mod_SOURCES, cat_mod_CFLAGS, font_mod_SOURCES)
16161         (font_mod_CFLAGS, amiga_mod_SOURCES, amiga_mod_CFLAGS)
16162         (apple_mod_SOURCES, apple_mod_CFLAGS, pc_mod_SOURCES)
16163         (pc_mod_CFLAGS): New variables.
16164         * disk/powerpc/ieee1275/ofdisk.c: Include <grub/machine/init.h>.
16165         (grub_ofdisk_iterate): Add a prototype for `dev_iterate'.
16166         * include/grub/dl.h (grub_arch_dl_sync_caches): New prototype.
16167         * include/grub/loader.h (grub_os_area_addr, grub_os_area_size):
16168         Moved from here...
16169         * include/grub/i386/pc/init.h (grub_os_area_addr)
16170         (rub_os_area_size): ... to here.
16171         * include/grub/powerpc/ieee1275/ieee1275.h
16172         (grub_ieee1275_entry_fn): Export symbol.
16173         * include/grub/powerpc/ieee1275/init.h: New file.
16174         * include/grub/powerpc/libgcc.h: Likewise.
16175         * include/grub/cache.h: Likewise.
16176         * kern/powerpc/cache.S: Likewise.  Written by Hollis Blanchard
16177         <hollis@penguinppc.org>.
16178         * kern/dl.c: Include <grub/cache.h>.
16179         (grub_dl_flush_cache): New function.
16180         (grub_dl_load_core): Call `grub_dl_flush_cache' to flush the cache
16181         for this module.
16182         * kern/powerpc/ieee1275/init.c (grub_ofdisk_init)
16183         (grub_console_init): Removed prototypes.
16184         (grub_machine_init): Don't initialize the modules anymore.
16185         * kern/powerpc/ieee1275/openfw.c (grub_map): Make the function
16186         static.
16187         * include/grub/powerpc/types.h (GRUB_HOST_WORDS_LITTLEENDIAN):
16188         Macro undef removed.
16189         (GRUB_HOST_WORDS_BIGENDIAN): New macro.
16190         * kern/powerpc/dl.c (grub_arch_dl_relocate_symbols): Add
16191         relocation `R_PPC_REL32'.  Return an error when the relocation is
16192         unknown.
16193         * Makefile.in (DATA): Add `$(pkgdata_PROGRAMS)'.
16194         * kern/i386/pc/init.c (grub_arch_sync_caches): New function.
16195         * util/misc.c (grub_arch_sync_caches): Likewise.
16197 2004-12-19  Marco Gerards  <metgerards@student.han.nl>
16199         * conf/powerpc-ieee1275.rmk (MOSTLYCLEANFILES): Remove
16200         `symlist.c', add `grubof_symlist.c'.
16201         (symlist.c): Variable removed.
16202         (grubof_HEADERS): Variable added.
16203         (grubof_symlist.c): New target.
16204         (kernel_syms.lst): Use `grubof_HEADERS' instead of
16205         `kernel_img_HEADERS'.
16206         (grubof_SOURCES): Add `kern/powerpc/dl.c' and `grubof_symlist.c'.
16207         * kern/powerpc/dl.c: New file.
16208         * kern/powerpc/ieee1275/init.c (grub_arch_dl_check_header):
16209         Function removed.
16210         (grub_arch_dl_relocate_symbols): Likewise.
16211         (grub_register_exported_symbols): Likewise.
16213 2004-12-13  Marco Gerards  <metgerards@student.han.nl>
16215         * fs/ext2.c (grub_ext2_open): Don't use data after freeing it.
16216         (grub_ext2_dir): Likewise.  Don't return in case of an error, jump
16217         to fail instead.  Reported by Vincent Pelletier
16218         <subdino2004@yahoo.fr>.
16220         * fs/fshelp.c (grub_fshelp_find_file): Don't free `oldnode' when
16221         it is not allocated.  Reported by Vincent Pelletier
16222         <subdino2004@yahoo.fr>.
16224         * normal/cmdline.c (grub_tab_complete): Add a blank line to the
16225         output so the output looks better.
16227 2004-12-04  Marco Gerards  <metgerards@student.han.nl>
16229         Modulize the partition map support and add support for the amiga
16230         partition map.
16232         * commands/ls.c: Include <grub/partition.h> instead of
16233         <grub/machine/partition.h>.
16234         * kern/disk.c: Likewise.
16235         * kern/rescue.c: Likewise.
16236         * loader/i386/pc/chainloader.c: Likewise.
16237         * normal/cmdline.c: Likewise.
16238         * kern/powerpc/ieee1275/init.c: Likewise.
16239         (grub_machine_init): Call `grub_pc_partition_map_init',
16240         `grub_amiga_partition_map_init' and
16241         `grub_apple_partition_map_init'.
16242         * conf/i386-pc.rmk (kernel_img_SOURCES): Remove
16243         `disk/i386/pc/partition.c'.  Add `kern/partition.c'.
16244         (kernel_img_HEADERS): Remove `machine/partition.h'.  Add
16245         `partition.h' and `pc_partition.h'.
16246         (grub_setup_SOURCES): Remove
16247         `disk/i386/pc/partition.c'.  Add `kern/partition.c',
16248         `partmap/amiga.c', `partmap/apple.c' and `partmap/pc.c'.
16249         (grub_emu_SOURCES): Likewise.
16250         (pkgdata_MODULES): Add `amiga.mod', `apple.mod' and `pc.mod'.
16251         (amiga_mod_SOURCES, amiga_mod_CFLAGS, apple_mod_SOURCES)
16252         (apple_mod_CFLAGS, pc_mod_SOURCES, pc_mod_CFLAGS): New variables.
16253         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Remove
16254         `disk/powerpc/ieee1275/partition.c'.  Add `kern/partition.c',
16255         `partmap/amiga.c', `partmap/apple.c' and `partmap/pc.c'.
16256         (grubof_SOURCES): Likewise.
16257         * disk/i386/pc/partition.c: File removed.
16258         * disk/powerpc/ieee1275/partition.c: Likewise.
16259         * include/grub/powerpc/ieee1275/partition.h: Likewise.
16260         * include/grub/i386/pc/partition.h: Likewise.
16261         * kern/partition.c: New file.
16262         * partmap/amiga.c: Likewise.
16263         * partmap/apple.c: Likewise.
16264         * partmap/pc.c: Likewise.
16265         * include/grub/partition.h: Likewise..
16266         * include/grub/pc_partition.h: Likewise.
16267         * util/grub-emu.c: Include <grub/partition.h> instead of
16268         <grub/machine/partition.h>.
16269         (main): Call `grub_pc_partition_map_init',
16270         `grub_amiga_partition_map_init' and
16271         `grub_apple_partition_map_init' and deinitialize afterwards.
16272         * util/i386/pc/biosdisk.c: Include `#include
16273         <grub/partition.h>' and `include <grub/pc_partition.h>' instead of
16274         `<grub/machine/partition.h>'.
16275         * util/i386/pc/grub-setup.c: Likewise.
16276         * util/i386/pc/biosdisk.c: Likewise.
16277         (grub_util_biosdisk_get_grub_dev): Only access the PC specific
16278         partition information in case of a PC partition.
16279         * util/i386/pc/grub-setup.c: Include `#include
16280         <grub/partition.h>' and `include <grub/pc_partition.h>' instead of
16281         `<grub/machine/partition.h>'.
16282         (setup): Only access the PC specific partition information in case
16283         of a PC partition.
16285 2004-11-17  Hollis Blanchard  <hollis@penguinppc.org>
16287         * kern/powerpc/ieee1275/init.c (grub_setjmp): Remove function.
16288         (grub_longjmp): Likewise.
16289         * include/grub/powerpc/setjmp.h (grub_jmp_buf): Set array size to
16290         20.
16291         * normal/powerpc/setjmp.S: New file.
16292         * conf/powerpc-ieee1275.rmk (grubof_SOURCES): Add
16293         `normal/powerpc/setjmp.S'.
16294         (grubof_CFLAGS): Add `-DGRUBOF'.
16295         * include/grub/setjmp.h [GRUB_UTIL]: Changed condition to
16296         [GRUB_UTIL && !GRUBOF].
16298 2004-11-16  Marco Gerards  <metgerards@student.han.nl>
16300         * kern/powerpc/ieee1275/openfw.c (grub_devalias_iterate): Skip any
16301         property named `name'.  Correctly handle the error returned by
16302         `grub_ieee1275_finddevice' if a device can not be opened.
16304 2004-11-02  Hollis Blanchard  <hollis@penguinppc.org>
16306         * term/powerpc/ieee1275/ofconsole.c (grub_ofconsole_readkey): Test
16307         `actual' for negativity.
16308         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Remove
16309         kern/fshelp.c.
16311 2004-11-01  Marco Gerards  <metgerards@student.han.nl>
16313         * term/i386/pc/vga.c (VGA_HEIGHT): Changed to 350.
16314         (PAGE_OFFSET): New macro.
16315         (CRTC_ADDR_PORT): Likewise.
16316         (CRTC_DATA_PORT): Likewise.
16317         (START_ADDR_HIGH_REGISTER): Likewise.
16318         (START_ADDR_LOW_REGISTER): Likewise.
16319         (GRAPHICS_ADDR_PORT): Likewise.
16320         (GRAPHICS_DATA_PORT): Likewise.
16321         (READ_MAP_REGISTER): Likewise.
16322         (INPUT_STATUS1_REGISTER): Likewise.
16323         (INPUT_STATUS1_VERTR_BIT): Likewise.
16324         (page): New variable.
16325         (wait_vretrace): New function.
16326         (set_read_map): Likewise.
16327         (set_start_address): Likewise.
16328         (grub_vga_init): Use mode 0x10 instead of mode 0x12.  Switch to
16329         the right page.
16330         (check_vga_mem): Take the page into account.
16331         (write_char): Likewise.
16332         (write_cursor): Likewise.
16333         (scroll_up): Likewise.  Copy the page to the page that is not
16334         shown and switch between both pages.
16335         (grub_vga_putchar): Fix off by one error.
16336         (grub_vga_cls): Wait for the vertical retrace.  Take the page into
16337         account.
16339 2004-11-01  Marco Gerards  <metgerards@student.han.nl>
16341         Add support for iso9660 (including rockridge).
16343         * conf/i386-pc.rmk (grub_emu_SOURCES): Add fs/iso9660.c.
16344         (iso9660_mod_SOURCES): New variable.
16345         (iso9660_mod_CFLAGS): Likewise.
16346         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add fs/iso9660.c.
16347         * include/grub/fs.h (grub_iso9660_init): New prototype.
16348         * util/grub-emu.c (main): Call `grub_iso9660_init'.
16349         * fs/iso9660.c: New file.
16351         * include/grub/misc.h (grub_strncat): New prototype.
16352         * kern/misc.c (grub_strncat): New function.
16354         * fs/hfs.c (grub_hfs_mount): Translate the error
16355         `GRUB_ERR_OUT_OF_RANGE' to `GRUB_ERR_BAD_FS'.
16356         * fs/jfs.c (grub_jfs_mount): Likewise.
16357         * fs/ufs.c (grub_ufs_mount): Likewise.
16359 2004-10-28  Hollis Blanchard  <hollis@penguinppc.org>
16361         * boot/powerpc/ieee1275/cmain.c (cmain): Remove asm statements
16362         which initialized BAT registers.
16363         * boot/powerpc/ieee1275/ieee1275.c (IEEE1275_CALL_ENTRY_FN,
16364         grub_ieee1275_common_hdr, INIT_IEEE1275_COMMON):
16365         Move from here...
16366         * include/grub/powerpc/ieee1275/ieee1275.h (IEEE1275_CALL_ENTRY_FN,
16367         grub_ieee1275_common_hdr, INIT_IEEE1275_COMMON):
16368         ... to here.
16369         * kern/powerpc/ieee1275/openfw.c (grub_map): New function.
16370         (grub_mapclaim): Likewise.
16371         * loader/powerpc/ieee1275/linux.c (grub_load_linux): Use
16372         grub_mapclaim instead of grub_ieee1275_claim.  Assign linux_addr by
16373         hand.
16375 2004-10-19  Hollis Blanchard  <hollis@penguinppc.org>
16377         * conf/powerpc-ieee1275.rmk (COMMON_ASFLAGS): Remove -fno-builtin.
16378         (COMMON_CFLAGS): Remove -fno-builtin and -D__ASSEMBLY__. Add
16379         -ffreestanding and -msoft-float.
16381 2004-10-15  Hollis Blanchard  <hollis@penguinppc.org>
16383         * disk/powerpc/ieee1275/ofdisk.c (grub_ofdisk_open): Do not
16384         append ":0" to devpath if the GRUB_IEEE1275_NO_PARTITION_0 flag is
16385         set in grub_ieee1275_flags.
16387 2004-10-14  Hollis Blanchard  <hollis@penguinppc.org>
16389         * include/grub/powerpc/ieee1275/ieee1275.h (abort): Add function
16390         prototype.
16391         * kern/powerpc/ieee1275/init.c (grub_machine_init): Call
16392         grub_console_init first.
16393         Change the memory range used for grub_ieee1275_claim and
16394         grub_mm_init_region.
16395         Print an error message if the claim fails.
16396         Include <grub/misc.h>.
16398 2004-10-13  Hollis Blanchard  <hollis@penguinppc.org>
16400         * disk/powerpc/ieee1275/ofdisk.c (grub_ofdisk_iterate):
16401         Call grub_children_iterate for device nodes of type `scsi',
16402         `ide', or `ata'.
16403         (grub_ofdisk_open): Remove manual device alias resolution.
16404         Fix memory leak when device cannot be opened.
16405         * include/grub/powerpc/ieee1275/ieee1275.h
16406         (grub_children_iterate): New prototype.
16407         * kern/powerpc/ieee1275/openfw.c (grub_children_iterate):
16408         New function.
16409         * boot/powerpc/ieee1275/ieee1275.c (grub_ieee1275_get_property):
16410         Return -1 if args.size was -1.
16412 2004-10-11  Hollis Blanchard  <hollis@penguinppc.org>
16414         * boot/powerpc/ieee1275/cmain.c (grub_ieee1275_flags): New global.
16415         (cmain): Accept 3 parameters. Test for 0xdeadbeef, indicating Old
16416         World Macintosh. If Old Wold, set flag in grub_ieee1275_flags; claim
16417         Open Firmware's memory for it; claim memory from _start to _end.
16418         * boot/powerpc/ieee1275/crt0.S (__bss_start): New extern.
16419         (_end): New extern.
16420         (_start): Zero BSS from __bss_start to _end.
16421         * include/grub/powerpc/ieee1275/ieee1275.h (grub_ieee1275_flags):
16422         New extern.
16423         (GRUB_IEEE1275_NO_PARTITION_0): New #define.
16425 2004-10-11  Hollis Blanchard  <hollis@penguinppc.org>
16427         * boot/powerpc/ieee1275/ieee1275.c (grub_ieee1275_claim): Return
16428         -1 if args.base was -1.
16430 2004-10-08  Hollis Blanchard  <hollis@penguinppc.org>
16432         * term/powerpc/ieee1275/ieee1275.c (grub_ofconsole_cls): Use an ANSI
16433         escape sequence instead of a literal ^L. Also call
16434         grub_ofconsole_gotoxy.
16436 2004-10-03  Hollis Blanchard  <hollis@penguinppc.org>
16438         * boot/powerpc/ieee1275/ieee1275.c (grub_ieee1275_claim): change
16439         void *  arguments to grub_addr_t.  All callers updated.  Also make
16440         the `result' argument optional.
16441         (grub_ieee1275_release): change void * arguments to grub_addr_t.
16442         All callers updated.
16444 2004-09-22  Hollis Blanchard  <hollis@penguinppc.org>
16446         * commands/ls.c (grub_ls_list_files): Use the string following the
16447         initial ')', if present, as the filesystem path.
16448         * kern/rescue.c (grub_rescue_cmd_ls): Likewise.
16450         * conf/powerpc-ieee1275.rmk (grubof_SOURCES): List crt0.S first.
16452 2004-09-18  Yoshinori K. Okuji  <okuji@enbug.org>
16454         Make the source code of the menu interface more readable.
16456         * normal/menu.c: Include grub/mm.h.
16457         (TERM_WIDTH): New macro.
16458         (TERM_HEIGHT): Likewise.
16459         (TERM_INFO_HEIGHT): Likewise.
16460         (TERM_MARGIN): Likewise.
16461         (TERM_SCROLL_WIDTH): Likewise.
16462         (TERM_TOP_BORDER_Y): Likewise.
16463         (TERM_LEFT_BORDER_X): Likewise.
16464         (TERM_BORDER_WIDTH): Likewise.
16465         (TERM_MESSAGE_HEIGHT): Likewise.
16466         (TERM_BORDER_HEIGHT): Likewise.
16467         (TERM_NUM_ENTRIES): Likewise.
16468         (TERM_FIRST_ENTRY_Y): Likewise.
16469         (TERM_ENTRY_WIDTH): Likewise.
16470         (TERM_CURSOR_X): Likewise.
16471         (draw_border): Use macros instead of magic numbers.
16472         (print_entry): Likewise.
16473         (print_entries): Likewise.
16474         (run_menu): Likewise. Also, handle the key 'e'.
16475         (run_menu_entry): Ignore empty command lines.
16476         (print_message): Added a new argument EDIT. If EDIT is true,
16477         print a different message.
16478         (init_page): Likewise.
16479         (edit_menu_entry): New function. Not implemented yet.
16481 2004-09-17  Marco Gerards  <metgerards@student.han.nl>
16483         Add `linux.mod' and `multiboot.mod' so linux and multiboot kernels
16484         can be loaded from normal mode.
16486         * conf/i386-pc.rmk (pkgdata_MODULES): Add `linux.mod' and
16487         `multiboot.mod'.
16488         (linux_mod_SOURCES, linux_mod_CFLAGS, multiboot_mod_SOURCES)
16489         (multiboot_mod_CFLAGS): New variables.
16490         * loader/i386/pc/linux_normal.c: New file.
16491         * loader/i386/pc/multiboot_normal.c: Likewise.
16493         * loader/i386/pc/linux.c (grub_rescue_cmd_initrd): Don't use the
16494         attribute `unused'.
16496         * fs/ext2.c (grub_ext2_iterate_dir): Fix typos in inode type.  Use
16497         `fdiro' to read the mode information from instead of `diro'.
16499         * fs/fshelp.c (grub_fshelp_find_file): Set type to foundtype after
16500         looking up a symlink.
16502         * include/grub/normal.h (GRUB_COMMAND_FLAG_NO_ARG_PARSE): New
16503         macro.
16504         * normal/command.c (grub_command_execute): Don't parse the
16505         arguments when `GRUB_COMMAND_FLAG_NO_ARG_PARSE' is set in the
16506         flags of the command.
16508         * normal/menu.c (grub_menu_run): Fix typo.
16510 2004-09-14  Hollis Blanchard  <hollis@penguinppc.org>
16512         * kern/powerpc/ieee1275/init.c (abort): Trap into Open Firmware.
16514         * term/powerpc/ieee1275/ofconsole.c (grub_ofconsole_gotoxy): Use
16515         `y + 1' instead of `y - 1'.
16517         * conf/powerpc-ieee1275.rmk (grubof_LDFLAGS): Add `-N' and `-S'.
16519 2004-09-14  Yoshinori K. Okuji  <okuji@enbug.org>
16521         From Hollis Blanchard <hollis@penguinppc.org>:
16522         * kern/misc.c (memmove): New alias for grub_memmove.
16523         (memcmp): New alias for grub_memcmp.
16524         (memset): New alias for grub_memset.
16525         * boot/powerpc/ieee1275/ieee1275.c (grub_ieee1275_get_property):
16526         Change "int handle" to "grub_ieee1275_phandle_t handle".
16527         * include/grub/powerpc/ieee1275/ieee1275.h
16528         (grub_ieee1275_get_property): Likewise.
16530 2004-09-12  Tomas Ebenlendr  <ebik@ucw.cz>
16532         Added normal mode command `chainloader' as module chain.mod, which
16533         depends on normal.mod and _chain.mod.
16535         * conf/i386-pc.rmk (pkgdata_MODULES): Add `chain.mod'.
16536         (chain_mod_SOURCES, chain_mod_CFLAGS): Variables added.
16537         * include/grub/i386/pc/loader.h (grub_rescue_cmd_chainloader):
16538         Deleted prototype.
16539         * loader/i386/pc/chainloader.c (grub_rescue_cmd_chainloader): All
16540         but arguments parsing moved to ...
16541         (grub_chainloader_cmd): ... here.  New function.
16542         * include/grub/i386/pc/chainloader.h: New file.
16543         * loader/i386/pc/chainloader_normal.c: Likewise.
16545 2004-09-11  Marco Gerards  <metgerards@student.han.nl>
16547         * conf/i386-pc.rmk (kernel_img_SOURCES): Added kern/fshelp.c.
16548         (grub_mkimage_LDFLAGS): Likewise.
16549         (grub_emu_SOURCES): Likewise.
16550         (kernel_img_HEADERS): Added fshelp.h.
16551         * fs/ext2.c: Include <grub/fshelp.h>.
16552         (FILETYPE_REG): New macro.
16553         (FILETYPE_INO_REG): Likewise.
16554         (grub_ext_sblock): Renamed to `grub_ext2_sblock'.
16555         Changed all users.
16556         (ext2_block_group): Renamed to `grub_ext2_block_group'.  Changed
16557         all users.
16558         (grub_fshelp_node): New struct.
16559         (grub_ext2_data): Added member `diropen'.  Changed member `inode'
16560         to a pointer.
16561         (grub_ext2_get_file_block): Removed function.
16562         (grub_ext2_read_block): New function.
16563         (grub_ext2_read_file): Replaced parameter `data' by `node'.
16564         This function was written.
16565         (grub_ext2_mount): Read the root inode.  Create a diropen struct.
16566         (grub_ext2_find_file): Removed function.
16567         (grub_ext2_read_symlink): New function.
16568         (grub_ext2_iterate_dir): Likewise.
16569         (grub_ext2_open): Rewritten.
16570         (grub_ext2_dir): Rewritten.
16571         * include/grub/fshelp.h: New file.
16572         * fs/fshelp.c: Likewise.
16574 2004-09-10  Yoshinori K. Okuji  <okuji@enbug.org>
16576         * normal/menu.c: Include grub/loader.h and grub/machine/time.h.
16577         (print_message): Add a missing newline.
16578         (run_menu): Added timeout support.
16579         (run_menu_entry): New local function.
16580         (grub_menu_run): Added support for booting.
16582         * kern/loader.c (grub_loader_is_loaded): New function.
16584         * include/grub/powerpc/ieee1275/time.h: Include grub/symbol.h.
16585         (grub_get_rtc): Exported.
16587         * include/grub/i386/pc/time.h: Include grub/symbol.h.
16588         (grub_get_rtc): Exported.
16590         * include/grub/normal.h (struct grub_command_list): Remove
16591         constant from the member `command'.
16593         * include/grub/loader.h (grub_loader_is_loaded): Declared.
16595         * include/grub/err.h (GRUB_ERR_INVALID_COMMAND): New constant.
16597         * conf/i386-pc.rmk (kernel_img_HEADERS): Added machine/time.h.
16599 2004-08-28  Marco Gerards  <metgerards@student.han.nl>
16601         Add support for the JFS filesystem.
16603         * fs/jfs.c: New file.
16604         * include/grub/fs.h (grub_jfs_init): New prototype.
16605         (grub_jfs_fini): New prototype.
16606         * conf/i386-pc.rmk (grub_setup_SOURCES): Add fs/jfs.c.
16607         (grub_emu_SOURCES): Likewise.
16608         (pkgdata_MODULES): Add jfs.mod.
16609         (jfs_mod_SOURCES): New variable.
16610         (jfs_mod_CFLAGS): Likewise.
16611         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add fs.jfs.c.
16612         (grubof_SOURCES): Likewise.
16613         * util/grub-emu.c (main): Initialize and deinitialize JFS support.
16615         * fs/fat.c (grub_fat_find_dir): Convert the filename little
16616         endian to the host endian.
16617         (grub_fat_utf16_to_utf8): Move function from there...
16618         * kern/misc.c (grub_utf16_to_utf8): ...to here.  Do not convert
16619         the endianness of the source string anymore.
16620         * include/grub/misc.h (grub_utf16_to_utf8): New prototype.
16622 2004-08-24  Marco Gerards  <metgerards@student.han.nl>
16624         * commands/boot.c (grub_boot_init) [GRUB_UTIL]: Make conditional.
16625         (grub_boot_fini) [GRUB_UTIL]: Likewise.
16626         (GRUB_MOD_INIT) [!GRUB_UTIL]: Likewise.
16627         (GRUB_MOD_FINI) [!GRUB_UTIL]: Likewise.
16629         * fs/hfs.c (grub_hfs_find_node): Add a prototype for `node_found'.
16630         (grub_hfs_iterate_dir): Make the function static.  Add prototypes
16631         for `node_found' and `it_dir'.
16632         (grub_hfs_dir): Add prototype for `dir_hook'.
16634         * fs/minix.c (grub_minix_get_file_block): Add prototype for
16635         `grub_get_indir'.  Rename `indir' in two blocks to `indir16'
16636         and `indir32' to silence a gcc warning.
16638         * include/grub/fs.h (grub_hfs_init): New prototype.
16639         (grub_hfs_fini): Likewise.
16642 2004-08-21  Yoshinori K. Okuji  <okuji@enbug.org>
16644         Each disk device has its own id now. This is useful to make use
16645         of multiple disk devices.
16647         * include/grub/disk.h (grub_disk_dev_id): New enum.
16648         (GRUB_DISK_DEVICE_BIOSDISK_ID): New constant.
16649         (GRUB_DISK_DEVICE_OFDISK_ID): Likewise.
16651         * disk/i386/pc/biosdisk.c (grub_biosdisk_dev): Specify
16652         GRUB_DISK_DEVICE_BIOSDISK_ID as an id.
16654         * disk/powerpc/ieee1275/ofdisk.c (grub_ofdisk_dev): Specify
16655         GRUB_DISK_DEVICE_OFDISK_ID as an id.
16657         * util/i386/pc/biosdisk.c (grub_util_biosdisk_dev): Specify
16658         GRUB_DISK_DEVICE_BIOSDISK_ID as an id.
16660         * include/grub/disk.h (struct grub_disk_dev): Added a new member
16661         "id" which is used by the cache manager.
16663         * normal/main.c (grub_normal_init_page): Use "GNU GRUB" instead
16664         of just "GRUB".
16666 2004-08-18  Marco Gerards  <metgerards@student.han.nl>
16668         * fs/hfs.c: New file.
16669         * conf/i386-pc.rmk (grub_setup_SOURCES): Add fs/hfs.c.
16670         (grub_emu_SOURCES): Likewise.
16671         (pkgdata_MODULES): Add hfs.mod.
16672         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add fs/hfs.c.
16673         (grubof_SOURCES): Likewise.
16674         * util/grub-emu.c (main): Initialize and deinitialize HFS support.
16676         * include/grub/misc.h (grub_strncasecmp): Add prototype.
16677         * kern/misc.c (grub_strncasecmp): Add function.
16679 2004-08-14  Marco Gerards  <metgerards@student.han.nl>
16681         * include/grub/arg.h (GRUB_ARG_OPTION_OPTIONAL): Surround macro
16682         with parentheses.
16684         * fs/ext2.c (FILETYPE_UNKNOWN): New macro.
16685         (grub_ext2_dir): In case the directory entry type is unknown, read
16686         it from the inode.
16688 2004-08-02  Peter Bruin  <pjbruin@dds.nl>
16690         * loader/powerpc/ieee1275/linux.c (grub_linux_init): Pass
16691         grub_load_linux instead of grub_rescue_cmd_linux as second
16692         argument of grub_rescue_register_command.
16694         * Makefile.in (RMKFILES): Add conf/powerpc-ieee1275.rmk.
16696 2004-07-27  Marco Gerards  <metgerards@student.han.nl>
16698         * boot/powerpc/ieee1275/ieee1275.c (grub_ieee1275_release): New
16699         function.
16700         * commands/boot.c: Remove the check for `GRUB_UTIL'.
16701         * conf/powerpc-ieee1275.rmk (grubof_SOURCES): Add
16702         `loader/powerpc/ieee1275/linux.c',
16703         `loader/powerpc/ieee1275/linux_normal.c' and `commands/boot.c'.
16704         * include/grub/powerpc/ieee1275/ieee1275.h
16705         (grub_ieee1275_release): New prototype.
16706         * include/grub/powerpc/ieee1275/loader.h: Rewritten.
16707         * kern/powerpc/ieee1275/init.c (grub_machine_init): Initialize
16708         normal, boot, linux and linux_normal.
16709         * loader/powerpc/ieee1275/linux.c: New file.
16710         * loader/powerpc/ieee1275/linux_normal.c: Likewise.
16712 2004-07-12  Marco Gerards  <metgerards@student.han.nl>
16714         * normal/arg.c (grub_arg_parse): Correct error handling after
16715         reallocating the argumentlist (check if `argl' is not null instead
16716         of checking if `args' is not null).
16717         * kern/mm.c (grub_realloc): Return the same pointer when using the
16718         same region, instead of returning the header address.
16720 2004-07-11  Marco Gerards  <metgerards@student.han.nl>
16722         * disk/powerpc/ieee1275/partition.c (grub_partition_iterate): Skip
16723         one block instead of two when looking for the initial partition.
16724         (grub_partition_probe): Initialize the local variable `p' with 0.
16725         Use base 10 for the grub_strtoul call.
16726         * kern/misc.c (grub_strncpy): Fix off by one bug.  Eliminated the
16727         need for one local variable.
16728         (grub_strtoul): Don't add the new value to `num', instead of that
16729         just assign it.
16731 2004-07-11  Marco Gerards  <metgerards@student.han.nl>
16733         * conf/i386-pc.rmk (pkgdata_IMAGE): Add pxeboot.img.
16734         (pxeboot_img_SOURCES): New variable.
16735         (pxeboot_img_ASFLAGS): Likewise.
16736         (pxeboot_img_LDFLAGS): Likewise.
16737         * boot/i386/pc/pxeboot.S: New file.  Based on pxeloader.S from
16738         GRUB Legacy and boot.S.  Adopted for GRUB 2 by lode leroy
16739         <lode_leroy@hotmail.com>.
16741 2004-06-27  Tomas Ebenlendr  <ebik@ucw.cz>
16743         * kern/rescue.c (grub_enter_rescue_mode): Don't continue when
16744         there was no input.
16746 2004-06-27  Tomas Ebenlendr  <ebik@ucw.cz>
16748         * normal/cmdline.c (grub_set_history): Fix off by one bug.  Fixed
16749         the history buffer logic.
16751 2004-06-27  Tomas Ebenlendr  <ebik@ucw.cz>
16753         * fs/ext2.c (FILETYPE_INO_MASK, FILETYPE_INO_DIRECTORY)
16754         (FILETYPE_INO_SYMLINK): New macros.
16755         (grub_ext2_find_file): Check if the node is a directory using the
16756         inode stat information instead of using the filetype in the
16757         dirent.  Exclude the first character of an absolute symlink.
16758         (grub_ext2_dir): Mask out the filetype part of the mode member of
16759         the inode.
16761 2004-05-24  Marco Gerards  <metgerards@student.han.nl>
16763         Add support for UFS version 1 and 2.  Add support for the minix
16764         filesystem version 1 and 2, both the variants with 14 and 30 long
16765         filenames.
16767         * conf/i386-pc.rmk (grub_setup_SOURCES): Add fs/ufs.c and
16768         fs/minix.c.
16769         (grub_emu_SOURCES): Likewise.
16770         (pkgdata_MODULES): Add ufs.mod and minix.mod.
16771         (ufs_mod_SOURCES): New variable.
16772         (ufs_mod_CFLAGS): Likewise.
16773         (minix_mod_SOURCES): Likewise.
16774         (minix_mod_CFLAGS): Likewise.
16775         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add fs/ufs.c and
16776         fs/minix.c.
16777         (grubof_SOURCES): Likewise.
16778         * fs/ufs.c: New file.
16779         * fs/minix.c: New file.
16780         * include/grub/fs.h (grub_ufs_init): New prototype.
16781         (grub_ufs_fini): Likewise.
16782         (grub_minix_init): Likewise.
16783         (grub_minix_fini): Likewise.
16784         * util/grub-emu.c (main): Initialize and deinitialize UFS and
16785         minix fs.
16787 2004-04-30  Jeroen Dekkers  <jeroen@dekkers.cx>
16789         * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add normal/arg.c,
16790         commands/ls.c, commands/terminal.c, commands/boot.c,
16791         commands/cmp.c and commands/cat.c.
16792         (grubof_LDFLAGS): Add -nostdlib -static-libgcc -lgcc.
16794         * kern/powerpc/ieee1275/init.c: Include "grub/env.h" instead of
16795         "env.h"
16797 2004-04-04  Yoshinori K. Okuji  <okuji@enbug.org>
16799         All symbols prefixed with PUPA_ and pupa_ are renamed to GRUB_
16800         and grub_, respectively. Because the conversion is trivial and
16801         mechanical, I omit the details here. Please refer to the CVS
16802         if you need more information.
16804 2004-04-04  Yoshinori K. Okuji  <okuji@enbug.org>
16806         * include/pupa: Renamed to ...
16807         * include/grub: ... this.
16808         * util/i386/pc/pupa-mkimage.c: Renamed to ...
16809         * util/i386/pc/grub-mkimage.c: ... this.
16810         * util/i386/pc/pupa-setup.c: Renamed to ...
16811         * util/i386/pc/grub-setup.c: ... this.
16812         * util/pupa-emu.c: Renamed to ...
16813         * util/grub-emu.c: ... this.
16815 2004-03-29  Marco Gerards  <metgerards@student.han.nl>
16817         Add support for the newworld apple macintosh (PPC).  This has been
16818         tested on the powerbook 2000 only.  It only adds support for
16819         generic ieee1275 functions, console and disk support.  This should
16820         be easy to port to other architectures with support for Open
16821         Firmware.
16823         * configure.ac: Accept the powerpc as host_cpu.  In the case of
16824         the powerpc cpu set the host_vendor to ieee1275.  Make sure the i386
16825         specific tests are only executed while building for the i386.
16826         Inverse test for crosscompile.
16827         * genmk.rb (Utility): Allow assembler files.
16828         * normal/cmdline.c (pupa_tab_complete): Reset pupa_errno.
16829         * conf/powerpc-ieee1275.rmk: New file.
16830         * disk/powerpc/ieee1275/ofdisk.c: Likewise.
16831         * disk/powerpc/ieee1275/partition.c: Likewise.
16832         * include/pupa/powerpc/ieee1275/biosdisk.h: Likewise.
16833         * include/pupa/powerpc/ieee1275/console.h: Likewise.
16834         * include/pupa/powerpc/ieee1275/partition.h: Likewise.
16835         * include/pupa/powerpc/ieee1275/time.h: Likewise.
16836         * include/pupa/powerpc/ieee1275/util/biosdisk.h: Likewise.
16837         * include/pupa/powerpc/ieee1275/multiboot.h: Likewise.
16838         * include/pupa/powerpc/ieee1275/loader.h
16839         * include/pupa/powerpc/setjmp.h: Likewise.
16840         * include/pupa/powerpc/types.h: Likewise.
16841         * kern/powerpc/ieee1275/init.c: Likewise.
16842         * kern/powerpc/ieee1275/openfw.c: Likewise.
16843         * term/powerpc/ieee1275/ofconsole.c: Likewise.
16845         These files were written by Johan Rydberg
16846         (jrydberg@night.trouble.net) and I only modified them slightly.
16848         * boot/powerpc/ieee1275/cmain.c: New file.
16849         * boot/powerpc/ieee1275/crt0.S: Likewise.
16850         * boot/powerpc/ieee1275/ieee1275.c: Likewise.
16851         * include/pupa/powerpc/ieee1275/ieee1275.h: Likewise.
16853 2004-03-14  Jeroen Dekkers  <jeroen@dekkers.cx>
16855         * Makefile.in: Update copyright.
16856         * genmodsrc.sh: Likewise.
16857         * gensymlist.sh: Likewise.
16858         * term/i386/pc/vga.c: Indent correctly.
16860         * util/i386/pc/pupa-mkimage.c (usage): Use PACKAGE_BUGREPORT as
16861         bugreporting address.
16862         * util/i386/pc/pupa-setup.c (usage): Likewise,
16863         (main): Call pupa_ext2_init and pupa_ext2_fini.
16865         * fs/fat.c (log2): Renamed to ...
16866         (fat_log2): ... this.
16867         All callers changed.
16868         * kern/misc.c (memcpy): Alias to pupa_memmove.
16869         * loader/i386/pc/multiboot.c (pupa_rescue_cmd_multiboot): Fix
16870         lvalue cast.
16871         * util/console.c (pupa_ncurses_fini): Return 0.
16873         * util/i386/pc/biosdisk.c (pupa_util_biosdisk_open)[__linux__]:
16874         Move fail label here.
16875         [__GNU__]: Don't warn when using stat.
16876         (open_device)[!__linux__]: Check if FD < 0 instead of !FD.
16877         (pupa_util_biosdisk_get_pupa_dev)[__GNU__]: Change type of N to
16878         long int. Use strtol instead of strtoul.
16880 2004-03-14  Marco Gerards  <metgerards@student.han.nl>
16882         * commands/boot.c: New file.
16883         * commands/cat.c: Likewise.
16884         * commands/cmp.c: Likewise.
16885         * commands/ls.c: Likewise.
16886         * commands/terminal.c: Likewise.
16887         * normal/command.c: Include <pupa/env.h> and <pupa/dl.h>.
16888         (pupa_register_command): Changed interface to match the new
16889         argument parser.
16890         (pupa_command_execute): Changed (almost rewritten) so it uses
16891         pupa_split_command.  Added support for setting variables using the
16892         syntax `foo=bar'.
16893         (rescue_command): Changed to work with the new argument parser.
16894         (terminal_command): Moved from here to commands/terminal.c.
16895         (set_command): New function.
16896         (unset_command): New function.
16897         (insmod_command): New function.
16898         (rmmod_command): New function.
16899         (lsmod_command): New function.
16900         (pupa_command_init): Don't initialize the command terminal
16901         anymore.  Initialize the commands set, unset, insmod, rmmod and
16902         lsmod.
16903         * conf/i386-pc.rmk (kernel_img_SOURCES): Add kern/env.c.
16904         (kernel_img_HEADERS): Add arg.h and env.h.
16905         (pupa_mkimage_LDFLAGS): Add kern/env.c.
16906         (pupa_emu_SOURCES): Add kern/env.c, commands/ls.c,
16907         commands/terminal.c commands/boot.c commands/cmp.c commands/cat.c,
16908         normal/arg.c.
16909         (pkgdata_MODULES): Add ls.mod, boot.mod, cmp.mod, cat.mod and
16910         terminal.mod.
16911         (normal_mod_SOURCES): Add normal/arg.c and normal/arg.c.
16912         (boot_mod_SOURCES): New variable.
16913         (terminal_mod_SOURCES): Likewise.
16914         (ls_mod_SOURCES): Likewise.
16915         (cmp_mod_SOURCES): Likewise.
16916         (cat_mod_SOURCES): Likewise.
16918         * normal/arg.c: New file.
16919         * kern/env.c: Likewise.
16920         * include/pupa/arg.h: Likewise.
16921         * include/pupa/env.h: Likewise.
16922         * font/manager.c (font_command): Changed to match argument parsing
16923         interface changes.
16924         (PUPA_MOD_INIT): Likewise.
16925         * hello/hello.c (pupa_cmd_hello): Likewise.
16926         (PUPA_MOD_INIT): Likewise.
16927         * include/pupa/disk.h: Include <pupa/device.h>.
16928         (pupa_print_partinfo): New prototype.
16929         * include/pupa/dl.h (pupa_dl_set_prefix): Prototype removed.
16930         (pupa_dl_get_prefix): Likewise.
16931         * include/pupa/misc.h: Include <pupa/err.h>.
16932         (pupa_isgraph): New prototype.
16933         (pupa_isdigit): Likewise.
16934         (pupa_split_cmdline): Likewise.
16935         * include/pupa/normal.h: Include <pupa/arg.h>.
16936         (pupa_command): Changed the prototype of the member `func' to
16937         match the argument parsing interface.  Added member `options'.
16938         (pupa_register_command): Updated to match function.
16939         (pupa_arg_parse): New prototype.
16940         (pupa_hello_init) [PUPA_UTIL]: New prototype.
16941         (pupa_hello_fini) [PUPA_UTIL]: Likewise.
16942         (pupa_ls_init) [PUPA_UTIL]: Likewise.
16943         (pupa_ls_fini) [PUPA_UTIL]: Likewise.
16944         (pupa_cat_init) [PUPA_UTIL]: Likewise.
16945         (pupa_cat_fini) [PUPA_UTIL]: Likewise.
16946         (pupa_boot_init) [PUPA_UTIL]: Likewise.
16947         (pupa_boot_fini) [PUPA_UTIL]: Likewise.
16948         (pupa_cmp_init) [PUPA_UTIL]: Likewise.
16949         (pupa_cmp_fini) [PUPA_UTIL]: Likewise.
16950         (pupa_terminal_init) [PUPA_UTIL]: Likewise.
16951         (pupa_terminal_fini) [PUPA_UTIL]: Likewise.
16952         * kern/disk.c: Include <pupa/file.h>.
16953         (pupa_print_partinfo): New function.
16954         * kern/dl.c: Include <pupa/env.h>.
16955         (pupa_dl_dir): Variable removed.
16956         (pupa_dl_load): Use the environment variable `prefix' instead of
16957         the variable pupa_dl_dir.
16958         (pupa_dl_set_prefix): Function removed.
16959         (pupa_dl_get_prefix): Likewise.
16960         * kern/i386/pc/init.c: Include <pupa/env.h>.
16961         (pupa_machine_init): Use the environment variable `prefix' instead of
16962         using pupa_dl_set_prefix to set the prefix.
16963         * kern/main.c: Include <pupa/env.h>.
16964         (pupa_set_root_dev): Use the environment variable `prefix' instead of
16965         using pupa_dl_get_prefix to get the prefix.
16966         * kern/misc.c: Include <pupa/env.h>.
16967         (pupa_isdigit): New function.
16968         (pupa_isgraph): Likewise.
16969         (pupa_ftoa): Likewise.
16970         (pupa_vsprintf): Added support for printing values of the type
16971         `double'.  Make it possible to format variable output when using
16972         formatting like `%1.2%f'.
16973         (pupa_split_cmdline): New function.
16974         * kern/rescue.c: Include <pupa/env.h>.
16975         (next_word): Removed function.
16976         (pupa_rescue_cmd_prefix): Likewise.
16977         (pupa_rescue_cmd_set): New function.
16978         (pupa_rescue_cmd_unset): New function.
16979         (pupa_enter_rescue_mode): Use the `pupa_split_cmdline' function to
16980         split the command line instead of splitting it here.  Added
16981         support for setting variables using the syntax `foo=bar'.  Don't
16982         initialize the prefix command anymore.  Initialized the set and
16983         unset commands.
16984         * normal/cmdline.c: Include <pupa/env.h>.
16985         (pupa_tab_complete): Added prototypes for print_simple_completion,
16986         print_partition_completion, add_completion, iterate_commands,
16987         iterate_dev, iterate_part and iterate_dir. Moved code to print
16988         partition information from here to kern/disk.c.
16989         (pupa_cmdline_run): Don't check if the function exists anymore.
16990         * normal/main.c: Include <pupa/env.h>.
16991         (pupa_rescue_cmd_normal): Use the environment variable `prefix'
16992         instead of using pupa_dl_get_prefix to get the prefix.
16993         * term/i386/pc/vga.c: Include <pupa/arg.h>.
16994         (check_vga_mem): Cast pointers to `void *' to silence a gcc
16995         warning.
16996         (pupa_vga_putchar) [! DEBUG_VGA]: Removed for this case.
16997         (pupa_vga_setcolor): Declare unused variables with `__attribute__
16998         ((unused))' to silence a gcc warning.
16999         (pupa_vga_setcolor): Likewise.
17000         (debug_command): Changed to match argument parsing
17001         interface changes.
17002         * util/pupa-emu.c: Include <pupa/env.h>.
17003         (options): Added 0's for unused fields to silence a gcc warning.
17004         (argp): Likewise.
17005         (main): Use the environment variable `prefix' instead of using
17006         pupa_dl_set_prefix to set the prefix.  Initialize the commands ls,
17007         boot, cmp, cat and terminal.  Finish the commands boot, cmp, cat
17008         and terminal.
17010         * util/i386/pc/getroot.c: Include <pupa/i386/pc/util/biosdisk.h>.
17011         * util/misc.c: Include <malloc.h>.
17012         (pupa_malloc): Rewritten so errors are correctly reported.
17013         (pupa_realloc): Likewise.
17014         (pupa_memalign): Likewise.
17015         (pupa_mm_init_region): Declare unused variables with
17016         `__attribute__ ((unused))' to silence a gcc warning.
17017         * normal/i386/setjmp.S: Remove tab at the end of the file to
17018         silence a gcc warning.
17019         * loader/i386/pc/linux.c (pupa_rescue_cmd_initrd): Declare unused
17020         variables with `__attribute__ ((unused))' to silence a gcc
17021         warning.
17022         * loader/i386/pc/multiboot.c (pupa_multiboot_unload): Make the
17023         local variable i unsigned to silence a gcc warning.
17025         * kern/term.c: Include <pupa/misc.h>.
17026         (pupa_more_lines): New variable.
17027         (pupa_more): Likewise.
17028         (pupa_putcode): When the pager is active pause at the end of every
17029         screen.
17030         (pupa_set_more): New function.
17031         * include/pupa/term.h (pupa_set_more): New prototype.
17034 2004-03-07  Yoshinori K. Okuji  <okuji@enbug.org>
17036         Now this project is GRUB 2 rather than PUPA. The location of
17037         the CVS repository was moved to GRUB's.
17039         * configure.ac: Use bug-grub as the reporting address.
17040         Use GRUB instead of PUPA.
17041         Change the version number to 1.90.
17043 2004-02-24  Yoshinori K. Okuji  <okuji@enbug.org>
17045         * genkernsyms.sh: Updated copyright information.
17046         * genmk.rb: Likewise.
17047         * genmodsrc.sh: Likewise.
17048         * gensymlist.sh: Likewise.
17049         * boot/i386/pc/boot.S: Likewise.
17050         * boot/i386/pc/diskboot.S: Likewise.
17051         * disk/i386/pc/biosdisk.c: Likewise.
17052         * disk/i386/pc/partition.c: Likewise.
17053         * font/manager.c: Likewise.
17054         * fs/ext2.c: Likewise.
17055         * fs/fat.c: Likewise.
17056         * include/pupa/boot.h: Likewise.
17057         * include/pupa/device.h: Likewise.
17058         * include/pupa/disk.h: Likewise.
17059         * include/pupa/dl.h: Likewise.
17060         * include/pupa/elf.h: Likewise.
17061         * include/pupa/err.h: Likewise.
17062         * include/pupa/file.h: Likewise.
17063         * include/pupa/font.h: Likewise.
17064         * include/pupa/fs.h: Likewise.
17065         * include/pupa/kernel.h: Likewise.
17066         * include/pupa/loader.h: Likewise.
17067         * include/pupa/misc.h: Likewise.
17068         * include/pupa/mm.h: Likewise.
17069         * include/pupa/net.h: Likewise.
17070         * include/pupa/normal.h: Likewise.
17071         * include/pupa/rescue.h: Likewise.
17072         * include/pupa/setjmp.h: Likewise.
17073         * include/pupa/symbol.h: Likewise.
17074         * include/pupa/term.h: Likewise.
17075         * include/pupa/types.h: Likewise.
17076         * include/pupa/i386/setjmp.h: Likewise.
17077         * include/pupa/i386/types.h: Likewise.
17078         * include/pupa/i386/pc/biosdisk.h: Likewise.
17079         * include/pupa/i386/pc/boot.h: Likewise.
17080         * include/pupa/i386/pc/console.h: Likewise.
17081         * include/pupa/i386/pc/init.h: Likewise.
17082         * include/pupa/i386/pc/kernel.h: Likewise.
17083         * include/pupa/i386/pc/linux.h: Likewise.
17084         * include/pupa/i386/pc/loader.h: Likewise.
17085         * include/pupa/i386/pc/memory.h: Likewise.
17086         * include/pupa/i386/pc/multiboot.h: Likewise.
17087         * include/pupa/i386/pc/partition.h: Likewise.
17088         * include/pupa/i386/pc/time.h: Likewise.
17089         * include/pupa/i386/pc/vga.h: Likewise.
17090         * include/pupa/i386/pc/util/biosdisk.h: Likewise.
17091         * include/pupa/util/getroot.h: Likewise.
17092         * include/pupa/util/misc.h: Likewise.
17093         * include/pupa/util/resolve.h: Likewise.
17094         * kern/device.c: Likewise.
17095         * kern/disk.c: Likewise.
17096         * kern/dl.c: Likewise.
17097         * kern/err.c: Likewise.
17098         * kern/file.c: Likewise.
17099         * kern/fs.c: Likewise.
17100         * kern/loader.c: Likewise.
17101         * kern/main.c: Likewise.
17102         * kern/misc.c: Likewise.
17103         * kern/mm.c: Likewise.
17104         * kern/rescue.c: Likewise.
17105         * kern/term.c: Likewise.
17106         * kern/i386/dl.c: Likewise.
17107         * kern/i386/pc/init.c: Likewise.
17108         * kern/i386/pc/lzo1x.S: Likewise.
17109         * kern/i386/pc/startup.S: Likewise.
17110         * loader/i386/pc/chainloader.c: Likewise.
17111         * loader/i386/pc/linux.c: Likewise.
17112         * loader/i386/pc/multiboot.c: Likewise.
17113         * normal/cmdline.c: Likewise.
17114         * normal/command.c: Likewise.
17115         * normal/main.c: Likewise.
17116         * normal/menu.c: Likewise.
17117         * normal/i386/setjmp.S: Likewise.
17118         * term/i386/pc/console.c: Likewise.
17119         * term/i386/pc/vga.c: Likewise.
17120         * util/console.c: Likewise.
17121         * util/genmoddep.c: Likewise.
17122         * util/misc.c: Likewise.
17123         * util/pupa-emu.c: Likewise.
17124         * util/resolve.c: Likewise.
17125         * util/unifont2pff.rb: Likewise.
17126         * util/i386/pc/biosdisk.c: Likewise.
17127         * util/i386/pc/getroot.c: Likewise.
17128         * util/i386/pc/pupa-mkimage.c: Likewise.
17129         * util/i386/pc/pupa-setup.c: Likewise.
17131 2004-02-15  Jeroen Dekkers  <jeroen@dekkers.cx>
17133         * fs/ext2.c (pupa_ext2_read_file): Correct the value of BLOCKEND
17134         when it is EXT2_BLOCK_SIZE (data).  New argument READ_HOOK, all
17135         callers changed.  Set DATA->DISK->READ_HOOK to READ_HOOK before
17136         reading and reset it after reading.
17137         (pupa_ext2_close): Return PUPA_ERR_NONE.
17139         * include/pupa/i386/pc/linux.h (PUPA_LINUX_INITRD_MAX_ADDRESS):
17140         Correct value.
17141         (struct linux_kernel_header): Add kernel_version and
17142         initrd_addr_max.
17143         * loader/i386/pc/linux.c (pupa_rescue_cmd_linux): Check whether
17144         pupa_file_read succeeds.
17145         (pupa_rescue_cmd_initrd): Implement.
17147 2003-12-03  Marco Gerards  <metgerards@student.han.nl>
17149         * fs/ext2.c (pupa_ext2_label): New function.
17150         (pupa_ext2_fs): Added label.
17151         * fs/fat.c (pupa_fat_label): New function.
17152         (pupa_fat_fs): Added label.
17153         * include/pupa/fs.h (struct pupa_fs): Added prototype label.
17155         * kern/misc.c (pupa_strndup): New function.
17156         * include/pupa/misc.h (pupa_strndup): New prototype.
17158         * include/pupa/normal.h: Include <pupa/err.h>.
17159         (pupa_set_history): New prototype.
17160         (pupa_iterate_commands): New prototype.
17161         * normal/cmdline.c: Include <pupa/machine/partition.h>,
17162         <pupa/disk.h>, <pupa/file.h>.
17163         (hist_size): New variable.
17164         (hist_lines): Likewise.
17165         (hist_end): Likewise.
17166         (hist_used): Likewise.
17167         (pupa_set_history): New function.
17168         (pupa_history_get): Likewise.
17169         (pupa_history_add): Likewise.
17170         (pupa_history_replace): Likewise.
17171         (pupa_tab_complete): Likewise.
17172         (pupa_cmdline_run): Added tab completion and history buffer.  Tab
17173         completion shows partitionnames while completing partitions, this
17174         feature was suggested by Jeff Bailey.
17175         * normal/command.c (pupa_iterate_commands): New function.
17176         * normal/main.c (PUPA_DEFAULT_HISTORY_SIZE): New macro.
17177         (pupa_normal_init): Initialize history buffer.
17178         (PUPA_MOD_INIT): Likewise.
17179         (pupa_normal_fini): Free the history buffer.
17180         (PUPA_MOD_FINI): Likewise.
17182         * util/console.c (pupa_ncurses_getkey): Accept 127 as backspace
17183         key.
17185         * aclocal.m4 (pupa_I386_CHECK_REGPARM_BUG): New DEFUN.
17186         * configure.ac [i386]: Check for regparam bug.
17187         (NESTED_FUNC_ATTR) [! i386]: Defined.
17189 2003-11-17  Marco Gerards  <metgerards@student.han.nl>
17191         * conf/i386-pc.rmk (sbin_UTILITIES): Added pupa-emu.
17192         (pupa_setup_SOURCES): Added util/i386/pc/getroot.c.
17193         (pupa_emu_SOURCES): New variable.
17194         (pupa_emu_LDFLAGS): Likewise.
17195         * include/pupa/fs.h (pupa_ext2_init) [PUPA_UTIL]: New prototype.
17196         (pupa_ext2_fini) [PUPA_UTIL]: Likewise.
17197         * include/pupa/normal.h (pupa_normal_init) [PUPA_UTIL]: Likewise.
17198         (pupa_normal_fini) [PUPA_UTIL]: Likewise.
17199         * include/pupa/setjmp.h [PUPA_UTIL]: Include <setjmp.h>.
17200         (pupa_jmp_buf): New typedef.
17201         (pupa_setjmp) [PUPA_UTIL]: New macro.
17202         (pupa_longjmp) [PUPA_UTIL]: Likewise.
17203         * include/pupa/term.h (struct pupa_term): New member `refresh'.
17204         (pupa_refresh): New prototype.
17205         * include/pupa/util/getroot.h: New file.
17206         * kern/misc.c (pupa_vsprintf): Refresh the screen after updating
17207         it.
17208         * kern/rescue.c (pupa_rescue_get_command_line): Likewise.
17209         (pupa_rescue_cmd_cat): Likewise.
17210         (pupa_rescue_cmd_ls): Likewise.
17211         (pupa_rescue_cmd_testload): Likewise.
17212         (pupa_rescue_cmd_lsmod): Likewise.
17213         * normal/cmdline.c (pupa_cmdline_get): Likewise.
17214         * normal/menu.c (run_menu): Likewise.
17215         * kern/term.c (pupa_cls): Likewise.
17216         (pupa_refresh): New function.
17217         * normal/normal.c (pupa_normal_init) [PUPA_UTIL]: New function.
17218         (pupa_normal_fini) [PUPA_UTIL]: Likewise.
17219         * util/console.c: New file.
17221         * util/i386/pc/getroot.c: New file.
17222         * util/i386/pc/pupa-setup.c: Include <pupa/util/getroot.h>.
17223         (pupa_putchar): New function.
17224         (pupa_refresh): Likewise.
17225         (xgetcwd): Function moved to ...
17226         (strip_extra_slashes): Likewise.
17227         (get_prefix): Likewise.
17228         * util/i386/pc/getroot.c: ... here.
17229         (find_root_device): Function moved and renamed to...
17230         * util/i386/pc/getroot.c (pupa_find_root_device): ... here.
17231         Changed all callers.
17232         * util/i386/pc/pupa-setup.c (guess_root_device): Function moved
17233         and renamed to...
17234         * util/i386/pc/getroot.c (pupa_guess_root_device): ... here.
17235         Changed all callers.
17236         * util/misc.c (pupa_memalign): New function.
17237         (pupa_mm_init_region): Likewise.
17238         (pupa_register_exported_symbols): Likewise.
17239         (pupa_putchar): Function removed.
17240         * util/pupa-emu.c: New file.
17242 2003-11-16  Jeroen Dekkers  <jeroen@dekkers.cx>
17244         * conf/i386-pc.rmk (pkgdata_MODULES): Add _multiboot.mod.
17245         (_multiboot_mod_SOURCES): New variable.
17246         (_multiboot_mod_CFLAGS): Likewise.
17247         * loader/i386/pc/multiboot.c: New file.
17248         * include/pupa/i386/pc/multiboot.h: Likewise.
17249         * kern/i386/pc/startup.S: Include pupa/machine/multiboot.h.
17250         (pupa_multiboot_real_boot): New function.
17251         * include/pupa/i386/pc/loader.h: Include pupa/machine/multiboot.h.
17252         (pupa_multiboot_real_boot): New prototype.
17253         (pupa_rescue_cmd_multiboot): Likewise
17254         (pupa_rescue_cmd_module): Likewise.
17256         * kern/loader.c (pupa_loader_set): Continue when
17257         pupa_loader_unload_func() fails.
17258         (pupa_loader_unset): New function.
17259         * include/pupa/loader.h (pupa_loader_unset): New prototype.
17261         * kern/misc.c (pupa_stpcpy): New function.
17262         * include/pupa/misc.h (pupa_stpcpy): New prototype.
17264 2003-11-12  Marco Gerards  <metgerards@student.han.nl>
17266         * disk/i386/pc/biosdisk.c (pupa_biosdisk_open): Correctly check
17267         for available extensions.
17269         * include/pupa/i386/pc/time.h: New file.
17270         * kern/disk.c: Include <pupa/machine/time.h>.
17271         (PUPA_CACHE_TIMEOUT): New macro.
17272         (pupa_last_time): New variable.
17273         (pupa_disk_open): Flush the cache when there was a timeout.
17274         (pupa_disk_close): Reset the timer.
17275         * kern/i386/pc/startup.S (pupa_get_rtc): Renamed from
17276         pupa_currticks.
17277         * util/misc.c: Include <sys/times.h>
17278         (pupa_get_rtc): New function.
17280 2003-11-09  Jeroen Dekkers  <jeroen@dekkers.cx>
17282         * fs/ext2.c (struct pupa_ext2_inode): Declare struct datablocks
17283         as blocks.
17284         (pupa_ext2_get_file_block): Use blocks member.
17286         * fs/ext2.c (pupa_ext2_read_file): Only set skipfirst for the
17287         first block. Return -1 instead of pupa_errno on error.
17289 2003-10-27  Marco Gerards  <metgerards@student.han.nl>
17291         * README: In the pupa-mkimage example use _chain instead of chain
17292         and ext2 instead of fat.
17293         * TODO: Replace ext2fs with jfs as an example.  Add an item for
17294         adding journal playback for ext2fs.
17295         * conf/i386-pc.rmk (pupa_setup_SOURCES): Added fs/ext2.c.
17296         (pkgdata_MODULES): Added ext2.mod.
17297         (ext2_mod_SOURCES): New variable.
17298         (ext2_mod_CFLAGS): Likewise.
17299         * include/pupa/err.h (pupa_err_t): Added PUPA_ERR_SYMLINK_LOOP.
17300         * include/pupa/misc.h (pupa_strncpy): New prototype.
17301         (pupa_strcat): Likewise.
17302         (pupa_strncmp): Likewise.
17303         * kern/misc.c (pupa_strcat): Enable function.
17304         (pupa_strncpy): New function.
17305         (pupa_strncmp): Likewise.
17306         * fs/ext2.c: New file.
17308         * kern/disk.c (pupa_disk_read): Set pupa_errno to PUPA_ERR_NONE
17309         when the read failed before retrying.
17310         * util/i386/pc/biosdisk.c (_LARGEFILE_SOURCE): Removed.
17311         (_FILE_OFFSET_BITS): Likewise.
17312         * configure.ac: Added AC_SYS_LARGEFILE.
17314 2003-09-25  Yoshinori K. Okuji  <okuji@enbug.org>
17316         * genmk.rb (PModule#rule): Make sure to get only symbol names
17317         from the output of nm.
17318         Reported by Robert Millan <zeratul2@wanadoo.es>.
17320 2003-09-25  Yoshinori K. Okuji  <okuji@enbug.org>
17322         I forgot to check in these changes for a long time. This adds
17323         incomplete support for VGA console, and this is still very
17324         buggy. Also, a lot of consideration is required for I18N,
17325         UNICODE, and VGA font issues. Therefore, assume that this is
17326         such that "better than nothing".
17328         * font/manager.c: New file.
17329         * include/pupa/font.h: Likewise.
17330         * include/pupa/i386/pc/vga.h: Likewise.
17331         * term/i386/pc/vga.c: Likewise.
17332         * util/unifont2pff.rb: Likewise.
17334         * conf/i386-pc.rmk (kernel_img_HEADERS): Added machine/vga.h.
17335         (pkgdata_MODULES): Added vga.mod and font.mod.
17336         (vga_mod_SOURCES): New variables.
17337         (vga_mod_CFLAGS): Likewise.
17338         (font_mod_SOURCES): Likewise.
17339         (font_mod_CFLAGS): Likewise.
17341         * include/pupa/err.h (PUPA_ERR_BAD_FONT): New constant.
17343         * include/pupa/term.h: Include pupa/err.h.
17344         (struct pupa_term): Added init and fini.
17345         Changed the argument of putchar to pupa_uint32_t.
17347         * include/pupa/i386/pc/console.h: Include pupa/symbol.h.
17348         (pupa_console_real_putchar): New prototype.
17349         (pupa_console_putchar): Removed.
17350         (pupa_console_checkkey): Exported.
17351         (pupa_console_getkey): Likewise.
17353         * kern/misc.c (pupa_vsprintf): Add support for UNICODE
17354         characters.
17356         * kern/term.c (pupa_term_set_current): Rewritten.
17357         (pupa_putchar): Likewise.
17358         (pupa_putcode): New function.
17360         * kern/i386/pc/startup.S (pupa_console_putchar): Renamed to ...
17361         (pupa_console_real_putchar): ... this.
17362         (pupa_vga_set_mode): New function.
17363         (pupa_vga_get_font): Likewise.
17365         * normal/command.c: Include pupa/term.h.
17366         (terminal_command): New function.
17367         (pupa_command_init): Register the command "terminal".
17369         * normal/menu.c (DISP_LEFT): Changed to a UNICODE value.
17370         (DISP_UP): Likewise.
17371         (DISP_RIGHT): Likewise.
17372         (DISP_DOWN): Likewise.
17373         (DISP_HLINE): Likewise.
17374         (DISP_VLINE): Likewise.
17375         (DISP_UL): Likewise.
17376         (DISP_UR): Likewise.
17377         (DISP_LL): Likewise.
17378         (DISP_LR): Likewise.
17380         * term/i386/pc/console.c (pupa_console_putchar): New function.
17382 2003-02-08  NIIBE Yutaka  <gniibe@m17n.org>
17384         * util/resolve.c (pupa_util_resolve_dependencies): BUG
17385         FIX. Reverse the path_list.
17387         * include/pupa/normal.h: Export pupa_register_command and
17388         pupa_unregister_command.
17390         * hello/hello.c (pupa_cmd_hello): New module.
17391         * conf/i386-pc.rmk: Added hello.mod.
17393 2003-01-31  Yoshinori K. Okuji  <okuji@enbug.org>
17395         * kern/i386/pc/lzo1x.S: New file.
17397         * util/i386/pc/pupa-mkimage.c: Include lzo1x.h.
17398         (compress_kernel): New variable.
17399         (generate_image): Heavily modified to support compressing a
17400         large part of the core image.
17402         * util/misc.c (pupa_util_read_image): Fix a file descriptor
17403         leak.
17404         (pupa_util_load_image): New function.
17406         * kern/i386/pc/startup.S: Include pupa/machine/kernel.h.
17407         (pupa_compressed_size): New variable.
17408         (codestart): Enable Gate A20 here.
17409         Decompress the compressed part of the core image.
17410         Rearrange the code to put functions and variables which are
17411         required for initialization in the non-compressed part.
17412         Include lzo1x.S.
17414         * kern/i386/pc/init.c (pupa_machine_init): Don't enable Gate A20
17415         here.
17417         * include/pupa/util/misc.h (pupa_util_write_image): Declared.
17419         * include/pupa/i386/pc/kernel.h
17420         (PUPA_KERNEL_MACHINE_COMPRESSED_SIZE): New macro.
17421         (PUPA_KERNEL_MACHINE_INSTALL_DOS_PART): Increased by 4.
17422         (PUPA_KERNEL_MACHINE_INSTALL_BSD_PART): Likewise.
17423         (PUPA_KERNEL_MACHINE_PREFIX): Likewise.
17424         (PUPA_KERNEL_MACHINE_RAW_SIZE): New macro.
17426         * conf/i386-pc.rmk (pupa_mkimage_LDFLAGS): New variable.
17428         * genmk.rb (Image#rule): Put LDFLAGS at the end of a line.
17429         (Utility#rule): Likewise.
17431         * configure.ac: Check if LZO is available.
17433 2003-01-20  Yoshinori K. Okuji  <okuji@enbug.org>
17435         * include/pupa/normal.h: New file.
17436         * include/pupa/setjmp.h: Likewise.
17437         * include/pupa/i386/setjmp.h: Likewise.
17438         * normal/cmdline.c: Likewise.
17439         * normal/command.c: Likewise.
17440         * normal/main.c: Likewise.
17441         * normal/menu.c: Likewise.
17442         * normal/i386/setjmp.S: Likewise.
17444         * loader/i386/pc/linux.c (pupa_rescue_cmd_linux): Made global.
17445         (pupa_rescue_cmd_initrd): Likewise.
17447         * loader/i386/pc/chainloader.c (pupa_rescue_cmd_chainloader):
17448         Likewise.
17450         * kern/i386/pc/startup.S (translation_table): New variable.
17451         (translate_keycode): New function.
17452         (pupa_console_getkey): Call translate_keycode.
17454         * kern/rescue.c (attempt_normal_mode): New function.
17455         (pupa_enter_rescue_mode): Attempt to execute the normal mode. If
17456         it failed, print a message.
17458         * kern/mm.c (pupa_real_malloc): Print more information when a
17459         free magic is broken.
17460         (pupa_free): If the first free header is not free actually, set
17461         it to P.
17463         * kern/main.c (pupa_load_normal_mode): Just load the module
17464         "normal".
17465         (pupa_main): Don't print the message
17466         "Entering into rescue mode..." here.
17468         * include/pupa/i386/pc/loader.h (pupa_rescue_cmd_initrd):
17469         Declared.
17470         (pupa_rescue_cmd_initrd): Likewise.
17471         (pupa_rescue_cmd_initrd): Likewise.
17473         * include/pupa/symbol.h (FUNCTION): Specify the type.
17474         (VARIABLE): Likewise.
17476         * include/pupa/err.h (pupa_err_t): Added
17477         PUPA_ERR_UNKNOWN_COMMAND.
17479         * include/pupa/dl.h (pupa_dl_set_prefix): Exported.
17480         (pupa_dl_get_prefix): Likewise.
17482         * conf/i386-pc.rmk (pkgdata_MODULES): Added normal.mod.
17483         Added _chain.mod and _linux.mod instead of chain.mod and
17484         linux.mod.
17485         (chain_mod_SOURCES): Renamed to ...
17486         (_chain_mod_SOURCES): ... this.
17487         (chain_mod_CFLAGS): Renamed to ...
17488         (_chain_mod_CFLAGS): ... this.
17489         (linux_mod_SOURCES): Renamed to ...
17490         (_linux_mod_SOURCES): ... this.
17491         (linux_mod_CFLAGS): Renamed to ...
17492         (_linux_mod_CFLAGS): ... this.
17493         (normal_mod_SOURCES): New variable.
17494         (normal_mod_CFLAGS): Likewise.
17495         (normal_mod_ASFLAGS): Likewise.
17497 2003-01-18  Yoshinori K. Okuji  <okuji@enbug.org>
17499         * kern/rescue.c (pupa_rescue_cmd_rmmod): Call pupa_dl_unload, if
17500         possible.
17502         * kern/dl.c (pupa_dl_ref): Refer depending modules
17503         recursively.
17504         (pupa_dl_unref): Unrefer depending modules recursively.
17505         Don't call pupa_dl_unload implicitly, because PUPA can crash if
17506         a module is unloaded before one depending on that module is
17507         unloaded.
17508         (pupa_dl_unload): Unload depending modules explicitly,
17509         if possible.
17511 2003-01-17  Yoshinori K. Okuji  <okuji@enbug.org>
17513         * include/pupa/i386/pc/linux.h: New file.
17514         * loader/i386/pc/linux.c: Likewise.
17516         * loader/i386/pc/chainloader.c (pupa_chainloader_boot_sector):
17517         Removed.
17518         (pupa_chainloader_unload): Return PUPA_ERR_NONE.
17519         (pupa_rescue_cmd_chainloader): Read the image to 0x7C00 instead
17520         of PUPA_CHAINLOADER_BOOT_SECTOR.
17522         * kern/i386/pc/startup.S: Include pupa/machine/linux.h.
17523         (pupa_linux_prot_size): New variable.
17524         (pupa_linux_tmp_addr): Likewise.
17525         (pupa_linux_real_addr): Likewise.
17526         (pupa_linux_boot_zimage): New function.
17527         (pupa_linux_boot_bzimage): Likewise.
17529         * kern/i386/pc/init.c (struct mem_region): New structure.
17530         (MAX_REGIONS): New macro.
17531         (mem_regions): New variable.
17532         (num_regions): Likewise.
17533         (pupa_os_area_addr): Likewise.
17534         (pupa_os_area_size): Likewise.
17535         (pupa_lower_mem): Likewise.
17536         (pupa_upper_mem): Likewise.
17537         (add_mem_region): New function.
17538         (compact_mem_regions): Likewise.
17539         (pupa_machine_init): Set PUPA_LOWER_MEM and PUPA_UPPER_MEM to
17540         the size of the conventional memory and that of so-called upper
17541         memory (before the first memory hole).
17542         Instead of adding each found region to free memory, use
17543         add_mem_region and add them after removing overlaps.
17544         Also, add only 1/4 of the upper memory to free memory. The rest
17545         is used for loading OS images. Maybe this is ad hoc, but this
17546         makes it much easier to relocate OS images when booting.
17548         * kern/rescue.c (pupa_rescue_cmd_module): Removed.
17549         (pupa_enter_rescue_mode): Don't register initrd and module.
17551         * kern/mm.c: Include pupa/dl.h.
17553         * kern/main.c: Include pupa/file.h and pupa/device.h.
17555         * kern/loader.c (pupa_loader_load_module_func): Removed.
17556         (pupa_loader_load_module): Likewise.
17558         * kern/dl.c (pupa_dl_load): Use the suffix ``.mod'' instead of
17559         ``.o''.
17561         * include/pupa/i386/pc/loader.h (pupa_linux_prot_size): Declared.
17562         (pupa_linux_tmp_addr): Likewise.
17563         (pupa_linux_real_addr): Likewise.
17564         (pupa_linux_boot_zimage): Likewise.
17565         (pupa_linux_boot_bzimage): Likewise.
17567         * include/pupa/i386/pc/init.h (pupa_lower_mem): Declared.
17568         (pupa_upper_mem): Likewise.
17569         (pupa_gate_a20): Don't export, because turning off Gate A20 in a
17570         module is too dangerous.
17572         * include/pupa/loader.h (pupa_os_area_addr): Declared.
17573         (pupa_os_area_size): Likewise.
17574         (pupa_loader_set): Remove the first argument. Loader doesn't
17575         manage modules or initrd any longer.
17576         (pupa_loader_load_module): Removed.
17578         * conf/i386-pc.rmk (pkgdata_MODULES): Added linux.mod.
17579         (linux_mod_SOURCES): New variable.
17580         (linux_mod_CFLAGS): Likewise.
17582 2003-01-07  Yoshinori K. Okuji  <okuji@enbug.org>
17584         * util/i386/pc/pupa-setup.c (setup): Convert the endianness of
17585         the length of a blocklist correctly.
17587         * util/i386/pc/biosdisk.c (pupa_util_biosdisk_open) [__linux__]:
17588         Use ioctl only if the OS file is a block device.
17589         (pupa_util_biosdisk_open): Don't use ST.ST_BLOCKS, because it is
17590         not very useful for normal files.
17592         * kern/main.c (pupa_set_root_dev): New function.
17593         (pupa_load_normal_mode): Likewise.
17594         (pupa_main): Call those above.
17596         * include/pupa/types.h (pupa_swap_bytes16): Cast the result to
17597         pupa_uint16_t.
17599         * include/pupa/kernel.h (pupa_enter_normal_mode): Removed.
17601 2003-01-06  Yoshinori K. Okuji  <okuji@enbug.org>
17603         * util/i386/pc/pupa-setup.c: Include pupa/machine/kernel.h.
17604         (setup): Configure the installed partition information and the
17605         dl prefix.
17607         * loader/i386/pc/chainloader.c (my_mod): New variable.
17608         (pupa_chainloader_unload): New function.
17609         (pupa_rescue_cmd_chainloader): Refer itself.
17610         (PUPA_MOD_INIT): Save its own module in MY_MOD.
17612         * kern/i386/pc/startup.S (install_partition): Removed.
17613         (version_string): Likewise.
17614         (config_file): Likewise.
17615         (pupa_install_dos_part): New variable.
17616         (pupa_install_bsd_part): Likewise.
17617         (pupa_prefix): Likewise.
17618         (pupa_chainloader_real_boot): Call pupa_dl_unload_all.
17620         * kern/i386/pc/init.c: Include pupa/machine/kernel.h, pupa/dl.h
17621         and pupa/misc.h.
17622         (make_install_device): New function.
17623         (pupa_machine_init): Set the dl prefix.
17625         * kern/rescue.c: Include pupa/rescue.h and pupa/dl.h.
17626         (buf): Renamed to ...
17627         (linebuf): ... this.
17628         (pupa_rescue_cmd_prefix): New function.
17629         (pupa_rescue_cmd_insmod): Likewise.
17630         (pupa_rescue_cmd_rmmod): Likewise.
17631         (pupa_rescue_cmd_lsmod): Likewise.
17632         (pupa_enter_rescue_mode): Register new commands: prefix, insmod,
17633         rmmod and lsmod.
17635         * kern/mm.c (pupa_memalign): If failed even after invalidating
17636         disk caches, unload unneeded modules and retry.
17638         * kern/misc.c (pupa_memmove): New function.
17639         (pupa_memcpy): Removed.
17640         (pupa_strcpy): New function.
17641         (pupa_itoa): Made static.
17643         * kern/dl.c (pupa_dl_iterate): New function.
17644         (pupa_dl_ref): Likewise.
17645         (pupa_dl_unref): Likewise.
17646         (pupa_dl_unload): Return if succeeded or not.
17647         (pupa_dl_unload_unneeded): New function.
17648         (pupa_dl_unload_all): Likewise.
17649         (pupa_dl_init): Renamed to ...
17650         (pupa_dl_set_prefix): ... this.
17651         (pupa_dl_get_prefix): New function.
17653         * include/pupa/i386/pc/kernel.h: Include pupa/types.h.
17654         (PUPA_KERNEL_MACHINE_INSTALL_DOS_PART): New macro.
17655         (PUPA_KERNEL_MACHINE_INSTALL_BSD_PART): Likewise.
17656         (PUPA_KERNEL_MACHINE_PREFIX): Likewise.
17657         (pupa_install_dos_part): Declared.
17658         (pupa_install_bsd_part): Likewise.
17659         (pupa_prefix): Likewise.
17660         (pupa_boot_drive): Likewise.
17662         * include/pupa/types.h: Fix a typo.
17664         * include/pupa/misc.h (pupa_memcpy): New macro. Just an alias to
17665         pupa_memmove.
17666         (pupa_memmove): Declared.
17667         (pupa_strcpy): Likewise.
17669         * include/pupa/dl.h (PUPA_MOD_INIT): Change the prototype. Now
17670         pupa_mod_init takes one argument, its own module.
17671         (pupa_dl_unload_unneeded): Declared.
17672         (pupa_dl_unload_all): Likewise.
17673         (pupa_dl_ref): Likewise.
17674         (pupa_dl_unref): Likewise.
17675         (pupa_dl_iterate): Likewise.
17676         (pupa_dl_init): Renamed to ...
17677         (pupa_dl_set_prefix): ... this.
17678         (pupa_dl_get_prefix): Declared.
17680         * fs/fat.c [!PUPA_UTIL] (my_mod): New variable.
17681         (pupa_fat_dir) [!PUPA_UTIL]: Prevent the fat module from being
17682         unloaded.
17683         (pupa_fat_open) [!PUPA_UTIL]: Refer itself if succeeded.
17684         (pupa_fat_close) [!PUPA_UTIL]: Unrefer itself.
17686         * configure.ac (tmp_CFLAGS): Added -Wshadow, -Wpointer-arith,
17687         -Wmissing-prototypes, -Wundef and -Wstrict-prototypes.
17689 2003-01-03  Yoshinori K. Okuji  <okuji@enbug.org>
17691         * util/i386/pc/pupa-setup.c (setup): Define the internal
17692         function find_first_partition_start at the top level, because GCC
17693         3.0.x cannot compile internal functions in deeper scopes
17694         correctly.
17695         (find_root_device): Use lstat instead of stat.
17696         Don't follow symbolic links.
17697         Fix the path-constructing code.
17699         * util/i386/pc/biosdisk.c [__linux__] (BLKFLSBUF): New macro.
17700         (pupa_util_biosdisk_open) [__linux__]: Get the size of a device
17701         by a BLKGETSIZE ioctl first, because block devices don't fill
17702         the member st_mode of the structure stat on Linux.
17703         [__linux__] (linux_find_partition): Use a temporary buffer
17704         REAL_DEV for the working space. Copy it to DEV before returning.
17705         (open_device) [__linux__]: Call ioctl with BLKFLSBUF to make the
17706         buffer cache consistent.
17707         (get_os_disk) [__linux__]: Use the length 5 instead of 4 for
17708         strncmp. The previous value was merely wrong.
17709         (pupa_util_biosdisk_get_pupa_dev): Use stat instead of lstat.
17711         * fs/fat.c (pupa_fat_read_data): Shift 4 instead of 12 when the
17712         FAT size is 12. The previous value was merely wrong.
17714         * kern/main.c (pupa_main): Don't split the starting message from
17715         newlines.
17717         * kern/term.c (pupa_putchar): Put CR after LF instead of before
17718         LF, because BIOS goes crazy about character attributes in this
17719         case.
17721 2003-01-03  Yoshinori K. Okuji  <okuji@enbug.org>
17723         * include/i386/pc/util/biosdisk.h: New file.
17724         * util/i386/pc/biosdisk.c: Likewise.
17725         * util/i386/pc/pupa-setup.c: Likewise.
17727         * Makefile.in (INCLUDE_DISTFILES): Added
17728         include/pupa/i386/pc/util/biosdisk.h.
17729         (UTIL_DISTFILES): Added biosdisk.c and pupa-setup.c under the
17730         directory util/i386/pc.
17731         (install-local): Added a rule for sbin_UTILITIES.
17732         (uninstall): Likewise.
17734         * util/i386/pc/pupa-mkimage.c (usage): Fix a typo in the doc.
17736         * util/misc.c (xrealloc): New function.
17737         (pupa_malloc): Likewise.
17738         (pupa_free): Likewise.
17739         (pupa_realloc): Likewise.
17740         (pupa_stop): Likewise.
17741         (pupa_putchar): Likewise.
17743         * kern/disk.c (pupa_disk_read): Prevent L from underflowing.
17745         * include/pupa/util/misc.h (xrealloc): Declared.
17747         * include/pupa/i386/pc/boot.h (PUPA_BOOT_MACHINE_BPB_START): New
17748         macro.
17749         (PUPA_BOOT_MACHINE_BPBEND): Renamed to ...
17750         (PUPA_BOOT_MACHINE_BPB_END): ... this.
17752         * include/pupa/fs.h [PUPA_UTIL] (pupa_fat_init): Declared.
17753         [PUPA_UTIL] (pupa_fat_fini): Likewise.
17755         * fs/fat.c [PUPA_UTIL] (pupa_fat_init): Defined. Maybe a better
17756         way should be implemented.
17757         [PUPA_UTIL] (pupa_fat_fini): Likewise.
17759         * disk/i386/pc/biosdisk.c (pupa_biosdisk_call_hook): Increase
17760         the size of NAME for safety.
17761         (pupa_biosdisk_iterate): Search hard disks to 0x90 instead of
17762         0x88.
17764         * conf/i386-pc.rmk (sbin_UTILITIES): New variable.
17765         (pupa_setup_SOURCES): Likewise.
17767         * genmk.rb (Utility#rule): Add $(BUILD_CFLAGS) into the rules.
17769 2002-12-28  Yoshinori K. Okuji  <okuji@enbug.org>
17771         * kern/i386/pc/startup.S (push_get_mmap_entry): Revert to a
17772         bunch of pushl's from pusha, because this destroys the return
17773         value.
17775 2002-12-28  Yoshinori K. Okuji  <okuji@enbug.org>
17777         Use -mrtd and -mregparm=3 to reduce the generated code sizes.
17778         This means that any missing prototypes could be fatal. Also, you
17779         must take care when writing assembly code. See the comments at
17780         the beginning of startup.S, for more details.
17782         * kern/i386/pc/startup.S (pupa_halt): Modified for the new
17783         compilation mechanism.
17784         (pupa_chainloader_real_boot): Likewise.
17785         (pupa_biosdisk_rw_int13_extensions): Likewise.
17786         (pupa_biosdisk_rw_standard): Likewise.
17787         (pupa_biosdisk_check_int13_extensions): Likewise.
17788         (pupa_biosdisk_get_diskinfo_int13_extensions): Likewise.
17789         (pupa_biosdisk_get_diskinfo_standard): Likewise.
17790         (pupa_get_memsize): Likewise.
17791         (pupa_get_mmap_entry): Likewise.
17792         (pupa_console_putchar): Likewise.
17793         (pupa_console_setcursor): Likewise.
17794         (pupa_getrtsecs): Use pushl instead of push.
17796         * kern/i386/pc/init.c (pupa_machine_init): Use the scratch
17797         memory instead of the stack for a mmap entry, because some
17798         BIOSes may ignore the maximum size and overflow.
17800         * conf/i386-pc.rmk (COMMON_CFLAGS): Added -mrtd and -mregparm=3.
17802         * genmk.rb (PModule#rule): Compile automatically generated
17803         sources with module-specific CFLAGS as well as other sources.
17805 2002-12-27  Yoshinori K. Okuji  <okuji@enbug.org>
17807         * configure.ac: Check ld.
17808         Replace CFLAGS and CPPFLAGS with BUILD_CFLAGS and BUILD_CPPFLAGS
17809         respectively, before checking endianness and sizes.
17811         * Makefile.in (LD): New variable.
17813 2002-12-27  Yoshinori K. Okuji  <okuji@enbug.org>
17815         * Makefile.in (BUILD_CC): CC -> BUILD_CC.
17817 2002-12-27  Yoshinori K. Okuji  <okuji@enbug.org>
17819         * Changelog: New file.