]> git.proxmox.com Git - grub2.git/blob - ChangeLog
grub-mkstandalone: out of bound access to tar header magic
[grub2.git] / ChangeLog
1 2014-11-28 Andrei Borzenkov <arvidjaar@gmail.com>
2
3 * util/grub-mkstandalone.c (add_tar_file): Fix out of bound access
4 to hd.magic (Coverity CID 73587, 73888, bug 43690).
5
6 2014-11-20 Andrei Borzenkov <arvidjaar@gmail.com>
7
8 * tests/util/grub-fs-tester.in: Consistently print output
9 of grub ls if test fails.
10
11 2014-11-07 Leif Lindholm <leif.lindholm@linaro.org>
12
13 * grub-core/kern/efi/init.c: check value of *path before
14 dereferencing.
15
16 2014-11-03 Michael Chang <mchang@suse.com>
17
18 * grub-core/net/icmp6.c (grub_net_recv_icmp6_packet): Fix size
19 of neighbor solicitation packet in grub_netbuff_pull.
20
21 2014-10-14 Andrei Borzenkov <arvidjaar@gmail.com>
22
23 * grub-core/loader/arm/linux.c: Use full initializer for initrd_ctx to
24 avoid fatal warnings with older gcc (probably before 4.7).
25 * grub-core/loader/arm64/linux.c: Likewise.
26 * grub-core/loader/i386/linux.c: Likewise.
27 * grub-core/loader/i386/pc/linux.c: Likewise.
28 * grub-core/loader/ia64/efi/linux.c: Likewise.
29 * grub-core/loader/mips/linux.c: Likewise.
30 * grub-core/loader/powerpc/ieee1275/linux.c: Likewise.
31 * grub-core/loader/sparc64/ieee1275/linux.c: Likewise.
32
33 2014-09-25 Colin Watson <cjwatson@ubuntu.com>
34
35 Fix in-tree --platform=none
36
37 * configure.ac: Only remove include/grub/cpu and
38 include/grub/machine in the --platform=none case, not all of
39 include/grub.
40
41 2014-09-23 Colin Watson <cjwatson@ubuntu.com>
42
43 Add a new "none" platform that only builds utilities
44
45 * configure.ac: Add "none" platform. Default to it for unsupported
46 CPUs rather than stopping with a fatal error. Don't downgrade
47 x86_64-none to i386. Define COND_real_platform Automake conditional
48 if the platform is anything other than "none". Don't do any include
49 directory linking for "none".
50 * Makefile.am: Skip building grub-core and all bootcheck targets if
51 !COND_real_platform.
52 * include/grub/time.h: Don't include <grub/cpu/time.h> if GRUB_UTIL
53 is defined.
54
55 2014-09-22 Andrei Borzenkov <arvidjaar@gmail.com>
56
57 Use grub_cpu_to_XXX_compile_time for constants.
58
59 2014-09-21 Valentin Dornauer <valentin@unimplemented.org>
60
61 The AML parser implements only a small subset of possible AML
62 opcodes. On the Fujitsu Lifebook E744 this and another bug in
63 the parser (incorrect handling of TermArg data types) would lead
64 to the laptop not turning off (_S5 not found).
65
66 * grub-core/commands/acpihalt.c: Support OpAlias in the AML parser;
67 in skip_ext_op(), handle some Type2Opcodes more correctly (TermArgs
68 aren't always simply strings!); Add function to skip TermArgs
69 * include/grub/acpi.h: Add new opcodes
70
71 2014-09-21 Vladimir Serbinenko <phcoder@gmail.com>
72
73 * grub-core/normal/main.c: Don't drop to rescue console in
74 case of password-protected prompt and no menu entries.
75
76 2014-09-21 Vladimir Serbinenko <phcoder@gmail.com>
77
78 * grub-core/commands/keylayouts.c: Ignore unknown keys.
79
80 2014-09-21 Vladimir Serbinenko <phcoder@gmail.com>
81
82 * grub-core/gmodule.pl.in: Accept newer binutils which output
83 empty column rather than 0x0.
84
85 2014-09-21 Michael Chang <mchang@suse.com>
86
87 * grub-core/osdep/unix/config.c: Remove extraneous comma.
88
89 2014-09-21 Peter Jones <pjones@redhat.com>
90
91 * grub-core/loader/arm/linux.c: Initialized initrd_ctx so
92 we don't free a random pointer from the stack.
93 * grub-core/loader/arm64/linux.c: Likewise.
94 * grub-core/loader/i386/linux.c: Likewise.
95 * grub-core/loader/i386/pc/linux.c: Likewise.
96 * grub-core/loader/ia64/efi/linux.c: Likewise.
97 * grub-core/loader/mips/linux.c: Likewise.
98 * grub-core/loader/powerpc/ieee1275/linux.c: Likewise.
99 * grub-core/loader/sparc64/ieee1275/linux.c: Likewise.
100
101 2014-09-15 Khem Raj <raj.khem@gmail.com>
102
103 * grub-core/kern/emu/hostfs.c: use _DEFAULT_SOURCE in addition to
104 _BSD_SOURCE to avoid warnings under glibc 2.20+.
105
106 2014-09-08 Michael Chang <mchang@suse.com>
107
108 * grub-core/fs/btrfs.c (grub_btrfs_extent_read): Fix extent size
109 check; comparing &data->extent against addresses in the region it
110 points to is unpredictable.
111
112 2014-09-07 Colin Watson <cjwatson@ubuntu.com>
113
114 Support grub-emu on x32 (ILP32 but with x86-64 instruction set)
115
116 * configure.ac: Remove -m64 from checks for -mcmodel=large and
117 -mno-red-zone. These are always either unnecessary (x86_64-emu) or
118 already in TARGET_CFLAGS at this point, and they produce incorrect
119 results when building for x32.
120 * grub-core/kern/x86_64/dl.c (grub_arch_dl_relocate_symbols): Cast
121 pointers to Elf64_Xword via grub_addr_t, in order to work on x32.
122 * include/grub/x86_64/types.h (GRUB_TARGET_SIZEOF_VOID_P,
123 GRUB_TARGET_SIZEOF_LONG): Define to 4 on x32.
124
125 2014-09-07 Colin Watson <cjwatson@ubuntu.com>
126
127 * configure.ac: Remove several unnecessary semicolons.
128
129 2014-08-25 Colin Watson <cjwatson@ubuntu.com>
130
131 * grub-core/kern/mips/arc/init.c (grub_machine_get_bootlocation):
132 Initialise pend to pacify GCC.
133
134 2014-08-14 Andrey Borzenkov <arvidjaar@gmail.com>
135
136 * util/grub-mkconfig.in: Fix typo (gettext_print instead of
137 gettext_printf).
138
139 2014-08-13 Vladimir Serbinenko <phcoder@gmail.com>
140
141 * grub-core/term/at_keyboard.c: Retry probing keyboard if
142 scancode setup failed.
143
144 2014-08-10 Vladimir Serbinenko <phcoder@gmail.com>
145
146 * grub-core/kern/disk_common.c: Clump disk size to 1EiB.
147
148 2014-08-10 Vladimir Serbinenko <phcoder@gmail.com>
149
150 * grub-core/disk/i386/pc/biosdisk.c (grub_biosdisk_rw): Add
151 safety to avoid triggerring VirtualBox bug.
152
153 2014-08-10 Vladimir Serbinenko <phcoder@gmail.com>
154
155 * grub-core/fs/cbfs.c: Don't probe disks of unknow size.
156
157 Fixes hang on virtualbox.
158
159 2014-07-08 Colin Watson <cjwatson@ubuntu.com>
160
161 * util/grub.d/10_hurd.in: Make kernel list progression not fail on
162 kernels whose paths contain regex metacharacters.
163 * util/grub.d/10_kfreebsd.in: Likewise.
164 * util/grub.d/10_linux.in: Likewise.
165 * util/grub.d/20_linux_xen.in: Likewise.
166
167 Reported by: Heimo Stranner.
168
169 2014-06-26 Colin Watson <cjwatson@ubuntu.com>
170
171 * docs/grub-dev.texi (Finding your way around): The build system no
172 longer uses AutoGen directly.
173
174 2014-06-21 Роман Пехов <roman_pekhov>
175
176 * grub-core/commands/loadenv.c (check_blocklists): Fix overlap check.
177
178 2014-06-21 Glenn Washburn <development@efficientek.com>
179
180 * util/grub-install.c: Fix handling of --disk-module.
181
182 2014-06-21 Stephane Rochoy <sheda>
183
184 * grub-core/loader/i386/bsd.c (grub_netbsd_boot): Pass pointer to
185 EFI system table.
186
187 2014-06-21 Stephane Rochoy <sheda>
188
189 * grub-core/commands/efi/lsefisystab.c (grub_cmd_lsefisystab): Show
190 EFI system table physical address.
191
192 2014-06-21 Trevor Woerner <trevor.woerner@linaro.org>
193
194 * util/grub-gen-asciih.c (add_glyph): Fix uninitialised variable.
195
196 2014-06-21 Vladimir Serbinenko <phcoder@gmail.com>
197
198 * grub-core/commands/verify.c (grub_pubkey_open): Trust procfs.
199
200 2014-06-21 Vladimir Serbinenko <phcoder@gmail.com>
201
202 * grub-core/commands/verify.c (grub_pubkey_open): Fix memdisk
203 check.
204
205 2014-04-20 Vladimir Serbinenko <phcoder@gmail.com>
206
207 * grub-core/kern/misc.c (__bzero): Don't compile in GRUB_UTIL.
208
209 Reported by: Yves Blusseau <blusseau@zetam.org>.
210
211 2014-04-20 Piotr Krysiuk <piotras@gmail.com>
212
213 * grub-core/lib/i386/relocator.c: Allow loading old kernels by placing
214 GDT in conventional memory.
215
216 2014-04-10 Colin Watson <cjwatson@ubuntu.com>
217
218 * util/grub.d/30_os-prober.in: Tolerate devices with no filesystem
219 UUID. Other parts of grub-mkconfig tolerate these, they were
220 previously allowed here up to commit
221 55e706c918922def17f5012c23cfe88c4c645208, and they can arise in
222 practice when the system has active LVM snapshots.
223 Fixes Ubuntu bug #1287436.
224
225 2014-04-10 Colin Watson <cjwatson@ubuntu.com>
226
227 * grub-core/disk/lvm.c (grub_lvm_detect): Search for
228 "logical_volumes" block a little more accurately.
229
230 2014-04-06 Vladimir Serbinenko <phcoder@gmail.com>
231
232 * grub-core/lib/syslinux_parse.c: Fix timeout quoting.
233
234 2014-04-04 Vladimir Serbinenko <phcoder@gmail.com>
235
236 * include/grub/libgcc.h: Remove ctzsi2 and ctzdi2. They're no longer
237 pulled from libgcc.
238
239 2014-04-04 Vladimir Serbinenko <phcoder@gmail.com>
240
241 Replace few instances of memcmp/memcpy in the code that should be
242 grub_memcmp/grub_memcpy.
243
244 2014-04-03 Vladimir Serbinenko <phcoder@gmail.com>
245
246 * grub-core/osdep/linux/getroot.c (grub_util_part_to_disk): Support NVMe
247 device names.
248
249 2014-03-31 Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
250
251 btrfs: fix get_root key comparison failures due to endianness
252
253 * grub-core/fs/btrfs.c (get_root): Convert
254 GRUB_BTRFS_ROOT_VOL_OBJECTID to little-endian.
255
256 2014-03-31 Colin Watson <cjwatson@ubuntu.com>
257
258 Fix partmap, cryptodisk, and abstraction handling in grub-mkconfig.
259
260 Commit 588744d0dc655177d5883bdcb8f72ff5160109ed caused grub-mkconfig
261 no longer to be forgiving of trailing spaces on grub-probe output
262 lines, which among other things means that util/grub.d/10_linux.in
263 no longer detects LVM. To fix this, make grub-probe's output
264 delimiting more consistent. As a bonus, this improves the coverage
265 of the -0 option.
266
267 Fixes Debian bug #735935.
268
269 * grub-core/disk/cryptodisk.c
270 (grub_util_cryptodisk_get_abstraction): Add a user-data argument.
271 * grub-core/disk/diskfilter.c (grub_diskfilter_get_partmap):
272 Likewise.
273 * include/grub/cryptodisk.h (grub_util_cryptodisk_get_abstraction):
274 Update prototype.
275 * include/grub/diskfilter.h (grub_diskfilter_get_partmap): Likewise.
276 * util/grub-install.c (push_partmap_module, push_cryptodisk_module,
277 probe_mods): Adjust for extra user-data arguments.
278 * util/grub-probe.c (do_print, probe_partmap, probe_cryptodisk_uuid,
279 probe_abstraction): Use configured delimiter. Update callers.
280
281 2014-03-31 Colin Watson <cjwatson@ubuntu.com>
282
283 * util/grub-probe,c (options): Make -0 work again (broken by
284 conversion to argp).
285 (main): Simplify logic.
286
287 2014-03-26 Vladimir Serbinenko <phcoder@gmail.com>
288
289 * grub-core/lib/relocator.c: Fix the case when end of leftover is used.
290
291 2014-03-26 Fu Wei <fu.wei@linaro.org>
292
293 * grub-core/loader/arm64/linux.c: Remove redundant "0x".
294
295 2014-02-28 Vladimir Serbinenko <phcoder@gmail.com>
296
297 * include/grub/i386/openbsd_bootarg.h: Add addr and frequency fields.
298 * grub-core/loader/i386/bsd.c (grub_cmd_openbsd): Fill addr field.
299
300 Suggested by: Markus Müller.
301
302 2014-02-28 Vladimir Serbinenko <phcoder@gmail.com>
303
304 * grub-core/kern/i386/pc/mmap.c: Fallback to EISA memory map
305 if E820 failed to return any regions.
306
307 2014-02-28 Vladimir Serbinenko <phcoder@gmail.com>
308
309 * grub-core/mmap/i386/uppermem.c (lower_hook) [COREBOOT]: Ignore low
310 tables for low memory calculations.
311
312 2014-02-28 Vladimir Serbinenko <phcoder@gmail.com>
313
314 * grub-core/loader/i386/multiboot_mbi.c (grub_multiboot_make_mbi): Limit
315 location to 640K.
316
317 2014-02-28 Vladimir Serbinenko <phcoder@gmail.com>
318
319 * grub-core/kern/i386/coreboot/mmap.c: Filter out 0xa0000-0x100000
320 region.
321
322 2014-02-20 Vladimir Serbinenko <phcoder@gmail.com>
323
324 * grub-core/disk/ahci.c: Ignore NPORTS field and rely on PI
325 exclusively.
326
327 2014-02-04 Paulo Flabiano Smorigo <pfsmorigo@br.ibm.com>
328
329 Add bootpath parser for open firmware.
330
331 It enables net boot even when there is no bootp/dhcp server.
332
333 * grub-core/net/drivers/ieee1275/ofnet.c: Add grub_ieee1275_parse_bootpath
334 and call it at grub_ieee1275_net_config_real.
335 * grub-core/kern/ieee1275/init.c: Add bootpath to
336 grub_ieee1275_net_config.
337 * include/grub/ieee1275/ieee1275.h: Likewise.
338
339
340 2014-02-04 Paulo Flabiano Smorigo <pfsmorigo@br.ibm.com>
341
342 Add grub_env_set_net_property function.
343
344 * grub-core/net/bootp.c: Remove set_env_limn_ro.
345 * grub-core/net/net.c: Add grub_env_set_net_property.
346 * include/grub/net.h: Likewise.
347
348 2014-02-03 Vladimir Serbinenko <phcoder@gmail.com>
349
350 * util/grub-mkrescue.c: Build fix for argp.h with older gcc.
351
352 2014-02-03 Vladimir Serbinenko <phcoder@gmail.com>
353
354 * util/grub-mkfont.c: Build fix for argp.h with older gcc.
355
356 2014-01-29 Vladimir Serbinenko <phcoder@gmail.com>
357
358 * grub-core/disk/ahci.c: Increase timeout. Some SSDs take up to
359 7 seconds to recover if last poweroff was bad.
360
361 2014-01-29 Vladimir Serbinenko <phcoder@gmail.com>
362
363 * grub-core/disk/ahci.c: Properly handle transactions with no
364 transferred data.
365
366 2014-01-29 Vladimir Serbinenko <phcoder@gmail.com>
367
368 * grub-core/disk/ahci.c: Add safety cleanups.
369
370 2014-01-29 Vladimir Serbinenko <phcoder@gmail.com>
371
372 * grub-core/disk/ahci.c: Allocate and clean space for all possible 32
373 slots to avoid pointing to uninited area.
374
375 2014-01-29 Vladimir Serbinenko <phcoder@gmail.com>
376
377 * grub-core/disk/ahci.c: Do not enable I/O decoding and keep
378 enabling busmaster for the end.
379
380 2014-01-29 Vladimir Serbinenko <phcoder@gmail.com>
381
382 * util/grub-mkfont.c: Downgrade warnings about unhandled features
383 to debug.
384
385 2014-01-29 Vladimir Serbinenko <phcoder@gmail.com>
386
387 * grub-core/term/at_keyboard.c: Tolerate missing keyboard.
388
389 2014-01-29 Paulo Flabiano Smorigo <pfsmorigo@br.ibm.com>
390
391 * .gitignore: add missing files and .exe variants.
392
393 2014-01-26 Mike Gilbert <floppym@gentoo.org>
394
395 grub-install: support for partitioned partx loop devices.
396
397 * grub-core/osdep/linux/getroot.c (grub_util_part_to_disk): Detect
398 /dev/loopX as being the parent of /dev/loopXpY.
399
400 2014-01-26 Vladimir Serbinenko <phcoder@gmail.com>
401
402 * grub-core/term/serial.c (grub_serial_register): Fix invalid free.
403 Ensure that pointers are inited to NULL and that pointers are not
404 accessed after free.
405
406 2014-01-25 Andrey Borzenkov <arvidjaar@gmail.com>
407
408 * include/grub/crypto.h: Replace __attribute__ ((format (printf)) with
409 __attribute__ ((format (__printf__)) to fix compilation under MinGW-w64.
410 * include/grub/emu/misc.h: ... and here.
411 * include/grub/err.h: ... and here.
412 * util/import_gcry.py: ... and here (in files g10lib.h).
413
414 2014-01-25 Andrey Borzenkov <arvidjaar@gmail.com>
415
416 * util/grub-mkimage.c: Make prefix argument mandatory.
417
418 2014-01-24 Vladimir Serbinenko <phcoder@gmail.com>
419
420 Fix several translatable strings.
421
422 Suggested by: D. Prévot.
423
424 2014-01-24 Vladimir Serbinenko <phcoder@gmail.com>
425
426 * util/grub-install.c: List available targets.
427
428 2014-01-23 Colin Watson <cjwatson@ubuntu.com>
429
430 * util/grub-install.c (write_to_disk): Add an info message.
431
432 2014-01-21 Andrey Borzenkov <arvidjaar@gmail.com>
433
434 * Makefile.am: Allow adding extra files to generated Windows ZIP
435 archive by setting GRUB_WINDOWS_EXTRA_DIST.
436
437 2014-01-21 Andrey Borzenkov <arvidjaar@gmail.com>
438
439 * configure.ac: Look for DejaVuSans also in /usr/share/fonts/truetype.
440 Show detected font path in summary.
441
442 2014-01-21 Paulo Flabiano Smorigo <pfsmorigo@br.ibm.com>
443
444 * grub-core/net/arp.c (grub_net_arp_send_request): Increase network try
445 interval gradually.
446 * grub-core/net/icmp6.c (grub_net_icmp6_send_request): Likewise.
447 * grub-core/net/net.c (grub_net_fs_read_real): Likewise.
448 * grub-core/net/tftp.c (tftp_open): Likewise.
449 * include/grub/net.h (GRUB_NET_INTERVAL_ADDITION): New define.
450
451 2014-01-21 Paulo Flabiano Smorigo <pfsmorigo@br.ibm.com>
452
453 * grub-core/net/net.c (receive_packets): Change stop condition to avoid
454 infinite loops.
455
456 In net/net.c there is a while (1) that only exits if there is a stop
457 condition and more then 10 packages or if there is no package received.
458
459 If GRUB is idle and enter in this loop, the only condition to leave is
460 if it doesn't have incoming packages. In a network with heavy traffic
461 this never happens.
462
463 2014-01-19 Colin Watson <cjwatson@ubuntu.com>
464
465 * grub-core/osdep/freebsd/hostdisk.c (grub_util_fd_open): Ignore
466 EPERM when modifying kern.geom.debugflags. It is only a problem for
467 such things as installing GRUB to the MBR, in which case there'll be
468 an error later anyway, not for opening files during tests.
469
470 2014-01-18 Andrey Borzenkov <arvidjaar@gmail.com>
471
472 * grub-core/Makefile.am: Build grub_emu_init.[ch] from MODULE_FILES
473 instead of MOD_FILES.
474 * grub-core/genemuinit.sh: Simplify stripping of suffix so it works
475 both with and without .exe.
476 * grub-core/genemuinitheader.sh: Same.
477
478 2014-01-18 Vladimir Serbinenko <phcoder@gmail.com>
479
480 * util/grub-install.c: Fix a typo.
481
482 2014-01-18 Vladimir Serbinenko <phcoder@gmail.com>
483
484 * grub-core/normal/main.c (read_config_file): Buffer config file.
485 Reduces boot time.
486
487 2014-01-18 Andrey Borzenkov <arvidjaar@gmail.com>
488
489 * acinclude.m4 (grub_CHECK_LINK_DIR): Check that we can also remove
490 symbolic link to directory. It fails in Msys shell on Windows 2003.
491
492 2014-01-18 Vladimir Serbinenko <phcoder@gmail.com>
493
494 * Makefile.am (default_payload.elf): Add modules
495 multiboot cbmemc linux16 gzio echo help.
496
497 2014-01-18 Mike Gilbert <floppym@gentoo.org>
498
499 * Makefile.util.def: Link grub-ofpathname with zfs libs.
500
501 2014-01-18 Vladimir Serbinenko <phcoder@gmail.com>
502
503 * grub-core/commands/macbless.c: Rename FILE and DIR to avoid
504 conflicts.
505
506 Reported by: Andrey Borzenkov.
507
508 2014-01-18 Andrey Borzenkov <arvidjaar@gmail.com>
509
510 * include/grub/misc.h: Move macros for compiler features to ...
511 * include/grub/compiler.h: ... new file.
512 * include/grub/list.h: Include <grub/compiler.h> instead of <grub/misc.h>.
513 * grub-core/commands/fileXX.c: Include <grub/misc.h>.
514 * grub-core/efiemu/prepare.c: Include <grub/misc.h>.
515 * grub-core/loader/i386/xen_file.c: Include <grub/misc.h>.
516 * grub-core/loader/i386/xen_fileXX.c: Include <grub/misc.h>.
517 * grub-core/video/capture.c: Include <grub/misc.h>.
518 * include/grub/command.h: Include <grub/misc.h>.
519 * include/grub/dl.h: Include <grub/misc.h>.
520 * include/grub/procfs.h: Include <grub/misc.h>.
521
522 2014-01-18 Andrey Borzenkov <arvidjaar@gmail.com>
523
524 * configure.ac: Add support for BUILD_EXEEXT and use it ...
525 * Makefile.am: ... here.
526 * Makefile.util.def: ... and here.
527 * grub-core/Makefile.am: ... and here.
528
529 2014-01-18 Andrey Borzenkov <arvidjaar@gmail.com>
530
531 * include/grub/osdep/hostfile_windows.h: Use _W64 instead of
532 FILE_OFFSET_BITS to differentiate between native MinGW and Mingw W64.
533
534 2014-01-18 Vladimir Serbinenko <phcoder@gmail.com>
535
536 * grub-core/term/terminfo.c: Recognize keys F1-F12.
537
538 2014-01-18 Andrey Borzenkov <arvidjaar@gmail.com>
539
540 * configure.ac: Add support for BUILD_LDFLAGS.
541 * Makefile.am: Use BUILD_LDFLAGS for build time programs here ...
542 * grub-core/Makefile.am: ... and here.
543 * INSTALL: Mention BUILD_LDFLAGS.
544
545 2014-01-18 Vladimir Serbinenko <phcoder@gmail.com>
546
547 * util/grub-mount.c: Extend GCC warning workaround to grub-mount.
548
549 2014-01-18 Vladimir Serbinenko <phcoder@gmail.com>
550
551 * grub-core/kern/efi/efi.c: Ensure that the result starts with /
552 and has no //.
553
554 2014-01-18 Vladimir Serbinenko <phcoder@gmail.com>
555
556 * NEWS: Add few missing entries.
557
558 2014-01-17 Colin Watson <cjwatson@ubuntu.com>
559
560 * util/grub.d/00_header.in (make_timeout): Use && rather than test
561 -a.
562 * util/grub.d/10_windows.in: Likewise.
563 * util/grub.d/10_netbsd.in (netbsd_load_fs_module): Use || rather
564 than test -o.
565 * util/grub.d/30_os-prober.in: Use && rather than test -a, and ||
566 rather than test -o.
567
568 2014-01-17 Colin Watson <cjwatson@ubuntu.com>
569
570 * grub-core/osdep/freebsd/hostdisk.c (grub_util_fd_open): Remove
571 redundant preprocessor conditional.
572
573 2014-01-08 Colin Watson <cjwatson@ubuntu.com>
574
575 * Makefile.util.def (grub-macbless): Change mansection to 8.
576
577 2014-01-07 Leif Lindholm <leif.lindholm@linaro.org>
578
579 * grub-core/loader/arm64/linux.c: correctly set device path end length.
580
581 2014-01-07 Andrey Borzenkov <arvidjaar@gmail.com>
582
583 * util/grub-install.c: Use bootaa64.efi instead of bootaarch64.efi on
584 arm64 to comply with EFI specification. Also use grubaa64.efi for
585 consistency.
586 * util/grub-mkrescue.c: Change to use bootaa64.efi too.
587
588 2014-01-07 Andrey Borzenkov <arvidjaar@gmail.com>
589
590 * include/grub/osdep/hostfile_windows.h: Do not redefine fseeko/ftello
591 on MinGW-64 when compiling for 32 bits.
592
593 2013-12-30 Andrey Borzenkov <arvidjaar@gmail.com>
594
595 * grub-core/Makefile.core.def: strip .eh_frame section for arm64-efi.
596
597 2013-12-30 Vladimir Serbinenko <phcoder@gmail.com>
598
599 * NEWS: Add few missing entries. Correct existing ones.
600
601 2013-12-28 Vladimir Serbinenko <phcoder@gmail.com>
602
603 Don't abort() on unavailable coreboot tables if not running on coreboot.
604
605 2013-12-28 Andrey Borzenkov <arvidjaar@gmail.com>
606
607 * grub-core/kern/emu/misc.c: Remove unused error.h; fixes compilation
608 on mingw.
609
610 2013-12-28 Colin Watson <cjwatson@ubuntu.com>
611
612 * NEWS: The cmosclean command in fact dates back to 1.99. Remove
613 mention of it from 2.02.
614
615 2013-12-27 Vladimir Serbinenko <phcoder@gmail.com>
616
617 * grub-core/kern/arm/cache_armv6.S: Remove .arch directive.
618
619 As these functions are used on pre-ARMv6 CPUs as well we don't want
620 to make assembler assume that architecture is higher than default one.
621
622 2013-12-27 Colin Watson <cjwatson@ubuntu.com>
623
624 * NEWS: First draft of 2.02 entry.
625
626 2013-12-27 Colin Watson <cjwatson@ubuntu.com>
627
628 * INSTALL (Cross-compiling the GRUB): Fix some spelling mistakes.
629 * docs/grub.texi (Getting the source code): Likewise.
630
631 2013-12-25 Andrey Borzenkov <arvidjaar@gmail.com>
632
633 * grub-core/osdep/windows/platform.c (get_platform): Fix EFI
634 detection.
635
636 2013-12-24 Vladimir Serbinenko <phcoder@gmail.com>
637
638 * configure.ac: Set version to 2.02~beta2.
639
640 2013-12-24 Vladimir Serbinenko <phcoder@gmail.com>
641
642 * grub-core/disk/efi/efidisk.c (name_devices): Skip Apple ghosts.
643
644 2013-12-24 Andrey Borzenkov <arvidjaar@gmail.com>
645
646 * util/grub-probe.c: Improve help message and simplify list handling.
647
648 2013-12-24 Vladimir Serbinenko <phcoder@gmail.com>
649
650 Fix buffer overflow in grub_efi_print_device_path.
651
652 2013-12-24 Vladimir Serbinenko <phcoder@gmail.com>
653
654 Show SATA device path.
655
656 2013-12-24 Vladimir Serbinenko <phcoder@gmail.com>
657
658 Revert grub-file usage in grub-mkconfig.
659
660 2013-12-24 Vladimir Serbinenko <phcoder@gmail.com>
661
662 Make newly-created files other than grub.cfg world-readable.
663
664 2013-12-24 Andrey Borzenkov <arvidjaar@gmail.com>
665
666 * util/grub.d/00_header.in: Improve compatibility with old config.
667
668 2013-12-24 Vladimir Serbinenko <phcoder@gmail.com>
669
670 Make rijndael.c respect aliasing rules.
671
672 Trivial backport of dfb4673da8ee52d95e0a62c9f49ca8599943f22e.
673
674 2013-12-24 Vladimir Serbinenko <phcoder@gmail.com>
675
676 Make grub_util_device_is_mapped_stat available in grub-emu core.
677
678 2013-12-24 Vladimir Serbinenko <phcoder@gmail.com>
679
680 Add -Qn to TARGET_CFLAGS if it's supported.
681 Fixes compilation on cygwin.
682
683 Reported by: Andrey Borzenkov.
684 Suggested by: Andrey Borzenkov.
685
686 2013-12-24 Vladimir Serbinenko <phcoder@gmail.com>
687
688 Save TARGET_CC version in modinfo.sh.
689
690 Suggested by: Andrey Borzenkov.
691
692 2013-12-24 Vladimir Serbinenko <phcoder@gmail.com>
693
694 Make grub_util_devmapper_part_to_disk and grub_util_find_partition_start
695 follow the same algorithm to avoid method mismatch. Don't assume
696 DMRAID- UUID to mean full disk but instead check that mapping is linear.
697
698 2013-12-24 Vladimir Serbinenko <phcoder@gmail.com>
699
700 Declare GRUB_EFI_VENDOR_APPLE_GUID.
701
702 2013-12-24 Vladimir Serbinenko <phcoder@gmail.com>
703
704 Dump type and vendor specific data when printing device path.
705
706 2013-12-23 Colin Watson <cjwatson@debian.org>
707
708 Update some documentation to refer to Git rather than Bazaar.
709
710 * docs/grub.texi (Obtaining and Building GRUB): Refer to Git rather
711 than Bazaar.
712 * po/README: Likewise. Fix spelling mistake.
713
714 2013-12-23 Colin Watson <cjwatson@ubuntu.com>
715
716 Don't distribute config.h.
717
718 * Makefile.am (platform_HEADERS): Move to ...
719 (nodist_platform_HEADERS): ... here. Fixes gettext_strings_test
720 failure when building from a distributed tarball.
721
722 2013-12-23 Colin Watson <cjwatson@ubuntu.com>
723
724 * configure.ac: Fix spelling.
725 * grub-core/commands/parttool.c: Fix grammar.
726 * grub-core/disk/ldm.c: Use consistent capitalisation for "LDM
727 Embedding Partition".
728
729 2013-12-23 Vladimir Serbinenko <phcoder@gmail.com>
730
731 ARM64 support for grub-mkrescue.
732
733 2013-12-23 Vladimir Serbinenko <phcoder@gmail.com>
734
735 Install modinfo.sh to keep build information around.
736
737 2013-12-23 Vladimir Serbinenko <phcoder@gmail.com>
738
739 * grub-core/modinfo.sh.in: Add build config information.
740
741 2013-12-23 Vladimir Serbinenko <phcoder@gmail.com>
742
743 ARM64 grub-file and grub-mkconfig support.
744
745 2013-12-23 Vladimir Serbinenko <phcoder@gmail.com>
746
747 Remove leftover options defines.
748
749 2013-12-23 Vladimir Serbinenko <phcoder@gmail.com>
750
751 * include/grub/arm64/linux.h: Remove leftovers. Add missing prefixes.
752
753 2013-12-23 Vladimir Serbinenko <phcoder@gmail.com>
754
755 * grub-core/loader/arm64/linux.c: Add missing bracket.
756
757 2013-12-23 Vladimir Serbinenko <phcoder@gmail.com>
758
759 Add arm64-efi recognition to grub-file.
760
761 2013-12-23 Vladimir Serbinenko <phcoder@gmail.com>
762
763 Fix ia64-efi recognition in grub-file.
764
765 2013-12-23 Vladimir Serbinenko <phcoder@gmail.com>
766
767 Recognize raspberry pi kernel in grub-file.
768
769 2013-12-23 Vladimir Serbinenko <phcoder@gmail.com>
770
771 Enable cache on ARM U-Boot port.
772
773 Without it the port is reidiculously slow.
774
775 2013-12-23 Vladimir Serbinenko <phcoder@gmail.com>
776
777 Fix ARM cache maintainance.
778
779 More code was converted from ASM to C for easier handling.
780
781 2013-12-22 Vladimir Serbinenko <phcoder@gmail.com>
782
783 * grub-core/kern/arm/cache.c (grub_arm_disable_caches_mmu): Use v6
784 algorithm on v5.
785
786 Suggested by: Leif Lindholm.
787
788 2013-12-22 Andrey Borzenkov <arvidjaar@gmail.com>
789
790 * util/grub-mkconfig.in: Fix Xen platform conditions.
791
792 2013-12-22 Andrey Borzenkov <arvidjaar@gmail.com>
793
794 * util/grub-mkrescue.c: Split single help message string in several
795 strings used in previous shell version.
796
797 2013-12-22 Leif Lindholm <leif.lindholm@linaro.org>
798
799 Add arm64 Linux loader.
800
801 2013-12-22 Leif Lindholm <leif.lindholm@linaro.org>
802
803 Add grub_fdt_create_empty_tree() and grub_fdt_set_prop64().
804
805 2013-12-22 Vladimir Serbinenko <phcoder@gmail.com>
806
807 Add module loading and parsing boot time checkpoints.
808
809 2013-12-22 Vladimir Serbinenko <phcoder@gmail.com>
810
811 * grub-core/loader/arm/linux.c: Pass arguments through on ATAG
812 platforms.
813
814 2013-12-22 Lars Wendler <polynomial-c@gentoo.org>
815
816 * util/grub-mkconfig.in: Skip non-executable files.
817
818 2013-12-22 Vladimir Serbinenko <phcoder@gmail.com>
819
820 Workaround buggy timer in raspberry pie by using our own timer
821 implementation.
822
823 2013-12-22 Vladimir Serbinenko <phcoder@gmail.com>
824
825 * include/grub/arm/uboot/kernel.h (GRUB_KERNEL_MACHINE_HEAP_SIZE):
826 Increase to 16 MiB to allow loading the whole memdisk.
827
828 2013-12-22 Vladimir Serbinenko <phcoder@gmail.com>
829
830 Fix ARM Linux Loader on non-FDT platforms.
831
832 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
833
834 * configure.ac: Choose link format based on host_os on emu.
835
836 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
837
838 * grub-core/osdep/unix/getroot.c: Non-unix build fix.
839
840 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
841
842 * grub-core/kern/emu/main.c: Build fix for emu.
843
844 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
845
846 Build fixes for argp.h with older gcc.
847
848 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
849
850 * util/grub-glue-efi.c: Use "universal binary" rather "fat binary"
851 in strings.
852
853 Suggested by: David Prévot.
854
855 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
856
857 * include/grub/crypto.h (grub_crypto_xor): Fix cast-align warning.
858
859 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
860
861 Enable -Wformat=2 if it's supported.
862
863 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
864
865 * configure.ac: Add -Wmissing-include-dirs -Wmissing-prototypes
866 -Wmissing-declarations if supported.
867
868 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
869
870 * grub-core/commands/macbless.c (grub_mac_bless_inode): Pass inode as
871 u32 as both HFS and HFS+ have 32-bit inodes.
872
873 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
874
875 * include/grub/misc.h (grub_strtol): Fix overflow.
876
877 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
878
879 * include/grub/term.h (grub_unicode_estimate_width): Use grub_size_t
880 as return type in both conditionals.
881
882 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
883
884 * include/grub/video.h (grub_video_rgba_color_rgb): Fix prototype
885 to use uint8_t for color.
886
887 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
888
889 * util/misc.c (grub_util_get_image_size): Check for overflow.
890
891 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
892
893 * grub-core/disk/raid6_recover.c (grub_raid_block_mulx): Use grub_size_t
894 for size.
895
896 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
897
898 * grub-core/disk/lvm.c: Use grub_size_t for sizes and grub_ssize_t
899 for pointer difference.
900
901 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
902
903 * util/import_gcry.py: Skip sample keys.
904
905 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
906
907 * util/misc.c (grub_qsort_strcmp): Don't discard const attribute.
908
909 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
910
911 * configure.ac: Remove duplicate warning arguments.
912
913 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
914
915 Add missing static qualifiers.
916
917 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
918
919 Add missing includes.
920
921 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
922
923 Inline printf templates when possible to enable format checking.
924
925 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
926
927 * include/grub/crypto.h: Don't discard const attribute.
928
929 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
930
931 * grub-core/net/bootp.c (grub_cmd_dhcpopt): Use snprintf where it
932 was intended.
933
934 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
935
936 * grub-core/lib/crypto.c: Don't discard const attribute.
937
938 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
939
940 * grub-core/lib/disk.c: Fix potential overflow.
941
942 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
943
944 * grub-core/lib/arg.c: Don't discard const attribute.
945
946 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
947
948 * grub-core/kern/dl.c: Don't discard const attribute.
949
950 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
951
952 * grub-core/kern/disk.c: Fix potential overflow.
953
954 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
955
956 * conf/Makefile.common: Don't include non-existing directory
957 grub-core/lib/libgcrypt-grub/include.
958
959 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
960
961 Clarify several translatable messages.
962
963 2013-12-21 David Prévot <david@tilapin.org>
964
965 Correct some translatable strings.
966
967 2013-12-21 Colin Watson <cjwatson@ubuntu.com>
968
969 * util/grub-mkrescue.c: Rephrase mkrescue description.
970
971 2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
972 2013-12-21 Colin Watson <cjwatson@ubuntu.com>
973
974 Clarify several translatable messages.
975
976 2013-12-20 Colin Watson <cjwatson@ubuntu.com>
977
978 Be more verbose about some configure failures.
979
980 2013-12-20 Colin Watson <cjwatson@ubuntu.com>
981
982 Fix various build problems on GNU/Hurd.
983
984 * grub-core/osdep/unix/getroot.c (strip_extra_slashes): Move inside
985 !defined (__GNU__).
986 (xgetcwd): Likewise.
987 * include/grub/emu/hostdisk.h (grub_util_hurd_get_disk_info)
988 [__GNU__]: Add prototype.
989 * util/getroot.c (grub_util_biosdisk_get_grub_dev) [__GNU__]: Format
990 long int using %ld rather than %d.
991
992 2013-12-18 Vladimir Serbinenko <phcoder@gmail.com>
993
994 * util/grub-install.c: Inform user about install platform.
995
996 2013-12-18 Vladimir Serbinenko <phcoder@gmail.com>
997
998 * configure.ac: Set version to 2.02~beta1.
999
1000 2013-12-18 Allen Pais <allen.pais@oracle.com>
1001 2013-12-18 Bob Picco <bob.picco@oracle.com>
1002
1003 * grub-core/boot/sparc64/ieee1275/boot.S: Fix order of fields.
1004
1005 2013-12-18 Vladimir Serbinenko <phcoder@gmail.com>
1006
1007 Make grub_zlib_decompress handle incomplete chunks.
1008
1009 Fixes squash4.
1010
1011 2013-12-18 Vladimir Serbinenko <phcoder@gmail.com>
1012
1013 * grub-core/Makefile.am: Don't attempt to export grub_bios_interrupt
1014 on i386-multiboot.
1015
1016 2013-12-18 Aleš Nesrsta <starous@volny.cz>
1017
1018 * grub-core/disk/usbms.c: Retry on unknown errors.
1019 Reuse the same tag on retries.
1020
1021 2013-12-18 Aleš Nesrsta <starous@volny.cz>
1022
1023 * grub-core/bus/usb/ehci.c: Fix handling of newborn transfers.
1024
1025 Avoid confusing them with already completed transfers.
1026
1027 2013-12-18 Vladimir Serbinenko <phcoder@gmail.com>
1028
1029 Remove xen VFB.
1030
1031 Due to XEN bug it prevents Linux boot. Remove it at least, until
1032 workaround is found.
1033
1034 2013-12-18 Vladimir Serbinenko <phcoder@gmail.com>
1035
1036 * po/exclude.pot: Add 2 missing excludes.
1037
1038 2013-12-18 Vladimir Serbinenko <phcoder@gmail.com>
1039
1040 Add missing license section in macbless.mod and macho.mod.
1041
1042 2013-12-18 Vladimir Serbinenko <phcoder@gmail.com>
1043
1044 Allow compilation without thumb-interwork as long as no thumb is
1045 involved or only thumb2 is used.
1046
1047 2013-12-18 Vladimir Serbinenko <phcoder@gmail.com>
1048
1049 * INSTALL: Update comment as to why sparc64 clang isn't usable.
1050
1051 2013-12-18 Vladimir Serbinenko <phcoder@gmail.com>
1052
1053 Add __attribute__ ((sysv_abi)) only if it's really needed.
1054
1055 Some compilers don't support it.
1056
1057 2013-12-18 Vladimir Serbinenko <phcoder@gmail.com>
1058
1059 * grub-core/lib/syslinux_parse.c: Declare timeout unsigned.
1060
1061 2013-12-18 Vladimir Serbinenko <phcoder@gmail.com>
1062
1063 Remove -Wold-style-definition.
1064
1065 Not very useful and interaction of it with regexp depends on GCC
1066 version.
1067
1068 2013-12-18 Vladimir Serbinenko <phcoder@gmail.com>
1069
1070 Make grub_util_get_windows_path_real static.
1071
1072 2013-12-18 Vladimir Serbinenko <phcoder@gmail.com>
1073
1074 * grub-core/commands/fileXX.c: Silence cast-align.
1075 * grub-core/loader/i386/xen_fileXX.c: Likewise.
1076
1077 2013-12-18 Vladimir Serbinenko <phcoder@gmail.com>
1078
1079 * include/grub/efi/api.h (GRUB_EFI_ERROR_CODE): Use explicit cast
1080 rather than LL suffix.
1081
1082 2013-12-18 Vladimir Serbinenko <phcoder@gmail.com>
1083
1084 * include/grub/efi/api.h (PRIxGRUB_EFI_UINTN_T): Remove leftover.
1085
1086 2013-12-18 Vladimir Serbinenko <phcoder@gmail.com>
1087
1088 * grub-core/loader/arm/linux.c: Use common initrd functions.
1089
1090 2013-12-18 Vladimir Serbinenko <phcoder@gmail.com>
1091
1092 Decrease number of strings to translate.
1093
1094 2013-12-18 Vladimir Serbinenko <phcoder@gmail.com>
1095
1096 * grub-core/kern/arm/dl.c: Remove unnecessarry execution mode check.
1097
1098 2013-12-18 Vladimir Serbinenko <phcoder@gmail.com>
1099
1100 Mark strings for translation and add remaining ones to exclude list.
1101
1102 2013-12-18 Vladimir Serbinenko <phcoder@gmail.com>
1103
1104 * util/grub-file.c (main): Fix sizeof usage.
1105
1106 2013-12-18 Vladimir Serbinenko <phcoder@gmail.com>
1107
1108 Silence spurious warning.
1109
1110 2013-12-18 Vladimir Serbinenko <phcoder@gmail.com>
1111
1112 Remove check_nt_hiberfil as it's been superseeded by file command.
1113
1114 2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
1115
1116 * docs/osdetect.cfg: Add isolinux config to detected OSes.
1117
1118 2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
1119
1120 Implement syslinux parser.
1121
1122 2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
1123
1124 * grub-core/commands/legacycfg.c: Use 32-bit Linux protocol on non-BIOS.
1125
1126 2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
1127
1128 Support cpuid --pae.
1129
1130 2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
1131
1132 Use AT keyboard on Yeeloong 3A.
1133
1134 2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
1135
1136 Add Yeeloong 3A reboot and halt.
1137
1138 2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
1139
1140 Add Radeon Yeeloong 3A support.
1141
1142 2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
1143
1144 Add bonito 3A support.
1145
1146 2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
1147
1148 * grub-core/loader/machoXX.c: Fix compilation on non-i386.
1149
1150 2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
1151
1152 * grub-core/loader/i386/xen_fileXX.c: Silence cast-align.
1153
1154 2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
1155
1156 * grub-core/loader/macho.c: Fix compilation on non-i386.
1157
1158 2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
1159
1160 Add missing format_arg attribute to check that printf with translated
1161 messages has proper arguments.
1162
1163 2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
1164
1165 Use grub_xasprintf to format translated error messages containing
1166 64-bit quantity.
1167
1168 2013-12-17 Jon McCune <jonmccune@google.com>
1169
1170 Fix double-free introduced by commit 33d02a42d64cf06cada1c389
1171
1172 2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
1173
1174 Unify message for unsupported relocation.
1175
1176 2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
1177
1178 Mark miscompile error for translation.
1179
1180 2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
1181
1182 Use %I64 and not %ll when using OS printf if compiling for windows.
1183
1184 2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
1185
1186 Update Mac code to match new register_efi prototype.
1187
1188 2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
1189
1190 Implement better integration with Mac firmware.
1191
1192 2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
1193
1194 * grub-core/loader/multiboot_mbi2.c: Implement special value for
1195 load_addr.
1196
1197 2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
1198
1199 Include serial module in default_payload.elf.
1200
1201 2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
1202
1203 Add explicit thumb interwork bx in asm files.
1204
1205 Shouldn't matter for armv >= 5 but let's be safe.
1206
1207 2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
1208
1209 Implement Truecrypt ISO loader.
1210
1211 2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
1212
1213 * grub-core/lib/arg.c: Ensure at least a single space between commands.
1214
1215 2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
1216
1217 Implement grub_file tool and use it to implement generating of config
1218 in separate root.
1219
1220 2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
1221
1222 Change to v1 xen grants.
1223
1224 2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
1225
1226 * grub-core/lib/i386/xen/relocator.S: Fix hypercall ABI violation.
1227
1228 GRUB relied on %ebx being preserved across hypercall which isn't true.
1229
1230 2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
1231
1232 * grub-core/lib/x86_64/xen/relocator.S: Fix hypercall ABI violation.
1233
1234 GRUB relied on %rdi being preserved across hypercall which isn't true.
1235
1236 2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
1237
1238 Implement XEN VFB support.
1239
1240 2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
1241
1242 Remove grub_bios_interrupt on coreboot.
1243
1244 It's not used currently and cannot be used safely currently.
1245
1246 2013-12-16 Vladimir Serbinenko <phcoder@gmail.com>
1247
1248 Update exclude.pot and mark few strings for translation.
1249
1250 2013-12-16 Vladimir Serbinenko <phcoder@gmail.com>
1251
1252 * util/grub-mkrescue.c: Fix incorrect file usage in fallback code.
1253
1254 Reported by: Jon McCune
1255
1256 2013-12-16 Andrey Borzenkov <arvidjaar@gmail.com>
1257
1258 * grub-core/osdep/linux/platform.c (grub_install_get_default_x86_platform):
1259 Add verbose information which firmware directories were tried.
1260
1261 2013-12-16 Andrey Borzenkov <arvidjaar@gmail.com>
1262
1263 * grub-core/osdep/unix/exec.c (grub_util_exec_redirect_all): New
1264 function to optionally redirect all three standard descriptors.
1265 Redefine grub_util_exec, grub_util_exec_redirect and
1266 grub_util_exec_redirect_null to use it.
1267 * include/grub/emu/exec.h: Define it.
1268 * include/grub/osdep/exec_unix.h: Delete, it is unused.
1269 * grub-core/osdep/linux/platform.c (grub_install_get_default_x86_platform):
1270 Use grub_util_exec_redirect_all to redirect error to NULL.
1271
1272 2013-12-16 Vladimir Serbinenko <phcoder@gmail.com>
1273
1274 * grub-core/tests/sleep_test.c: Silence spurious warning.
1275
1276 2013-12-16 Vladimir Serbinenko <phcoder@gmail.com>
1277
1278 Make grub_xen_hypercall on i386 cdecl rather than stdcall to avoid
1279 linker trying to "fixup" the code.
1280
1281 2013-12-16 Vladimir Serbinenko <phcoder@gmail.com>
1282
1283 * grub-core/kern/x86_64/xen/startup.S: Align stack.
1284
1285 2013-12-16 Vladimir Serbinenko <phcoder@gmail.com>
1286
1287 Add support for converting PE+ to Elf64.
1288
1289 2013-12-16 Vladimir Serbinenko <phcoder@gmail.com>
1290
1291 * grub-core/commands/minicmd.c (grub_mini_cmd_dump): Handle LLP case.
1292
1293 2013-12-16 Vladimir Serbinenko <phcoder@gmail.com>
1294
1295 Remove practice of assigning random const pointers to device id.
1296
1297 This is not required as cache code already checks driver id as well.
1298
1299 2013-12-16 Vladimir Serbinenko <phcoder@gmail.com>
1300
1301 * include/grub/x86_64/types.h: Define sizeof (long) as 4 when compiling
1302 with mingw.
1303
1304 2013-12-16 Vladimir Serbinenko <phcoder@gmail.com>
1305
1306 * include/grub/efi/api.h: Don't use call wrappers when compiled with
1307 mingw or cygwin as API already matches.
1308
1309 2013-12-16 Vladimir Serbinenko <phcoder@gmail.com>
1310
1311 * grub-core/lib/posix_wrap/errno.h: Undefine errno before redefining.
1312
1313 2013-12-16 Vladimir Serbinenko <phcoder@gmail.com>
1314
1315 * include/grub/efi/api.h: Define (u)intn_t based on pointer size and
1316 not on long.
1317
1318 2013-12-16 Vladimir Serbinenko <phcoder@gmail.com>
1319
1320 Handle X86_64_PC64 relocation.
1321
1322 Those are generated by some cygwin compilers.
1323
1324 2013-12-16 Vladimir Serbinenko <phcoder@gmail.com>
1325
1326 Determine the need for mingw-related stubs at compile time rather than
1327 using not very significant $target_os.
1328
1329 2013-12-16 Vladimir Serbinenko <phcoder@gmail.com>
1330
1331 * grub-core/genmod.sh.in: Strip before converting to ELF as strip
1332 may not work with ELF.
1333
1334 2013-12-16 Vladimir Serbinenko <phcoder@gmail.com>
1335
1336 Use unix functions for temporary files and special files on cygwin.
1337
1338 2013-12-16 Vladimir Serbinenko <phcoder@gmail.com>
1339
1340 Define functions explicitly rather than using --defsym in tests
1341 whenever possible. Respect locality in remaining cases.
1342
1343 2013-12-16 Vladimir Serbinenko <phcoder@gmail.com>
1344
1345 * grub-core/genmoddep.awk: Remove explicit getline < /dev/stdin.
1346
1347 2013-12-15 Andrey Borzenkov <arvidjaar@gmail.com>
1348
1349 * grub-core/osdep/windows/platform.c (grub_install_register_efi): Handle
1350 unlikely errors when getting EFI variables and make exhaustive search
1351 for all BootNNNN variables to find matching one.
1352
1353 2013-12-15 Ian Campbell <ijc@hellion.org.uk>
1354
1355 * grub-core/kern/uboot/init.c: Fix units of uboot timer.
1356
1357 2013-12-15 Vladimir Serbinenko <phcoder@gmail.com>
1358
1359 New functional test for sleep function.
1360
1361 This test allows to check sleep without qemu. Keep qemu version as
1362 well as functional test won't notice if all clocks are going too fast
1363 or too slow.
1364
1365 2013-12-15 Vladimir Serbinenko <phcoder@gmail.com>
1366
1367 Add explicit sysv_abi on amd64 asm routines.
1368
1369 2013-12-15 Vladimir Serbinenko <phcoder@gmail.com>
1370
1371 * grub-core/commands/efi/lsefisystab.c: Use %lld to show
1372 num_table_entries.
1373
1374 2013-12-15 Vladimir Serbinenko <phcoder@gmail.com>
1375
1376 * include/grub/test.h: Use gnu_printf rather than printf on GRUB
1377 functions.
1378
1379 2013-12-15 Vladimir Serbinenko <phcoder@gmail.com>
1380
1381 * grub-core/loader/i386/linux.c: Use grub_addr_t rather than long when
1382 appropriate.
1383
1384 2013-12-15 Vladimir Serbinenko <phcoder@gmail.com>
1385
1386 * grub-core/loader/i386/linux.c: Use %p rather than %lx for pointers.
1387
1388 2013-12-15 Vladimir Serbinenko <phcoder@gmail.com>
1389
1390 * grub-core/kern/elfXX.c: Use grub_addr_t rather than long when
1391 appropriate.
1392
1393 2013-12-15 Vladimir Serbinenko <phcoder@gmail.com>
1394
1395 * grub-core/disk/loopback.c: Use sequential IDs rather than pointer.
1396
1397 In case of quick removal of loopback and adding another one it may
1398 get same ID, confusing the cache system.
1399
1400 2013-12-15 Vladimir Serbinenko <phcoder@gmail.com>
1401
1402 * grub-core/commands/acpi.c: Use grub_addr_t rather than long when
1403 appropriate.
1404
1405 2013-12-15 Vladimir Serbinenko <phcoder@gmail.com>
1406
1407 * grub-core/kern/i386/coreboot/cbtable.c: Use char * arithmetic rather
1408 than converting to long.
1409
1410 2013-12-15 Vladimir Serbinenko <phcoder@gmail.com>
1411
1412 * grub-core/disk/cryptodisk.c: Rename "n" to "last_cryptodisk_id".
1413
1414 2013-12-15 Vladimir Serbinenko <phcoder@gmail.com>
1415
1416 * util/grub-mkimagexx.c (relocate_addresses): Display offset rather
1417 than almost useless pointer.
1418
1419 2013-12-15 Vladimir Serbinenko <phcoder@gmail.com>
1420
1421 Add gcc_struct to all packed structures when compiling with mingw.
1422
1423 Just "packed" doesn't always pack the way we expect.
1424
1425 2013-12-14 Vladimir Serbinenko <phcoder@gmail.com>
1426
1427 * include/grub/i386/coreboot/lbio.h: Add missing attribute (packed).
1428
1429 2013-12-14 Vladimir Serbinenko <phcoder@gmail.com>
1430
1431 * util/grub-pe2elf.c: Fix handling of .bss.
1432
1433 2013-12-14 Vladimir Serbinenko <phcoder@gmail.com>
1434
1435 Implement windows flavour of EFI install routines.
1436
1437 2013-12-14 Vladimir Serbinenko <phcoder@gmail.com>
1438
1439 * conf/Makefile.extra-dist: Adjust path to conf/i386-cygwin-img-ld.sc.
1440
1441 2013-12-14 Vladimir Serbinenko <phcoder@gmail.com>
1442
1443 Change grub_install_register_efi interface to pass GRUB device.
1444
1445 This allows grub_install_register_efi to request partition info
1446 directly.
1447
1448 2013-12-14 Vladimir Serbinenko <phcoder@gmail.com>
1449
1450 Workaround cygwin bug when using \\?\Volume{GUID} syntax.
1451
1452 2013-12-14 Vladimir Serbinenko <phcoder@gmail.com>
1453
1454 Do not use TCHAR string functions as they are not available on cygwin.
1455
1456 2013-12-14 Vladimir Serbinenko <phcoder@gmail.com>
1457
1458 Workaround windows bug when querying EFI system partition parameters.
1459
1460 2013-12-14 Vladimir Serbinenko <phcoder@gmail.com>
1461
1462 * grub-core/kern/i386/qemu/init.c (resource): Decrease struct size
1463 by using bitfields.
1464
1465 2013-12-14 Vladimir Serbinenko <phcoder@gmail.com>
1466
1467 * grub-core/boot/i386/qemu/boot.S: Add missing EXT_C.
1468
1469 2013-12-14 Vladimir Serbinenko <phcoder@gmail.com>
1470
1471 Make i386-* other than i386-pc compileable under cygwin.
1472
1473 2013-12-14 Vladimir Serbinenko <phcoder@gmail.com>
1474
1475 Fix definition of grub_efi_hard_drive_device_path. Take care that
1476 existing code would work even if by some reason bogus definition is
1477 used by EFI implementations.
1478
1479 2013-12-14 Vladimir Serbinenko <phcoder@gmail.com>
1480
1481 * grub-core/osdep/windows/hostdisk.c: Fix cygwin compilation.
1482
1483 2013-12-14 Vladimir Serbinenko <phcoder@gmail.com>
1484
1485 * grub-core/osdep/windows/blocklist.c: Add missing cast in printf
1486 invocation.
1487
1488 2013-12-14 Vladimir Serbinenko <phcoder@gmail.com>
1489
1490 * util/config.c: Remove trailing newline from distributor in simple
1491 parsing.
1492
1493 2013-12-14 Vladimir Serbinenko <phcoder@gmail.com>
1494
1495 * include/grub/efi/api.h: Rename protocol and interface to avoid
1496 conflict.
1497
1498 2013-12-14 Vladimir Serbinenko <phcoder@gmail.com>
1499
1500 * .gitignore: add .exe variants. add missing files. remove few outdated
1501 entries.
1502
1503 2013-12-14 Vladimir Serbinenko <phcoder@gmail.com>
1504
1505 * grub-core/osdep/exec.c: Use unix version on cygwin.
1506
1507 2013-12-13 Vladimir Serbinenko <phcoder@gmail.com>
1508
1509 Implement multiboot2 EFI BS specification.
1510
1511 2013-12-11 Vladimir Serbinenko <phcoder@gmail.com>
1512
1513 * grub-core/normal/charset.c: Fix premature line wrap and crash.
1514 Crash happened only in some cases like a string starting at the
1515 half of the screen of same length.
1516
1517 2013-12-11 Vladimir Serbinenko <phcoder@gmail.com>
1518
1519 * include/grub/efiemu/efiemu.h: Sync configuration table declaration
1520 with EFI counterpart.
1521
1522 2013-12-11 Vladimir Serbinenko <phcoder@gmail.com>
1523
1524 Propagate the EFI commits to x86-efi specific parts.
1525
1526 2013-12-11 Vladimir Serbinenko <phcoder@gmail.com>
1527
1528 * grub-core/commands/efi/lssal.c: Fix terminating condition.
1529
1530 2013-12-11 Vladimir Serbinenko <phcoder@gmail.com>
1531
1532 Introduce grub_efi_packed_guid and use it where alignment is not
1533 guaranteed.
1534
1535 2013-12-11 Vladimir Serbinenko <phcoder@gmail.com>
1536
1537 * include/grub/efi/api.h (grub_efi_device_path): Define length as
1538 unaligned u16 rather than u8[2].
1539
1540 2013-12-11 Vladimir Serbinenko <phcoder@gmail.com>
1541
1542 * grub-core/kern/ia64/dl.c (grub_arch_dl_relocate_symbols): Add checks
1543 for relocation range.
1544
1545 2013-12-11 Vladimir Serbinenko <phcoder@gmail.com>
1546
1547 * grub-core/kern/ia64/dl.c (grub_arch_dl_relocate_symbols): Handle
1548 non-function pcrel21b relocation. It happens with .text.unlikely
1549 section.
1550
1551 2013-12-10 Leif Lindholm <leif.lindholm@linaro.org>
1552
1553 * make MAX_USABLE_ADDRESS platform-specific
1554 * grub-core/kern/efi/mm.c: add Vladimir's new BYTES_TO_PAGES_DOWN macro.
1555
1556 2013-12-10 Leif Lindholm <leif.lindholm@linaro.org>
1557
1558 * grub-core/lib/fdt.c: change memcpy => grub_memcpy
1559
1560 2013-12-09 Jon McCune <jonmccune@google.com>
1561
1562 * Add --no-rs-codes flag to optionally disable reed-solomon codes
1563 in grub-install and grub-bios-setup for x86 BIOS targets.
1564
1565 2013-12-09 Vladimir Serbinenko <phcoder@gmail.com>
1566
1567 Add missing compile and link options for sparc64-emu.
1568
1569 2013-12-09 Vladimir Serbinenko <phcoder@gmail.com>
1570
1571 Implement sparc64 trampolines (needed for sparc64-emu).
1572
1573 2013-12-09 Vladimir Serbinenko <phcoder@gmail.com>
1574
1575 * grub-core/kern/sparc64/dl.c (grub_arch_dl_relocate_symbols): Check
1576 range of R_SPARC_HI22.
1577 Implement R_SPARC_LM22.
1578
1579 2013-12-09 Vladimir Serbinenko <phcoder@gmail.com>
1580
1581 * grub-core/kern/powerpc/dl_helper.c (grub_arch_dl_get_tramp_got_size):
1582 Do not explicitly check for symbol table as it's already checked in
1583 platform-independent layer.
1584
1585 2013-12-09 Vladimir Serbinenko <phcoder@gmail.com>
1586
1587 * grub-core/kern/emu/cache.c [__ia64__]: Use our cache cleaning routine
1588 on ia64 as __clear_cache is a dummy on ia64.
1589
1590 2013-12-09 Vladimir Serbinenko <phcoder@gmail.com>
1591
1592 * grub-core/kern/ia64/dl_helper.c (grub_ia64_dl_get_tramp_got_size):
1593 Do not explicitly check for symbol table as it's already checked in
1594 platform-independent layer.
1595
1596 2013-12-09 Colin Watson <cjwatson@ubuntu.com>
1597
1598 * util/grub-mkconfig.in: Add missing newline to output.
1599
1600 2013-12-08 Vladimir Serbinenko <phcoder@gmail.com>
1601
1602 * grub-core/kern/ia64/efi/init.c (grub_arch_sync_caches): Move to ...
1603 * grub-core/kern/ia64/cache.c (grub_arch_sync_caches): ... here.
1604
1605 2013-12-08 Vladimir Serbinenko <phcoder@gmail.com>
1606
1607 * grub-core/kern/emu/main.c: Silence missing prototypes to allow emu
1608 compilation with GCC <= 4.2.
1609 * grub-core/kern/emu/argp_common.c: Likewise.
1610
1611 2013-12-08 Vladimir Serbinenko <phcoder@gmail.com>
1612
1613 * include/grub/kernel.h [__sparc__]: Restrict sparc64-ieee1275 to
1614 right platform rather than leaking to sparc64-emu.
1615
1616 2013-12-08 Vladimir Serbinenko <phcoder@gmail.com>
1617
1618 * grub-core/osdep/windows/emuconsole.c: Remove unsigned comparison >= 0.
1619 But ensure that the variables in question are indeed unsigned.
1620
1621 2013-12-08 Vladimir Serbinenko <phcoder@gmail.com>
1622
1623 * grub-core/kern/emu/lite.c: Add missing include of ../ia64/dl_helper.c.
1624
1625 2013-12-08 Vladimir Serbinenko <phcoder@gmail.com>
1626
1627 Remove grub_memalign on emu.
1628
1629 2013-12-08 Vladimir Serbinenko <phcoder@gmail.com>
1630
1631 * grub-core/kern/ia64/efi/init.c: Fix alignment code so it doesn't
1632 truncate incomplete lines but instead flushes them.
1633
1634 2013-12-08 Vladimir Serbinenko <phcoder@gmail.com>
1635
1636 Move OS-dependent mprotect for module loading to grub-core/osdep/*/dl.c
1637 and implement windows variant.
1638
1639 2013-12-08 Vladimir Serbinenko <phcoder@gmail.com>
1640
1641 Fix mips-emu compilation.
1642
1643 2013-12-08 Vladimir Serbinenko <phcoder@gmail.com>
1644
1645 * configure.ac: Check for freetype library usability.
1646
1647 2013-12-08 Vladimir Serbinenko <phcoder@gmail.com>
1648
1649 Make arm-emu work.
1650
1651 2013-12-07 Vladimir Serbinenko <phcoder@gmail.com>
1652
1653 * util/grub-mkfont.c: Replace stpcpy with grub_stpcpy.
1654
1655 2013-12-07 Andrey Borzenkov <arvidjaar@gmail.com>
1656
1657 * docs/grub.texi (Environment): Update color_normal and color_highlight
1658 defaults (light-gray instead of white).
1659
1660 2013-12-07 Andrey Borzenkov <arvidjaar@gmail.com>
1661
1662 * grub-core/normal/main.c (INIT): Set default color to light-gray
1663 to match GRUB_TERM_DEFAULT_NORMAL_COLOR (i.e. rescue mode), Linux
1664 and apparently BIOS defaults.
1665
1666 2013-12-07 Vladimir Serbinenko <phcoder@gmail.com>
1667
1668 Transform -C option to grub-mkstandalone to --core-compress available
1669 in all grub-install flavours.
1670
1671 2013-12-07 Vladimir Serbinenko <phcoder@gmail.com>
1672
1673 Merge GRUBFS and GRUB_FS variables.
1674
1675 2013-12-07 Andrey Borzenkov <arvidjaar@gmail.com>
1676
1677 Revert commit 69ca97c820, it caused failures when using OS device name
1678 in grub-install. Instead just strip off parenthesis in grub-install
1679 if (hdX) was passed.
1680
1681 2013-12-07 Andrey Borzenkov <arvidjaar@gmail.com>
1682
1683 * util/grub-install.c (push_partmap_module): Add helper to convert
1684 partmap names to module names and use it in probe_mods(). Fixes
1685 failure to find partmap modules in diskfilter case.
1686
1687 2013-12-07 Vladimir Serbinenko <phcoder@gmail.com>
1688
1689 * configure.ac: Make unifont mandatory on coreboot.
1690
1691 2013-12-07 Vladimir Serbinenko <phcoder@gmail.com>
1692
1693 * configure.ac: Skip unifont 6.3 pcf and bdf.
1694
1695 2013-12-07 Vladimir Serbinenko <phcoder@gmail.com>
1696
1697 * Makefile.am: Remove partial font files if generation failed.
1698
1699 2013-12-07 Andrey Borzenkov <arvidjaar@gmail.com>
1700
1701 * util/misc.c (grub_qsort_strcmp): Add qsort helper function to sort
1702 strings.
1703 * include/grub/util/misc.h: Define it ...
1704 * util/grub-install.c (device_map_check_duplicates): ... and use it.
1705
1706 2013-12-07 Andrey Borzenkov <arvidjaar@gmail.com>
1707
1708 * util/grub.d/30_os-prober.in: Fix use of grub-probe instead of
1709 ${grub_probe}.
1710
1711 2013-12-06 Vladimir Serbinenko <phcoder@gmail.com>
1712
1713 Don't add -mlong-calls when compiling with clang.
1714
1715 2013-12-06 Vladimir Serbinenko <phcoder@gmail.com>
1716
1717 * configure.ac: Fix a typo.
1718
1719 2013-12-06 Vladimir Serbinenko <phcoder@gmail.com>
1720
1721 Revamp relocation handling.
1722
1723 Move more code to common dl.c. Add missing veneers for arm and arm64.
1724 Decreases kernel size by 70 bytes on i386-pc (40-50 compressed)
1725
1726 2013-12-05 Vladimir Serbinenko <phcoder@gmail.com>
1727
1728 * util/grub-mkimagexx.c: Fix reloc section generation for ia64.
1729
1730 2013-12-05 Mike Gilbert <floppym@gentoo.org>
1731
1732 * INSTALL: Raise minimum python version to 2.6.
1733 * gentpl.py: Use python3-style print function.
1734
1735 2013-12-05 Vladimir Serbinenko <phcoder@gmail.com>
1736
1737 * util/grub-install.c: Mention Boot* variable.
1738
1739 2013-12-05 Colin Watson <cjwatson@ubuntu.com>
1740
1741 * grub-core/osdep/linux/hostdisk.c
1742 (grub_util_find_partition_start_os): Initialise start to avoid
1743 spurious compiler warning.
1744
1745 2013-12-05 Colin Watson <cjwatson@ubuntu.com>
1746
1747 On Linux, read partition start offsets from sysfs if possible, to
1748 cope with block device drivers that don't implement HDIO_GETGEO.
1749 Fixes Ubuntu bug #1237519.
1750
1751 * grub-core/osdep/linux/hostdisk.c (sysfs_partition_path): New
1752 function.
1753 (sysfs_partition_start): Likewise.
1754 (grub_util_find_partition_start_os): Try sysfs_partition_start
1755 before HDIO_GETGEO.
1756
1757 2013-12-05 Leif Lindholm <leif.lindholm@linaro.org>
1758
1759 * grub-core/kern/fdt.c: Update struct size when adding node.
1760
1761 2013-12-05 Vladimir Serbinenko <phcoder@gmail.com>
1762
1763 Handle unaligned .bss on sparc64.
1764
1765 Current code improperly assumes that both __bss_start and _end are
1766 aligned to 8-bytes. Eliminating this assumption and explicitly align
1767 modules.
1768
1769 2013-12-04 Vladimir Serbinenko <phcoder@gmail.com>
1770
1771 * grub-core/boot/sparc64/ieee1275/boot.S [CDBOOT]: Move scratchpad
1772 so it doesn't land in the middle of loaded image.
1773
1774 2013-12-04 Vladimir Serbinenko <phcoder@gmail.com>
1775
1776 * configure.ac: Move all warning options that may be absent in
1777 gcc >= 3.1 to optional.
1778
1779 Note: while this allows to compile with older GCC, official requirements
1780 remain the same and no support for older GCC.
1781
1782 2013-12-04 Colin Watson <cjwatson@ubuntu.com>
1783
1784 Copying the themes directory in grub-shell isn't
1785 parallel-test-friendly and breaks on the second test when the source
1786 directory is read-only (as in "make distcheck"). Instead, add a
1787 hidden --themes-directory option to grub-mkrescue et al, and use it
1788 in grub-shell.
1789
1790 2013-12-04 Vladimir Serbinenko <phcoder@gmail.com>
1791
1792 * conf/Makefile.common (CFLAGS_GNULIB): Remove -Wno-old-style-definition
1793 as it's no longer necessarry.
1794
1795 2013-12-04 Vladimir Serbinenko <phcoder@gmail.com>
1796
1797 * configure.ac: Allow compilation with older GCC for ARM.
1798
1799 2013-12-04 Vladimir Serbinenko <phcoder@gmail.com>
1800
1801 * configure.ac: Add -no-integrated-as if {addme|ame} isn't supported.
1802 * INSTALL: Note that GRUBwas successfully compiled with clang 3.2 for
1803 ppc.
1804
1805 2013-12-04 Vladimir Serbinenko <phcoder@gmail.com>
1806
1807 * grub-core/kern/emu/main.c: Ignore missing prototype for main.
1808
1809 2013-12-04 Vladimir Serbinenko <phcoder@gmail.com>
1810
1811 Pass font config to config.h and not by TARGET_CFLAGS as adding
1812 arguments doesn't work if TARGET_CFLAGS is specified on command
1813 line.
1814
1815 2013-12-04 Vladimir Serbinenko <phcoder@gmail.com>
1816
1817 * configure.ac: Add -Wvla if compiler supports it.
1818
1819 2013-12-04 Vladimir Serbinenko <phcoder@gmail.com>
1820
1821 * grub-core/osdep/windows/emuconsole.c (grub_console_putchar):
1822 Remove variable length arrays.
1823 * grub-core/term/efi/console.c (grub_console_putchar): Likewise.
1824
1825 2013-12-04 Vladimir Serbinenko <phcoder@gmail.com>
1826
1827 * grub-core/kern/i386/qemu/init.c: Remove variable length arrays.
1828
1829 2013-12-04 Vladimir Serbinenko <phcoder@gmail.com>
1830
1831 * include/grub/types.h: Declare all byteswaps as inline functions
1832 except compile-time ones.
1833
1834 Solves variable shadowing in constructions like
1835 cpu_to_le (le_to_cpu(x) + 1).
1836
1837 2013-12-04 Vladimir Serbinenko <phcoder@gmail.com>
1838
1839 * grub-core/kern/efi/efi.c: Remove variable length arrays.
1840
1841 2013-12-04 Vladimir Serbinenko <phcoder@gmail.com>
1842
1843 * grub-core/kern/uboot/init.c (uboot_timer_ms): Fix overflow after 71
1844 minutes.
1845
1846 2013-12-04 Vladimir Serbinenko <phcoder@gmail.com>
1847
1848 * grub-core/disk/ieee1275/ofdisk.c: Remove variable length arrays.
1849 * grub-core/net/drivers/ieee1275/ofnet.c: Likewise.
1850
1851 2013-12-03 Colin Watson <cjwatson@ubuntu.com>
1852
1853 * grub-core/Makefile.core.def (setjmp): Distribute
1854 lib/arm64/setjmp.S.
1855
1856 2013-12-03 Colin Watson <cjwatson@ubuntu.com>
1857
1858 Add a new timeout_style environment variable and a corresponding
1859 GRUB_TIMEOUT_STYLE configuration key for grub-mkconfig. This
1860 controls hidden-timeout handling more simply than the previous
1861 arrangements, and pressing any hotkeys associated with menu entries
1862 during the hidden timeout will now boot the corresponding menu entry
1863 immediately.
1864
1865 GRUB_HIDDEN_TIMEOUT=<non-empty> + GRUB_TIMEOUT=<non-zero> now
1866 generates a warning, and if it shows the menu it will do so as if
1867 the second timeout were not present. Other combinations are
1868 translated into reasonable equivalents.
1869
1870 Based loosely on work by Franz Hsieh. Fixes Ubuntu bug #1178618.
1871
1872 2013-12-02 Vladimir Serbinenko <phcoder@gmail.com>
1873
1874 * util/config.c: Add missing pointer adjustment.
1875 Reported by: qwertial
1876
1877 2013-11-30 Andrey Borzenkov <arvidjaar@gmail.com>
1878
1879 * grub-core/kern/arm64/dl_helper.c: Include grub/arm64/reloc.h
1880 directly, not via `cpu' link, to fix libgrub.pp generation.
1881
1882 2013-11-30 Leif Lindholm <leif.lindholm@linaro.org>
1883
1884 New port arm64-efi.
1885
1886 2013-11-30 Andrey Borzenkov <arvidjaar@gmail.com>
1887
1888 * docs/grub.texi (sleep): Document exit codes.
1889
1890 2013-11-30 Vladimir Serbinenko <phcoder@gmail.com>
1891
1892 Ensure that -mno-unaligned-access or some equivalent option is used.
1893
1894 2013-11-30 Vladimir Serbinenko <phcoder@gmail.com>
1895
1896 * grub-core/lib/libgcrypt/mpi/longlong.h: Fix compilation error with
1897 -march=armv3.
1898
1899 2013-11-30 Vladimir Serbinenko <phcoder@gmail.com>
1900
1901 Remove leftover GRUB_IA64_DL_TRAMP_SIZE.
1902
1903 2013-11-29 Colin Watson <cjwatson@ubuntu.com>
1904
1905 * docs/grub-dev.texi (Font Metrics): Exclude @image command from DVI
1906 builds, since we don't have an EPS version of font_char_metrics.png.
1907 Add leading dot to image extension per the Texinfo documentation.
1908
1909 2013-11-29 Colin Watson <cjwatson@ubuntu.com>
1910
1911 * util/grub-gen-asciih.c: Include FT_SYNTHESIS_H rather than
1912 <freetype/ftsynth.h>, fixing build with FreeType 2.5.1.
1913 * util/grub-gen-widthspec.c: Likewise.
1914 * util/grub-mkfont.c: Likewise.
1915
1916 2013-11-29 Andrey Borzenkov <arvidjaar@gmail.com>
1917
1918 * util/grub-setup.c (main): Move parsing of (hdX) syntax to ...
1919 * util/setup.c (SETUP): ... here. Fixes regression: grub-install
1920 failed to install on (hdX).
1921 * util/grub-setup.c (get_device_name): Remove, not needed after
1922 above change.
1923
1924 2013-11-29 Vladimir Serbinenko <phcoder@gmail.com>
1925
1926 * grub-core/kern/emu/hostfs.c (is_dir): Remove variable length arrays.
1927
1928 2013-11-29 Vladimir Serbinenko <phcoder@gmail.com>
1929
1930 * util/grub-fstest.c: Remove variable length arrays.
1931
1932 2013-11-29 Vladimir Serbinenko <phcoder@gmail.com>
1933
1934 * grub-core/osdep/linux/ofpath.c: Check return value of read.
1935
1936 2013-11-29 Vladimir Serbinenko <phcoder@gmail.com>
1937
1938 * util/mkimage.c (grub_install_generate_image): Use grub_crypto_hash for
1939 computing crc32 rather than handling with md fundtions directly.
1940
1941 2013-11-29 Vladimir Serbinenko <phcoder@gmail.com>
1942
1943 * util/mkimage.c (grub_install_generate_image): Use grub_crypto_hash for
1944 checking fwstart.img rather than md fundtions directly.
1945
1946 2013-11-29 Vladimir Serbinenko <phcoder@gmail.com>
1947
1948 * util/grub-mkrescue.c (main): Check that fread succeeded.
1949
1950 2013-11-29 Vladimir Serbinenko <phcoder@gmail.com>
1951
1952 * conf/Makefile.common: Remove -mexplicit-relocs and
1953 -DUSE_ASCII_FALLBACK on yeeloong.
1954
1955 -DUSE_ASCII_FALLBACK is already added by font snippets.
1956 -mexplicit-relocs isn't needed is compiler/assemblera are
1957 configured properly.
1958 If they're not we shouldn't attempt to fix it by ourselves.
1959 Binary compare between before and after shows no difference.
1960
1961 2013-11-29 Vladimir Serbinenko <phcoder@gmail.com>
1962
1963 * grub-core/Makefile.core.def: Remove libgnulib.a and use its
1964 sources in dependencies directly.
1965
1966 This was the only instance of "library" in core config. A bug was
1967 reported that -fno-stack-protector wasn't passed to it. Instead of
1968 figuring out why it failed just remove this construction used
1969 needlessly.
1970
1971 2013-11-29 Vladimir Serbinenko <phcoder@gmail.com>
1972
1973 * grub-core/osdep/unix/password.c (grub_password_get): Check that
1974 fgets succeeded.
1975
1976 2013-11-27 Francesco Lavra <francescolavra.fl@gmail.com>
1977
1978 * docs/grub.texi (ls): Fix command description in case of a device name
1979 passed as argument.
1980
1981 2013-11-27 Vladimir Serbinenko <phcoder@gmail.com>
1982
1983 Eliminate variable length arrays in grub_vsnprintf_real.
1984
1985 A bit tricky because this function has to continue to work without
1986 heap for short strings. Fixing prealloc to 32 arguments is reasonable
1987 but make all stack references use 32-bit offset rather than 8-bit one.
1988 So split va_args preparsing to separate function and put the prealloc
1989 into the caller.
1990
1991 2013-11-27 Vladimir Serbinenko <phcoder@gmail.com>
1992
1993 Introduce grub_util_file_sync and use it instead of fsync(fileno(f)).
1994 Fixes build for windows.
1995
1996 2013-11-27 Vladimir Serbinenko <phcoder@gmail.com>
1997
1998 * gentpl.py: Don't generate platform-dependent conditionals for
1999 platform-independent targets.
2000
2001 2013-11-27 Colin Watson <cjwatson@ubuntu.com>
2002
2003 * grub-core/osdep/unix/exec.c (grub_util_exec_redirect): Remove
2004 references to mdadm from otherwise generic code.
2005 (grub_util_exec_pipe): Likewise.
2006 (grub_util_exec_pipe_stderr): Likewise.
2007 * grub-core/osdep/unix/getroot.c (grub_util_pull_lvm_by_command):
2008 This function calls vgs, not mdadm; adjust variable names
2009 accordingly.
2010
2011 2013-11-27 Colin Watson <cjwatson@ubuntu.com>
2012
2013 Generate Makefile.*.am directly from gentpl.py, eliminating the use
2014 of Autogen. The Autogen definitions files remain intact as they
2015 offer a useful abstraction.
2016
2017 2013-11-27 Colin Watson <cjwatson@ubuntu.com>
2018
2019 Add grub_util_disable_fd_syncs call to turn grub_util_fd_sync calls
2020 into no-ops, and use it in programs that copy files but do not need
2021 to take special care to sync writes (grub-mknetdir, grub-rescue,
2022 grub-mkstandalone).
2023
2024 2013-11-26 Colin Watson <cjwatson@ubuntu.com>
2025
2026 * tests/util/grub-fs-tester.in: Execute xorriso from $PATH rather
2027 than hardcoding /usr/local/bin/xorriso.
2028
2029 2013-11-26 Vladimir Serbinenko <phcoder@gmail.com>
2030
2031 Add PCI command activation to all PCI drivers as required for coreboot
2032 and maybe some other firmwares.
2033
2034 2013-11-26 Vladimir Serbinenko <phcoder@gmail.com>
2035
2036 * grub-core/Makefile.am: Reduce gratuituous differences between Apple
2037 and non-Apple variants of efiemu compile.
2038
2039 2013-11-25 Andrey Borzenkov <arvidjaar@gmail.com>
2040
2041 * configure.ac: Add explicit check for linking format of
2042 efiemu64; save it as EFIEMU64_LINK_FORMAT.
2043 * grub-core/Makefile.am: Use EFIEMU64_LINK_FORMAT instead of
2044 hardcoding linking format.
2045
2046 2013-11-25 Vladimir Serbinenko <phcoder@gmail.com>
2047
2048 * util/grub-mknetdir.c: Look for platform directories under pkglibdir
2049 and not pkgdatadir.
2050
2051 2013-11-25 Colin Watson <cjwatson@ubuntu.com>
2052 2013-11-25 Vladimir Serbinenko <phcoder@gmail.com>
2053
2054 Add a --locale-directory option to grub-install and related tools.
2055
2056 * include/grub/util/install.h (GRUB_INSTALL_OPTIONS): Add
2057 --locale-directory option.
2058 (enum grub_install_options): Add
2059 GRUB_INSTALL_OPTIONS_LOCALE_DIRECTORY.
2060 * util/grub-install-common.c (grub_install_help_filter): Handle
2061 GRUB_INSTALL_OPTIONS_LOCALE_DIRECTORY.
2062 (grub_install_parse): Likewise.
2063 (get_localedir): New function to check for a user-provided option
2064 before trying grub_util_get_localedir.
2065 (copy_locales): Use get_localedir rather than
2066 grub_util_get_localedir. Handle differing locale directory layouts.
2067 (grub_install_copy_files): Likewise.
2068
2069 2013-11-25 Vladimir Serbinenko <phcoder@gmail.com>
2070
2071 * grub-core/osdep/unix/platform.c (get_ofpathname): Trim ending newline.
2072 Don't rely on PATH_MAX.
2073
2074 2013-11-25 Vladimir Serbinenko <phcoder@gmail.com>
2075
2076 * grub-core/genmoddep.awk: Use more portable && rather than and.
2077
2078 2013-11-24 Vladimir Serbinenko <phcoder@gmail.com>
2079
2080 * grub-core/kern/i386/pc/startup.S [__APPLE__]: Create _edata by placing
2081 an object after data. While it doesn't seem right solution, it
2082 works well enough and OSX isn't main compilation platform.
2083
2084 2013-11-24 Vladimir Serbinenko <phcoder@gmail.com>
2085
2086 * gentpl.py: Add -ed2016 in order to make objconv accept our binary.
2087 While it doesn't seem right solution, it works well enough and
2088 OSX isn't main compilation platform.
2089
2090 2013-11-24 Vladimir Serbinenko <phcoder@gmail.com>
2091
2092 * configure.ac: Add -static to LDFLAGS when using apple linker to
2093 prevent it from pulling in dynamic linker.
2094
2095 2013-11-24 Vladimir Serbinenko <phcoder@gmail.com>
2096
2097 Apple assembly doesn't handle symbol arithmetic well. So define an
2098 offset symbol in boot.S and use it.
2099
2100 2013-11-24 Vladimir Serbinenko <phcoder@gmail.com>
2101
2102 Apple assembly doesn't handle symbol arithmetic well. So instead
2103 of getting addres of kernel_sector + 4 define kernel_sector_high.
2104 It also makes code more readable.
2105
2106 2013-11-24 Vladimir Serbinenko <phcoder@gmail.com>
2107
2108 With Apple assembly in .macro environvemnt you have to use $$ instead
2109 of $. So introduce new preprocessor macro MACRO_DOLLAR(x) which expands
2110 to $$x on Apple and to $x on everything else.
2111
2112 2013-11-24 Vladimir Serbinenko <phcoder@gmail.com>
2113
2114 * grub-core/Makefile.am: Use correct TARGET_OBJCONV rather than
2115 OBJCONV.
2116
2117 2013-11-24 Vladimir Serbinenko <phcoder@gmail.com>
2118
2119 * grub-core/gdb/i386/machdep.S: Use xorl %eax, %eax on both Apple
2120 and non-Apple. This instruction is shorter and faster,
2121 so no reason not to use it on both.
2122
2123 2013-11-24 Vladimir Serbinenko <phcoder@gmail.com>
2124
2125 * grub-core/lib/reed_solomon.c: Use section _text, _text rather than
2126 .text when compiling for Apple.
2127
2128 2013-11-24 Vladimir Serbinenko <phcoder@gmail.com>
2129
2130 * grub-core/term/arc/console.c: Add missing cast to silence warning.
2131
2132 2013-11-24 Vladimir Serbinenko <phcoder@gmail.com>
2133
2134 * grub-core/boot/i386/pc/boot.S: Fix floppy probe. Due to missing
2135 %dx restore the probe worked on non-existant drive. Reorganize the
2136 code a little bit to free 2 bytes necessary for push/pop.
2137
2138 2013-11-23 Vladimir Serbinenko <phcoder@gmail.com>
2139
2140 * grub-core/kern/mips/arc/init.c (grub_machine_get_bootlocation):
2141 Add missing cast to silence warning.
2142
2143 2013-11-23 Keshav Padram Amburay <the.ridikulus.rat@gmail.com>
2144
2145 * util/grub-install.c (update_nvram): Support --no-nvram flag
2146 for EFI targets.
2147
2148 2013-11-23 Vladimir Serbinenko <phcoder@gmail.com>
2149
2150 * INSTALL: Add note about sparc64/ia64 with clang (unsupported).
2151
2152 2013-11-23 Vladimir Serbinenko <phcoder@gmail.com>
2153
2154 * util/garbage-gen.c: Add missing include of sys/time.h.
2155
2156 2013-11-23 Vladimir Serbinenko <phcoder@gmail.com>
2157
2158 Don't add -mflush-func if it's not supported by compiler.
2159
2160 2013-11-23 Vladimir Serbinenko <phcoder@gmail.com>
2161
2162 Move common BIOS/coreboot memory map declarations to
2163 include/grub/i386/memory_raw.h and eliminate duplicate declarations.
2164
2165 2013-11-22 Andrey Borzenkov <arvidjaar@gmail.com>
2166
2167 * Makefile.am: Add util/garbage-gen.c to EXTRA_DIST.
2168
2169 2013-11-22 Vladimir Serbinenko <phcoder@gmail.com>
2170
2171 * INSTALL: Document why older clang versions aren't appropriate.
2172
2173 2013-11-22 Vladimir Serbinenko <phcoder@gmail.com>
2174
2175 * INSTALL: Document about clang for mips.
2176
2177 2013-11-22 Vladimir Serbinenko <phcoder@gmail.com>
2178
2179 * grub-core/lib/libgcrypt/mpi/longlong.h: Use C version with mips
2180 clang.
2181
2182 2013-11-22 Vladimir Serbinenko <phcoder@gmail.com>
2183
2184 Add *-xen to the list of grub-install-common platforms.
2185
2186 2013-11-22 Vladimir Serbinenko <phcoder@gmail.com>
2187
2188 * configure.ac: Do not enforce -mcmodel=large. It's not necessarry with
2189 3 last commits.
2190
2191 2013-11-22 Vladimir Serbinenko <phcoder@gmail.com>
2192
2193 * grub-core/kern/xen/init.c: Do not map more pages than we can address.
2194
2195 2013-11-22 Vladimir Serbinenko <phcoder@gmail.com>
2196
2197 * grub-core/kern/efi/mm.c: Limit allocations to 2GiB when not compiling
2198 with -mcmodel=large.
2199
2200 2013-11-22 Vladimir Serbinenko <phcoder@gmail.com>
2201
2202 * grub-core/kern/x86_64/dl.c (grub_arch_dl_relocate_symbols): Add
2203 range-checking for 32-bit quantities.
2204
2205 2013-11-22 Vladimir Serbinenko <phcoder@gmail.com>
2206
2207 * configure.ac: Compile with -fPIC when compiling with clang on
2208 mips.
2209
2210 2013-11-22 Vladimir Serbinenko <phcoder@gmail.com>
2211
2212 * configure.ac: Add -no-integrated-as on mips(el) to TARGET_CCASFLAGS
2213 when compiling with clang.
2214
2215 2013-11-22 Vladimir Serbinenko <phcoder@gmail.com>
2216
2217 clang emits calls to abort () under some unknown conditions.
2218 Export abort () when compiling with clang.
2219
2220 2013-11-22 Vladimir Serbinenko <phcoder@gmail.com>
2221
2222 * docs/grub-dev.texi: Document stack and heap sizes.
2223
2224 2013-11-22 Vladimir Serbinenko <phcoder@gmail.com>
2225
2226 * include/grub/i386/pc/memory.h: Decrease
2227 GRUB_MEMORY_MACHINE_SCRATCH_SIZE and increase
2228 GRUB_MEMORY_MACHINE_PROT_STACK_SIZE.
2229 The binary doesn't change (checked). It's more to better reflect actual
2230 usage.
2231
2232 2013-11-22 Vladimir Serbinenko <phcoder@gmail.com>
2233
2234 * grub-core/disk/i386/pc/biosdisk.c (grub_biosdisk_open): Ensure
2235 at compile time that enough of scratch size is available.
2236
2237 2013-11-22 Vladimir Serbinenko <phcoder@gmail.com>
2238
2239 * grub-core/kern/x86_64/efi/callwrap.S: Fix stack alignment.
2240 Previously we misaligned stack by 8 in startup.S and compensated
2241 for it in callwrap.S. According to ABI docs (EFI and sysv amd64)
2242 right behaviour is to align stack in startup.S and keep it aligned
2243 in callwrap.S. startup.S part was committed few commits before. This
2244 takes care of callwrap.S.
2245 Reported by: Gary Lin.
2246
2247 2013-11-22 Vladimir Serbinenko <phcoder@gmail.com>
2248
2249 * grub-core/boot/mips/startup_raw.S: Handle the case of gap between
2250 .data and .bss. May happen if compiler and assembly use different
2251 alignment.
2252
2253 2013-11-22 Vladimir Serbinenko <phcoder@gmail.com>
2254
2255 On MIPS handle got16 relocations to local symbols in an ABI-compliant
2256 way.
2257
2258 2013-11-22 Vladimir Serbinenko <phcoder@gmail.com>
2259
2260 Add support for a new magic symbol _gp_disp on mips to handle PIC
2261 binaries.
2262
2263 2013-11-22 Vladimir Serbinenko <phcoder@gmail.com>
2264
2265 Use $t9 for indirect calls from asm to C as PIC ABI requires.
2266
2267 2013-11-22 Vladimir Serbinenko <phcoder@gmail.com>
2268
2269 Remove -march=mips3 from TARGET_CCASFLAGS as it creates linking problem
2270 when rest of GRUB is compiled for hisher stepping. Instead use
2271 .set mips3/.set mips1 around cache and sync opcodes.
2272
2273 2013-11-21 Vladimir Serbinenko <phcoder@gmail.com>
2274
2275 Unify GOT/trampoline handling between PPC, MIPS and IA64 as they
2276 do essentially the same thing, do it in similar way.
2277
2278 2013-11-21 Colin Watson <cjwatson@ubuntu.com>
2279
2280 * util/grub-mkrescue.c (main): If a source directory is not
2281 specified, read platform-specific files from subdirectories of
2282 pkglibdir, not pkgdatadir.
2283
2284 2013-11-21 Colin Watson <cjwatson@ubuntu.com>
2285
2286 * grub-core/normal/progress.c: Remove unused file.
2287
2288 2013-11-20 Vladimir Serbinenko <phcoder@gmail.com>
2289
2290 * grub-core/lib/crypto.c (grub_crypto_hash): Remove variable length
2291 array.
2292
2293 2013-11-20 Vladimir Serbinenko <phcoder@gmail.com>
2294
2295 * util/grub-mkconfig.in: Say explicit "grub configuration" rather
2296 than grub.cfg.
2297
2298 2013-11-20 Vladimir Serbinenko <phcoder@gmail.com>
2299
2300 * coreboot.cfg: Add missing file.
2301
2302 2013-11-19 Vladimir Serbinenko <phcoder@gmail.com>
2303
2304 * Makefile.am: Allow STRIP to be empty when creating windowszip.
2305
2306 2013-11-19 Axel Kellermann <axel.kellermann@gmx.de>
2307
2308 * util/grub.d/30_os-prober.in: Add GRUB_OS_PROBER_SKIP_LIST to
2309 selectively skipping systems.
2310
2311 2013-11-19 Colin Watson <cjwatson@ubuntu.com>
2312
2313 * Makefile.util.def (grub-mkimage): Add
2314 grub-core/osdep/aros/config.c to extra_dist.
2315 * conf/Makefile.extra-dist (EXTRA_DIST): Add docs/autoiso.cfg,
2316 docs/osdetect.cfg, grub-core/gnulib-fix-null-deref.diff,
2317 grub-core/gnulib-fix-width.diff, grub-core/gnulib-no-abort.diff, and
2318 grub-core/gnulib-no-gets.diff.
2319
2320 2013-11-19 Vladimir Serbinenko <phcoder@gmail.com>
2321
2322 Add automated filesystem checking based on scripts I've used now for
2323 quite some time locally. Most of the test require root so they are
2324 skipped when run without necessarry privelegies.
2325
2326 2013-11-19 Colin Watson <cjwatson@ubuntu.com>
2327
2328 * util/grub-install.c (main): Adjust info messages to match
2329 installed paths of grub-bios-setup and grub-sparc64-setup.
2330
2331 2013-11-19 Colin Watson <cjwatson@ubuntu.com>
2332
2333 * util/grub-install-common.c (copy_locales): Consistently use
2334 grub_util_get_localedir () rather than LOCALEDIR.
2335 (grub_install_copy_files): Likewise.
2336
2337 2013-11-19 Josh Triplett <josh@joshtriplett.org>
2338
2339 * grub-core/kern/x86_64/efi/startup.S (_start): Align the stack to a
2340 16-byte boundary, as required by the x86-64 ABI, before calling
2341 grub_main. In some cases, GCC emits code that assumes this
2342 alignment, which crashes if not aligned. The EFI firmware is also
2343 entitled to assume that stack alignment without checking.
2344
2345 2013-11-18 Josh Triplett <josh@joshtriplett.org>
2346
2347 * grub-core/mmap/efi/mmap.c (grub_mmap_register): Round up/down to
2348 4k page boundaries as expected by firmware rather than 1k
2349 boundaries.
2350 (grub_mmap_malign_and_register): Likewise.
2351
2352 2013-11-18 Vladimir Serbinenko <phcoder@gmail.com>
2353
2354 * tests/grub_func_test.in: Decrease RAM size to 512M. With less
2355 fragmentation 512M is enough.
2356
2357 2013-11-18 Vladimir Serbinenko <phcoder@gmail.com>
2358
2359 * grub-core/kern/mm.c (grub_real_malloc): Decrease cut-off of moving the
2360 pointer to 32K. This is the size of cache element which is the most
2361 common allocation >1K. This way the pointer is always around blocks
2362 of 32K and so we keep performance while decreasing fragmentation.
2363
2364 2013-11-18 Vladimir Serbinenko <phcoder@gmail.com>
2365
2366 * grub-core/kern/mm.c (grub_real_malloc): Don't update the pointer to
2367 current memory when allocating large chunks. This significantly
2368 decreases memory fragmentation.
2369
2370 2013-11-18 Colin Watson <cjwatson@ubuntu.com>
2371
2372 * tests/gzcompress_test.in: Skip if gzip is not installed (unlikely,
2373 but for symmetry).
2374 * tests/lzocompress_test.in: Skip if lzop is not installed.
2375 * tests/xzcompress_test.in: Skip if xz is not installed.
2376
2377 2013-11-18 Colin Watson <cjwatson@ubuntu.com>
2378
2379 * util/grub-mkrescue.c (main): Fix typo.
2380
2381 2013-11-18 Vladimir Serbinenko <phcoder@gmail.com>
2382
2383 * grub-core/kern/mips/qemu_mips/init.c (grub_machine_init): Update
2384 clock frequency to 200 MHz,
2385
2386 2013-11-18 Vladimir Serbinenko <phcoder@gmail.com>
2387
2388 * tests/util/grub-shell.in: Increase console size to 1024x1024.
2389
2390 2013-11-18 Vladimir Serbinenko <phcoder@gmail.com>
2391
2392 * Makefile.am (default_payload.elf): Add pata to loaded modules.
2393 Load config file from (cbfsdisk)/etc/grub.cfg.
2394
2395 2013-11-18 Vladimir Serbinenko <phcoder@gmail.com>
2396
2397 * util/grub-install-common.c (grub_install_copy_files): Fix module
2398 destination directory.
2399
2400 2013-11-18 Colin Watson <cjwatson@ubuntu.com>
2401
2402 * tests/util/grub-shell.in: Don't fail on emu platform if po/*.gmo
2403 files have not been built.
2404
2405 2013-11-18 Colin Watson <cjwatson@ubuntu.com>
2406
2407 * grub-core/osdep/unix/hostdisk.c (grub_util_make_temporary_file):
2408 Handle errors from mkstemp.
2409 (grub_util_make_temporary_dir): Handle errors from mkdtemp.
2410
2411 2013-11-18 Vladimir Serbinenko <phcoder@gmail.com>
2412
2413 * tests/util/grub-shell.in: Use -cdrom and don't force cdrom
2414 on primary master on pseries.
2415
2416 2013-11-18 Vladimir Serbinenko <phcoder@gmail.com>
2417
2418 * grub-core/tests/videotest_checksum.c: Don't reload unifont if it's
2419 already loaded. This saves memory needed for tests,
2420
2421 2013-11-18 Vladimir Serbinenko <phcoder@gmail.com>
2422
2423 * util/grub-mkrescue.c (main): Fix a typo to make yeeloong part
2424 work again.
2425
2426 2013-11-18 Vladimir Serbinenko <phcoder@gmail.com>
2427
2428 * grub-core/term/terminfo.c (grub_cmd_terminfo): Fix a typo to make -g
2429 work again.
2430
2431 2013-11-18 Vladimir Serbinenko <phcoder@gmail.com>
2432
2433 * tests/util/grub-shell.in: For powerpc tests put the CD-ROM as primary
2434 master since with some combinations of qemu and firmware only primary
2435 IDE channel is available.
2436
2437 2013-11-18 Vladimir Serbinenko <phcoder@gmail.com>
2438
2439 * grub-core/tests/gfxterm_menu.c: Skip high-resolution tests on
2440 low-memory platforms where we don't have enough memory for them.
2441 * grub-core/tests/videotest_checksum.c: Likewise.
2442
2443 2013-11-18 Vladimir Serbinenko <phcoder@gmail.com>
2444
2445 * grub-core/tests/cmdline_cat_test.c: Don't reload unifont if it's
2446 already loaded. This saves memory needed for tests,
2447
2448 2013-11-18 Vladimir Serbinenko <phcoder@gmail.com>
2449
2450 Fix handling of install lists.
2451
2452 2013-11-18 Vladimir Serbinenko <phcoder@gmail.com>
2453
2454 * grub-core/lib/sparc64/setjmp.S: Force spilling of current window.
2455
2456 2013-11-18 Vladimir Serbinenko <phcoder@gmail.com>
2457
2458 On i386-ieee1275 we run in paged mode. So we need to explicitly map
2459 the devices before accessing them.
2460
2461 2013-11-18 Vladimir Serbinenko <phcoder@gmail.com>
2462
2463 * grub-core/lib/relocator.c (grub_mm_check_real): Accept const char *
2464 as file argument.
2465
2466 2013-11-18 Vladimir Serbinenko <phcoder@gmail.com>
2467
2468 * grub-core/normal/cmdline.c (grub_cmdline_get): Plug memory leak.
2469
2470 2013-11-18 Vladimir Serbinenko <phcoder@gmail.com>
2471
2472 * grub-core/kern/file.c (grub_file_open): Free file->name on failure.
2473 (grub_file_close): Free file->name.
2474
2475 2013-11-18 Vladimir Serbinenko <phcoder@gmail.com>
2476
2477 * grub-core/commands/verify.c (free_pk): Plug memory leak.
2478 (grub_load_public_key): Likewise.
2479 (grub_verify_signature_real): Likewise.
2480 (grub_cmd_verify_signature): Likewise.
2481
2482 2013-11-18 Vladimir Serbinenko <phcoder@gmail.com>
2483
2484 * grub-core/commands/legacycfg.c (grub_legacy_check_md5_password): Plug
2485 memory leak.
2486
2487 2013-11-18 Vladimir Serbinenko <phcoder@gmail.com>
2488
2489 * grub-core/lib/powerpc/setjmp.S (grub_setjmp): Save r31.
2490 (grub_longjmp): Restore r31.
2491 * include/grub/powerpc/setjmp.h (grub_jmp_buf): Reserve space for r31.
2492
2493 2013-11-18 Vladimir Serbinenko <phcoder@gmail.com>
2494
2495 * util/grub-mkrescue.c (make_image_fwdisk_abs): Insert all partmap
2496 modules to be in line with make_image_abs.
2497
2498 2013-11-18 Vladimir Serbinenko <phcoder@gmail.com>
2499
2500 * include/grub/mips/setjmp.h (grub_jmp_buf): Fix buffer size.
2501
2502 setjmp.S uses 12 entries but buffer is declared with only 11 entries.
2503
2504 2013-11-17 Ian Campbell <ijc@hellion.org.uk>
2505
2506 * grub-core/disk/uboot/ubootdisk.c: Include SCSI disks.
2507
2508 2013-11-17 Vladimir Serbinenko <phcoder@gmail.com>
2509
2510 * tests/grub_func_test.in: Increase memory reservation as on EFI we need
2511 to leave some memory to firmware.
2512
2513 2013-11-17 Vladimir Serbinenko <phcoder@gmail.com>
2514
2515 * grub-core/tests/cmdline_cat_test.c (cmdline_cat_test): Ignore errors
2516 of loading gfxterm as gfxterm is embed in kernel on some platforms.
2517 * grub-core/tests/gfxterm_menu.c (gfxterm_menu): Likewise.
2518 Load gfxmenu.
2519
2520 2013-11-17 Vladimir Serbinenko <phcoder@gmail.com>
2521
2522 * tests/core_compress_test.in: Use full arguments as grub-mkimage-extra
2523 now needs full arguments.
2524
2525 2013-11-17 Vladimir Serbinenko <phcoder@gmail.com>
2526
2527 * util/grub-mkrescue.c (main): Add trailing \n in
2528 .disk_label.contentDetails to be in line with previous shell script.
2529
2530 2013-11-17 Vladimir Serbinenko <phcoder@gmail.com>
2531
2532 * util/grub-mkrescue.c (main): Use right source file for bootinfo.txt.
2533
2534 2013-11-17 Vladimir Serbinenko <phcoder@gmail.com>
2535
2536 * util/grub-install-common.c (grub_install_parse): Recognize
2537 --compress=none like shell script did.
2538
2539 2013-11-17 Vladimir Serbinenko <phcoder@gmail.com>
2540
2541 * include/grub/misc.h: Replace check for __sparc64__ with one for
2542 __sparc__ as __sparc64__ isn't actually defined.
2543
2544 2013-11-17 Vladimir Serbinenko <phcoder@gmail.com>
2545
2546 * tests/util/grub-shell.in: Use escc-ch-b on powerpc. This is missing
2547 counterpart of fixing the naming of escc ports.
2548
2549 2013-11-17 Vladimir Serbinenko <phcoder@gmail.com>
2550
2551 * util/grub-install-common.c (platforms): Fix the order of entries and
2552 remove useless field val.
2553
2554 2013-11-16 Vladimir Serbinenko <phcoder@gmail.com>
2555
2556 * util/grub-install.c: Add new option --no-bootsector to skip
2557 installing of bootsector. Accept --grub-setup=/bin/true as
2558 backwards-compatible synonym.
2559
2560 2013-11-16 Andrey Borzenkov <arvidjaar@gmail.com>
2561
2562 * util/grub-install.c (device_map_check_duplicates): Fix incorrect
2563 order of qsort arguments (number of elements vs. element size).
2564
2565 2013-11-16 Vladimir Serbinenko <phcoder@gmail.com>
2566
2567 Rewrite grub-install, grub-mkrescue, grub-mkstandalone and grub-mknetdir
2568 the function of these files exceeds what can be sanely handled in shell
2569 in posix-comaptible way. Also writing it in C extends the functionality
2570 to non-UNIX-like OS and minimal environments.
2571
2572 2013-11-16 Vladimir Serbinenko <phcoder@gmail.com>
2573
2574 * grub-core/kern/arm/cache.S: Don't switch back to ARM mode when
2575 compiling to thumb2.
2576 * grub-core/kern/arm/cache_armv7.S: Likewise.
2577 * grub-core/lib/arm/setjmp.S: Likewise.
2578
2579 2013-11-16 Leif Lindholm <leif.lindholm@linaro.org>
2580
2581 * grub-core/kern/arm/uboot/startup.S: delete superflouous save of r8
2582 in grub_uboot_syscall
2583
2584 2013-11-16 Vladimir Serbinenko <phcoder@gmail.com>
2585
2586 Decrease stack usage in lexer.
2587
2588 We have only 92K of stack and using over 4K per frame is wasteful
2589
2590 * grub-core/script/yylex.l (yyalloc), (yyfree), (yyrealloc): Declare
2591 as macros so that compiler would remove useless structure on stack.
2592 Better solution would be to fix flex not to put this structure on
2593 the stack but flex is external program.
2594
2595 2013-11-16 Vladimir Serbinenko <phcoder@gmail.com>
2596
2597 Decrease stack usage in signature verification.
2598
2599 We have only 92K of stack and using over 4K per frame is wasteful
2600
2601 * grub-core/commands/verify.c (grub_load_public_key): Allocate on heap
2602 rather than stack.
2603 (grub_verify_signature_real): Likewise.
2604
2605 2013-11-16 Vladimir Serbinenko <phcoder@gmail.com>
2606
2607 Decrease stack usage in mdraid 0.9x.
2608
2609 We have only 92K of stack and using over 4K per frame is wasteful
2610
2611 * grub-core/disk/mdraid_linux.c (grub_mdraid_detect): Allocate on heap
2612 rather than stack.
2613
2614 2013-11-16 Vladimir Serbinenko <phcoder@gmail.com>
2615
2616 Decrease stack usage in BtrFS.
2617
2618 We have only 92K of stack and using over 4K per frame is wasteful
2619
2620 * grub-core/fs/btrfs.c (grub_btrfs_lzo_decompress): Allocate on heap
2621 rather than stack.
2622
2623 2013-11-16 Vladimir Serbinenko <phcoder@gmail.com>
2624
2625 Decrease stack usage in JFS.
2626
2627 We have only 92K of stack and using over 4K per frame is wasteful
2628
2629 * grub-core/fs/jfs.c (getblk): Allocate on heap rather than on
2630 stack. Note: this function is recursive.
2631 (grub_jfs_read_inode): Read only part we care about.
2632
2633 2013-11-16 Leif Lindholm <leif.lindholm@linaro.org>
2634
2635 * grub-core/kern/arm/uboot/startup.S: fix grub_uboot_syscall va_arg
2636 handling
2637
2638 2013-11-16 Andrey Borzenkov <arvidjaar@gmail.com>
2639
2640 * configure.ac: Restore -nostdlib for libgcc symbols tests.
2641
2642 2013-11-16 Andrey Borzenkov <arvidjaar@gmail.com>
2643
2644 * docs/grub.texi (Environment): Document cmdpath.
2645
2646 2013-11-16 Andrey Borzenkov <arvidjaar@gmail.com>
2647
2648 * grub-core/kern/mips/arc/init.c (grub_machine_get_bootlocation):
2649 Remove "unused" attribute from arguments, they are used.
2650
2651 2013-11-15 Colin Watson <cjwatson@debian.org>
2652
2653 * .gitignore: Only ignore grub-mk* at the top level.
2654
2655 2013-11-15 Colin Watson <cjwatson@ubuntu.com>
2656
2657 * util/grub-reboot.in (usage): Fix a typo.
2658
2659 2013-11-15 Vladimir Serbinenko <phcoder@gmail.com>
2660
2661 Replace libgcc version of ctz with our own.
2662
2663 On upcoming arm64 port libgcc ctz* are not usable in standalone
2664 environment. Since we need ctz* for this case and implementation is
2665 in C we may as well use it on all concerned platforms.
2666
2667 2013-11-14 Vladimir Serbinenko <phcoder@gmail.com>
2668
2669 * configure.ac: Probe for linking format rather than guessing it based
2670 on target_os.
2671
2672 2013-11-14 Vladimir Serbinenko <phcoder@gmail.com>
2673
2674 * grub-core/disk/xen/xendisk.c (grub_xendisk_fini): Set state to
2675 "1" prior to handoff.
2676
2677 Reported by: M A Young.
2678
2679 2013-11-14 Vladimir Serbinenko <phcoder@gmail.com>
2680
2681 * grub-core/kern/xen/init.c (grub_xenstore_write_file): Don't add
2682 \0 to all files.
2683
2684 Reported by: M A Young.
2685
2686 2013-11-14 Vladimir Serbinenko <phcoder@gmail.com>
2687
2688 * grub-core/osdep/bsd/hostdisk.c (grub_util_get_fd_size_os): Fix
2689 compilation on NetBSD.
2690
2691 2013-11-14 Vladimir Serbinenko <phcoder@gmail.com>
2692
2693 * acinclude.m4: Don't add -P on initial nm test.
2694
2695 Note: even though this patch postdates Andrey's it bears 14 Nov as
2696 date due to timezone difference.
2697
2698 2013-11-15 Andrey Borzenkov <arvidjaar@gmail.com>
2699
2700 * grub-core/Makefile.core.def (signature_test): Add missing
2701 tests/signatures.h.
2702
2703 2013-11-14 Colin Watson <cjwatson@ubuntu.com>
2704
2705 * util/grub-install_header: Set localedir here, since this file is
2706 where it's used.
2707 * util/grub-install.in: Remove setting of localedir.
2708 * util/grub-mkrescue.in: Likewise.
2709
2710 2013-11-14 Vladimir Serbinenko <phcoder@gmail.com>
2711
2712 * Makefile.am (default_payload.elf): Add uhci, ohci and usb_keyboard.
2713
2714 2013-11-14 Vladimir Serbinenko <phcoder@gmail.com>
2715
2716 * configure.ac: Move nm checks to the end.
2717 Call grub_PROG_NM_WORKS.
2718 * acinclude.m4: New check grub_PROG_NM_WORKS.
2719 Use $TARGET_CFLAGS -c when compiling test binary.
2720
2721 2013-11-14 Colin Watson <cjwatson@ubuntu.com>
2722
2723 * util/getroot.c (grub_util_biosdisk_get_grub_dev) [__GNU__]: Remove
2724 unused variables.
2725
2726 2013-11-14 Matthew Garrett <mjg@redhat.com>
2727
2728 * grub-core/kern/main.c (grub_set_prefix_and_root): Set variable
2729 cmdpath to firmware directory.
2730
2731 2013-11-14 Vladimir Serbinenko <phcoder@gmail.com>
2732
2733 * grub-core/kern/efi/efi.c (grub_efi_get_filename): Reset the pointer
2734 at the start of second iteration.
2735
2736 2013-11-14 Vladimir Serbinenko <phcoder@gmail.com>
2737
2738 * grub-core/Makefile.am (efiemu64.o): Explicitly set link format.
2739
2740 2013-11-14 Vladimir Serbinenko <phcoder@gmail.com>
2741
2742 * Makefile.am (default_payload.elf): New target for easier coreboot
2743 build.
2744
2745 2013-11-14 Vladimir Serbinenko <phcoder@gmail.com>
2746
2747 * grub-core/kern/arm/cache_armv6.S: Remove special handling for
2748 clang (not necessarry with -no-integrated-as).
2749 * include/grub/symbol.h [__arm__]: Likewise.
2750
2751 2013-11-14 Vladimir Serbinenko <phcoder@gmail.com>
2752
2753 * configure.ac: Use -no-integrated-as on arm with clang.
2754 * INSTALL: Mention ARM compilation with clang.
2755
2756 2013-11-14 Vladimir Serbinenko <phcoder@gmail.com>
2757
2758 * conf/Makefile.common (CCASFLAGS_PLATFORM) [COND_arm]: Add
2759 -mthumb-interwork.
2760
2761 2013-11-14 Colin Watson <cjwatson@ubuntu.com>
2762
2763 * grub-core/fs/ext2.c (grub_ext2_read_block): Factor out common
2764 code for indirect block handling.
2765
2766 Saves 185 bytes on compressed image.
2767
2768 2013-11-13 Paulo Flabiano Smorigo <pfsmorigo@br.ibm.com>
2769
2770 Fix make clean.
2771
2772 * Makefile.am: Remove build-grub-* in make clean.
2773
2774 2013-11-13 Paulo Flabiano Smorigo <pfsmorigo@br.ibm.com>
2775
2776 New files to gitignore.
2777
2778 * .gitignore: Add build-grub-gen-asciih, build-grub-gen-widthspec,
2779 build-grub-mkfont, and grub-emu-lite. Remove .bzrignore.
2780
2781 2013-11-13 Leif Lindholm <leif.lindholm@linaro.org>
2782
2783 * grub-core/kern/arm/misc.S: Make thumb2-compatible.
2784
2785 2013-11-13 Leif Lindholm <leif.lindholm@linaro.org>
2786
2787 * .gitignore: fix rules for .dep* and add *.a post git migration
2788
2789 2013-11-13 Colin Watson <cjwatson@ubuntu.com>
2790
2791 * configure.ac (AM_INIT_AUTOMAKE): Require at least version 1.10.1,
2792 to match INSTALL.
2793
2794 2013-11-13 Colin Watson <cjwatson@ubuntu.com>
2795
2796 * grub-core/kern/misc.c: Don't redirect divisions in the
2797 GRUB_UTIL case.
2798 * include/grub/misc.h: Likewise.
2799
2800 2013-11-13 Colin Watson <cjwatson@ubuntu.com>
2801
2802 * grub-core/osdep/unix/emuconsole.c (put): Pacify the compiler on
2803 systems that require checking the return value of write.
2804
2805 2013-11-13 Colin Watson <cjwatson@ubuntu.com>
2806
2807 * util/grub-install.in (efi_quiet): Fix inverted logic: make
2808 efibootmgr quiet when --debug is not used, rather than when it is.
2809
2810 2013-11-13 Colin Watson <cjwatson@ubuntu.com>
2811
2812 * gentpl.py (define_macro_for_platform_dependencies): Remove
2813 first (and thus unused) of two definitions for this function.
2814 (platform_dependencies): Likewise.
2815
2816 2013-11-13 Colin Watson <cjwatson@ubuntu.com>
2817
2818 * acinclude.m4 (grub_apple_cc): Remove; since the removal of nested
2819 functions, we only need to check this for the target, not the host.
2820 * configure.ac (grub_apple_cc): Likewise.
2821
2822 2013-11-13 Vladimir Serbinenko <phcoder@gmail.com>
2823
2824 * grub-core/kern/arm/cache.c (probe_caches): Move asm part to ...
2825 * grub-core/kern/arm/cache_armv6.S: ... here. This allows this
2826 asm to stay in arm even if surrounding is thumb.
2827
2828 2013-11-13 Vladimir Serbinenko <phcoder@gmail.com>
2829
2830 * grub-core/kern/arm/misc.S: Add __muldi3 and __aeabi_lmul. Those
2831 helper functions are needed for thumb.
2832
2833 2013-11-13 Vladimir Serbinenko <phcoder@gmail.com>
2834
2835 * grub-core/disk/diskfilter.c (grub_diskfilter_make_raid): Make
2836 level / 3 division explicitly unsigned. Saves few bytes.
2837
2838 2013-11-13 Vladimir Serbinenko <phcoder@gmail.com>
2839
2840 * grub-core/fs/zfs/zfs.c (ZAP_LEAF_NUMCHUNKS): Use unsigned arithmetics.
2841
2842 2013-11-13 Vladimir Serbinenko <phcoder@gmail.com>
2843
2844 * grub-core/normal/datetime.c (grub_get_weekday): Use if rather than
2845 division.
2846
2847 2013-11-13 Vladimir Serbinenko <phcoder@gmail.com>
2848
2849 * grub-core/kern/uboot/init.c: Move grub_uboot_machine_type and
2850 grub_uboot_boot_data to asm part.
2851
2852 2013-11-13 Vladimir Serbinenko <phcoder@gmail.com>
2853
2854 * grub-core/kern/arm/uboot/startup.S: Remove = by replacing with
2855 literal load.
2856 (grub_uboot_syscall): Save/restore r9 and align stack.
2857
2858 2013-11-13 Vladimir Serbinenko <phcoder@gmail.com>
2859
2860 * grub-core/kern/arm/cache.S: Replace = with explicit litteral load.
2861
2862 2013-11-13 Vladimir Serbinenko <phcoder@gmail.com>
2863
2864 * include/grub/symbol.h (END) [__arm__]: New macros. Replace all .end
2865 occurencies with END.
2866
2867 2013-11-13 Colin Watson <cjwatson@ubuntu.com>
2868
2869 * util/grub-editenv.c (help_filter, argp): Document how to delete
2870 the whole environment block.
2871 Reported by Dan Jacobson. Fixes Debian bug #726265.
2872
2873 2013-11-13 Colin Watson <cjwatson@ubuntu.com>
2874
2875 * docs/grub.texi (Internationalisation, Supported kernels): Fix
2876 sectioning.
2877
2878 2013-11-13 Josh Triplett <josh@joshtriplett.org>
2879
2880 * grub-core/normal/term.c (grub_set_more): Use bool logic rather than
2881 increment/decrement.
2882
2883 2013-11-13 Vladimir Serbinenko <phcoder@gmail.com>
2884
2885 * grub-core/kern/arm/cache_armv6.S [__clang__]: Don't add .armv6 when
2886 compiling with clang.
2887
2888 2013-11-13 Vladimir Serbinenko <phcoder@gmail.com>
2889
2890 * grub-core/kern/arm/uboot/startup.S: Use .org rather than assigning
2891 ".".
2892
2893 2013-11-13 Vladimir Serbinenko <phcoder@gmail.com>
2894
2895 Redirect all divisions to grub_divmod64.
2896
2897 2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
2898
2899 * grub-core/term/tparm.c (tparam_internal): Use unsigned divisions.
2900
2901 2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
2902
2903 Add missing includes of loader.h.
2904
2905 2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
2906
2907 * configure.ac: Allow disabling themes.
2908
2909 2013-11-12 Lukas Schwaighofer <lukas@schwaighofer.name>
2910
2911 * util/grub.d/20_linux_xen.in: Don't decompress initrd.
2912
2913 2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
2914
2915 * grub-core/term/at_keyboard.c: Don't poll non-functional AT controller
2916 until it becomes operational.
2917
2918 2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
2919
2920 * grub-core/Makefile.core.def (legacy_password_test): Disable
2921 on platforms where no legacycfg is compiled.
2922 * grub-core/tests/lib/functional_test.c: Tolerate failure to
2923 load legacy_password_test.
2924
2925 2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
2926
2927 * grub-core/loader/i386/bsd.c: Remove variable length arrays.
2928
2929 2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
2930
2931 * grub-core/efiemu/prepare.c: Remove variable length arrays.
2932
2933 2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
2934
2935 * grub-core/osdep/windows/hostdisk.c (grub_util_fd_strerror): Silence
2936 strict-aliasing warning.
2937 (fsync): Silence cast warning.
2938
2939 2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
2940
2941 * grub-core/commands/verify.c: Remove variable length arrays.
2942 Load gcry_dsa/gcry_rsa automatically.
2943
2944 2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
2945
2946 * grub-core/tests/signature_test.c: New test.
2947
2948 2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
2949
2950 * grub-core/disk/cryptodisk.c (luks_script_get): Adapt to new procfs
2951 API.
2952
2953 2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
2954
2955 * grub-core/tests/legacy_password_test.c (vectors): Make static.
2956 * grub-core/tests/pbkdf2_test.c (vectors): Likewise.
2957
2958 2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
2959
2960 * grub-core/tests/setjmp_test.c: Reset counter to 0 before starting.
2961
2962 2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
2963
2964 * grub-core/fs/proc.c: Allow \0 in proc files.
2965
2966 2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
2967
2968 * grub-core/tests/xnu_uuid_test.c: Fix assert message.
2969
2970 2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
2971
2972 * grub-core/tests/xnu_uuid_test.c: Fix copyright year.
2973
2974 2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
2975
2976 * grub-core/fs/ext2.c: Remove variable length arrays.
2977
2978 2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
2979
2980 * grub-core/lib/crypto.c (grub_crypto_cbc_decrypt): Remove variable
2981 length arrays.
2982
2983 2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
2984
2985 * grub-core/disk/AFSplitter.c: Remove variable length arrays.
2986 * grub-core/disk/cryptodisk.c: Likewise.
2987 * grub-core/disk/geli.c: Likewise.
2988 * grub-core/disk/luks.c: Likewise.
2989
2990 2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
2991
2992 * grub-core/tests/legacy_password_test.c: New test.
2993 * grub-core/commands/legacycfg.c: Remove variable length arrays.
2994
2995 2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
2996
2997 * grub-core/lib/pbkdf2.c: Remove variable length arrays.
2998
2999 2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
3000
3001 * grub-core/tests/pbkdf2_test.c: New test.
3002
3003 2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
3004
3005 * grub-core/lib/xzembed/xz_dec_stream.c: Remove variable length arrays.
3006
3007 2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
3008
3009 * grub-core/io/lzopio.c: Remove variable length arrays.
3010
3011 2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
3012
3013 * include/grub/crypto.h: Add maximums on hash size and cipher block
3014 size.
3015
3016 2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
3017
3018 * grub-core/commands/xnu_uuid.c: Remove variable length arrays.
3019
3020 2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
3021
3022 * grub-core/tests/xnu_uuid_test.c: New test.
3023
3024 2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
3025
3026 * grub-core/commands/hashsum.c: Remove unneeded memset (zalloc already
3027 covers it).
3028
3029 2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
3030
3031 * grub-core/commands/hashsum.c: Remove variable length arrays.
3032
3033 2013-11-11 Vladimir Serbinenko <phcoder@gmail.com>
3034
3035 * grub-core/tests/gfxterm_menu.c (gfxterm_menu): Handle out-of-memory
3036 condition.
3037 * tests/grub_func_test.in: Increase memory allocation.
3038
3039 2013-11-11 Vladimir Serbinenko <phcoder@gmail.com>
3040
3041 * grub-core/osdep/unix/getroot.c [HAVE_STRUCT_STATFS_F_FSTYPENAME
3042 && HAVE_STRUCT_STATFS_F_MNTFROMNAME]: Include sys/param.h and
3043 sys/mount.h.
3044
3045 2013-11-11 Vladimir Serbinenko <phcoder@gmail.com>
3046
3047 * grub-core/osdep/apple/hostdisk.c (grub_util_get_fd_size): Rename to ..
3048 (grub_util_get_fd_size_os): ...this.
3049 (grub_hostdisk_flush_initial_buffer): New empty function.
3050
3051 2013-11-11 Vladimir Serbinenko <phcoder@gmail.com>
3052
3053 * grub-core/gensyminfo.sh.in: Handle the case of portable output
3054 without --defined-only.
3055
3056 2013-11-11 Vladimir Serbinenko <phcoder@gmail.com>
3057
3058 * grub-core/lib/i386/relocator_common.S [__APPLE__ && __x86_64__]: Use
3059 rip-relative addressing in prologue.
3060
3061 2013-11-11 Vladimir Serbinenko <phcoder@gmail.com>
3062
3063 * include/grub/misc.h [__APPLE__]: Do not add regparm(0) on x86_64.
3064 * grub-core/kern/misc.c (__bzero) [__APPLE__]: New function.
3065
3066 2013-11-11 Vladimir Serbinenko <phcoder@gmail.com>
3067
3068 * util/getroot.c (grub_util_biosdisk_get_grub_dev) [__APPLE__]:
3069 Add missing semicolon.
3070
3071 2013-11-11 Vladimir Serbinenko <phcoder@gmail.com>
3072
3073 * util/grub-macho2img.c: Use plain fopen rather than grub_util_fopen.
3074
3075 2013-11-11 Vladimir Serbinenko <phcoder@gmail.com>
3076
3077 * configure.ac: Check for lzma.h for enabling liblzma and allow
3078 manual disabling.
3079
3080 2013-11-11 Vladimir Serbinenko <phcoder@gmail.com>
3081
3082 Add missing includes of loader.h.
3083
3084 2013-11-11 Fam Zheng <famcool@gmail.com>
3085
3086 * util/grub.d/30_os-prober.in: Add minix entry.
3087
3088 2013-11-10 Vladimir Serbinenko <phcoder@gmail.com>
3089
3090 * grub-core/loader/i386/coreboot/chainloader.c (load_segment): Use
3091 right buffer for temporary load.
3092
3093 2013-11-10 Vladimir Serbinenko <phcoder@gmail.com>
3094
3095 * grub-core/loader/i386/coreboot/chainloader.c: Support tianocore.
3096
3097 2013-11-10 Vladimir Serbinenko <phcoder@gmail.com>
3098
3099 * grub-core/loader/i386/coreboot/chainloader.c: Support lzma-compressed
3100 payload.
3101
3102 2013-11-10 Vladimir Serbinenko <phcoder@gmail.com>
3103
3104 * include/grub/lib/LzmaDec.h: Fix to include LzmaTypes.h and
3105 not Types.h.
3106 * grub-core/lib/LzmaDec.c: Fix prologue to make it compileable in GRUB
3107 environment.
3108 (LzmaDec_InitDicAndState): Make static.
3109
3110 2013-11-10 Vladimir Serbinenko <phcoder@gmail.com>
3111
3112 * util/grub-mkimagexx.c (generate_elf): Fix module address on coreboot.
3113
3114 2013-11-10 Vladimir Serbinenko <phcoder@gmail.com>
3115
3116 * grub-core/term/ieee1275/escc.c (GRUB_MOD_INIT): Fix order of channels.
3117
3118 Reported by: Aaro Koskinen <aaro.koskinen@iki.fi>
3119
3120 2013-11-10 Vladimir Serbinenko <phcoder@gmail.com>
3121
3122 * docs/grub-dev.texi: Replace bzr references with git ones.
3123
3124 2013-11-10 Andrey Borzenkov <arvidjaar@gmail.com>
3125
3126 * docs/grub.texi (Simple configuration): Remove reference to
3127 grub-reboot from saved default entry description - grub-default
3128 does not use it anymore.
3129
3130 2013-11-10 Vladimir Serbinenko <phcoder@gmail.com>
3131
3132 * configure.ac: Make efiemu test cflags match the cflags efiemu is
3133 compiled with.
3134
3135 2013-11-10 Andrey Borzenkov <arvidjaar@gmail.com>
3136
3137 * docs/grub.texi (Simple configuration): Document GRUB_DISABLE_SUBMENU.
3138
3139 2013-11-10 Vladimir Serbinenko <phcoder@gmail.com>
3140
3141 Fix grub_machine_fini bitrot.
3142
3143 Reported by: Glenn Washburn.
3144
3145 2013-11-10 Vladimir Serbinenko <phcoder@gmail.com>
3146
3147 * configure.ac: Remove leftover -fnested-funcions -Wl,-allow_execute.
3148
3149 2013-11-10 Vladimir Serbinenko <phcoder@gmail.com>
3150
3151 * grub-core/Makefile.am (efiemu): Remove leftover -DAPPLE_CC and
3152 -DELF.
3153 * grub-core/efiemu/runtime/config.h: Use __i386__ and __x86_64__
3154 instead of ELF*.
3155
3156 2013-11-10 Vladimir Serbinenko <phcoder@gmail.com>
3157
3158 * configure.ac: Restore CFLAGS to TARGET_CFLAGS before external tests.
3159 Add -march=core2 when testing compile of efiemu64.
3160
3161 Thanks Andrey Borzenkov for spotting this.
3162
3163 2013-11-09 Vladimir Serbinenko <phcoder@gmail.com>
3164
3165 Add new ports: i386-xen and x86_64-xen. This allows running GRUB in
3166 XEN PV environment and load kernels.
3167
3168 2013-11-09 Vladimir Serbinenko <phcoder@gmail.com>
3169
3170 * grub-core/loader/i386/multiboot_mbi.c: Handle space in command line.
3171 * grub-core/loader/multiboot_mbi2.c: Likewise.
3172
3173 2013-11-09 Vladimir Serbinenko <phcoder@gmail.com>
3174
3175 * grub-core/lib/cmdline.c (grub_loader_cmdline_size): Fix empty cmdline
3176 handling.
3177
3178 2013-11-09 Vladimir Serbinenko <phcoder@gmail.com>
3179
3180 * grub-core/commands/i386/cmostest.c: Add new command "cmosset".
3181
3182 Tested by: Denis 'GNUtoo' Carikli.
3183
3184 2013-11-08 Vladimir Serbinenko <phcoder@gmail.com>
3185
3186 * grub-core/normal/datetime.c (grub_get_weekday): Use unsigned types.
3187
3188 2013-11-08 Vladimir Serbinenko <phcoder@gmail.com>
3189
3190 * grub-core/gfxmenu/gui_circular_progress.c (parse_angle):
3191 Use to get rounded angle rather than truncated.
3192
3193 2013-11-08 Vladimir Serbinenko <phcoder@gmail.com>
3194
3195 * grub-core/term/serial.c: Add option for enabling/disabling
3196 RTS/CTS flow control.
3197
3198 2013-11-08 Vladimir Serbinenko <phcoder@gmail.com>
3199
3200 * grub-core/lib/libgcrypt/cipher/idea.c (mul_inv): Remove signed
3201 divisions.
3202
3203 2013-11-08 Vladimir Serbinenko <phcoder@gmail.com>
3204
3205 * grub-core/lib/libgcrypt/mpi/mpih-div.c (_gcry_mpih_divrem):
3206 Use grub_fatal rather than divide by zero.
3207 * grub-core/lib/libgcrypt/mpi/mpi-pow.c (gcry_mpi_powm): Likewise.
3208
3209 2013-11-08 Vladimir Serbinenko <phcoder@gmail.com>
3210
3211 * include/grub/gui.h (grub_fixed_sfs_divide): Round rather than
3212 truncate.
3213 (grub_fixed_fsf_divide): Likewise.
3214
3215 2013-11-08 Vladimir Serbinenko <phcoder@gmail.com>
3216
3217 * grub-core/gfxmenu/gui_list.c (draw_scrollbar): Avoid
3218 division by-zero and senseless negative divisions.
3219
3220 2013-11-08 Vladimir Serbinenko <phcoder@gmail.com>
3221
3222 * grub-core/gfxmenu/gui_circular_progress.c (circprog_paint): Avoid
3223 division by-zero and senseless negative divisions.
3224 (circprog_set_property): Don't accept negative num_ticks.
3225
3226 2013-11-08 Vladimir Serbinenko <phcoder@gmail.com>
3227
3228 * grub-core/gfxmenu/gui_progress_bar.c (draw_pixmap_bar): Avoid
3229 division by-zero and senseless negative divisions.
3230
3231 2013-11-08 Vladimir Serbinenko <phcoder@gmail.com>
3232
3233 * configure.ac: Use elf_*_fbsd on kfreebsd.
3234
3235 2013-11-08 Vladimir Serbinenko <phcoder@gmail.com>
3236
3237 * grub-core/tests/div_test.c: New test.
3238
3239 2013-11-08 Vladimir Testov <vladimir.testov@rosalab.ru>
3240
3241 * grub-core/gfxmenu/gui_box.c: Updated to work with area status.
3242 * grub-core/gfxmenu/gui_canvas.c: Likewise.
3243 * grub-core/gfxmenu/view.c: Likewise.
3244 * grub-core/video/fb/video_fb.c: Introduce new functions:
3245 grub_video_set_area_status, grub_video_get_area_status,
3246 grub_video_set_region, grub_video_get_region.
3247 * grub-core/video/bochs.c: Likewise.
3248 * grub-core/video/capture.c: Likewise.
3249 * grub-core/video/video.c: Likewise.
3250 * grub-core/video/cirrus.c: Likewise.
3251 * grub-core/video/efi_gop.c: Likewise.
3252 * grub-core/video/efi_uga.c: Likewise.
3253 * grub-core/video/emu/sdl.c: Likewise.
3254 * grub-core/video/radeon_fuloong2e.c: Likewise.
3255 * grub-core/video/sis315pro.c: Likewise.
3256 * grub-core/video/sm712.c: Likewise.
3257 * grub-core/video/i386/pc/vbe.c: Likewise.
3258 * grub-core/video/i386/pc/vga.c: Likewise.
3259 * grub-core/video/ieee1275.c: Likewise.
3260 * grub-core/video/i386/coreboot/cbfb.c: Likewise.
3261 * include/grub/video.h: Likewise.
3262 * include/grub/video_fb.h: Likewise.
3263 * include/grub/fbfill.h: Updated render_target structure.
3264 grub_video_rect_t viewport, region, area
3265 int area_offset_x, area_offset_y, area_enabled
3266 * include/grub/gui.h: New helper function
3267 grub_video_bounds_inside_region.
3268 * docs/grub-dev.texi: Added information about new functions.
3269
3270 2013-11-08 Vladimir Serbinenko <phcoder@gmail.com>
3271
3272 * grub-core/kern/mm.c (grub_real_malloc): Use AND rather than MOD
3273 for alignment.
3274
3275 2013-11-08 Vladimir Serbinenko <phcoder@gmail.com>
3276
3277 * grub-core/lib/reed_solomon.c (grub_reed_solomon_recover): Add
3278 missing attribute.
3279 * grub-core/gdb/cstub.c (grub_gdb_trap): Likewise.
3280
3281 2013-11-08 Vladimir Serbinenko <phcoder@gmail.com>
3282
3283 * grub-core/kern/misc.c (grub_divmod64): Don't fallback to
3284 simple division on arm and ia64.
3285
3286 2013-11-08 Vladimir Serbinenko <phcoder@gmail.com>
3287
3288 * grub-core/kern/arm/misc.S (__aeabi_unwind_cpp_pr0): Add dummy to
3289 link with libgcc.
3290
3291 2013-11-08 Vladimir Serbinenko <phcoder@gmail.com>
3292
3293 * include/grub/symbol.h (FUNCTION), (VARIABLE): Fix precedence logic.
3294
3295 2013-11-08 Vladimir Serbinenko <phcoder@gmail.com>
3296
3297 * include/grub/symbol.h (FUNCTION), (VARIABLE) [__arm__]: Use % as
3298 prefix symbol, not @.
3299
3300 2013-11-08 Vladimir Serbinenko <phcoder@gmail.com>
3301
3302 * INSTALL: Add note about older gcc and clang.
3303
3304 2013-11-08 Vladimir Serbinenko <phcoder@gmail.com>
3305
3306 * tests/util/grub-shell.in: Boot as hdd on ppc by default.
3307
3308 2013-11-08 Vladimir Serbinenko <phcoder@gmail.com>
3309
3310 * grub-core/loader/multiboot_mbi2.c (grub_multiboot_add_module): Fix
3311 NULL pointer dereference.
3312
3313 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3314
3315 * grub-core/Makefile.am: Do not include libgcc.h when compiling with
3316 clang.
3317
3318 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3319
3320 * grub-core/kern/powerpc/dl.c: Add missing pragma to silence cast-align
3321 warnings.
3322
3323 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3324
3325 * grub-core/net/net.c (grub_net_route_unregister): Remove unused
3326 function.
3327 * grub-core/loader/i386/xnu.c (hextoval): Likewise.
3328 * grub-core/disk/geli.c (ascii2hex): Likewise.
3329
3330 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3331
3332 * configure.ac: Run linker tests without -Werror.
3333 Define TARGET_LDFLAGS_STATIC_LIBGCC and TARGET_LIBGCC.
3334 Change all occurences of -static-libgcc resp -lgcc to
3335 TARGET_LDFLAGS_STATIC_LIBGCC resp TARGET_LIBGCC.
3336
3337 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3338
3339 * configure.ac: Don't add -no-itegrated-as on clang on non-x86.
3340
3341 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3342
3343 Allow compiling with clang (not really supported though).
3344
3345 * conf/Makefile.common (CFLAGS_PLATFORM): Don't add -mrtd -mregparm=3
3346 unconditionally.
3347 * configure.ac: Add -no-integrated-as when using clangfor asm files.
3348 Add -mrtd -mregparm=3 on i386 when not using clang.
3349 * grub-core/kern/misc.c (grub_memset): Add volatile when on clang.
3350
3351 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3352
3353 * grub-core/kern/ieee1275/cmain.c: Add explicit attribute on asm
3354 bindings.
3355 * grub-core/lib/reed_solomon.c: Likewise.
3356 * include/grub/i386/gdb.h: Likewise.
3357 * include/grub/i386/pc/int.h: Likewise.
3358 * include/grub/i386/pc/pxe.h: Likewise.
3359 * include/grub/ieee1275/ieee1275.h: Likewise.
3360
3361 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3362
3363 Import libgcrypt 1.5.3.
3364
3365 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3366
3367 * configure.ac: Don't add -Wcast-align on x86.
3368
3369 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3370
3371 * configure.ac: Add -freg-struct-return on all platforms that
3372 support it.
3373
3374 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3375
3376 * acinclude.m4: Use -Werror on parameter tests.
3377 * configure.ac: Likewise.
3378
3379 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3380
3381 * acinclude.m4: Add missing TARGET_CCASFLAGS on asm tests.
3382
3383 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3384
3385 * configure.ac: Check that -malign-loops works rather than assuming that
3386 either -falign-loops or -malign-loops work.
3387
3388 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3389
3390 * configure.ac: Remove -fnested-functions. We don't need it anymore.
3391
3392 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3393
3394 * configure.ac: Prevent cflags leaking to subsequent tests by always
3395 resetting cflags to target_cflags in target tests.
3396
3397 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3398
3399 * grub-core/kern/parser.c (grub_parser_split_cmdline): Remove nested
3400 function.
3401
3402 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3403
3404 * grub-core/kern/misc.c (grub_vsnprintf_real): Remove nested functions.
3405
3406 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3407
3408 * grub-core/lib/arg.c (grub_arg_parse): Remove nested function.
3409
3410 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3411
3412 * grub-core/normal/cmdline.c (grub_cmdline_get):
3413 Remove nested functions.
3414
3415 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3416
3417 * tests/test_sha512sum.in: Make it work on emu.
3418
3419 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3420
3421 * grub-core/normal/charset.c (bidi_line_wrap): Eliminate nested
3422 functions.
3423 (grub_bidi_line_logical_to_visual): Likewise.
3424
3425 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3426
3427 Remove vestiges of -Wunsafe-loop-optimisations.
3428
3429 * conf/Makefile.common (CFLAGS_GNULIB): Remove
3430 -Wno-unsafe-loop-optimisations.
3431 * grub-core/commands/legacycfg.c: Remove -Wunsafe-loop-optimisations
3432 pragma.
3433 * grub-core/io/gzio.c: Likewise.
3434 * grub-core/script/parser.y: Likewise.
3435 * grub-core/script/yylex.l: Likewise.
3436 * util/grub-mkfont.c: Likewise.
3437
3438 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3439
3440 * util/grub-mkfont.c (process_cursive): Remove nested function.
3441
3442 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3443
3444 * include/grub/misc.h (grub_dprintf): Use unnamed vararg.
3445 (grub_boot_time): Likewise.
3446
3447 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3448
3449 * include/grub/symbol.h (FUNCTION): Use @function rather than
3450 "function".
3451 (VARIABLE): Likewise.
3452
3453 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3454
3455 * grub-core/net/bootp.c (OFFSET_OF): Explicitly cast to grub_size_t.
3456
3457 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3458
3459 * grub-core/net/bootp.c (set_env_limn_ro): Make pointer const.
3460 (parse_dhcp_vendor): Likewise.
3461
3462 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3463
3464 * util/grub-mkimagexx.c (relocate_symbols): Remove unneeded brackets.
3465
3466 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3467
3468 * grub-core/gettext/gettext.c (main_context), (secondary_context):
3469 Define after defining type and not before.
3470
3471 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3472
3473 * grub-core/fs/zfs/zfscrypt.c (grub_ccm_decrypt): Return right error
3474 type.
3475 (grub_gcm_decrypt): Likewise.
3476 (algo_decrypt): Likewise.
3477 (grub_zfs_decrypt_real): Transform error type.
3478
3479 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3480
3481 * grub-core/disk/geli.c (geli_rekey): Fix error return type.
3482
3483 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3484
3485 * grub-core/disk/usbms.c (grub_usbms_cbi_cmd): Fix error type.
3486 (grub_usbms_cbi_reset): Likewise.
3487 (grub_usbms_bo_reset): Likewise.
3488 (grub_usbms_reset): Likewise.
3489 (grub_usbms_attach): Likewise.
3490 (grub_usbms_transfer_cbi): Likewise.
3491
3492 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3493
3494 * grub-core/io/lzopio.c (test_header): Simplify code and remove useless
3495 "checksum = checksum;".
3496
3497 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3498
3499 * grub-core/fs/reiserfs.c (grub_reiserfs_iterate_dir): Fix type of
3500 entry_type.
3501
3502 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3503
3504 * grub-core/commands/legacycfg.c (grub_cmd_legacy_kernel): Fix
3505 BIOS disk check.
3506
3507 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3508
3509 * grub-core/bus/usb/ehci.c (grub_ehci_restore_hw): Return right enum
3510 type.
3511 (grub_ehci_fini_hw): Likewise.
3512 * grub-core/bus/usb/usbhub.c (grub_usb_add_hub): Likewise.
3513
3514 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3515
3516 * include/grub/usb.h (grub_usb_controller_dev): Make portstatus
3517 return grub_usb_err_t for cosistency. All users updated.
3518
3519 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
3520
3521 * util/mkimage.c (SzAlloc): Use attribute unused rather than dubious
3522 assigning to itself.
3523
3524 2013-11-05 Gustavo Luiz Duarte <gustavold@linux.vnet.ibm.com>
3525 2013-11-05 Paulo Flabiano Smorigo <pfsmorigo@br.ibm.com>
3526
3527 Issue separate DNS queries for ipv4 and ipv6
3528
3529 Adding multiple questions on a single DNS query is not supportted by
3530 most DNS servers. This patch issues two separate DNS queries
3531 sequentially for ipv4 and then for ipv6.
3532
3533 Fixes: https://savannah.gnu.org/bugs/?39710
3534
3535 * grub-core/net/bootp.c (parse_dhcp_vendor): Add DNS option.
3536 * grub-core/net/dns.c (grub_dns_qtype_id): New enum.
3537 * (grub_net_dns_lookup): Now using separated dns packages.
3538 * (grub_cmd_nslookup): Add error condition.
3539 * (grub_cmd_list_dns): Print DNS option.
3540 * (grub_cmd_add_dns): Add four parameters: --only-ipv4, --only-ipv6,
3541 --prefer-ipv4, and --prefer-ipv6.
3542 * include/grub/net.h (grub_dns_option_t): New enum.
3543 * (grub_net_network_level_address): option added.
3544
3545 2013-11-05 Vladimir Testov <vladimir.testov@rosalab.ru>
3546
3547 * grub-core/video/fb/video_fb.c: Merge two blit functions
3548 into one.
3549
3550 2013-11-05 Vladimir Serbinenko <phcoder@gmail.com>
3551
3552 * grub-core/term/terminfo.c: Add sequences for home and end.
3553
3554 2013-11-05 Vladimir Serbinenko <phcoder@gmail.com>
3555
3556 * grub-core/lib/legacy_parse.c: Fix handling of hercules and add
3557 graphics console.
3558
3559 2013-11-05 Vladimir Serbinenko <phcoder@gmail.com>
3560
3561 * grub-core/video/i386/pc/vga.c: Fix double bufferring and
3562 add mode 0x12.
3563
3564 2013-11-04 Vladimir Serbinenko <phcoder@gmail.com>
3565
3566 * docs/grub.texi (Vendor power-on keys): Add XPS M1330M based on old
3567 e-mail by Per Öberg.
3568
3569 2013-11-04 Vladimir Serbinenko <phcoder@gmail.com>
3570
3571 * grub-core/commands/i386/nthibr.c (GRUB_MOD_INIT): Fix typo in command
3572 name.
3573
3574 2013-11-04 Andrey Borzenkov <arvidjaar@gmail.com>
3575
3576 * configure.ac: Explicitly disable emusdl, emuusb and emupci on non-
3577 emu platforms.
3578 * grub-core/Makefile.core.def: Enable emupci and emuucb only for emu.
3579
3580 2013-11-04 Vladimir Serbinenko <phcoder@gmail.com>
3581
3582 * docs/grub.texi: Document usage of menuentry id.
3583
3584 2013-11-04 Vladimir Serbinenko <phcoder@gmail.com>
3585
3586 * docs/grub.texi: Add few mentions about EFI, debug and videoinfo.
3587
3588 2013-11-04 Peter Lustig <peter.lustig.7db@gmail.com>
3589
3590 * grub-core/commands/i386/nthibr.c: New command.
3591
3592 2013-11-04 Vladimir Serbinenko <phcoder@gmail.com>
3593
3594 * grub-core/tests/video_checksum.c: Add 2560x1440 mode to testing.
3595
3596 2013-11-04 Vladimir Serbinenko <phcoder@gmail.com>
3597
3598 * include/grub/term.h (grub_term_coordinate): Extend to 16-bit per
3599 coordinate.
3600
3601 2013-11-04 Vladimir Serbinenko <phcoder@gmail.com>
3602
3603 Support GRUB_DISABLE_SUBMENU config.
3604
3605 Inspired by patch from Prarit Bhargava.
3606
3607 2013-11-03 Vladimir Serbinenko <phcoder@gmail.com>
3608
3609 * docs/grub.texi: Mention RSA support.
3610
3611 2013-11-03 Vladimir Serbinenko <phcoder@gmail.com>
3612
3613 * grub-core/commands/verify.c: Add RSA support.
3614
3615 2013-11-03 Vladimir Serbinenko <phcoder@gmail.com>
3616
3617 * grub-core/disk/ahci.c (grub_ahci_pciinit): Detect ATAPI devices.
3618 * grub-core/disk/ata.c (grub_ata_identify): Use atapi_identify if
3619 device is known to be ATAPI.
3620
3621 2013-11-03 Mike Frysinger <vapier>
3622
3623 * configure.ac: Don't add target-prefix.
3624
3625 2013-11-03 Vladimir Serbinenko <phcoder@gmail.com>
3626
3627 * grub-core/commands/loadenv.c (grub_cmd_save_env): Remove unset
3628 variables.
3629
3630 2013-11-03 Vladimir Serbinenko <phcoder@gmail.com>
3631
3632 * grub-core/gettext/gettext.c (grub_gettext_init_ext): Ignore errors
3633 if language is English.
3634
3635 2013-11-03 Vladimir Serbinenko <phcoder@gmail.com>
3636
3637 * grub-core/osdep/linux/getroot.c: Fix cast-align problems.
3638
3639 2013-11-02 Vladimir Serbinenko <phcoder@gmail.com>
3640
3641 * configure.ac: Don't add -m32/-m64 on emu.
3642
3643 2013-11-02 neil
3644
3645 * grub-core/osdep/linux/blocklist.c: Include linux/types.h for some
3646 broken linux headers.
3647
3648 2013-11-02 Vladimir Serbinenko <phcoder@gmail.com>
3649
3650 * util/grub.d/30_os-prober.in: Add unhiding of partition if on msdos.
3651
3652 2013-11-02 Vladimir Serbinenko <phcoder@gmail.com>
3653
3654 * grub-core/lib/reed_solomon.c (grub_reed_solomon_recover): Don't do
3655 Reed-Solomon recovery if more than half of redundancy info is 0.
3656
3657 2013-11-02 Vladimir Serbinenko <phcoder@gmail.com>
3658
3659 * util/grub-mount.c: Handle symlinks to directories.
3660
3661 2013-11-02 Vladimir Serbinenko <phcoder@gmail.com>
3662
3663 * grub-core/fs/fshelp.c (find_file): Save ctx->next when calling
3664 find_file recursively for symlink.
3665
3666 2013-11-02 Vladimir Serbinenko <phcoder@gmail.com>
3667
3668 * tests/util/grub-shell.in: Copy themes.
3669
3670 2013-11-02 Vladimir Serbinenko <phcoder@gmail.com>
3671
3672 * util/grub-mkimagexx.c (locate_sections): Reject mislinked images.
3673
3674 2013-11-02 Vladimir Serbinenko <phcoder@gmail.com>
3675
3676 * configure.ac: Use 0x8000 for address instead of 8000.
3677
3678 2013-11-02 Vladimir Serbinenko <phcoder@gmail.com>
3679
3680 * grub-core/loader/sparc64/ieee1275/linux.c (get_physbase): Fix
3681 signature.
3682
3683 2013-11-02 Vladimir Serbinenko <phcoder@gmail.com>
3684
3685 * grub-core/disk/efi/efidisk.c (grub_efidisk_readwrite): Remove unused
3686 variable.
3687
3688 2013-11-02 Vladimir Serbinenko <phcoder@gmail.com>
3689
3690 * configure.ac (TARGET_CFLAGS): Add -march=i386 on i386.
3691
3692 2013-11-02 Vladimir Serbinenko <phcoder@gmail.com>
3693
3694 * grub-core/fs/hfspluscomp.c (hfsplus_read_compressed_real): Call
3695 file_progress_read_hook.
3696 * grub-core/fs/ntfscomp.c (hfsplus_read_compressed_real): Likewise.
3697
3698 2013-11-02 Vladimir Serbinenko <phcoder@gmail.com>
3699
3700 * conf/Makefile.common (CFLAGS_PLATFORM): Remove poisoning of float
3701 and double.
3702
3703 2013-11-01 Vladimir Serbinenko <phcoder@gmail.com>
3704
3705 * grub-core/fs/tar.c (grub_cpio_read): Add read_hook.
3706
3707 2013-11-01 Vladimir Serbinenko <phcoder@gmail.com>
3708
3709 Rewrite blocklist functions in order to get progress when
3710 reading large extents and decrease amount of blocklist hook calls.
3711
3712 2013-11-01 Vladimir Serbinenko <phcoder@gmail.com>
3713
3714 * grub-core/term/serial.c (options), (grub_cmd_serial): Fix handling
3715 of SI suffixes.
3716
3717 2013-11-01 Vladimir Serbinenko <phcoder@gmail.com>
3718
3719 Support --base-clock for serial command to handle weird cards with
3720 non-standard base clock.
3721
3722 2013-11-01 Vladimir Serbinenko <phcoder@gmail.com>
3723
3724 * grub-core/fs/ext2.c (grub_ext2_read_symlink): Use memcpy rather
3725 strncpy.
3726 * grub-core/fs/jfs.c (grub_jfs_lookup_symlink): Likewise.
3727 * grub-core/kern/misc.c (grub_strncpy): Move from here ...
3728 * include/grub/misc.h (grub_strncpy): ... to here. Make inline.
3729 * grub-core/net/net.c (grub_net_addr_to_str): Use COMPILE_TIME_ASSERT
3730 + strcpy rather than strncpy.
3731
3732 2013-11-01 Vladimir Serbinenko <phcoder@gmail.com>
3733
3734 * grub-core/fs/zfs/zfs.c (nvpair_name): Use correct type for size.
3735 (check_pool_label): Likewise. Fixes overflow.
3736 (nvlist_find_value): Fix comparison.
3737
3738 2013-11-01 Vladimir Serbinenko <phcoder@gmail.com>
3739
3740 * include/grub/misc.h (grub_strcat): Removed. All users changed to
3741 more appropriate functions.
3742
3743 2013-11-01 Vladimir Serbinenko <phcoder@gmail.com>
3744
3745 * grub-core/kern/efi/efi.c (grub_efi_get_filename): Avoid inefficient
3746 realloc.
3747
3748 2013-11-01 Vladimir Serbinenko <phcoder@gmail.com>
3749
3750 * util/grub-mkrescue.in: Do not use UUID search on EFI.
3751
3752 2013-11-01 Vladimir Serbinenko <phcoder@gmail.com>
3753
3754 * grub-core/kern/dl.c: Unify section-finding algorithm. Saves 30 bytes
3755 on core size.
3756
3757 2013-10-30 Vladimir Serbinenko <phcoder@gmail.com>
3758
3759 * grub-core/kern/mm.c (grub_realloc): Don't copy more data than we have.
3760
3761 2013-10-30 Vladimir Serbinenko <phcoder@gmail.com>
3762
3763 * grub-core/io/gzio.c (huft_build): Use zalloc for safety.
3764 (initialize_tables): reset tl and td to NULL after freeing.
3765
3766 2013-10-28 Vladimir Serbinenko <phcoder@gmail.com>
3767
3768 * grub-core/loader/multiboot_mbi2.c: Implement network tag.
3769
3770 2013-10-28 Vladimir Serbinenko <phcoder@gmail.com>
3771
3772 * grub-core/loader/multiboot_mbi2.c: Add EFI memory map to the list
3773 of supported tags.
3774
3775 2013-10-28 Vladimir Serbinenko <phcoder@gmail.com>
3776
3777 * grub-core/loader/multiboot_mbi2.c: Implement EFI memory map.
3778
3779 2013-10-28 Vladimir Serbinenko <phcoder@gmail.com>
3780
3781 * grub-core/loader/multiboot.c: Add support for multiboot kernels
3782 quirks.
3783
3784 2013-10-28 Vladimir Serbinenko <phcoder@gmail.com>
3785
3786 * grub-core/loader/i386/linux.c (allocate_pages): Allocate at least
3787 a page in protected space.
3788
3789 2013-10-28 Vladimir Serbinenko <phcoder@gmail.com>
3790
3791 * grub-core/loader/multiboot.c (grub_cmd_module): Don't attempt to
3792 allocate space for zero-sized modules.
3793
3794 2013-10-28 Vladimir Serbinenko <phcoder@gmail.com>
3795
3796 * grub-core/loader/xnu_resume.c (grub_xnu_resume): Reject empty images.
3797
3798 2013-10-28 Francesco Lavra <francescolavra.fl@gmail.com>
3799
3800 * grub-core/lib/fdt.c: Fix miscellaneous bugs.
3801
3802 2013-10-28 Vladimir Serbinenko <phcoder@gmail.com>
3803
3804 * grub-core/lib/progress.c (grub_file_progress_hook_real): Add missing
3805 safeguards. Fixes a crash with i386/pc/console.c.
3806
3807 2013-10-28 Vladimir Serbinenko <phcoder@gmail.com>
3808
3809 * include/grub/emu/hostdisk.h: Add proper declaration for grub_host_init
3810 and grub_hostfs_init.
3811
3812 2013-10-28 Vladimir Serbinenko <phcoder@gmail.com>
3813
3814 * grub-core/kern/emu/hostdisk.c (grub_util_check_file_presence): Use
3815 windows method on other platforms without good stat as well.
3816
3817 2013-10-28 Vladimir Serbinenko <phcoder@gmail.com>
3818
3819 * grub-core/osdep/linux/getroot.c: Add new btrfs defines.
3820
3821 2013-10-28 Vladimir Serbinenko <phcoder@gmail.com>
3822
3823 Make / in btrfs refer to real root, not the default volume.
3824 Modify mkrelpath to work even if device is mounted with subvolid option.
3825
3826 2013-10-28 Andrey Borzenkov <arvidjaar@gmail.com>
3827
3828 * Makefile.util.def: Add grub-core/kern/disk_common.c to library
3829 extra_dist.
3830 * grub-core/Makefile.core.def: Add kern/disk_common.c to disk module
3831 extra_dist.
3832
3833 2013-10-27 Vladimir Serbinenko <phcoder@gmail.com>
3834
3835 * util/grub-mkfont.c (main): Show error message when FT_Set_Pixel_Sizes
3836 fails.
3837
3838 2013-10-27 BVK Chaitanya <bvk.groups@gmail.com>
3839
3840 * docs/autoiso.cfg: New file.
3841
3842 2013-10-27 Vladimir Serbinenko <phcoder@gmail.com>
3843
3844 * configure.ac: Remove leftover COND_BUILD_GRUB_MKFONT and
3845 COND_GRUB_PE2ELF conditions.
3846
3847 2013-10-27 Vladimir Serbinenko <phcoder@gmail.com>
3848
3849 * grub-core/loader/i386/bsd.c (grub_cmd_openbsd): Accept "sd", "cd",
3850 "vnd", "rd" and "fd" disks.
3851
3852 2013-10-27 Vladimir Serbinenko <phcoder@gmail.com>
3853
3854 Move grub_disk_write out of kernel into disk.mod.
3855
3856 2013-10-27 Vladimir Serbinenko <phcoder@gmail.com>
3857
3858 * grub-core/kern/misc.c (grub_vsnprintf_real): Unify int and wchar
3859 handling.
3860
3861 2013-10-27 Vladimir Serbinenko <phcoder@gmail.com>
3862
3863 * grub-core/kern/misc.c (grub_abort): Make static
3864
3865 2013-10-27 Vladimir Serbinenko <phcoder@gmail.com>
3866
3867 * grub-core/kern/misc.c (grub_vsnprintf_real): Don't attempt to
3868 transform invalid unicode codepoints.
3869
3870 2013-10-27 Vladimir Serbinenko <phcoder@gmail.com>
3871
3872 * grub-core/kern/misc.c (grub_vsnprintf_real): Remove needless explicit
3873 \0 checking.
3874
3875 2013-10-27 Vladimir Serbinenko <phcoder@gmail.com>
3876
3877 * grub-core/lib/legacy_parse.c: Add support for "nd" disk.
3878
3879 2013-10-26 Vladimir Serbinenko <phcoder@gmail.com>
3880
3881 Consolidate cpuid code.
3882
3883 2013-10-26 Vladimir Serbinenko <phcoder@gmail.com>
3884
3885 Move cpuid code to cpuid.h and TSC code to tsc.c.
3886
3887 2013-10-26 Grégoire Sutre <gregoire.sutre@gmail.com>
3888
3889 * util/grub.d/00_header.in: Don't use LANG if it's not set.
3890
3891 2013-10-26 Grégoire Sutre <gregoire.sutre@gmail.com>
3892
3893 * util/grub-mkconfig.in: Replace $0 with $self.
3894 * util/grub-reboot.in: Likewise.
3895 * util/grub-set-default.in: Likewise.
3896
3897 2013-10-26 BVK Chaitanya <bvk.groups@gmail.com>
3898
3899 * docs/osdetect.cfg: New file.
3900
3901 2013-10-26 BVK Chaitanya <bvk.groups@gmail.com>
3902
3903 * tests/util/grub-shell.in: Add new --debug option.
3904
3905 2013-10-26 BVK Chaitanya <bvk.groups@gmail.com>
3906
3907 * tests/test_unset.in: New test.
3908
3909 2013-10-26 BVK Chaitanya <bvk.groups@gmail.com>
3910
3911 * tests/test_sha512sum.in: New test.
3912
3913 2013-10-26 Vladimir Serbinenko <phcoder@gmail.com>
3914
3915 * grub-core/fs/iso9660.c: Replace strncat with memcpy.
3916 * include/grub/misc.h: Remove strncat.
3917 * grub-core/lib/posix_wrap/string.h: Likewise.
3918
3919 2013-10-26 Vladimir Serbinenko <phcoder@gmail.com>
3920
3921 * grub-core/net/tftp.c: Retransmit ack when rereceiving old packet.
3922 Try to handle more than 0xFFFF packets.
3923 Reported by: Bernhard Übelacker <bernhardu>.
3924 He also spotted few overflows in first version of this patch.
3925
3926 2013-10-26 Vladimir Serbinenko <phcoder@gmail.com>
3927
3928 * tests/date_unit_test.c: New test.
3929
3930 2013-10-26 Vladimir Serbinenko <phcoder@gmail.com>
3931
3932 * grub-core/normal/datetime.c (grub_unixtime2datetime): Fix mishandling
3933 of first three years after start of validity of unixtime.
3934
3935 2013-10-26 Vladimir Serbinenko <phcoder@gmail.com>
3936
3937 * grub-core/normal/menu_entry.c (get_logical_num_lines): Use unsigned
3938 division as the one making more sense.
3939 (update_screen): Likewise.
3940 (complete): Likewise.
3941
3942 2013-10-25 Vladimir Serbinenko <phcoder@gmail.com>
3943
3944 * grub-core/normal/menu_entry.c (complete): Make sure that width is >0.
3945
3946 2013-10-25 Vladimir Serbinenko <phcoder@gmail.com>
3947
3948 Make char and string width grub_size_t rather than grub_ssize_t.
3949
3950 2013-10-25 Vladimir Serbinenko <phcoder@gmail.com>
3951
3952 * grub-core/normal/cmdline.c (grub_history_get): Make argument into
3953 unsigned.
3954 (grub_history_replace): Likewise.
3955
3956 2013-10-25 Vladimir Serbinenko <phcoder@gmail.com>
3957
3958 * grub-core/disk/raid6_recover.c: Use unsigned arithmetics when
3959 appropriate.
3960
3961 2013-10-25 Vladimir Serbinenko <phcoder@gmail.com>
3962
3963 * grub-core/video/bitmap_scale.c: Use unsigned arithmetics when
3964 appropriate.
3965
3966 2013-10-25 Vladimir Serbinenko <phcoder@gmail.com>
3967
3968 * grub-core/video/fb/fbblit.c: Use (255 ^ x) rather than (255 - x).
3969 Use unsigned divisions rather than signed variants.
3970
3971 2013-10-25 Vladimir Serbinenko <phcoder@gmail.com>
3972
3973 * grub-core/video/readers/png.c (grub_png_convert_image): Use
3974 unsigned arithmetics.
3975 Add missing break.
3976
3977 2013-10-25 Vladimir Serbinenko <phcoder@gmail.com>
3978
3979 * grub-core/video/readers/jpeg.c: Use unsigned where appropriate.
3980
3981 2013-10-25 Vladimir Serbinenko <phcoder@gmail.com>
3982
3983 * grub-core/fs/zfs/zfs.c (xor_out): Use unsigned modular arithmetics
3984 rather than signed one.
3985 (recovery): Likewise.
3986
3987 2013-10-25 Vladimir Serbinenko <phcoder@gmail.com>
3988
3989 * grub-core/net/dns.c (hash): Use unsigned arithmetic.
3990
3991 2013-10-25 Vladimir Serbinenko <phcoder@gmail.com>
3992
3993 * grub-core/io/gzio.c (test_zlib_header): Use undigned modulo rather
3994 than signed.
3995
3996 2013-10-25 Jon McCune <jonmccune@google.com>
3997
3998 * docs/grub.texi: Cleanup security documentation around signatures.
3999
4000 2013-10-25 Vladimir Serbinenko <phcoder@gmail.com>
4001
4002 * grub-core/fs/ext2.c (EXT2_BLOCK_SIZE): Make unsigned.
4003
4004 2013-10-25 Vladimir Serbinenko <phcoder@gmail.com>
4005
4006 * grub-core/commands/gptsync.c (lba_to_chs): Use proper types rather
4007 than int.
4008
4009 2013-10-25 Vladimir Serbinenko <phcoder@gmail.com>
4010
4011 * conf/Makefile.common (CPPFLAGS_KERNEL): Add -DGRUB_KERNEL=1.
4012 * include/grub/dl.h (GRUB_MOD_INIT), (GRUB_MOD_FINI): Define
4013 functions when compiling for kernel.
4014
4015 2013-10-25 Vladimir Serbinenko <phcoder@gmail.com>
4016
4017 * grub-core/lib/progress.c (grub_file_progress_hook_real): Cast to
4018 unsigned long long when using %llu.
4019
4020 2013-10-25 Vladimir Serbinenko <phcoder@gmail.com>
4021
4022 * grub-core/lib/progress.c (grub_file_progress_hook_real): Refresh
4023 terminal after updating progress.
4024
4025 2013-10-25 Vladimir Serbinenko <phcoder@gmail.com>
4026
4027 * grub-core/boot/i386/pc/startup_raw.S (grub_gate_a20): Remove
4028 argument. We don't disable Gate A20 in this code.
4029
4030 2013-10-25 Vladimir Serbinenko <phcoder@gmail.com>
4031
4032 * grub-core/boot/i386/qemu/boot.S: Ensure that A20 is enabled.
4033 Conceptually based on change in branch "vbe-on-coreboot".
4034
4035 2013-10-24 Robert Millan <rmh@gnu.org>
4036
4037 * grub-core/video/i386/pc/vbe.c (grub_video_vbe_setup): Replace
4038 numeric constants with their symbolic equivalent.
4039 Taken from branch "vbe-on-coreboot".
4040
4041 2013-10-22 Vladimir Serbinenko <phcoder@gmail.com>
4042
4043 * docs/grub.texi: Fix ordering and use pxref rather than xref.
4044
4045 2013-10-22 Vladimir Serbinenko <phcoder@gmail.com>
4046
4047 * grub-core/lib/progress.c (grub_file_progress_hook_real): Use
4048 divmod64 for offset division.
4049
4050 2013-10-22 Paulo Flabiano Smorigo <pfsmorigo@br.ibm.com>
4051
4052 Rename .bzrignore to .gitignore. Add "*.o" rule.
4053
4054 * .bzrignore: Renamed to...
4055 * .gitignore: ...this.
4056
4057 2013-10-22 Paulo Flabiano Smorigo <pfsmorigo@br.ibm.com>
4058
4059 Add new progress module that displays the load progress of files.
4060
4061 * grub-core/lib/progress.c: New file.
4062 * grub-core/Makefile.core.def (progress): New module.
4063 * grub-core/kern/file.c (grub_file_open): File name added.
4064 * (grub_file_read): Progress hook added.
4065 * grub-core/fs/cbfs.c (grub_cbfs_read): Likewise.
4066 * grub-core/fs/cpio_common.c (grub_cpio_read): Likewise.
4067 * grub-core/net/net.c (grub_net_fs_read_real): Likewise.
4068 * include/grub/file.h (struct grub_file): Add progress module members.
4069 * include/grub/term.h (struct grub_term_output): Likewise.
4070 * grub-core/osdep/unix/emuconsole.c (grub_console_term_output):
4071 Terminal velocity added.
4072 * grub-core/osdep/windows/emuconsole.c (grub_console_term_output): Likewise.
4073 * grub-core/term/arc/console.c (grub_console_term_output): Likewise.
4074 * grub-core/term/efi/console.c (grub_console_term_output): Likewise.
4075 * grub-core/term/gfxterm.c (grub_video_term): Likewise.
4076 * grub-core/term/i386/coreboot/cbmemc.c (grub_cbmemc_term_output): Likewise.
4077 * grub-core/term/i386/pc/console.c (grub_console_term_output): Likewise.
4078 * grub-core/term/i386/pc/vga_text.c (grub_vga_text_term): Likewise.
4079 * grub-core/term/ieee1275/console.c (grub_console_term_output): Likewise.
4080 * grub-core/term/morse.c (grub_audio_term_output): Likewise.
4081 * grub-core/term/serial.c (grub_serial_term_output): Likewise.
4082 * grub-core/term/spkmodem.c (grub_spkmodem_term_output): Likewise.
4083 * grub-core/term/uboot/console.c (uboot_console_term_output): Likewise.
4084
4085 2013-10-22 Vladimir Serbinenko <phcoder@gmail.com>
4086
4087 Verify signatures of signatures unless --skip-sig is specified.
4088
4089 2013-10-21 Vladimir Serbinenko <phcoder@gmail.com>
4090
4091 * grub-core/kern/misc.c (grub_vsnprintf_real): Remove needless explicit
4092 \0 checking.
4093
4094 Saves 70 bytes on compressed image.
4095
4096 2013-10-21 Vladimir Serbinenko <phcoder@gmail.com>
4097
4098 * grub-core/kern/misc.c (grub_strtoull): Remove needless *ptr != 0
4099 check.
4100
4101 Saves 10 bytes on compressed image.
4102
4103 2013-10-21 Vladimir Serbinenko <phcoder@gmail.com>
4104
4105 * grub-core/kern/misc.c (grub_isprint): Move to ...
4106 * include/grub/misc.h (grub_isprint): ... here. Make inline.
4107
4108 Saves 20 bytes on compressed image due to remving exporting.
4109
4110 2013-10-21 Vladimir Serbinenko <phcoder@gmail.com>
4111
4112 * grub-core/fs/ntfs.c (grub_ntfs_mount): Remove redundant check.
4113
4114 Saves 5 bytes on compressed image.
4115
4116 2013-10-21 Vladimir Serbinenko <phcoder@gmail.com>
4117
4118 * grub-core/fs/ntfs.c: Move common UTF-16 handling to a separate
4119 function get_utf8.
4120
4121 Saves 379 bytes on compressed image.
4122
4123 2013-10-21 Vladimir Serbinenko <phcoder@gmail.com>
4124
4125 * grub-core/fs/ntfs.c: Handle 48-bit MFT no.
4126
4127 2013-10-21 Vladimir Serbinenko <phcoder@gmail.com>
4128
4129 * grub-core/fs/ntfs.c (read_run_data): Rewrite using bitfields.
4130
4131 Saves 40 bytes on compressed image.
4132
4133 2013-10-21 Vladimir Serbinenko <phcoder@gmail.com>
4134
4135 * grub-core/fs/ntfs.c (grub_ntfs_iterate_dir): Use grub_uint8_t for
4136 mask rather than 64-bit type.
4137
4138 Saves 20 bytes on compressed image.
4139
4140 2013-10-21 Vladimir Serbinenko <phcoder@gmail.com>
4141
4142 * grub-core/fs/ntfs.c (read_data): Move code for compressed data to ...
4143 * grub-core/fs/ntfscomp.c (ntfscomp): ... here.
4144
4145 Saves 273 bytes on compressed image.
4146
4147 2013-10-20 Vladimir Serbinenko <phcoder@gmail.com>
4148
4149 * grub-core/kern/disk.c (grub_disk_write): Use malloc/free instead of
4150 variable length arrays.
4151
4152 Saves 50 bytes on compressed image.
4153
4154 2013-10-20 Vladimir Serbinenko <phcoder@gmail.com>
4155
4156 * grub-core/loader/i386/bsd.c: Remove variable length arrays.
4157
4158 2013-10-20 Vladimir Serbinenko <phcoder@gmail.com>
4159
4160 * grub-core/fs/ufs.c: Remove variable length arrays.
4161
4162 2013-10-20 Vladimir Serbinenko <phcoder@gmail.com>
4163
4164 * grub-core/fs/ntfs.c: Add comment about fixed allocation size.
4165
4166 2013-10-20 Vladimir Serbinenko <phcoder@gmail.com>
4167
4168 * grub-core/fs/zfs.c: Remove variable length arrays.
4169 Reduces zfs.mod by 160 bytes (208 compressed).
4170
4171 2013-10-20 Vladimir Serbinenko <phcoder@gmail.com>
4172
4173 * grub-core/fs/zfs/zfs.c (check_pool_label): Fix memory leak.
4174
4175 2013-10-20 Vladimir Serbinenko <phcoder@gmail.com>
4176
4177 * grub-core/net/arp.c: Remove variable length arrays.
4178 * grub-core/net/bootp.c: Likewise.
4179 * grub-core/net/dns.c: Likewise.
4180 * grub-core/net/icmp6.c: Likewise.
4181 * grub-core/net/net.c: Likewise.
4182
4183 2013-10-20 Vladimir Serbinenko <phcoder@gmail.com>
4184
4185 * grub-core/fs/ntfs.c: Remove variable length arrays.
4186 Increases ntfs.mod by 64 bytes (but decreases by 3 when
4187 compressed).
4188
4189 2013-10-20 Vladimir Serbinenko <phcoder@gmail.com>
4190
4191 * grub-core/fs/hfs.c: Remove variable length arrays.
4192 Reduces hfs.mod by 8 bytes (52 compressed).
4193
4194 2013-10-20 Vladimir Serbinenko <phcoder@gmail.com>
4195
4196 * grub-core/fs/udf.c: Remove variable length arrays.
4197 Increases udf.mod by 128 bytes (but decreases by 13 when
4198 compressed).
4199
4200 2013-10-20 Vladimir Serbinenko <phcoder@gmail.com>
4201
4202 * grub-core/fs/iso9660.c: Remove variable length arrays.
4203 Increases iso9660.mod by 200 bytes (but decreases by 79 when
4204 compressed).
4205
4206 2013-10-20 Vladimir Serbinenko <phcoder@gmail.com>
4207
4208 * grub-core/fs/nilfs2.c: Remove variable length arrays.
4209 Increases nilfs2.mod by 24 bytes (but decreases by 115 when
4210 compressed).
4211
4212 2013-10-20 Vladimir Serbinenko <phcoder@gmail.com>
4213
4214 * grub-core/fs/xfs.c: Remove variable length arrays.
4215 Reduces xfs.mod by 40 bytes (43 compressed).
4216
4217 2013-10-20 Vladimir Serbinenko <phcoder@gmail.com>
4218
4219 * grub-core/fs/fshelp.c: Remove variable length arrays.
4220 Reduces fshelp.mod by 116 bytes (23 compressed).
4221
4222 2013-10-20 Vladimir Serbinenko <phcoder@gmail.com>
4223
4224 * grub-core/normal/completion.c: Remove variable length arrays.
4225 * grub-core/normal/menu_entry.c: Likewise.
4226
4227 Reduces normal.mod by 496 bytes.
4228
4229 2013-10-20 Vladimir Serbinenko <phcoder@gmail.com>
4230
4231 * grub-core/fs/minix.c: Remove variable length arrays. Reduces jfs.mod
4232 by 356 bytes (158 compressed).
4233
4234 2013-10-20 Vladimir Serbinenko <phcoder@gmail.com>
4235
4236 * grub-core/fs/jfs.c: Remove variable length arrays. Reduces jfs.mod
4237 by 364 bytes (169 compressed).
4238
4239 2013-10-20 Vladimir Serbinenko <phcoder@gmail.com>
4240
4241 * grub-core/fs/bfs.c: Remove variable length arrays. Reduces afs.mod and
4242 bfs.mod size by 556 resp 740 bytes (288 resp 334 compressed).
4243 * include/grub/types.h (grub_unaligned_uint64_t): New type.
4244
4245 2013-10-19 Vladimir Serbinenko <phcoder@gmail.com>
4246
4247 Lift 255x255 erminal sie restriction to 65535x65535. Also change from
4248 bitmasks to small structures of size chosen to fit in registers.
4249
4250 2013-10-19 Vladimir Serbinenko <phcoder@gmail.com>
4251
4252 * conf/Makefile.common: Use -freg-struct-return on i386. This
4253 decreases code size and improves performance.
4254
4255 2013-10-19 Vladimir Serbinenko <phcoder@gmail.com>
4256
4257 * grub-core/osdep/unix/exec.c: Fix compilation error on emu.
4258
4259 2013-10-19 Vladimir Serbinenko <phcoder@gmail.com>
4260
4261 * grub-core/kern/misc.c (grub_vsnprintf_real): Fix formatting of
4262 "(null)" string.
4263 Simplify expressions to save around 256 bytes in kernel.img.
4264 * tests/printf_unit_test.c (printf_test): Add "(null)" tests.
4265
4266 2013-10-19 Vladimir Serbinenko <phcoder@gmail.com>
4267
4268 * grub-core/tests/video_checksum.c (grub_video_capture_write_bmp):
4269 Use GRUB_UTIL_FD_O_* rather than O_*.
4270
4271 2013-10-19 Vladimir Serbinenko <phcoder@gmail.com>
4272
4273 Add haiku-specific functions.
4274
4275 2013-10-19 Vladimir Serbinenko <phcoder@gmail.com>
4276
4277 * grub-core/kern/emu/hostdisk.c: Remove few leftover includes.
4278
4279 2013-10-19 Vladimir Serbinenko <phcoder@gmail.com>
4280
4281 Move stat () and device mode checking into OS-dependent files as
4282 long as performance doesn't suffer.
4283
4284 2013-10-19 Vladimir Serbinenko <phcoder@gmail.com>
4285
4286 Split make_system_path_relative_to_its_root into separate file
4287 relpath.c from getroot.c as it's common between unix and haiku
4288 but otherwise haiku doesn't use any functions from unix getroot.c.
4289
4290 2013-10-19 Vladimir Serbinenko <phcoder@gmail.com>
4291
4292 * grub-core/osdep/aros/hostdisk.c (grub_util_is_directory):
4293 New function.
4294 (grub_util_is_special_file): Likewise.
4295
4296 2013-10-19 Vladimir Serbinenko <phcoder@gmail.com>
4297
4298 * grub-core/osdep/unix/getroot.c: Move exec functions to ...
4299 * osdep/unix/exec.c: ... here. Add few additional exec_* variants.
4300
4301 2013-10-19 Vladimir Serbinenko <phcoder@gmail.com>
4302
4303 * grub-core/lib/libgcrypt_wrap/cipher_wrap.h: Define size_t to
4304 grub_size_t. This fixes the case when size_t mismatches grub_size_t.
4305
4306 2013-10-19 Vladimir Serbinenko <phcoder@gmail.com>
4307
4308 * util/grub-mkimagexx.c (make_reloc_section): Fix memory leak.
4309 (load_image): Likewise.
4310
4311 2013-10-19 Vladimir Serbinenko <phcoder@gmail.com>
4312
4313 * util/grub-render-label.c: Move backend part to ...
4314 * util/render-label.c: ... here.
4315
4316 2013-10-18 Vladimir Serbinenko <phcoder@gmail.com>
4317
4318 * grub-core/osdep/random.c: Use unix/random.c on haiku. Haiku uses
4319 yarrow (by B. Schneier et al) for its /dev/urandom (similar to FreeBSD).
4320
4321 2013-10-18 Vladimir Serbinenko <phcoder@gmail.com>
4322
4323 * grub-core/osdep/generic/blocklist.c: Add missing include to string.h.
4324
4325 2013-10-18 Vladimir Serbinenko <phcoder@gmail.com>
4326
4327 * grub-core/disk/efi/efidisk.c (grub_efidisk_get_device_name): Handle
4328 CD-ROM in case when it's declared as having subpartitions.
4329
4330 2013-10-18 Vladimir Serbinenko <phcoder@gmail.com>
4331
4332 Don't add -lm on haiku.
4333
4334 * configure.ac: Define BUILD_LIBM to -lm on most platforms
4335 and empty on haiku.
4336 * grub-core/Makefile.am (gentrigtables): Use $(BUILD_LIBM) rather than
4337 -lm.
4338
4339 2013-10-18 Vladimir Serbinenko <phcoder@gmail.com>
4340
4341 * configure.ac: Use -melf_*_haiku as target on haiku.
4342
4343 2013-10-18 Vladimir Serbinenko <phcoder@gmail.com>
4344
4345 * Makefile.util.def: Add util/setup.c to extra_dist.
4346
4347 2013-10-18 Vladimir Serbinenko <phcoder@gmail.com>
4348
4349 * grub-core/kern/i386/pc/mmap.c (grub_machine_mmap_iterate): Pass
4350 unknown types through.
4351
4352 2013-10-18 Vladimir Serbinenko <phcoder@gmail.com>
4353
4354 * grub-core/osdep/unix/getroot.c (grub_util_check_block_device): Remove.
4355 (grub_util_check_char_device): Likewise.
4356 * include/grub/emu/getroot.h: Likewise.
4357
4358 2013-10-18 Vladimir Serbinenko <phcoder@gmail.com>
4359
4360 * grub-core/lib/libgcrypt_wrap/cipher_wrap.h: Use define for defining
4361 memset rather than inline static function.
4362
4363 2013-10-18 Vladimir Serbinenko <phcoder@gmail.com>
4364
4365 * grub-core/lib/xzembed/xz_config.h: Enable all bcj filters when
4366 not doing embedded decompressor.
4367
4368 2013-10-18 Vladimir Serbinenko <phcoder@gmail.com>
4369
4370 * grub-core/disk/ldm.c: Rename variables and arguments to prevent
4371 shadowing.
4372 * grub-core/kern/disk.c: Likewise.
4373 * grub-core/kern/misc.c: Likewise.
4374 * include/grub/parser.h: Likewise.
4375 * include/grub/script_sh.h: Likewise.
4376 * include/grub/zfs/zfs.h: Likewise.
4377
4378 2013-10-18 Vladimir Serbinenko <phcoder@gmail.com>
4379
4380 * grub-core/disk/luks.c (configure_ciphers): Fix spurious warning.
4381
4382 2013-10-18 Vladimir Serbinenko <phcoder@gmail.com>
4383
4384 * grub-core/fs/zfs/zfs_lz4.c: Check that __INTEL_COMPILER is
4385 defined before trying to use it.
4386
4387 2013-10-18 Vladimir Serbinenko <phcoder@gmail.com>
4388
4389 * grub-core/fs/affs.c (grub_affs_create_node): Fix uninited value
4390 warning.
4391
4392 2013-10-18 Vladimir Serbinenko <phcoder@gmail.com>
4393
4394 * include/grub/dl.h: Remove double declaration of GRUB_MOD_DEP.
4395 Use __unused__ rather than __used__ on gcc < 3.2.
4396
4397 2013-10-18 Vladimir Serbinenko <phcoder@gmail.com>
4398
4399 * include/grub/setjmp.h: Define RETURNS_TWICE. Keep it empty for
4400 gcc < 4.0.
4401 * include/grub/*/setjmp.h: USe RETURNS_TWICE.
4402
4403 2013-10-18 Vladimir Serbinenko <phcoder@gmail.com>
4404
4405 * grub-core/disk/dmraid_nvidia.c: Fix potentially uninited "layout".
4406
4407 2013-10-18 Vladimir Serbinenko <phcoder@gmail.com>
4408
4409 * include/grub/misc.h: Don't use warn_unused_result on gcc < 3.4.
4410 * include/grub/emu/misc.h: Likewise.
4411
4412 2013-10-18 Vladimir Serbinenko <phcoder@gmail.com>
4413
4414 * grub-core/term/i386/pc/vga_text.c: Remove extra declaration of
4415 cur_color.
4416
4417 2013-10-18 Vladimir Testov <vladimir.testov@rosalab.ru>
4418
4419 * grub-core/tests/checksums.h: Regenerated due to progress bar
4420 get_minimal_size changes.
4421
4422 2013-10-17 BVK Chaitanya <bvk.groups@gmail.com>
4423
4424 Added `tr' command support.
4425
4426 * grub-core/commands/tr.c: New file.
4427 * grub-core/Makefile.core.def: Build rules for new module.
4428
4429 * tests/grub_cmd_tr.in: New test.
4430 * Makefile.util.def: Build rules for new test.
4431
4432 2013-10-17 Vladimir Testov <vladimir.testov@rosalab.ru>
4433
4434 * grub-core/gfxmenu/gui_progress_bar.c: Sanity checks added.
4435
4436 2013-10-17 Vladimir Testov <vladimir.testov@rosalab.ru>
4437
4438 * grub-core/gfxmenu/gui_progress_bar.c: New option ``highlight_overlay``
4439 * docs/gurb.texi: Likewise.
4440
4441 2013-10-17 Vladimir Testov <vladimir.testov@rosalab.ru>
4442
4443 * grub-core/gfxmenu/gui_progress_bar.c (draw_pixmap_bar): Fixed bug.
4444 Pixmap highlighted section with east and west slices was displayed
4445 incorrectly due to negative width of the central slice.
4446
4447 2013-10-17 Vladimir Testov <vladimir.testov@rosalab.ru>
4448
4449 * docs/grub.texi: Graphical options information update.
4450 Removed outdated. Updated current. Inserted missed.
4451
4452 2013-10-17 Vladimir Serbinenko <phcoder@gmail.com>
4453
4454 * docs/grub.texi: Mention few new platform-specific commands.
4455
4456 2013-10-17 Vladimir Serbinenko <phcoder@gmail.com>
4457
4458 * grub-core/script/yylex.l: Fix LSQBR2 and RSQBR2. It's not
4459 currently used so this doesn't really have any effect.
4460 Reported by: Douglas Ray <dougray>
4461
4462 2013-10-17 Vladimir Serbinenko <phcoder@gmail.com>
4463
4464 * autogen.sh: Don't set LC_CTYPE as it doesn't create problem for
4465 compilation but prevents gcc from displaying messages in non-Latin
4466 alphabets.
4467 * conf/Makefile.common: Likewise.
4468
4469 2013-10-16 Hiroyuki YAMAMORI
4470
4471 Handle Japanese special keys.
4472 Reported by: Hiroyuki YAMAMORI.
4473 Codes supplied by: Hiroyuki YAMAMORI.
4474
4475 2013-10-16 Vladimir Testov <vladimir.testov@rosalab.ru>
4476
4477 * grub-core/gfxmenu/gui_list.c: Scrollbar sanity checks added.
4478
4479 2013-10-16 Vladimir Testov <vladimir.testov@rosalab.ru>
4480
4481 * grub-core/gfxmenu/gui_list.c: New option `item_pixmap_style`.
4482 * docs/grub.texi: Likewise.
4483
4484 2013-10-16 Vladimir Serbinenko <phcoder@gmail.com>
4485
4486 * grub-core/osdep/unix/hostdisk.c (grub_util_fd_read): Return correct
4487 value in case of incomplete read.
4488 (grub_util_fd_write): Likewise.
4489
4490 2013-10-15 Vladimir Serbinenko <phcoder@gmail.com>
4491
4492 * util/editenv.c (grub_util_create_envblk_file): Use grub_util_rename.
4493
4494 2013-10-15 Vladimir Serbinenko <phcoder@gmail.com>
4495
4496 * util/grub-editenv.c (create_envblk_file): More from here ...
4497 * util/editenv.c (grub_util_create_envblk_file): ... to here.
4498
4499 2013-10-15 Vladimir Serbinenko <phcoder@gmail.com>
4500
4501 * grub-core/osdep/unix/getroot.c (grub_guess_root_devices):
4502 canonicalize file name before doing the rest.
4503
4504 2013-10-15 Vladimir Serbinenko <phcoder@gmail.com>
4505
4506 * include/grub/osdep/hostfile_windows.h: Add missing ftello for
4507 mingw32.
4508
4509 2013-10-15 Vladimir Serbinenko <phcoder@gmail.com>
4510
4511 Define grub_util_is_directory/regular/special_file and
4512 use OS-dependent versions rather than to rely on stat().
4513
4514 2013-10-15 Vladimir Serbinenko <phcoder@gmail.com>
4515
4516 * util/grub-mkimage.c: Move backend part to ...
4517 * util/mkimage.c: ... here.
4518
4519 2013-10-15 Vladimir Serbinenko <phcoder@gmail.com>
4520
4521 Allow compilation with mingw64 albeit with warnings due to lack of
4522 %llx/%llu.
4523
4524 * grub-core/gnulib/msvc-inval.c: Use __cdecl rather than cdecl.
4525 * grub-core/lib/posix_wrap/wchar.h: Define wint_t.
4526 * grub-core/lib/posix_wrap/wctype.h: Define wctype_t.
4527 * include/grub/osdep/hostfile_windows.h: Don't define fseeko/ftello
4528 on mingw64.
4529 * include/grub/types.h: Allow sizeof (long) != sizeof (void *).
4530
4531 2013-10-15 Vladimir Serbinenko <phcoder@gmail.com>
4532
4533 Remove leftover references to some of the system headers.
4534
4535 2013-10-15 Vladimir Serbinenko <phcoder@gmail.com>
4536
4537 * grub-core/disk/geli.c (grub_util_get_geli_uuid): Close handle after
4538 read.
4539
4540 2013-10-15 Vladimir Serbinenko <phcoder@gmail.com>
4541
4542 * grub-core/disk/cryptodisk.c: Use grub_util_fd_strerror instead
4543 of strerror.
4544
4545 2013-10-15 Vladimir Serbinenko <phcoder@gmail.com>
4546
4547 Split out blocklist retrieving from setup.c to
4548 grub-core/osdep/blocklist.c and add windows implementation since
4549 generic version doesn't work on NTFS on Windows due to aggressive
4550 unflushable cache.
4551
4552 2013-10-15 Vladimir Serbinenko <phcoder@gmail.com>
4553
4554 Split grub-setup.c into frontend (grub-setup.c) and backend (setup.c)
4555 files.
4556
4557 2013-10-15 Vladimir Serbinenko <phcoder@gmail.com>
4558
4559 * grub-core/osdep/windows/hostdisk.c (grub_util_fd_strerror):
4560 Cut tailing newline. Remove arbitrary limitation. Always use
4561 grub_util_tchar_to_utf8.
4562
4563 2013-10-15 Vladimir Serbinenko <phcoder@gmail.com>
4564
4565 * grub-core/kern/misc.c (grub_vsnprintf_real): Handle %% properly.
4566 * tests/printf_unit_test.c (printf_test): Add %% tests.
4567 Reported by: Paulo Flabiano Smorigo.
4568
4569 2013-10-15 Vladimir Serbinenko <phcoder@gmail.com>
4570
4571 * grub-core/osdep/windows/hostdisk.c (fsync) [__MINGW32__]: Really
4572 implement fsync.
4573
4574 2013-10-15 Vladimir Serbinenko <phcoder@gmail.com>
4575
4576 * configure.ac: Check for nvlist_lookup_string in nvpair since we
4577 use nvlist_lookup_string and don't use nvlist_print.
4578
4579 2013-10-15 Vladimir Serbinenko <phcoder@gmail.com>
4580
4581 Add wrappers around rename, unlink, mkdir, opendir, readdir and
4582 closedir to handle filename charset translation.
4583
4584 2013-10-15 Vladimir Serbinenko <phcoder@gmail.com>
4585
4586 * include/grub/emu/hostdisk.h: Move file operations to
4587 * include/grub/emu/hostfile.h: ... here.
4588
4589 2013-10-15 Vladimir Serbinenko <phcoder@gmail.com>
4590
4591 * grub-core/osdep/windows/hostdisk.c (canonicalize_file_name): Handle
4592 unicode path.
4593
4594 2013-10-15 Vladimir Serbinenko <phcoder@gmail.com>
4595
4596 * grub-core/tests/checksums.h: Regenerate due to swiss.sed change.
4597
4598 2013-10-15 Vladimir Serbinenko <phcoder@gmail.com>
4599
4600 Move cpu time retrieval to separate grub_util_get_cpu_time_ms
4601 and remove export.h.
4602
4603 2013-10-15 Vladimir Serbinenko <phcoder@gmail.com>
4604
4605 * grub-core/kern/emu/error.c: Removed.
4606 * grub-core/Makefile.core.def (kernel): Don't add error.c and progname.c
4607 explicitly as it's already in libgnu.a.
4608
4609 2013-10-15 Vladimir Serbinenko <phcoder@gmail.com>
4610
4611 * grub-core/osdep/windows/emuconsole.c: Add missing config.h and
4612 config-util.h include.
4613
4614 2013-10-15 Vladimir Serbinenko <phcoder@gmail.com>
4615
4616 Split emunet into platform-dependent and GRUB-binding parts. Keep
4617 platform-dependent part in kernel for easy access to OS functions.
4618
4619 2013-10-15 Vladimir Serbinenko <phcoder@gmail.com>
4620
4621 * grub-core/tests/video_checksum.c: Use grub_util_fd_* rather than
4622 open/read/write.
4623
4624 2013-10-14 Vladimir Serbinenko <phcoder@gmail.com>
4625
4626 * grub-core/osdep/windows/emuconsole.c: New file.
4627
4628 2013-10-14 Andrey Borzenkov <arvidjaar@gmail.com>
4629
4630 * conf/Makefile.extra-dist: Add osdep/*/init.c
4631
4632 2013-10-14 Vladimir Serbinenko <phcoder@gmail.com>
4633
4634 * Makefile.am: Use TARGET_OBJCOPY when doing objcopy for target.
4635
4636 2013-10-14 Vladimir Serbinenko <phcoder@gmail.com>
4637
4638 * util/grub-probe.c (probe): Separate different drives in hint-str
4639 by spaces and not newlines.
4640 * util/grub-mkconfig_lib.in: Handle multidevice filesystem.
4641
4642 2013-10-14 Andrey Borzenkov <arvidjaar@gmail.com>
4643
4644 * grub-core/disk/efi/efidisk.c (grub_efidisk_get_device_name):
4645 Handle CD-ROMs.
4646
4647 2013-10-14 Vladimir Serbinenko <phcoder@gmail.com>
4648
4649 Pass-through unknown E820 types. It required reorganisation of mmap
4650 module.
4651
4652 2013-10-14 Andrey Borzenkov <arvidjaar@gmail.com>
4653
4654 * Makefile.util.def: Add osdep/init.c to grub-mount files.
4655
4656 2013-10-14 Vladimir Serbinenko <phcoder@gmail.com>
4657
4658 Make grub_util_fd_seek match behaviour of other grub_util_fd_* and
4659 fseeko.
4660
4661 2013-10-14 qwertial <qwertial>
4662
4663 * grub-core/gdb_grub.in: Fix overflow and wrong field.
4664
4665 2013-10-14 Jon McCune <jonmccune@google.com>
4666
4667 * docs/grub.texi: Document new signatures possibility.
4668
4669 2013-10-14 Vladimir Serbinenko <phcoder@gmail.com>
4670
4671 Define GRUB_UTIL_FD_O_* and always use them with grub_util_fd_open.
4672
4673 2013-10-14 Vladimir Serbinenko <phcoder@gmail.com>
4674
4675 * include/grub/osdep/hostfile_windows.h (grub_util_utf8_to_tchar): Add
4676 missing prototype.
4677 (grub_util_tchar_to_utf8): Likewise.
4678
4679 2013-10-14 Vladimir Serbinenko <phcoder@gmail.com>
4680
4681 * grub-core/Makefile.core.def: Add osdep/init.c on emu.
4682 * grub-core/kern/emu/main.c: Add missing include.
4683 * grub-core/osdep/basic/init.c (grub_util_host_init) [!GRUB_UTIL]:
4684 Don't call grub_util_init_nls.
4685 * grub-core/osdep/windows/init.c (grub_util_host_init) [!GRUB_UTIL]:
4686 Likewise.
4687
4688 2013-10-13 Vladimir Serbinenko <phcoder@gmail.com>
4689
4690 * util/misc.c (grub_util_get_image_size): Use FILE functions rather than
4691 stat.
4692
4693 2013-10-13 Vladimir Serbinenko <phcoder@gmail.com>
4694
4695 * util/grub-editenv.c: Remove leftover set_program_name and init_nls.
4696
4697 2013-10-13 Vladimir Serbinenko <phcoder@gmail.com>
4698
4699 * include/grub/misc.h: Use gnu_printf only on gcc 4.4 or later.
4700
4701 2013-10-13 Vladimir Serbinenko <phcoder@gmail.com>
4702
4703 Add a wrapper for fopen. On unix-like systems just pass-through. On
4704 windows use unicode version.
4705
4706 2013-10-13 Vladimir Serbinenko <phcoder@gmail.com>
4707
4708 Move set_program_name and init_nls to host_init. On windows
4709 fix in this fuction console and argument charset as well.
4710
4711 2013-10-12 Andrey Borzenkov <arvidjaar@gmail.com>
4712
4713 Fix inconsistent use of GRUB_CRYPTODISK_ENABLE and
4714 GRUB_ENABLE_CRYPTODISK.
4715
4716 * util/grub-install.in: Rename all GRUB_CRYPTODISK_ENABLE to
4717 GRUB_ENABLE_CRYPTODISK.
4718 * util/grub-mkconfig_lib.in: Likewise.
4719
4720 2013-10-12 Christian Cier-Zniewski <c.cier@gmx.de>
4721
4722 * docs/grub.texi (Vendor power-on keys): Add Dell Latitude E4300.
4723
4724 2013-10-12 Melki Christian <Christian.melki@saabgroup.com>
4725
4726 * grub-core/term/at_keyboard.c [DEBUG_AT_KEYBOARD]: Fix compilation
4727 error when enabling debug.
4728
4729 2013-10-12 Ilya Bakulin <Ilya_Bakulin@genua.de>
4730
4731 * configure.ac: Use -melf_*_obsd on openbsd.
4732
4733 2013-10-12 Vladimir Serbinenko <phcoder@gmail.com>
4734
4735 * grub-core/kern/arm/dl_helper.c: Use more proper %p for pointer.
4736
4737 2013-10-12 Vladimir Serbinenko <phcoder@gmail.com>
4738
4739 * include/grub/misc.h: Use gnu_printf rather than printf as format
4740 template since our functions are independent of libc.
4741
4742 2013-10-11 Vladimir Serbinenko <phcoder@gmail.com>
4743
4744 * util/grub-setup.c (setup): Move copying of partition table as
4745 futher up as possible to avoid possible overwrite by floppy routines.
4746
4747 2013-10-11 Vladimir Serbinenko <phcoder@gmail.com>
4748
4749 * grub-core/fs/fat.c: Fix handling of exfat contiguous files.
4750
4751 2013-10-10 Vladimir Testov <vladimir.testov@rosalab.ru>
4752
4753 * grub-core/gfxmenu/gui_list.c: New option `scrollbar_thumb_overlay`.
4754 * docs/grub.texi: Likewise.
4755
4756 2013-10-10 Vladimir Serbinenko <phcoder@gmail.com>
4757
4758 * util/getroot.c (make_device_name): Remove dos_part and bsd_part as
4759 it's mostly unused. Move vestiges to the callers.
4760
4761 2013-10-10 Vladimir Serbinenko <phcoder@gmail.com>
4762
4763 * util/grub-mkpasswd-pbkdf2.c: Remove temporary buffers for hex
4764 version of salt and hash. Use grub_snprintf rather than snprintf.
4765
4766 2013-10-10 Vladimir Serbinenko <phcoder@gmail.com>
4767
4768 * docs/grub.texi: Fix problem with braces.
4769
4770 2013-10-10 Vladimir Serbinenko <phcoder@gmail.com>
4771
4772 * conf/Makefile.extra-dist: Fix extra-dist list.
4773 * grub-core/Makefile.core.def: Likewise.
4774
4775 2013-10-10 Vladimir Serbinenko <phcoder@gmail.com>
4776
4777 * docs/grub.texi: Document disk names used on Windows and AROS.
4778
4779 2013-10-10 Vladimir Serbinenko <phcoder@gmail.com>
4780
4781 * grub-core/osdep/aros/getroot.c: Change to //: prefix as discussed
4782 with AROS devs.
4783 * grub-core/osdep/aros/hostdisk.c: Likewise.
4784
4785 2013-10-10 Vladimir Serbinenko <phcoder@gmail.com>
4786
4787 Avoid including hostfile.h when not necessarry as it pulls
4788 in OS-specific headers which may redefine generic names
4789 like "far".
4790
4791 2013-10-09 Vladimir Testov <vladimir.testov@rosalab.ru>
4792
4793 * grub-core/gfxmenu/gui_list.c: New options for scrollbar padding:
4794 scrollbar_left_pad, scrollbar_right_pad, scrollbar_top_pad,
4795 scrollbar_bottom_pad
4796 * docs/grub.texi: Likewise.
4797
4798 2013-10-09 Vladimir Testov <vladimir.testov@rosalab.ru>
4799
4800 * grub-core/gfxmenu/gui_list.c (list_destroy): Fixed memory leak.
4801
4802 2013-10-09 Vladimir Serbinenko <phcoder@gmail.com>
4803
4804 Move OS-dependent file definitions to include/grub/osdep/hostfile*.h.
4805
4806 2013-10-09 Vladimir Serbinenko <phcoder@gmail.com>
4807
4808 * include/grub/emu/hostdisk.h (grub_hostdisk_linux_find_partition):
4809 Removed.
4810 * grub-core/osdep/linux/hostdisk.c (grub_hostdisk_linux_find_partition):
4811 Made static.
4812
4813 2013-10-09 Vladimir Serbinenko <phcoder@gmail.com>
4814
4815 * include/grub/emu/getroot.h (grub_util_find_hurd_root_device): Remove
4816 leftover.
4817
4818 2013-10-09 Vladimir Serbinenko <phcoder@gmail.com>
4819
4820 Move OS-specific driver configuration to grub_util_fd_open. This
4821 moves OS-dependent parts from kern/emu/hostdisk.c to
4822 grub-core/osdep/*/hostdisk.c.
4823
4824 2013-10-09 Vladimir Serbinenko <phcoder@gmail.com>
4825
4826 * util/grub-mkimage.c (generate_image): Use size_t instead of
4827 grub_size_t.
4828 * util/grub-mkimagexx.c (locate_sections): Likewise.
4829 (load_image): Likewise.
4830
4831 2013-10-09 Vladimir Serbinenko <phcoder@gmail.com>
4832
4833 * util/misc.c (grub_util_write_image_at): Don't use PRIxGRUB_SIZE for
4834 size_t.
4835 (grub_util_write_image): Likewise.
4836
4837 2013-10-08 Vladimir Serbinenko <phcoder@gmail.com>
4838
4839 * grub-core/osdep/basic/random.c: New file. Abort on an attempt to
4840 get random when no RNG is available.
4841 * grub-core/osdep/random.c: Use basic/random.c on OS out of whitelist.
4842
4843 2013-10-08 Vladimir Serbinenko <phcoder@gmail.com>
4844
4845 * include/grub/util/lvm.h: Removed.
4846
4847 2013-10-08 Vladimir Serbinenko <phcoder@gmail.com>
4848
4849 * grub-core/kern/emu/misc.c (fsync) [__MINGW32__]: Move to ...
4850 * grub-core/osdep/windows/hostdisk.c (fsync) [__MINGW32__]: ... here.
4851
4852 2013-10-08 Vladimir Serbinenko <phcoder@gmail.com>
4853
4854 * grub-core/osdep/windows/sleep.c: Add missing config.h.
4855
4856 2013-10-08 Vladimir Serbinenko <phcoder@gmail.com>
4857
4858 * grub-core/kern/emu/misc.c (grub_get_rtc): Remove (it's a leftover).
4859
4860 2013-10-08 Vladimir Serbinenko <phcoder@gmail.com>
4861
4862 * grub-core/net/drivers/emu/emunet.c: Move to ..
4863 * grub-core/osdep/linux/emunet.c: ..here.
4864
4865 2013-10-08 Vladimir Serbinenko <phcoder@gmail.com>
4866
4867 * util/ieee1275/ofpath.c: Move to ...
4868 * grub-core/osdep/linux/ofpath.c: ..here, split stub into ...
4869 * grub-core/osdep/basic/ofpath.c: ..here.
4870
4871 2013-10-08 Vladimir Serbinenko <phcoder@gmail.com>
4872
4873 Move password-querying (util-version) routines to grub-core/osdep.
4874
4875 2013-10-08 Vladimir Serbinenko <phcoder@gmail.com>
4876
4877 Move sleep routines to grub-core/osdep.
4878
4879 2013-10-08 Vladimir Serbinenko <phcoder@gmail.com>
4880
4881 Move OS-dependent files to grub-core/osdep and document it.
4882
4883 2013-10-08 Vladimir Serbinenko <phcoder@gmail.com>
4884
4885 * grub-core/kern/emu/misc.c (canonicalize_file_name): Move to ...
4886 * grub-core/kern/emu/hostdisk_*.c (canonicalize_file_name): ... here.
4887
4888 2013-10-08 Vladimir Serbinenko <phcoder@gmail.com>
4889
4890 * grub-core/kern/arm/misc.S: Remove leftover ARM and THUMB.
4891
4892 2013-10-08 Vladimir Serbinenko <phcoder@gmail.com>
4893
4894 * util/misc.c: Remove leftover inclusion of malloc.h.
4895
4896 2013-10-08 Vladimir Serbinenko <phcoder@gmail.com>
4897
4898 * include/grub/setjmp.h: Remove leftover GRUBOF.
4899
4900 2013-10-08 Vladimir Serbinenko <phcoder@gmail.com>
4901
4902 * util/raid.c: Fold into ...
4903 * util/getroot_linux.c: ... here. Make all functions static.
4904
4905 2013-10-08 Vladimir Serbinenko <phcoder@gmail.com>
4906
4907 * grub-core/fs/zfs/zfs_lz4.c: Switch from ad-hoc endiannes and width
4908 macros to GRUB ones.
4909
4910 2013-10-08 Vladimir Testov <vladimir.testov@rosalab.ru>
4911
4912 * grub-core/gfxmenu/gui_list.c (draw_scrollbar): Fixed rare
4913 occasional bug. If there are too many boot entries or too low
4914 scrollbar height then we need to use another formula to calculate
4915 the position and size of the scrollbar thumb.
4916
4917 2013-10-08 Vladimir Serbinenko <phcoder@gmail.com>
4918
4919 * util/random_unix.c: Add NetBSD, Solaris and Mac OS X to verified list.
4920
4921 2013-10-08 Vladimir Testov <vladimir.testov@rosalab.ru>
4922
4923 * grub-core/gfxmenu/gui_list.c: New option `scrollbar-slice`.
4924 * docs/grub.texi: Likewise.
4925
4926 2013-10-08 Vladimir Testov <vladimir.testov@rosalab.ru>
4927
4928 * grub-core/gfxmenu/gui_list.c: Draw the scrollbar in a separate
4929 viewport.
4930
4931 2013-10-08 Vladimir Testov <vladimir.testov@rosalab.ru>
4932
4933 * grub-core/gfxmenu/gui_list.c (list_get_minimal_size): Corrected
4934 minimal width calculations.
4935
4936 2013-10-07 Vladimir Serbinenko <phcoder@gmail.com>
4937
4938 * docs/grub.texi: Update note on colors on emu console.
4939
4940 2013-10-07 Vladimir Serbinenko <phcoder@gmail.com>
4941
4942 * grub-core/fs/ufs.c (grub_ufs_get_file_block): Give GRUB_ERR_BAD_FS
4943 for quadruple indirect rather than GRUB_ERR_NOT_IMPLEMENTED_YET as
4944 it's FS and not GRUB limitation.
4945
4946 2013-10-07 Vladimir Serbinenko <phcoder@gmail.com>
4947
4948 * grub-core/kern/arm/efi/startup.S: Remove thumb leftover.
4949
4950 2013-10-07 Vladimir Serbinenko <phcoder@gmail.com>
4951
4952 * grub-core/kern/arm/efi/init.c: Rewrite timer fucntion.
4953
4954 2013-10-04 Samuel Thibault <samuel.thibault@ens-lyon.org>
4955
4956 * util/grub.d/10_hurd.in: Use `version_find_latest` to sort gnumach
4957 kernels by version order.
4958
4959 2013-10-04 Vladimir Serbinenko <phcoder@gmail.com>
4960
4961 * util/random_unix.c: Add kFreeBSD to the list of secure RNG.
4962
4963 2013-10-04 Vladimir Serbinenko <phcoder@gmail.com>
4964
4965 Add AROS hostdisk and getroot routines.
4966
4967 2013-10-04 Vladimir Serbinenko <phcoder@gmail.com>
4968
4969 Make cryptodisk and diskfilter probe data retrievable programmatically
4970 and not just printable.
4971
4972 2013-10-04 Vladimir Serbinenko <phcoder@gmail.com>
4973
4974 Split random retrieving code into separate files.
4975
4976 2013-10-03 Vladimir Serbinenko <phcoder@gmail.com>
4977
4978 * grub-core/kern/arm/dl.c (do_relocations): Accept and ignore
4979 R_ARM_V4BX.
4980
4981 2013-10-03 Vladimir Serbinenko <phcoder@gmail.com>
4982
4983 * grub-core/tests/video_checksum.c: Increase robustness to out of memory
4984 condition.
4985 * grub-core/tests/fake_input.c: Likewise.
4986 * grub-core/tests/cmdline_cat_test.c: Likewise.
4987
4988 2013-10-03 Vladimir Serbinenko <phcoder@gmail.com>
4989
4990 * grub-core/video/capture.c: Do not do finalization when .fini
4991 is called as there is explicit capture_end.
4992
4993 2013-10-03 Vladimir Serbinenko <phcoder@gmail.com>
4994
4995 * grub-core/term/gfxterm.c: Add flag "functional" to skip input when
4996 changing windows to avoid crash.
4997
4998 2013-10-03 Vladimir Serbinenko <phcoder@gmail.com>
4999
5000 * grub-core/kern/arm/cache.c: Add v5 write-through cache support.
5001
5002 2013-10-03 Vladimir Serbinenko <phcoder@gmail.com>
5003
5004 * po/exclude.pot: Add several strings to exclude.
5005
5006 2013-10-03 Vladimir Serbinenko <phcoder@gmail.com>
5007
5008 * tests/gettext_strings_test.in: Add getroot_*.c to exclude list.
5009
5010 2013-10-03 Vladimir Serbinenko <phcoder@gmail.com>
5011
5012 * autogen.sh: Add ./util/grub-gen-widthspec.c and
5013 ./util/grub-gen-asciih.c to exclude list.
5014
5015 2013-10-03 Vladimir Serbinenko <phcoder@gmail.com>
5016
5017 * grub-core/gfxmenu/theme_loader.c (theme_set_string): Fix memory leak
5018 and don't mark error strings for translation.
5019
5020 2013-10-03 Vladimir Serbinenko <phcoder@gmail.com>
5021
5022 * grub-core/disk/uboot/ubootdisk.c (uboot_disk_open): Use grub_error
5023 properly in case of missing block size.
5024
5025 2013-10-03 Vladimir Serbinenko <phcoder@gmail.com>
5026
5027 * grub-core/lib/arm/setjmp.S: Add missing license section.
5028
5029 2013-10-03 Vladimir Serbinenko <phcoder@gmail.com>
5030
5031 * po/swiss.sed: Add replacement for key names and for term computer.
5032
5033 2013-10-02 Vladimir Testov <vladimir.testov@rosalab.ru>
5034
5035 * grub-core/gfxmenu/theme_loader.c: New global options for the
5036 theme background image handling. desktop-image-scale-method,
5037 desktop-image-h-align, desktop-image-v-align.
5038 * grub-core/gfxmenu/view.c: Likewise.
5039 * include/gfxmenu_view.h: Likewise.
5040 * include/bitmap_scale.h: Proportional scale functions introduced.
5041 * grub-core/video/bitmap_scale.c: Likewise. Verification checks are
5042 put in a separate functions. GRUB_ERR_BUG is set for grub_error in
5043 cases of unexpected input variables for scale functions.
5044 * docs/grub.texi: Updated documentation for new options.
5045
5046 2013-10-02 Vladimir Serbinenko <phcoder@gmail.com>
5047
5048 * grub-core/video/readers/png.c: Support narrow (4-/2-/1-bpp) PNG.
5049
5050 2013-10-01 Vladimir Testov <vladimir.testov@rosalab.ru>
5051
5052 * grub-core/tests/checksums.h: Corrected due to changes in
5053 bilinear interpolation function.
5054
5055 2013-10-01 Vladimir Testov <vladimir.testov@rosalab.ru>
5056
5057 * grub-core/video/bitmap_scale.c (scale_bilinear): Increased precision
5058 to eliminate artefacts in bilinear interpolation.
5059
5060 2013-09-28 Vladimir Serbinenko <phcoder@gmail.com>
5061
5062 * grub-core/video/readers/tga.c: Support paletted tga.
5063
5064 2013-09-28 Vladimir Serbinenko <phcoder@gmail.com>
5065
5066 * grub-core/video/readers/jpeg.c (grub_jpeg_decode_data): Remove
5067 incorrect cbcr setting when in color mode.
5068
5069 2013-09-28 Vladimir Serbinenko <phcoder@gmail.com>
5070
5071 * grub-core/video/readers/png.c: Support paletted images and clean up
5072 greyscale support.
5073
5074 2013-09-28 Vladimir Serbinenko <phcoder@gmail.com>
5075
5076 * grub-core/term/terminfo.c (grub_terminfo_readkey): Fix
5077 usage of wrong table which resulted in mishandling of 4-byte
5078 sequences.
5079
5080 2013-09-28 Vladimir Serbinenko <phcoder@gmail.com>
5081
5082 * grub-core/term/terminfo.c: Add Home and End key sequences.
5083
5084 2013-09-27 Vladimir Serbinenko <phcoder@gmail.com>
5085
5086 * grub-core/video/readers/png.c (grub_png_decode_image_header):
5087 Fix formula for computing total number of bytes.
5088
5089 2013-09-27 Vladimir Serbinenko <phcoder@gmail.com>
5090
5091 * grub-core/video/readers/tga.c: Reorganize to separate RLE and
5092 image processing, fix big-endian and support grayscale.
5093
5094 2013-09-27 Vladimir Serbinenko <phcoder@gmail.com>
5095
5096 * grub-core/video/fb/video_fb.c (grub_video_fb_create_render_target):
5097 Correctly will with maximum transparency when using index color.
5098
5099 2013-09-27 Vladimir Serbinenko <phcoder@gmail.com>
5100
5101 * grub-core/video/readers/png.c: Support grayscale
5102
5103 2013-09-27 Vladimir Serbinenko <phcoder@gmail.com>
5104
5105 * grub-core/video/readers/jpeg.c: Support grayscale.
5106
5107 2013-09-26 Jon McCune <jonmccune@google.com>
5108
5109 * grub-core/commands/loadenv.c: Support skipping signature check
5110 and variable names filtering.
5111
5112 2013-09-24 Vladimir Serbinenko <phcoder@gmail.com>
5113
5114 * grub-core/kern/emu/hostdisk_unix.c: Declare AROS as non-unix.
5115 * grub-core/kern/emu/hostfs.c: Likewise.
5116 * util/getroot_unix.c: Likewise.
5117
5118 2013-09-24 Vladimir Serbinenko <phcoder@gmail.com>
5119
5120 * include/grub/emu/hostdisk.h (GRUB_FD_STAT_IS_FUNTIONAL): New define.
5121 Migrate all explicit defines to this new one.
5122
5123 2013-09-24 Vladimir Serbinenko <phcoder@gmail.com>
5124
5125 * grub-core/kern/emu/hostdisk.c (grub_util_biosdisk_open): Use
5126 grub_util_fd_strerror when using grub_util_fd_*.
5127 (grub_util_fd_open_device): Likewise.
5128 (grub_util_biosdisk_read): Likewise.
5129 (grub_util_biosdisk_write): Likewise.
5130 * grub-core/kern/emu/hostdisk_unix.c (grub_util_fd_open): New function.
5131 (grub_util_fd_strerror): Likewise.
5132 (grub_util_fd_sync): Likewise.
5133 (grub_util_fd_close): Likewise.
5134 * grub-core/kern/emu/hostdisk_windows.c (grub_util_fd_sync): Likewise.
5135 (grub_util_fd_close): Likewise.
5136 (grub_util_fd_strerror): Likewise.
5137 * include/grub/emu/hostdisk.h (grub_util_fd_close): Make into real
5138 function proto rather than macro.
5139 (grub_util_fd_sync): Likewise.
5140 (grub_util_fd_open): Likewise.
5141 (grub_util_fd_strerror): New proto.
5142
5143 2013-09-24 Vladimir Serbinenko <phcoder@gmail.com>
5144
5145 * util/getroot.c (grub_util_biosdisk_is_present): Don't do stat on
5146 platforms on which it doesn't work.
5147
5148 2013-09-24 Vladimir Serbinenko <phcoder@gmail.com>
5149
5150 * grub-core/kern/emu/hostdisk.c (grub_util_biosdisk_open): Move struct
5151 stat immediately to where it's used.
5152
5153 2013-09-24 Vladimir Serbinenko <phcoder@gmail.com>
5154
5155 * util/getroot.c (grub_util_check_block_device): Move to ...
5156 * util/getroot_unix.c (grub_util_check_block_device): ... here.
5157 * util/getroot.c (grub_util_check_char_device): Move to ...
5158 * util/getroot_unix.c (grub_util_check_char_device): ... here.
5159
5160 2013-09-24 Vladimir Serbinenko <phcoder@gmail.com>
5161
5162 * grub-core/kern/emu/hostdisk.c (grub_util_biosdisk_close): Fix
5163 disk closing logic.
5164
5165 2013-09-24 Andrey Borzenkov <arvidjaar@gmail.com>
5166
5167 * docs/grub.texi (Simple configuration): Document GRUB_ENABLE_CRYPTODISK.
5168
5169 2013-09-24 Andrey Borzenkov <arvidjaar@gmail.com>
5170
5171 * docs/grub.texi (File name syntax): Document ZFS filenames
5172 (/volume@snapshot/...).
5173
5174 2013-09-23 Vladimir Serbinenko <phcoder@gmail.com>
5175
5176 * grub-core/kern/emu/hostdisk_windows.c (grub_util_get_windows_path):
5177 Always return full path. Fixes a problem with mkrelpath.
5178
5179 2013-09-23 Paulo Flabiano Smorigo <pfsmorigo@br.ibm.com>
5180
5181 * util/grub-install.in: Add GPT PReP support.
5182 * util/grub-probe.c (probe): Support GPT partition type.
5183 (main): Support -t gpt_parttype.
5184
5185 2013-09-23 Aleš Nesrsta <starous@volny.cz>
5186
5187 * grub-core/bus/usb/ehci.c: SMI disabled in all cases
5188
5189 2013-09-23 Massimo Maggi <me@massimo-maggi.eu>
5190
5191 * grub-core/fs/zfs/zfs.c (check_pool_label): Check nvlist.
5192
5193 2013-09-23 Tim Hardeck <thardeck>
5194
5195 * util/grub.d/10_hurd.in: Filter out character for the class.
5196 * util/grub.d/10_kfreebsd.in: Likewise.
5197 * util/grub.d/10_linux.in: Likewise.
5198 * util/grub.d/20_linux_xen.in: Likewise.
5199
5200 2013-09-23 Melki Christian <Christian.melki@saabgroup.com>
5201
5202 * grub-core/bus/usb/usbhub.c (poll_nonroot_hub): Fix the type of
5203 "changed".
5204
5205 2013-09-23 Josh Triplett <josh@joshtriplett.org>
5206
5207 * grub-core/boot/i386/pc/lnxboot.S: Re-add support for recording the
5208 boot partition.
5209
5210 2013-09-23 Vladimir Serbinenko <phcoder@gmail.com>
5211
5212 * Makefile.util.def (libgrubmods.a): Remove CFLAGS_POSIX as this lib
5213 doesn't use posix_wrap. Keep literal -fno-builtin however.
5214
5215 2013-09-23 Vladimir Serbinenko <phcoder@gmail.com>
5216
5217 * conf/Makefile.common (CPPFLAGS_LIBFDT): Remove leftover.
5218
5219 2013-09-23 Vladimir Serbinenko <phcoder@gmail.com>
5220 2013-09-23 neil
5221
5222 * configure.ac: Do not enable -Wmissing-noreturn as its
5223 usefulness is limited and creates problems on some OS notably with
5224 code generated by bison.
5225
5226 2013-09-23 Vladimir Serbinenko <phcoder@gmail.com>
5227 2013-09-23 neil
5228
5229 * configure.ac: Do not explicitly enable -Waddress as it's not
5230 supported by all gcc and when it is, it's already enabled by -Wall.
5231
5232 2013-09-23 Vladimir Serbinenko <phcoder@gmail.com>
5233
5234 * grub-core/video/efi_gop.c (grub_video_gop_setup): Fix a typo which
5235 desactivated use of EDID at all.
5236
5237 2013-09-23 Vladimir Serbinenko <phcoder@gmail.com>
5238 2013-09-23 neil
5239
5240 * grub-core/loader/multiboot.c (grub_multiboot_set_console): Always use
5241 video if no text is available.
5242
5243 2013-09-23 Vladimir Serbinenko <phcoder@gmail.com>
5244 2013-09-23 neil
5245
5246 * configure.ac: Substitute TARGET_RANLIB.
5247
5248 2013-09-23 Vladimir Serbinenko <phcoder@gmail.com>
5249 2013-09-23 neil
5250
5251 * grub-core/genmod.sh.in: Remove ./ from TARGET_OBJ2ELF. Add quotes.
5252
5253 Based on patches from AROS.
5254
5255 2013-09-23 Vladimir Serbinenko <phcoder@gmail.com>
5256 2013-09-23 neil
5257
5258 * grub-core/Makefile.am: Override STRIP and RANLIB.
5259 * configure.ac: compute TARGET_RANLIB.
5260 * INSTALL: Document TARGET_RANLIB
5261
5262 Based on patches from AROS.
5263
5264 2013-09-23 Vladimir Serbinenko <phcoder@gmail.com>
5265
5266 * util/getroot.c (grub_util_biosdisk_get_grub_dev): Do not assume
5267 that floppies are unpartitioned.
5268
5269 2013-09-23 Vladimir Serbinenko <phcoder@gmail.com>
5270
5271 * util/getroot_unix.c [__MINGW32__ || __CYGWIN__]:
5272 Define dummy grub_util_pull_lvm_by_command to decrease number of #if's.
5273
5274 2013-09-23 Vladimir Serbinenko <phcoder@gmail.com>
5275
5276 * grub-core/lib/posix_wrap/sys/types.h: Use OpenBSD approach: it's
5277 less nice but more portable.
5278 * grub-core/lib/posix_wrap/wchar.h: Likewise.
5279
5280 2013-09-23 Vladimir Serbinenko <phcoder@gmail.com>
5281
5282 * include/grub/cryptodisk.h (grub_cryptodisk): Use grub_util_fd_t
5283 for cheat_fd.
5284 * grub-core/disk/cryptodisk.c (grub_cryptodisk_open): Use grub_util_*
5285 functions.
5286 (grub_cryptodisk_cheat_insert): Likewise.
5287 (grub_cryptodisk_close): Likewise.
5288
5289 2013-09-23 Vladimir Serbinenko <phcoder@gmail.com>
5290
5291 * include/grub/emu/misc.h: Remove leftover cygwin definitions.
5292 Use windows path for DEFAULT_DIRECTORY.
5293
5294 2013-09-23 Vladimir Serbinenko <phcoder@gmail.com>
5295
5296 * include/grub/i386/setjmp.h: Remove useless #if MINGW where original
5297 difference was likely just gcc version, not anything mingw-related.
5298
5299 2013-09-23 Vladimir Serbinenko <phcoder@gmail.com>
5300
5301 Use Winapi on both cygwin and mingw32 to share more code between both.
5302
5303 2013-09-22 Andrey Borzenkov <arvidjaar@gmail.com>
5304
5305 * util/grub-install.in: Add --grub-editenv option.
5306 * util/grub-install_header (grub_compress_file): Explicitly check for
5307 plain file to avoid cp error.
5308
5309 2013-09-22 Andrey Borzenkov <arvidjaar@gmail.com>
5310
5311 * docs/grub.texi (Device syntax): Document new LVM UUID based device
5312 names; fix LVM driver name (lvm, not lv).
5313 * util/grub-probe.c (probe_abstraction): Support lvmid/xxx device
5314 names.
5315
5316 2013-09-22 Vladimir Serbinenko <phcoder@gmail.com>
5317
5318 * grub-core/kern/emu/hostdisk.c: Disentagle into a series of OS-specific
5319 files rather than one file with loads of #if's.
5320 * util/getroot.c: Likewise.
5321
5322 2013-09-22 Vladimir Serbinenko <phcoder@gmail.com>
5323
5324 * grub-core/lib/posix_wrap/sys/types.h: Use stddef on *BSD.
5325
5326 2013-09-22 Vladimir Serbinenko <phcoder@gmail.com>
5327
5328 * util/grub-mkpasswd-pbkdf2.c (grub_get_random): Add windows and
5329 GNU/Hurd to the list of checked PRNG.
5330
5331 2013-09-22 Vladimir Serbinenko <phcoder@gmail.com>
5332
5333 * configure.ac: On FreeBSD use -melf_*_fbsd format.
5334
5335 2013-09-21 Ales Nesrsta <starous@volny.cz>
5336
5337 * grub-core/bus/usb/ehci.c: Corrected EHCI QH handling (async./sync.)
5338
5339 2013-09-20 Vladimir Serbinenko <phcoder@gmail.com>
5340
5341 * grub-core/disk/diskfilter.c: Handle non-md UUIDs.
5342 * grub-core/disk/lvm.c: Add LVM UUIDs.
5343 * util/getroot.c: Use LVM UUIDs whenever possible.
5344
5345 2013-09-19 Andrey Borzenkov <arvidjaar@gmail.com>
5346
5347 * docs/grub.texi (Networking commands): Add documentation for
5348 network related commands.
5349
5350 2013-09-19 Vladimir Serbinenko <phcoder@gmail.com>
5351
5352 * util/getroot.c (grub_util_open_dm): Check major rather than the name
5353 to determine if device is handled by devmapper.
5354 (convert_system_partition_to_system_disk): Likewise.
5355 (get_dm_uuid): Don't check explicitly if device is mapped, it's
5356 already done in grub_util_open_dm.
5357
5358 2013-09-19 Leif Lindholm <leif.lindholm@linaro.org>
5359
5360 * kern/arm/cache.S: Correct access to ilinesz/dlinesz variables.
5361 Clean up stack manipulation (sync_caches_armv*)
5362
5363 2013-09-19 Vladimir Serbinenko <phcoder@gmail.com>
5364
5365 * util/lvm.c: Remove since unused. Remove remaining references.
5366
5367 2013-09-19 Vladimir Serbinenko <phcoder@gmail.com>
5368
5369 Handle the case of partitioned LVM properly.
5370
5371 * grub-core/kern/emu/hostdisk.c (grub_util_get_dm_node_linear_info):
5372 Stop on meeting LVM, mpath or DMRAID.
5373 (grub_hostdisk_os_dev_to_grub_drive): Canonicalize os device.
5374 (read_device_map): Likewise.
5375 * util/getroot.c (convert_system_partition_to_system_disk): Assume that
5376 device is full disk rather than erroring out on LVM and similar cases.
5377
5378 2013-09-18 Vladimir Serbinenko <phcoder@gmail.com>
5379
5380 * util/grub-mkconfig_lib.in: Keep supplied pkgdatadir if any.
5381
5382 2013-09-18 Vladimir Serbinenko <phcoder@gmail.com>
5383
5384 * grub-core/kern/mm.c (grub_mm_init_region): Skip regions less than
5385 4K before the end.
5386 Reported by: Leif Lindholm
5387
5388 2013-09-18 Pawel Wojtalczyk <eyak@wp.pl>
5389 2013-09-18 Vladimir Serbinenko <phcoder@gmail.com>
5390
5391 * grub-core/term/efi/console.c (grub_console_getkey): Accept VT100-style
5392 codes.
5393
5394 2013-09-18 Colin Watson <cjwatson@ubuntu.com>
5395
5396 * grub-core/disk/efi/efidisk.c (grub_efidisk_get_device_name_iter):
5397 Remove no-longer-true __attribute__ ((unused)) on disk parameter.
5398
5399 2013-09-18 Douglas Ray <dougray@cpan.org>
5400
5401 * util/grub-mkpasswd-pbkdf2.c (grub_get_random): Declare OpenBSD PRNG
5402 as secure.
5403
5404 2013-09-18 Aleš Nesrsta <starous@volny.cz>
5405
5406 * docs/grub.texi: Fix broken link.
5407
5408 2013-09-18 Melki Christian <Christian.melki@saabgroup.com>
5409
5410 * grub-core/bus/usb/usb.c (grub_usb_device_initialize): Add condition
5411 to break endless loop.
5412
5413 2013-08-23 Vladimir Serbinenko <phcoder@gmail.com>
5414
5415 * util/grub-fstest.c: Fix several printf formats.
5416 * util/grub-mkimage.c: Likewise.
5417 * util/grub-mkimagexx.c: Likewise.
5418 * util/grub-script-check.c: Likewise.
5419
5420 2013-08-23 Vladimir Serbinenko <phcoder@gmail.com>
5421
5422 * grub-core/lib/xzembed/xz_dec_lzma2.c: Make -Wattributes not cause
5423 error.
5424
5425 2013-08-23 Vladimir Serbinenko <phcoder@gmail.com>
5426
5427 * config.h.in [GRUB_BUILD]: Explicitly undefine ENABLE_NLS.
5428
5429 2013-08-23 Vladimir Serbinenko <phcoder@gmail.com>
5430
5431 * util/getroot.c (grub_find_device): Use cygwin_conv_path ratherthan
5432 removed in current versions cygwin_conv_*.
5433
5434 2013-08-23 Vladimir Serbinenko <phcoder@gmail.com>
5435
5436 * configure.ac: Disable efiemu runtime on cygwin.
5437
5438 2013-08-23 Vladimir Serbinenko <phcoder@gmail.com>
5439
5440 * conf/Makefile.extra-dist: Add missing util/grub-gen-asciih.c,
5441 util/grub-gen-widthspec.c and util/grub-pe2elf.c.
5442
5443 2013-08-22 Vladimir Serbinenko <phcoder@gmail.com>
5444
5445 * util/grub-mkpasswd-pbkdf2.c (grub_password_get): Remove extraneous
5446 error message.
5447
5448 2013-08-22 Vladimir Serbinenko <phcoder@gmail.com>
5449
5450 * grub-core/lib/crypto.c (grub_password_get) [GRUB_UTIL]: Add
5451 windows variant.
5452 * util/grub-mkpasswd-pbkdf2.c: Add windows flavour for retrieving random
5453 data.
5454
5455 2013-08-22 Vladimir Serbinenko <phcoder@gmail.com>
5456
5457 * configure.ac: Add -Wl,-melf_i386 and -Wl,-melf_x86_64 systematically
5458 when on x86 and not cygwin.
5459 * conf/Makefile.common: Remove unsystematic -Wl,-melf_i386 and
5460 -Wl,-melf_x86_64.
5461
5462 2013-08-22 Vladimir Serbinenko <phcoder@gmail.com>
5463
5464 * configure.ac: Set CPP to build one when checkoing for freetype for
5465 build.
5466
5467 2013-08-22 Vladimir Serbinenko <phcoder@gmail.com>
5468
5469 * util/grub-mkfont.c [!GRUB_BUILD]: Define my_argp_state.
5470 [!GRUB_BUILD]: Remove has_argument.
5471
5472 2013-08-22 Vladimir Serbinenko <phcoder@gmail.com>
5473
5474 * util/ieee1275/ofpath.c (grub_util_devname_to_ofpath) [_WIN32]:
5475 Replace with a dummy.
5476
5477 2013-08-22 Vladimir Serbinenko <phcoder@gmail.com>
5478
5479 * configure.ac: Don't change host_os from mingw to cygwin.
5480
5481 2013-08-22 Vladimir Serbinenko <phcoder@gmail.com>
5482
5483 * configure.ac: Change target_os from windows to cygwin.
5484
5485 2013-08-22 Vladimir Serbinenko <phcoder@gmail.com>
5486
5487 Handle grub-pe2elf and grub-mkfont for cases when build != host.
5488
5489 * Makefile.am (build-grub-mkfont): Don't include gnulib.
5490 (build-grub-gen-asciih): Likewise.
5491 (build-grub-gen-widthspec): Likewise.
5492 * Makefile.util.def (grub-pe2elf): Remove.
5493 * config.h.in [GRUB_BUILD]: Use build rather than host constants.
5494 * configure.ac: Separate tests for build.
5495 Move ./build-grub-pe2elf to grub-core.
5496 Fix typo.
5497 * grub-core/Makefile.am (build-grub-pe2elf): New target.
5498 * grub-core/kern/emu/misc.c (xasprintf): Don't compile if GRUB_BUILD is
5499 defined.
5500 * include/grub/types.h [GRUB_BUILD]: Use build rather than host
5501 constants.
5502 * util/grub-mkfont.c [GRUB_BUILD]: Simplify not to rely on argp.
5503 * util/grub-pe2elf.c: Simplify not to rely on getopt.
5504 * util/misc.c (program_name) [GRUB_BUILD]: Define to static string.
5505
5506 2013-08-22 Vladimir Serbinenko <phcoder@gmail.com>
5507
5508 * grub-core/kern/emu/hostdisk.c (grub_util_get_fd_size): Adapt for
5509 mingw32 as well based on grub_util_get_disk_size.
5510 * util/misc.c (grub_util_get_disk_size): Removed. all users switched to
5511 grub_util_get_fd_size.
5512 (sync): Removed.
5513 (fsync): Moved to ...
5514 * grub-core/kern/emu/misc.c (fsync): ... here.
5515
5516 2013-08-22 Vladimir Serbinenko <phcoder@gmail.com>
5517
5518 * include/grub/mm.h (grub_extend_alloc): Remove.
5519 * grub-core/loader/i386/pc/plan9.c: Use own version of
5520 grub_extend_alloc with appropriate types.
5521
5522 2013-08-22 Vladimir Serbinenko <phcoder@gmail.com>
5523
5524 * conf/Makefile.common (CFLAGS_GCRY): Add -Wno-redundant-decls.
5525
5526 2013-08-22 Vladimir Serbinenko <phcoder@gmail.com>
5527
5528 * util/getroot.c: Include sys/wait.h only when we need waitpid.
5529
5530 2013-08-22 Vladimir Serbinenko <phcoder@gmail.com>
5531
5532 Fix dependencies on cygwin.
5533
5534 * gentpl.py: Support variable dependencies. Add $TARGET_OBJ2ELF to
5535 dependencies when used and defined.
5536 * grub-core/Makefile.core.def (regexp): Add dependency on libgnulib.a.
5537
5538 2013-08-22 Vladimir Serbinenko <phcoder@gmail.com>
5539
5540 * include/grub/zfs/spa.h (zio_cksum): Add explicit members for mac.
5541 * grub-core/fs/zfs/zfs.c (zio_read): Don't use casts to retrieve mac.
5542
5543 2013-08-22 Vladimir Serbinenko <phcoder@gmail.com>
5544
5545 * grub-core/kern/emu/mm.c (grub_memalign): Don't define if there is no
5546 implementation available to cause compile-time rather than runtime
5547 error.
5548
5549 2013-08-22 Vladimir Serbinenko <phcoder@gmail.com>
5550
5551 * util/grub-fstest.c: Don't check for symlinks on windows.
5552
5553 2013-08-22 Vladimir Serbinenko <phcoder@gmail.com>
5554
5555 * INSTALL: Mention unavailability of man pages when cross-compiling.
5556
5557 2013-08-22 Vladimir Serbinenko <phcoder@gmail.com>
5558
5559 * include/grub/crypto.h: Don't declare gcry_log_bug, gcry_log_printf
5560 and gcry_log_bug.
5561 * grub-core/lib/libgcrypt_wrap/mem.c: Include g10lib.h
5562
5563 2013-08-21 Vladimir Serbinenko <phcoder@gmail.com>
5564
5565 * INSTALL: Document cross-compilation.
5566 * acinclude.m4: Determine whether nm support -P and --defined-only.
5567 * configure.ac: Add TARGET_ to all variables pertaining to target
5568 that don't have it yet.
5569 * gentpl.py: Likewise.
5570 * grub-core/Makefile.am: Likewise.
5571 * grub-core/genmod.sh.in: Likewise.
5572 * grub-core/gensyminfo.sh.in: Handle OpenBSD and other non-GNU nm
5573 as well.
5574
5575 2013-08-21 Ilya Bakulin <Ilya_Bakulin@genua.de>
5576
5577 * configure.ac: Remove -Wempty-body. It's not essential and needs
5578 recent gcc.
5579
5580 2013-08-21 Ilya Bakulin <Ilya_Bakulin@genua.de>
5581
5582 * grub-core/kern/emu/hostdisk.c: Add conditionals for OpenBSD.
5583 * util/getroot.c: Likewise.
5584
5585 2013-08-21 Vladimir Serbinenko <phcoder@gmail.com>
5586
5587 * grub-core/disk/ahci.c: Add needed explicit cast.
5588 * grub-core/lib/backtrace.c: Likewise.
5589 * grub-core/net/ip.c: Likewise.
5590 * grub-core/net/tcp.c: Likewise.
5591 * grub-core/net/udp.c: Likewise.
5592
5593 2013-08-21 Vladimir Serbinenko <phcoder@gmail.com>
5594
5595 * grub-core/lib/posix_wrap/wchar.h: Fix typo.
5596
5597 2013-08-21 Vladimir Serbinenko <phcoder@gmail.com>
5598
5599 * util/import_gcry.py: Add final newline in visibility.h.
5600
5601 2013-08-21 Vladimir Serbinenko <phcoder@gmail.com>
5602
5603 * conf/Makefile.common: Fix typo.
5604
5605 2013-08-21 Vladimir Serbinenko <phcoder@gmail.com>
5606
5607 * Makefile.util.def (grub-mkfont): Add missing libgnu.a.
5608
5609 2013-08-21 Vladimir Serbinenko <phcoder@gmail.com>
5610
5611 * Makefile.am (widthspec.h): Fix typo.
5612 * util/grub-gen-widthspec.c: Likewise.
5613
5614 2013-08-21 Vladimir Serbinenko <phcoder@gmail.com>
5615
5616 Move ascii.h and widthspec.h generation to a separate build-time-only
5617 tool.
5618
5619 2013-08-16 Grégoire Sutre <gregoire.sutre@gmail.com>
5620
5621 * grub-core/loader/i386/bsd.c (grub_netbsd_add_boot_disk_and_wedge):
5622 Always fill bootdisk info and improve check for NetBSD disklabel.
5623
5624 2013-08-16 Vladimir Serbinenko <phcoder@gmail.com>
5625
5626 * conf/Makefile.extra-dist: Add util/bin2h.c.
5627 Reported by: floppym.
5628
5629 2013-08-16 Vladimir Serbinenko <phcoder@gmail.com>
5630
5631 * configure.ac: Make unifont mandatory for powerpc-ieee1275.
5632
5633 2013-08-16 Vladimir Serbinenko <phcoder@gmail.com>
5634
5635 * configure.ac: Disable unifont and starfield if no freetype was found.
5636
5637 2013-08-16 Vladimir Serbinenko <phcoder@gmail.com>
5638
5639 * grub-core/lib/posix_wrap/wchar.h: Fix wchar_t and mbstate_t conflict
5640 on NetBSD and OpenBSD.
5641
5642 2013-08-15 Vladimir Testov <vladimir.testov@rosalab.ru>
5643
5644 * grub-core/gfxmenu/gui_list.c: Baseline misplacement fixed.
5645
5646 2013-08-15 Vladimir Testov <vladimir.testov@rosalab.ru>
5647
5648 * grub-core/gfxmenu/gui_list.c: The number of color mappings is
5649 reduced. Inheritant options are processed during the theme loading.
5650
5651 2013-08-15 Vladimir Testov <vladimir.testov@rosalab.ru>
5652
5653 * grub-core/gfxmenu/gui_list.c: Minimal width fixed.
5654
5655 2013-08-14 Avik Sil <aviksil@in.ibm.com>
5656
5657 * grub-core/net/tftp.c: Send tftp ack packet before closing the socket.
5658
5659 2013-08-14 Avik Sil <aviksil@in.ibm.com>
5660
5661 * grub-core/net/drivers/ieee1275/ofnet.c: Get proper mac address when
5662 using qemu.
5663
5664 2013-08-14 Paulo Flabiano Smorigo <pfsmorigo@br.ibm.com>
5665
5666 * .bzrignore: Add bootinfo.txt, grub.chrp, gnulib/float.h, and
5667 remove-potcdate.sed.
5668
5669 2013-08-14 Andrey Borzenkov <arvidjaar@gmail.com>
5670
5671 * grub-core/disk/i386/pc/biosdisk.c (grub_biosdisk_iterate): Remove
5672 unused attribute from pull argument.
5673
5674 2013-08-14 Andrey Borzenkov <arvidjaar@gmail.com>
5675
5676 * util/getroot.c (grub_util_is_imsm): Fix descriptor and
5677 memory leak.
5678
5679 2013-08-14 Andrey Borzenkov <arvidjaar@gmail.com>
5680
5681 * util/getroot.c (pull_lvm_by_command): add --separator option
5682 to vgs call to disable padding of output to 10 characters.
5683
5684 2013-08-14 Vladimir Serbinenko <phcoder@gmail.com>
5685
5686 * grub-core/kern/emu/misc.c (grub_device_mapper_supported): Move from
5687 here ...
5688 * grub-core/kern/emu/hostdisk.c (grub_device_mapper_supported): ... to
5689 here.
5690
5691 2013-08-14 Vladimir Serbinenko <phcoder@gmail.com>
5692
5693 * include/grub/i386/pc/biosdisk.h (grub_biosdisk_drp): Fix device_path
5694 length.
5695
5696 2013-08-14 Vladimir Serbinenko <phcoder@gmail.com>
5697
5698 Fix handling of build-time grub-bin2h and grub-mkfont when doing
5699 full Canadian cross. Tested with build=x86_64, host=arm,
5700 target=ppc-ieee1275.
5701
5702 2013-08-14 Vladimir Serbinenko <phcoder@gmail.com>
5703
5704 * configure.ac: Error if no $BUILD_CC could be found.
5705 Reported by: DevHC.
5706
5707 2013-08-14 Vladimir Serbinenko <phcoder@gmail.com>
5708
5709 * grub-core/kern/i386/coreboot/init.c: Fix compilation on
5710 i386-multiboot.
5711
5712 2013-08-14 Vladimir Serbinenko <phcoder@gmail.com>
5713
5714 * grub-core/kern/vga_init.c: Fix compilation on qemu-mips.
5715 * grub-core/kern/mips/qemu_mips/init.c: Likewise.
5716
5717 2013-08-13 Colin Watson <cjwatson@ubuntu.com>
5718
5719 * util/getroot.c (grub_util_biosdisk_get_grub_dev): Zero out
5720 grub_errno in the case where we handle GRUB_ERR_UNKNOWN_DEVICE by
5721 falling back to the partition device, otherwise a later call to this
5722 function may fail spuriously.
5723 Reported by Axel Beckert. Fixes Debian bug #708614.
5724
5725 2013-08-12 Grégoire Sutre <gregoire.sutre@gmail.com>
5726
5727 * autogen.sh: Replace find -not by the POSIX-compliant find !.
5728
5729 2013-08-12 Grégoire Sutre <gregoire.sutre@gmail.com>
5730
5731 Prevent shadowing of stdlib's devname(3) on BSD.
5732
5733 * grub-core/disk/cryptodisk.c (grub_cmd_cryptomount): Rename devname
5734 and devlast to diskname and disklast, respectively.
5735
5736 2013-08-11 Colin Watson <cjwatson@ubuntu.com>
5737
5738 * util/grub-mkconfig.in: Fix detection of Emacs autosave files.
5739
5740 2013-08-08 Vladimir Testov <vladimir.testov@rosalab.ru>
5741
5742 * docs/grub.texi: Introduce terminal window position options:
5743 terminal-left: terminal window's left position
5744 terminal-top: terminal window's top position
5745 terminal-width: terminal window's width
5746 terminal-height: terminal window's height
5747 terminal-border: terminal window's border width
5748 * grub-core/gfxmenu/theme-loader.c: Likewise.
5749 * include/grub/gfxmenu_view.h: Likewise.
5750 * po/exlude.pot: Likewise.
5751 * grub-core/gfxmenu/view.c: Likewise.
5752 Also updated minimal window size.
5753 Also terminal_sanity_check function has been introduced.
5754 * grub-core/tests/checksums.h: Update (terminal window height
5755 is adjusted now for low resolution screen)
5756
5757 2013-08-02 Vladimir Serbinenko <phcoder@gmail.com>
5758
5759 * grub-core/tests/checksums.h: Update (1-pixel difference in marker
5760 position).
5761
5762 2013-08-02 Vladimir Serbinenko <phcoder@gmail.com>
5763
5764 * po/exclude.pot: Add few recent exceptions.
5765
5766 2013-08-02 Vladimir Serbinenko <phcoder@gmail.com>
5767
5768 * tests/grub_func_test.in: Add unicode.pf2.
5769
5770 2013-08-02 Vladimir Serbinenko <phcoder@gmail.com>
5771
5772 * grub-core/term/gfxterm.c (grub_virtual_screen_setup): Start with
5773 standard rather than noral color, in line with other terminals.
5774
5775 2013-08-02 Vladimir Serbinenko <phcoder@gmail.com>
5776
5777 * grub-core/partmap/dfly.c: Simplify dprintfs for easier gettext
5778 analysis.
5779
5780 2013-08-02 Vladimir Serbinenko <phcoder@gmail.com>
5781
5782 * grub-core/loader/arm/linux.c: Change printf to dprintf.
5783
5784 2013-08-02 Vladimir Serbinenko <phcoder@gmail.com>
5785
5786 * grub-core/fs/zfs/zfs.c (check_feature): Cleanup and remove
5787 inappropriate printf.
5788
5789 2013-07-25 Andrey Borzenkov <arvidjaar@gmail.com>
5790
5791 * .bzrignore: Remove grub-core/lib/dtc-grub,
5792 grub-core/Makefile.libfdt.def
5793 * conf/Makefile.extra-dist: Remove grub-core/Makefile.libfdt.def.
5794
5795 2013-07-25 Vladimir Serbinenko <phcoder@gmail.com>
5796
5797 * include/grub/video.h (grub_video_register): Keep double-linked as
5798 well as single-linked invariants.
5799 Reported by: qwertial.
5800
5801 2013-07-25 Vladimir Serbinenko <phcoder@gmail.com>
5802
5803 * grub-core/commands/nativedisk.c (get_uuid): Handle
5804 GRUB_DISK_DEVICE_UBOOTDISK_ID.
5805
5806 2013-07-25 Vladimir Testov <vladimir.testov@rosalab.ru>
5807
5808 * grub-core/gfxmenu/widget-box.c: Fixed draw function. Now it takes
5809 maximum of NW, N, NE heights instead of N's height and maximum of
5810 NW, W, SW widths instead of W's width. (So the box will be always
5811 correctly drawn)
5812
5813 2013-07-20 Grégoire Sutre <gregoire.sutre@gmail.com>
5814
5815 * grub-core/partmap/bsdlabel.c (netopenbsdlabel_partition_map_iterate):
5816 Fix misuse of variable count.
5817
5818 2013-07-18 Leif Lindholm <leif.lindholm@arm.com>
5819 2013-07-18 Francesco Lavra <francescolavra.fl@gmail.com>
5820 2013-07-18 Vladimir Serbinenko <phcoder@gmail.com>
5821
5822 New ports to arm-uboot and arm-efi.
5823 Mostly by Leif Lindholm with some additions from
5824 Francesco Lavra and cleanup by Vladimir Serbinenko.
5825
5826 2013-07-16 Vladimir Serbinenko <phcoder@gmail.com>
5827
5828 * grub-core/loader/multiboot_elfxx.c: Check eip after v2p translation
5829 and not before.
5830 Reported by: Leon Drugi.
5831
5832 2013-07-16 Vladimir Serbinenko <phcoder@gmail.com>
5833
5834 * grub-core/kern/powerpc/ieee1275/startup.S: Handle unaligned bss.
5835 Reported by: Paulo Flabiano Smorigo.
5836
5837 2013-07-14 Vladimir Testov <vladimir.testov@rosalab.ru>
5838
5839 * grub-core/gfxmenu/gui_list.c: USe viewport when drawing strings.
5840
5841 2013-07-14 Vladimir Testov <vladimir.testov@rosalab.ru>
5842
5843 * grub-core/gfxmenu/gui_list.c: Fix height calculation.
5844
5845 2013-07-14 Vladimir Serbinenko <phcoder@gmail.com>
5846
5847 * grub-core/fs/zfs/zfs.c: Stylistic fixes.
5848
5849 2013-07-14 Vladimir Serbinenko <phcoder@gmail.com>
5850
5851 * grub-core/fs/zfs/zfs.c: Run emacs indent on file.
5852
5853 2013-07-14 Andrey Borzenkov <arvidjaar@gmail.com>
5854
5855 * grub-core/net/bootp.c: Export net_* variables.
5856 * grub-core/net/net.c: Likewise.
5857
5858 2013-07-14 Vladimir Serbinenko <phcoder@gmail.com>
5859
5860 * grub-core/fs/zfs/zfs.c: Remove brackets around return value.
5861
5862 2013-07-14 Vladimir Serbinenko <phcoder@gmail.com>
5863
5864 * grub-core/fs/zfs/zfs_lz4.c: Add missing packed attribute.
5865
5866 2013-07-14 Vladimir Serbinenko <phcoder@gmail.com>
5867
5868 * grub-core/fs/zfs/zfs.c (nvlist_next_nvpair): Fix improper cast.
5869
5870 2013-07-14 Vladimir Serbinenko <phcoder@gmail.com>
5871
5872 * grub-core/fs/zfs/zfs_lz4.c: Remove restrict keyword.
5873
5874 2013-07-14 Massimo Maggi <me@massimo-maggi.eu>
5875
5876 * grub-core/fs/zfs/zfs.c (nvlist_next_nvpair): Error is encode_size
5877 <= 0.
5878
5879 2013-07-14 Massimo Maggi <me@massimo-maggi.eu>
5880
5881 * grub-core/fs/zfs/zfs.c: Split nvpair iterators into separate
5882 functions.
5883
5884 2013-07-14 Massimo Maggi <me@massimo-maggi.eu>
5885
5886 * grub-core/fs/zfs/zfs_lz4.c: New file.
5887 * grub-core/fs/zfs/zfs.c: Tie up lz4 decompression.
5888
5889 2013-07-14 Massimo Maggi <me@massimo-maggi.eu>
5890
5891 * grub-core/fs/zfs/zfs.c: Check for feature compatibility.
5892
5893 2013-07-14 Massimo Maggi <me@massimo-maggi.eu>
5894
5895 * grub-core/fs/zfs/zfs.c (uberblock_verify): Accept version 5000.
5896 (check_pool_label): Likewise.
5897 * include/grub/zfs/zfs.h: Rewrite SPA_VERSION_* macros.
5898
5899 2013-07-14 Massimo Maggi <me@massimo-maggi.eu>
5900
5901 * grub-core/fs/zfs/zfsinfo.c (print_vdev_info): Fix RAIDZ reporting.
5902
5903 2013-07-13 Andrey Borzenkov <arvidjaar@gmail.com>
5904
5905 * docs/grub.texi (Commands): Document postition parameters
5906 for menuentry command.
5907
5908 2013-07-13 Andrey Borzenkov <arvidjaar@gmail.com>
5909
5910 * util/grub-mknetdir.in: Remove stray line from help output.
5911
5912 2013-07-11 Vladimir Serbinenko <phcoder@gmail.com>
5913
5914 Remove early sm712 init as there is no reason for it (the "watchdog"
5915 effect was due to wrong GPIO map).
5916
5917 2013-07-11 Vladimir Serbinenko <phcoder@gmail.com>
5918
5919 * grub-core/commands/pcidump.c: Remove static variables.
5920
5921 2013-07-11 Vladimir Serbinenko <phcoder@gmail.com>
5922
5923 * grub-core/commands/sleep.c: Refresh screen before sleeping.
5924
5925 2013-07-11 Vladimir Serbinenko <phcoder@gmail.com>
5926
5927 * configure.ac: Move delimiter after the infos.
5928
5929 2013-07-11 Vladimir Serbinenko <phcoder@gmail.com>
5930
5931 * grub-core/bus/usb/usbhub.c: Fix recheck logic.
5932
5933 2013-07-11 Vladimir Serbinenko <phcoder@gmail.com>
5934
5935 * util/grub-mkfont.c (write_font_ascii_bitmap): Fix handling of glyphs
5936 not filling whole 8x16 space.
5937
5938 2013-07-11 Vladimir Serbinenko <phcoder@gmail.com>
5939
5940 * grub-core/normal/charset.c (bidi_line_wrap): Fix spurios warning.
5941
5942 2013-07-11 Vladimir Serbinenko <phcoder@gmail.com>
5943
5944 * configure.ac: Indicate which liblzma is used if any.
5945
5946 2013-06-21 Paul Wise <pabs3@bonedaddy.net>
5947 2013-06-21 Craig Sanders <savannah@taz.net.au>
5948
5949 * util/grub-reboot.in: Document submenu usage.
5950
5951 2013-06-25 Colin Watson <cjwatson@ubuntu.com>
5952
5953 * .bzrignore: Update with a number of new test-related files.
5954
5955 2013-06-25 Colin Watson <cjwatson@ubuntu.com>
5956
5957 * util/grub-script-check.c: Fail on scripts containing no
5958 commands, to guard against corrupted grub-mkconfig setups that
5959 produce no useful output.
5960 * tests/grub_script_no_commands.in: New test.
5961 * Makefile.util.def (grub_script_no_commands): Add.
5962 Reported by Hans Putter. Fixes Debian bug #713886.
5963
5964 2013-06-16 Andrey Borzenkov <arvidjaar@gmail.com>
5965
5966 * grub-core/disk/diskfilter.c: Forgot to remove comment
5967 from previous commit.
5968
5969 2013-06-16 Andrey Borzenkov <arvidjaar@gmail.com>
5970
5971 * grub-core/term/gfxterm.c (grub_virtual_screen_setup): Use
5972 grub_term_normal_color, do not hardcode GRUB_TERM_DEFAULT_NORMAL_COLOR.
5973
5974 2013-06-16 Andrey Borzenkov <arvidjaar@gmail.com>
5975
5976 * conf/Makefile.extra-dist: Add grub-core/fs/cpio_common.c.
5977
5978 2013-06-16 Andrey Borzenkov <arvidjaar@gmail.com>
5979
5980 * grub-core/disk/diskfilter.c (scan_devices): Iteratively
5981 rescan diskfilter devices until nothing new is found.
5982
5983 2013-06-16 Vladimir Serbinenko <phcoder@gmail.com>
5984
5985 Fix casts when compiling coreboot-specific code for 64-bit EFI.
5986
5987 2013-06-16 Vladimir Serbinenko <phcoder@gmail.com>
5988
5989 Don't try to detect cbfs on *-emu.
5990
5991 2013-06-16 Vladimir Serbinenko <phcoder@gmail.com>
5992
5993 * grub-core/term/gfxterm.c: USe right background color when scrolling.
5994
5995 2013-06-16 Vladimir Serbinenko <phcoder@gmail.com>
5996
5997 Add support for processed coreboot payload chainloading.
5998
5999 2013-06-16 Vladimir Serbinenko <phcoder@gmail.com>
6000
6001 Enable coreboot information commands even when not loaded as
6002 coreboot payload (e.g. when loaded from SeaBIOS-as-payload).
6003
6004 2013-06-15 Vladimir Serbinenko <phcoder@gmail.com>
6005
6006 Support for cbfs. Also factor out the part which is common
6007 for all archives to a separate module. This splits tar from cpio
6008 as they are very different but keeps cpio, cpio_be, odc and newc
6009 together since they're very similar.
6010
6011 2013-06-15 David Michael <fedora.dm0@gmail.com>
6012
6013 * configure.ac (FREETYPE): Change AC_CHECK_PROGS to AC_CHECK_TOOLS.
6014 (freetype_cflags,freetype_libs): Change freetype-config to $FREETYPE.
6015
6016 2013-06-15 Vladimir Serbinenko <phcoder@gmail.com>
6017
6018 * tests/grub_script_eval.in: Really add the eval test.
6019
6020 2013-06-14 Vladimir Serbinenko <phcoder@gmail.com>
6021
6022 Move flavour-specific parts out of common cpio.c file and
6023 rename remaining to cpio_common.c
6024
6025 2013-06-07 Andrey Borzenkov <arvidjaar@gmail.com>
6026
6027 * grub-core/script/execute.c (grub_script_execute_sourcecode): Split
6028 off new function grub_script_execute_new_scope. Change callers to use
6029 either of them as appropriate.
6030 * grub-core/commands/eval.c: New command eval.
6031 * docs/grub.texi (Commands): Document it.
6032
6033 2013-06-07 Andrey Borzenkov <arvidjaar@gmail.com>
6034
6035 * grub-core/kern/corecmd.c (grub_core_cmd_set): Use grub_env_get
6036 to fetch values when listing.
6037
6038 2013-06-07 Andrey Borzenkov <arvidjaar@gmail.com>
6039
6040 Fix make dist on non-pc.
6041
6042 2013-06-07 Francesco Lavra <francescolavra.fl@gmail.com>
6043
6044 * grub-core/kern/corecmd.c (grub_core_cmd_ls): Fix handling of paths
6045 without a device name.
6046
6047 2013-06-07 Vladimir Serbinenko <phcoder@gmail.com>
6048
6049 Remove enable_executable_check as it's not needed anymore.
6050 Reported by: dougray.
6051
6052 2013-06-07 Vladimir Serbinenko <phcoder@gmail.com>
6053
6054 * grub-core/disk/diskfilter.c (insert_array): Fix order to discover
6055 ambigouos RAID before discovering RAIDs on top of it.
6056 Reported by: bodom.
6057
6058 2013-06-07 Vladimir Serbinenko <phcoder@gmail.com>
6059
6060 Fix typo (failback vs fallback).
6061
6062 2013-05-31 Andrey Borzenkov <arvidjaar@gmail.com>
6063
6064 * util/grub.d/30_os-prober.in: Add support for probing EFI
6065 System Partition (as of os-prober 1.58).
6066
6067 2013-05-31 Vladimir Serbinenko <phcoder@gmail.com>
6068
6069 * configure.ac: Add yet another path to unifont. For parabola.
6070
6071 2013-05-30 Josh Triplett <josh@joshtriplett.org>
6072
6073 * grub-core/normal/cmdline.c (grub_cmdline_get): Fix Ctrl-u
6074 handling to copy the killed characters to the kill buffer as
6075 UCS4 stored as grub_uint32_t rather than as 8-bit characters
6076 stored as char. Eliminates UCS4 truncation and corruption
6077 observed when killing characters with Ctrl-u and yanking them
6078 back with Ctrl-y.
6079
6080 2013-05-30 Vladimir Serbinenko <phcoder@gmail.com>
6081
6082 Detach optional parts of gfxterm and integrate in with coreboot init.
6083
6084 2013-05-30 Vladimir Serbinenko <phcoder@gmail.com>
6085
6086 Move blit and fill dispatcher to appropriate files to decrease export
6087 and relocation overhead.
6088
6089 2013-05-30 Vladimir Serbinenko <phcoder@gmail.com>
6090
6091 * grub-core/font/font.c, include/grub/font.h: Inline simple font
6092 functions.
6093
6094 2013-05-30 Vladimir Serbinenko <phcoder@gmail.com>
6095
6096 * grub-core/Makefile.am: Fix compilation problem with some
6097 automake versions.
6098
6099 2013-05-30 Vladimir Serbinenko <phcoder@gmail.com>
6100
6101 * configure.ac: Add Ubuntu path to unifont and report unifont path used.
6102
6103 2013-05-30 Vladimir Serbinenko <phcoder@gmail.com>
6104
6105 * Makefile.am, conf/Makefile.common: Fix compilation problem with some
6106 automake versions.
6107
6108 2013-05-30 Vladimir Serbinenko <phcoder@gmail.com>
6109
6110 * grub-core/commands/acpihalt.c: Fix handling of DSDT in presence of
6111 SSDT.
6112
6113 2013-05-15 Radosław Szymczyszyn <lavrin@gmail.com>
6114
6115 * grub-core/partmap/dfly.c: New partition map.
6116
6117 2013-05-15 Vladimir Serbinenko <phcoder@gmail.com>
6118
6119 * grub-core/kern/corecmd.c (grub_core_cmd_ls): Fix empty path
6120 checking.
6121 Reported by: Francesco Lavra.
6122
6123 2013-05-14 Andrey Borzenkov <arvidjaar@gmail.com>
6124
6125 * gentpl.py: Replace EXTRA_DIST with dist_noinst_DATA or
6126 dist_<directory>_DATA. EXTRA_DIST is ignored by automake inside
6127 false conditions.
6128 * conf/Makefile.common: define dist_grubconf_DATA
6129
6130 2013-05-14 Vladimir Serbinenko <phcoder@gmail.com>
6131
6132 Progressively skip menu elements on small terminals rather
6133 than crashing.
6134
6135 2013-05-14 Vladimir Serbinenko <phcoder@gmail.com>
6136
6137 * grub-core/normal/cmdline.c (grub_cmdline_get): Fix off-by-one error
6138 to avoid losing last column.
6139
6140 2013-05-14 Vladimir Serbinenko <phcoder@gmail.com>
6141
6142 * po/exclude.pot: Add missing string "%C".
6143
6144 2013-05-14 Vladimir Serbinenko <phcoder@gmail.com>
6145
6146 * tests/util/grub-shell.in: Remove the temporary directory on grub-emu
6147 after the test.
6148
6149 2013-05-11 Vladimir Serbinenko <phcoder@gmail.com>
6150
6151 * util/grub-install.in: Gettextize "Not found" message.
6152
6153 2013-05-11 Vladimir Serbinenko <phcoder@gmail.com>
6154
6155 Fix distfiles list.
6156 Reported by: Andrey Borzenkov <arvidjaar@gmail.com>
6157
6158 2013-05-11 Paulo Flabiano Smorigo <pfsmorigo@br.ibm.com>
6159
6160 * grub-core/net/bootp.c (grub_cmd_bootp): Check if there is any card
6161 present.
6162 * include/grub/err.h (grub_err_t): New enum value GRUB_ERR_NET_NO_CARD.
6163
6164 2013-05-11 Vladimir Serbinenko <phcoder@gmail.com>
6165
6166 * grub-core/tests/setjmp_test.c: Ignore missing noreturn.
6167
6168 2013-05-11 Vladimir Serbinenko <phcoder@gmail.com>
6169
6170 * grub-core/fs/hfspluscomp.c (grub_hfsplus_compress_attr): Add packed
6171 attribute since structure is not necessarily aligned.
6172
6173 2013-05-11 Andrey Borzenkov <arvidjaar@gmail.com>
6174
6175 * docs/grub.texi (Device syntax): Clarify description of network
6176 drives.
6177
6178 2013-05-10 Vladimir Serbinenko <phcoder@gmail.com>
6179
6180 Redirect xasprintf to grub_xvasprintf rather than having #ifdef's
6181 for vasprintf presence.
6182
6183 2013-05-10 Vladimir Serbinenko <phcoder@gmail.com>
6184
6185 * util/grub-install.in: Handle efibootmgr presence check.
6186 Reported by: Leif Lindholm.
6187
6188 2013-05-10 Vladimir Serbinenko <phcoder@gmail.com>
6189
6190 * grub-core/commands/testspeed.c: Reuse formatting string to decrease
6191 new strings to translate.
6192
6193 2013-05-10 Vladimir Serbinenko <phcoder@gmail.com>
6194
6195 * util/grub-mkrescue.in: Replace `STR' with `STRING' to avoid adding
6196 yet another string (pun intended) to translate.
6197
6198 2013-05-10 Vladimir Serbinenko <phcoder@gmail.com>
6199
6200 * po/POTFILES-shell.in: Autogenerate it.
6201
6202 2013-05-10 Vladimir Serbinenko <phcoder@gmail.com>
6203
6204 * grub-core/net/net.c (grub_net_open_real): Autoload network modules.
6205
6206 2013-05-10 Vladimir Serbinenko <phcoder@gmail.com>
6207
6208 * grub-core/term/terminfo.c: Rename ANSI_C0 to ANSI_CSI to avoid
6209 misnomer.
6210
6211 2013-05-08 Andrey Borzenkov <arvidjaar@gmail.com>
6212
6213 * docs/grub.texi (Network): Add description of net_default_interface,
6214 net_default_ip and net_default_mac. Rewrite variables description
6215 to emphasize that they are per-interface.
6216
6217 2013-05-08 Vladimir Serbinenko <phcoder@gmail.com>
6218
6219 New test: cmdline and cat.
6220
6221 2013-05-08 Vladimir Serbinenko <phcoder@gmail.com>
6222
6223 * grub-core/commands/cat.c: Show UTF-8 characters.
6224
6225 2013-05-08 Vladimir Serbinenko <phcoder@gmail.com>
6226
6227 * conf/Makefile.common: Poison float and double on non-emu.
6228
6229 2013-05-08 Vladimir Serbinenko <phcoder@gmail.com>
6230
6231 * configure.ac: Don't disable extended registers on emu.
6232
6233 2013-05-07 Vladimir Serbinenko <phcoder@gmail.com>
6234
6235 * configure.ac: Don't use extended registers on x86_64.
6236 Reported by: Peter Jones.
6237
6238 2013-05-07 Vladimir Serbinenko <phcoder@gmail.com>
6239
6240 * grub-core/term/efi/console.c: Fix compile error.
6241
6242 2013-05-07 Vladimir Serbinenko <phcoder@gmail.com>
6243
6244 Compressed HFS+ support.
6245
6246 2013-05-07 Vladimir Serbinenko <phcoder@gmail.com>
6247
6248 * grub-core/commands/videoinfo.c: Use "paletted" rather than "packed
6249 pixel".
6250
6251 2013-05-07 Vladimir Serbinenko <phcoder@gmail.com>
6252
6253 Menu color test.
6254
6255 2013-05-07 Vladimir Serbinenko <phcoder@gmail.com>
6256
6257 * grub-core/tests/setjmp_test.c: New test.
6258
6259 2013-05-07 Vladimir Serbinenko <phcoder@gmail.com>
6260
6261 New variables 'net_default_*' to determine MAC/IP of default interface.
6262
6263 2013-05-07 Vladimir Serbinenko <phcoder@gmail.com>
6264
6265 * tests/gettext_strings_test.in: A test to check for strings not
6266 marked for translation.
6267
6268 2013-05-07 Vladimir Serbinenko <phcoder@gmail.com>
6269
6270 * autogen.sh: Exclude unused libgcrypt files from translation.
6271
6272 2013-05-07 Vladimir Serbinenko <phcoder@gmail.com>
6273
6274 Simplify few strings.
6275
6276 2013-05-07 Vladimir Serbinenko <phcoder@gmail.com>
6277
6278 Mark few forgotten strings for translation.
6279
6280 2013-05-07 Vladimir Serbinenko <phcoder@gmail.com>
6281
6282 * grub-core/loader/linux.c: Use grub_dprintf for debug statements
6283 rather than printf.
6284
6285 2013-05-07 Vladimir Serbinenko <phcoder@gmail.com>
6286
6287 * grub-core/video/readers/jpeg.c: Use grub_dprintf for debug statements
6288 rather than printf.
6289 * grub-core/video/readers/tga.c: Likewise.
6290
6291 2013-05-07 Vladimir Serbinenko <phcoder@gmail.com>
6292
6293 * tests/priority_queue_unit_test.cc: New test.
6294
6295 2013-05-07 Vladimir Serbinenko <phcoder@gmail.com>
6296
6297 * grub-core/font/font.c: Use grub_dprintf for debug statements rather
6298 than printf.
6299
6300 2013-05-06 Andrey Borzenkov <arvidjaar@gmail.com>
6301
6302 Reimplement grub-reboot to not depend on saved_entry. Use next_entry
6303 variable for one time boot menu entry.
6304
6305 2013-05-05 Bean <bean123ch@gmail.com>
6306
6307 * grub-core/commands/testspeed.c: New command testspeed.
6308
6309 2013-05-05 Vladimir Serbinenko <phcoder@gmail.com>
6310
6311 Factor-out human-size printing.
6312
6313 2013-05-04 Vladimir Serbinenko <phcoder@gmail.com>
6314
6315 Agglomerate more mallocs to speed-up gfxterm.
6316
6317 2013-05-04 Vladimir Serbinenko <phcoder@gmail.com>
6318
6319 Speed-up gfxterm by slightly agglomerating mallocs.
6320
6321 2013-05-04 Vladimir Serbinenko <phcoder@gmail.com>
6322
6323 More video checks.
6324
6325 2013-05-04 Vladimir Serbinenko <phcoder@gmail.com>
6326
6327 Speed-up gfxterm by saving intermediate results in index+alpha
6328 format.
6329
6330 2013-05-04 Vladimir Serbinenko <phcoder@gmail.com>
6331
6332 * grub-core/tests/lib/functional_test.c: Don't stop on first failed
6333 test.
6334
6335 2013-05-04 Vladimir Serbinenko <phcoder@gmail.com>
6336
6337 * grub-core/normal/menu_text.c (menu_clear_timeout): Clear second
6338 line of timeout as it may contain the rest of long line.
6339
6340 2013-05-04 Vladimir Serbinenko <phcoder@gmail.com>
6341
6342 * grub-core/normal/main.c: Fix freed memory dereference.
6343
6344 2013-05-04 Vladimir Serbinenko <phcoder@gmail.com>
6345
6346 Fix several memory leaks.
6347
6348 2013-05-04 Vladimir Serbinenko <phcoder@gmail.com>
6349
6350 * grub-core/normal/menu.c (run_menu): Fix timeout reference point.
6351
6352 2013-05-04 Vladimir Serbinenko <phcoder@gmail.com>
6353
6354 * grub-core/gettext/gettext.c: Try $lang.gmo as well.
6355
6356 2013-05-04 Vladimir Serbinenko <phcoder@gmail.com>
6357
6358 Fix test -a and -o precedence.
6359 Reported by: adrian15.
6360
6361 2013-05-04 Vladimir Serbinenko <phcoder@gmail.com>
6362
6363 * grub-core/font/font.c (grub_font_construct_glyph): Fix memory leak.
6364
6365 2013-05-03 Andrey Borzenkov <arvidjaar@gmail.com>
6366
6367 Rename grub-core/tests/checksums.c into grub-core/tests/checksums.h
6368 and add it as source to functional_test module.
6369
6370 2013-05-03 Vladimir Serbinenko <phcoder@gmail.com>
6371
6372 * grub-core/tests/video_checksum.c: Don't set GENERATE_MODE.
6373
6374 2013-05-03 Vladimir Serbinenko <phcoder@gmail.com>
6375
6376 New series of tests for gfxterm and gfxmenu.
6377
6378 2013-05-03 Vladimir Serbinenko <phcoder@gmail.com>
6379
6380 * grub-core/gfxmenu/gfxmenu.c (grub_gfxmenu_try): Allow specifying
6381 the theme path relative to $prefix/themes.
6382
6383 2013-05-03 Vladimir Serbinenko <phcoder@gmail.com>
6384
6385 * grub-core/video/fb/fbblit.c (grub_video_fbblit_blend_BGR888_RGBA8888):
6386 Fix order bug.
6387 (grub_video_fbblit_blend_RGB888_RGBA8888): Likewise.
6388
6389 2013-05-03 Vladimir Serbinenko <phcoder@gmail.com>
6390
6391 * include/grub/gui.h (grub_gfxmenu_timeout_unregister): Free cb
6392 descriptor.
6393
6394 2013-05-03 Vladimir Serbinenko <phcoder@gmail.com>
6395
6396 * grub-core/gfxmenu/view.c (grub_gfxmenu_view_new): Clear
6397 grub_gfxmenu_timeout_notifications.
6398 (grub_gfxmenu_view_destroy): Likewise.
6399
6400 2013-05-03 Vladimir Serbinenko <phcoder@gmail.com>
6401
6402 * grub-core/normal/term.c (print_ucs4_real): Fix startwidth in dry run.
6403
6404 2013-05-02 Vladimir Serbinenko <phcoder@gmail.com>
6405
6406 Several fixes to ieee1275 and big-endian video.
6407
6408 2013-05-02 Vladimir Serbinenko <phcoder@gmail.com>
6409
6410 Add missing exports on mips.
6411
6412 2013-05-02 Vladimir Serbinenko <phcoder@gmail.com>
6413
6414 * grub-core/tests/videotest_checksum.c (videotest_checksum): Error out
6415 if no unifont is found.
6416 Restore original keyboard.
6417
6418 2013-05-02 Vladimir Serbinenko <phcoder@gmail.com>
6419
6420 * grub-core/loader/i386/linux.c (grub_linux_setup_video): Add
6421 GRUB_VIDEO_ADAPTER_CAPTURE: to handled drived ids.
6422
6423 2013-05-02 Vladimir Serbinenko <phcoder@gmail.com>
6424
6425 First automated video test (running videotest and comparing results)
6426
6427 2013-05-02 Vladimir Serbinenko <phcoder@gmail.com>
6428
6429 * grub-core/commands/videotest.c: Reduce flickering and draw 6 squares
6430 instead of 2 to have full RGB/CMY test pattern.
6431
6432 2013-04-30 Vladimir Serbinenko <phcoder@gmail.com>
6433
6434 Add few more tests.
6435
6436 2013-04-30 Vladimir Serbinenko <phcoder@gmail.com>
6437
6438 * include/grub/arc/arc.h: Account for missing "other" peripheral on
6439 ARCS. All users updated.
6440
6441 2013-04-30 Vladimir Serbinenko <phcoder@gmail.com>
6442
6443 * grub-core/kern/mips/loongson/init.c: Support halt for loongson 2E.
6444
6445 2013-04-30 Vladimir Serbinenko <phcoder@gmail.com>
6446
6447 * grub-core/partmap/amiga.c: Fix size of checksummed block.
6448
6449 2013-04-29 Vladimir Serbinenko <phcoder@gmail.com>
6450
6451 * configure.ac: Use -mcmodel=large on x86_64-emu as well.
6452 Reported by: qwertial.
6453
6454 2013-04-29 Vladimir Testov <vladimir.testov@rosalab.ru>
6455
6456 * grub-core/gfxmenu/circular_progress.c: Set start_angle in degrees
6457 with syntax "XXX deg"/"XXX °".
6458
6459 2013-04-29 Vladimir Serbinenko <phcoder@gmail.com>
6460
6461 Make PCI init in i386-qemu port more robust.
6462
6463 2013-04-29 Vladimir Testov <vladimir.testov@rosalab.ru>
6464
6465 * grub-core/gfxmenu/gui_list.c: Refresh first_shown_entry value when
6466 cached view is reused.
6467 * grub-core/gfxmenu/view.c: Call the refresh procedure for all
6468 open boot menus.
6469
6470 2013-04-29 Vladimir Serbinenko <phcoder@gmail.com>
6471
6472 Unify more code in grub-install_header.
6473
6474 2013-04-29 Vladimir Serbinenko <phcoder@gmail.com>
6475
6476 Add few new tests.
6477
6478 2013-04-29 Vladimir Serbinenko <phcoder@gmail.com>
6479
6480 Enforce disabling of firmware disk drivers when native drivers kick in.
6481
6482 2013-04-29 Vladimir Serbinenko <phcoder@gmail.com>
6483
6484 * grub-core/commands/nativedisk.c: Customize the list of modules on
6485 platform. Don't try to search for disks already using native drivers.
6486
6487 2013-04-29 Vladimir Serbinenko <phcoder@gmail.com>
6488
6489 * grub-core/bus/usb/uhci.c: Fix DMA handling and enable on all PCI
6490 platforms.
6491
6492 2013-04-29 Vladimir Serbinenko <phcoder@gmail.com>
6493
6494 * grub-core/script/execute.c (grub_script_arglist_to_argv): Fix
6495 handling of variables containing backslash.
6496
6497 2013-04-29 Vladimir Serbinenko <phcoder@gmail.com>
6498
6499 * include/grub/list.h (FOR_LIST_ELEMENTS_SAFE):Fix a NULL pointer
6500 dereference.
6501 Reported by: qwertial.
6502
6503 2013-04-29 Vladimir Serbinenko <phcoder@gmail.com>
6504
6505 * grub-core/kern/mips/arc/init.c: Fix prefix detection.
6506
6507 2013-04-29 Vladimir Serbinenko <phcoder@gmail.com>
6508
6509 * grub-core/lib/arg.c (grub_arg_show_help): Fix a NULL pointer
6510 dereference.
6511 Reported by: qwertial.
6512
6513 2013-04-28 Vladimir Serbinenko <phcoder@gmail.com>
6514
6515 * docs/grub.texi: Add a comment about usefullness of nativedisk.
6516
6517 2013-04-28 Vladimir Serbinenko <phcoder@gmail.com>
6518
6519 * grub-core/commands/nativedisk.c: Ignore unknown filesystem error.
6520
6521 2013-04-28 Vladimir Serbinenko <phcoder@gmail.com>
6522
6523 New command `nativedisk'.
6524
6525 2013-04-28 Vladimir Serbinenko <phcoder@gmail.com>
6526
6527 * grub-core/io/lzopio.c: Use GRUB_PROPERLY_ALIGNED_ARRAY.
6528 * grub-core/loader/i386/bsd.c: Likewise.
6529
6530 2013-04-28 Vladimir Serbinenko <phcoder@gmail.com>
6531
6532 * grub-core/disk/ahci.c: Fix compilation for amd64 (format warnings).
6533
6534 2013-04-28 Vladimir Serbinenko <phcoder@gmail.com>
6535
6536 * include/grub/efi/api.h (GRUB_EFI_DEVICE_PATH_LENGTH): Use
6537 grub_get_unaligned16 rather than shifts.
6538
6539 2013-04-28 Vladimir Serbinenko <phcoder@gmail.com>
6540
6541 * grub-core/kern/file.c: Use const char * rather than casting to
6542 non-const.
6543
6544 2013-04-28 Vladimir Serbinenko <phcoder@gmail.com>
6545
6546 * grub-core/commands/probe.c: Add missing grub_device_close.
6547
6548 2013-04-28 Vladimir Serbinenko <phcoder@gmail.com>
6549
6550 * INSTALL: Document linguas.sh.
6551
6552 2013-04-28 Vladimir Serbinenko <phcoder@gmail.com>
6553
6554 Remove POTFILES.in and regenerate it in autogen.sh.
6555
6556 2013-04-28 Vladimir Serbinenko <phcoder@gmail.com>
6557
6558 Move --directory/--override-directorry to grub-install_header and unify.
6559
6560 2013-04-28 Vladimir Serbinenko <phcoder@gmail.com>
6561
6562 * grub-core/term/morse.c: Macroify dih and dah.
6563
6564 2013-04-27 Paulo Flabiano Smorigo <pfsmorigo@br.ibm.com>
6565
6566 * include/grub/macho.h: Set GRUB_MACHO_FAT_EFI_MAGIC as unsigned.
6567
6568 2013-04-27 Vladimir Serbinenko <phcoder@gmail.com>
6569
6570 * grub-core/term/ns8250.c: Systematically probe ports by writing
6571 to SR before using them.
6572
6573 2013-04-27 Paulo Flabiano Smorigo <pfsmorigo@br.ibm.com>
6574
6575 * util/ieee1275/ofpath.c (of_path_of_scsi): Fix path output for sas
6576 disks.
6577 (check_sas): Get sas_adress info.
6578
6579 2013-04-27 Vladimir Serbinenko <phcoder@gmail.com>
6580
6581 * grub-core/disk/ahci.c (grub_ahci_pciinit): Fix handling of empty
6582 ports.
6583
6584 2013-04-27 Leon Drugi <eyak>
6585
6586 * grub-core/loader/multiboot_mbi2.c (grub_multiboot_load): Fix cast in
6587 BSS clearing.
6588
6589 2013-04-27 Vladimir Serbinenko <phcoder@gmail.com>
6590
6591 Core compression test.
6592
6593 2013-04-27 Vladimir Serbinenko <phcoder@gmail.com>
6594
6595 Implement grub_machine_get_bootlocation for ARC.
6596
6597 2013-04-27 Vladimir Serbinenko <phcoder@gmail.com>
6598
6599 Improve AHCI detection and command issuing.
6600
6601 2013-04-26 Vladimir Serbinenko <phcoder@gmail.com>
6602
6603 Fix pseries test.
6604
6605 2013-04-26 Vladimir Serbinenko <phcoder@gmail.com>
6606
6607 Make 'make check' work on emu.
6608
6609 2013-04-26 Vladimir Serbinenko <phcoder@gmail.com>
6610
6611 Replace libcurses with our own vt100 handling for the ease of testing
6612 and decreasing prerequisites.
6613
6614 2013-04-26 Vladimir Serbinenko <phcoder@gmail.com>
6615
6616 * grub-core/Makefile.core.def: Fix grub-emu and grub-emu-lite sources.
6617
6618 2013-04-26 Vladimir Serbinenko <phcoder@gmail.com>
6619
6620 * util/getroot.c (exec_pipe): Put proper #if's so that its users don't
6621 compile when not needed.
6622
6623 2013-04-26 Vladimir Serbinenko <phcoder@gmail.com>
6624
6625 * tests/pseries_test.in: New test.
6626
6627 2013-04-26 Vladimir Serbinenko <phcoder@gmail.com>
6628
6629 Add test to check that different boot mediums work.
6630
6631 2013-04-26 Vladimir Serbinenko <phcoder@gmail.com>
6632
6633 * util/grub-mkrescue.in: Rename i386-ieee1275 core image due to
6634 ofw limited ISO support.
6635
6636 2013-04-26 Vladimir Serbinenko <phcoder@gmail.com>
6637
6638 * configure.ac: Fix loongson conditional.
6639
6640 2013-04-25 Vladimir Serbinenko <phcoder@gmail.com>
6641
6642 Enable mipsel-arc.
6643
6644 2013-04-25 Vladimir Serbinenko <phcoder@gmail.com>
6645
6646 Add serial on ARC platform.
6647
6648 2013-04-25 Vladimir Serbinenko <phcoder@gmail.com>
6649
6650 * grub-core/boot/powerpc/bootinfo.txt.in: Missing update from previous
6651 commit.
6652
6653 2013-04-25 Vladimir Serbinenko <phcoder@gmail.com>
6654
6655 * tests/partmap_test.in: Add missing double semicolon.
6656
6657 2013-04-25 Vladimir Serbinenko <phcoder@gmail.com>
6658
6659 * util/grub-mkrescue.in: Fix loongson filename.
6660
6661 2013-04-25 Vladimir Serbinenko <phcoder@gmail.com>
6662
6663 * util/grub-mkrescue.in: Move all files that don't have a location
6664 set in stone under /boot/grub. Use ISO hard links rather than copies
6665 to save some space.
6666
6667 2013-04-24 Vladimir Serbinenko <phcoder@gmail.com>
6668
6669 * grub-core/term/ieee1275/console.c (grub_console_dimensions): Ignore
6670 bogus SLOF values.
6671
6672 2013-04-24 Vladimir Serbinenko <phcoder@gmail.com>
6673
6674 Make check work on mips-arc.
6675
6676 2013-04-24 Vladimir Serbinenko <phcoder@gmail.com>
6677
6678 * util/grub-mkrescue.in: Alias sashARCS as sash.
6679
6680 2013-04-24 Vladimir Serbinenko <phcoder@gmail.com>
6681
6682 * grub-core/term/arc/console.c: Assume that console is 80x24 vt100 if
6683 it's serial.
6684
6685 2013-04-24 Vladimir Serbinenko <phcoder@gmail.com>
6686
6687 * util/grub-install.in: Fix target fo qemu_mips.
6688 Fix extension on EFI.
6689
6690 2013-04-24 Vladimir Serbinenko <phcoder@gmail.com>
6691
6692 * grub-core/normal/menu_text.c (print_entry): Put an asterisk
6693 in front of chosen entry to mark it even if highlighting is lost.
6694
6695 2013-04-24 Vladimir Serbinenko <phcoder@gmail.com>
6696
6697 * grub-core/loader/i386/linux.c (grub_linux_boot): Default to
6698 gfxpayload=keep if cbfb is active.
6699
6700 2013-04-24 Vladimir Serbinenko <phcoder@gmail.com>
6701
6702 * grub-core/disk/ata.c (grub_ata_real_open): Use grub_error properly.
6703
6704 2013-04-24 Vladimir Serbinenko <phcoder@gmail.com>
6705
6706 Add missing video ids to coreboot and ieee1275 video.
6707
6708 2013-04-24 Vladimir Serbinenko <phcoder@gmail.com>
6709
6710 * util/grub-mkrescue.in: Add mips-arc support.
6711
6712 2013-04-24 Vladimir Serbinenko <phcoder@gmail.com>
6713
6714 * grub-core/kern/dl.c (grub_dl_resolve_symbols): Handle malloc failure.
6715
6716 2013-04-24 Vladimir Serbinenko <phcoder@gmail.com>
6717
6718 Move mips-arc link address. Previous link address was chosen
6719 in belief that RAM on SGI platforms grows down while in fact it
6720 grows up from an unusual base.
6721
6722 2013-04-21 Vladimir Serbinenko <phcoder@gmail.com>
6723
6724 * grub-core/disk/arc/arcdisk.c (grub_arcdisk_iterate_iter):
6725 Fix a type which prevented CD-ROM and floppy boot.
6726
6727 2013-04-21 Vladimir Serbinenko <phcoder@gmail.com>
6728
6729 Support coreboot framebuffer.
6730
6731 * grub-core/video/i386/coreboot/cbfb.c: New file.
6732
6733 2013-04-20 Vladimir Serbinenko <phcoder@gmail.com>
6734
6735 * grub-core/kern/mm.c (grub_mm_init_region): Fix condition for
6736 detecting too small regions.
6737
6738 2013-04-20 Vladimir Serbinenko <phcoder@gmail.com>
6739
6740 * grub-core/Makefile.core.def (legacycfg): Enable on EFI.
6741
6742 2013-04-20 Vladimir Serbinenko <phcoder@gmail.com>
6743
6744 * grub-core/lib/efi/relocator.c (grub_relocator_firmware_alloc_region):
6745 Remove dprintf.
6746 * grub-core/lib/relocator.c (malloc_in_range): Likewise.
6747
6748 2013-04-19 Vladimir Serbinenko <phcoder@gmail.com>
6749
6750 * grub-core/kern/ieee1275/init.c (grub_claim_heap): Improve handling
6751 of GRUB_IEEE1275_FLAG_FORCE_CLAIM.
6752 * grub-core/loader/powerpc/ieee1275/linux.c
6753 (grub_linux_claimmap_iterate): Handle GRUB_IEEE1275_FLAG_FORCE_CLAIM.
6754
6755 2013-04-19 Vladimir Serbinenko <phcoder@gmail.com>
6756
6757 * grub-core/kern/ieee1275/cmain.c (grub_ieee1275_find_options):
6758 Look for /boot-rom as well as /rom/boot-rom.
6759
6760 2013-04-19 Vladimir Serbinenko <phcoder@gmail.com>
6761
6762 * grub-core/commands/videotest.c (grub_cmd_videotest): Fix error
6763 handling when creating text_layer failed.
6764 * grub-core/video/video.c (grub_video_create_render_target):
6765 Set result to 0 on error.
6766 (grub_video_delete_render_target): Do not dereference NULL.
6767
6768 2013-04-19 Vladimir Serbinenko <phcoder@gmail.com>
6769
6770 * grub-core/kern/elfXX.c (grub_elfXX_load): Handle
6771 GRUB_ELF_LOAD_FLAGS_30BITS and GRUB_ELF_LOAD_FLAGS_62BITS.
6772 * grub-core/loader/powerpc/ieee1275/linux.c (grub_linux_load32),
6773 (grub_linux_load64): Mask out 2 high bits.
6774
6775 2013-04-19 Andrey Borzenkov <arvidjaar@gmail.com>
6776
6777 * util/grub.d/30_os-prober.in: Add onstr to linux entries in one
6778 more place.
6779
6780 2013-04-19 Vladimir Serbinenko <phcoder@gmail.com>
6781
6782 Add support for pseries and other bootinfo machines to grub-mkrescue.
6783
6784 Tested by: Paulo Flabiano Smorigo.
6785
6786 2013-04-17 Vladimir Serbinenko <phcoder@gmail.com>
6787
6788 * util/grub-mkrescue.in: Add GPT for EFI boot.
6789
6790 2013-04-17 Vladimir Serbinenko <phcoder@gmail.com>
6791
6792 * grub-core/disk/efi/efidisk.c: Detect floppies by ACPI ID.
6793 It improves performance in qemu.
6794
6795 2013-04-17 Vladimir Serbinenko <phcoder@gmail.com>
6796
6797 * build-aux/snippet: Add missing gnulib files.
6798
6799 2013-04-16 Andrey Borzenkov <arvidjaar@gmail.com>
6800
6801 * grub-core/disk/efi/efidisk.c: Really limit transfer chunk size.
6802
6803 2013-04-16 Andrey Borzenkov <arvidjaar@gmail.com>
6804
6805 * autogen.sh: Use "-f" in addition for "-h" when checking file presence.
6806
6807 2013-04-15 Vladimir Serbinenko <phcoder@gmail.com>
6808 2013-04-15 Peter Jones <pjones@redhat.com>
6809
6810 * grub-core/disk/efi/efidisk.c: Limit disk read or write chunk to 0x500
6811 sectors.
6812 Based on patch by Peter Jones.
6813
6814 2013-04-15 Vladimir Serbinenko <phcoder@gmail.com>
6815
6816 Fix DMRAID partition handling.
6817
6818 2013-04-15 Vladimir Serbinenko <phcoder@gmail.com>
6819
6820 * tests/grub_cmd_date.in: Skip on sparc64.
6821
6822 2013-04-15 Vladimir Serbinenko <phcoder@gmail.com>
6823
6824 * tests/grub_script_expansion.in: Use fixed-string grep to skip over
6825 firmware error messages.
6826
6827 2013-04-15 Vladimir Serbinenko <phcoder@gmail.com>
6828
6829 * grub-core/kern/ieee1275/openfw.c (grub_ieee1275_devalias_next): Make
6830 source and destination differ.
6831
6832 2013-04-15 Vladimir Serbinenko <phcoder@gmail.com>
6833
6834 * grub-core/disk/ieee1275/ofdisk.c: Fix CD-ROM and boot device
6835 detection.
6836
6837 2013-04-14 Vladimir Serbinenko <phcoder@gmail.com>
6838
6839 * grub-core/lib/posix_wrap/sys/types.h: Make WORDS_BIGENDIAN definition
6840 match config-util.h to avoid warnings and increase compatibility.
6841
6842 2013-04-14 Szymon Janc <szymon@janc.net.pl>
6843 2013-04-14 Vladimir Serbinenko <phcoder@gmail.com>
6844
6845 Add option to compress files on install/image creation.
6846
6847 2013-04-14 Vladimir Serbinenko <phcoder@gmail.com>
6848
6849 * docs/grub-dev.texi: Rearrange menu to match the section order.
6850 Reported by: Bryan Hundven.
6851
6852 2013-04-14 Vladimir Serbinenko <phcoder@gmail.com>
6853
6854 * grub-core/loader/i386/linux.c: Remove useless leftover pointer.
6855
6856 2013-04-14 Vladimir Serbinenko <phcoder@gmail.com>
6857
6858 Move GRUB out of system area when using xorriso 1.2.9 or later.
6859
6860 2013-04-14 Vladimir Serbinenko <phcoder@gmail.com>
6861
6862 * tests/grub_cmd_date.in: Add missing exit 1.
6863
6864 2013-04-14 Vladimir Serbinenko <phcoder@gmail.com>
6865
6866 * tests/partmap_test.in: Skip on sparc64.
6867
6868 2013-04-14 Vladimir Serbinenko <phcoder@gmail.com>
6869
6870 Support grub-shell on sparc64.
6871
6872 2013-04-14 Vladimir Serbinenko <phcoder@gmail.com>
6873
6874 Support mkrescue on sparc64.
6875
6876 2013-04-14 Vladimir Serbinenko <phcoder@gmail.com>
6877
6878 Allow IEEE1275 ports on path even if it wasn't detected automatically.
6879 Needed on OpenBIOS due to incomplete device tree.
6880
6881 2013-04-14 Vladimir Serbinenko <phcoder@gmail.com>
6882
6883 * grub-core/disk/ieee1275/ofdisk.c: Iterate over bootpath even if it
6884 would be otherwise excluded.
6885
6886 2013-04-14 Vladimir Serbinenko <phcoder@gmail.com>
6887
6888 * grub-core/kern/ieee1275/cmain.c (grub_ieee1275_find_options):
6889 Inline name defines used only once.
6890
6891 2013-04-13 Vladimir Serbinenko <phcoder@gmail.com>
6892
6893 Fix memory leaks in ofnet.
6894 Reported by: Francesco Lavra.
6895
6896 2013-04-12 Vladimir Serbinenko <phcoder@gmail.com>
6897
6898 * docs/man/grub-glue-efi.h2m: Add missing file.
6899
6900 2013-04-12 Vladimir Serbinenko <phcoder@gmail.com>
6901
6902 * util/grub-mkrescue.in: Fix wrong architecture for ppc dir.
6903
6904 2013-04-12 Vladimir Serbinenko <phcoder@gmail.com>
6905
6906 Better support Apple Intel Macs on CD.
6907
6908 2013-04-12 Vladimir Serbinenko <phcoder@gmail.com>
6909
6910 Replace stpcpy with grub_stpcpy in tools.
6911
6912 2013-04-12 Vladimir Serbinenko <phcoder@gmail.com>
6913
6914 Handle Japanese special keys.
6915 Reported by: Hiroyuki YAMAMORI.
6916 Codes supplied by: Hiroyuki YAMAMORI.
6917
6918 2013-04-12 Vladimir Serbinenko <phcoder@gmail.com>
6919
6920 * util/grub-mkimage.c: Document memdisk implying --prefix.
6921
6922 2013-04-12 Vladimir Serbinenko <phcoder@gmail.com>
6923
6924 * grub-core/bus/usb/ehci.c (grub_ehci_fini_hw): Ignore errors, not
6925 much we can do about it anyway.
6926
6927 2013-04-12 Aleš Nesrsta <starous@volny.cz>
6928
6929 Fix handling of split transfers.
6930
6931 2013-04-12 Vladimir Serbinenko <phcoder@gmail.com>
6932
6933 * grub-core/net/http.c: Fix bad free.
6934
6935 2013-04-12 Vladimir Serbinenko <phcoder@gmail.com>
6936
6937 * grub-core/net/drivers/ieee1275/ofnet.c: Don't attempt to send more
6938 than buffer size.
6939
6940 2013-04-12 Vladimir Serbinenko <phcoder@gmail.com>
6941
6942 Disable partmap check on i386-ieee1275 due to openfirmware issues.
6943
6944 2013-04-12 Vladimir Serbinenko <phcoder@gmail.com>
6945
6946 * tests/util/grub-shell.in: Fix it on powerpc.
6947
6948 2013-04-12 Vladimir Serbinenko <phcoder@gmail.com>
6949
6950 Turn off QEMU ACPI-way since new releases don't have shutdown port
6951 anymore.
6952
6953 2013-04-12 Vladimir Serbinenko <phcoder@gmail.com>
6954
6955 * docs/grub.texi: Update coreboot status info.
6956
6957 2013-04-12 Vladimir Serbinenko <phcoder@gmail.com>
6958
6959 * tests/grub_cmd_date.in: New test for datetime.
6960
6961 2013-04-12 Vladimir Serbinenko <phcoder@gmail.com>
6962
6963 * tests/partmap_test.in: Fix missing qemudisk setting.
6964
6965 2013-04-11 Vladimir Serbinenko <phcoder@gmail.com>
6966
6967 Support i386-ieee1275 grub-mkrescue and make check on it.
6968
6969 2013-04-11 Vladimir Serbinenko <phcoder@gmail.com>
6970
6971 Merge powerpc grub-mkrescue flavour with common. Use xorriso HFS+
6972 feature for it.
6973
6974 2013-04-11 Vladimir Serbinenko <phcoder@gmail.com>
6975
6976 * docs/grub.texi: Fix description of GRUB_CMDLINE_XEN and
6977 GRUB_CMDLINE_XEN_DEFAULT.
6978 Reported by: Marc Warne (GigaTux) <gigatux>
6979
6980 2013-04-11 Vladimir Serbinenko <phcoder@gmail.com>
6981
6982 Import new gnulib.
6983
6984 2013-04-11 Vladimir Serbinenko <phcoder@gmail.com>
6985
6986 Use ACPI shutdown intests as traditional port was removed.
6987
6988 2013-04-11 Andrey Borzenkov <arvidjaar@gmail.com>
6989
6990 * util/grub.d/30_os-prober.in: Add onstr to entries for visual
6991 distinction.
6992
6993 2013-04-11 Vladimir Serbinenko <phcoder@gmail.com>
6994
6995 Fix missing PVs if they don't contain "interesting" LV. Closes #38677.
6996 Fix few warining messages and leaks while on it.
6997
6998 2013-04-09 Andrey Borzenkov <arvidjaar@gmail.com>
6999
7000 * autogen.sh: Use "-h", not "-f", to test for existence of symbolic
7001 links under grub-core/lib/libgcrypt-grub/mpi.
7002
7003 2013-04-08 Vladimir Serbinenko <phcoder@gmail.com>
7004
7005 Fix ia64-efi image generation on big-endian machines. Deduplicate
7006 some code while on it.
7007 Reported by: Leif Lindholm.
7008
7009 2013-04-08 Andrey Borzenkov <arvidjaar@gmail.com>
7010
7011 * grub-core/Makefile.core.def: Add kern/elfXX.c to elf module
7012 as extra_dist.
7013
7014 2013-04-08 Andrey Borzenkov <arvidjaar@gmail.com>
7015
7016 * grub-core/term/i386/pc/console.c: Fix cursor moving algorithm.
7017
7018 2013-04-08 Bryan Hundven <bryanhundven@gmail.com>
7019
7020 * docs/grub-dev.texi: Move @itemize after @subsection to satisfy
7021 texinfo-5.1.
7022
7023 2013-04-08 Vladimir Serbinenko <phcoder@gmail.com>
7024
7025 * grub-core/normal/term.c: Few more fixes for menu entry editor
7026 rendering.
7027 Reported by: Andrey Borzenkov <arvidjaar@gmail.com>
7028
7029 2013-04-07 Vladimir Serbinenko <phcoder@gmail.com>
7030
7031 * grub-core/normal/term.c: Few more fixes for menu entry editor
7032 rendering.
7033 Reported by: Andrey Borzenkov <arvidjaar@gmail.com>
7034
7035 2013-04-06 Andrey Borzenkov <arvidjaar@gmail.com>
7036
7037 * conf/Makefile.extra-dist (EXTRA_DIST): Add
7038 grub-core/lib/libgcrypt/src/gcrypt.h.in and util/import_gcrypth.sed.
7039
7040 2013-04-06 Andrey Borzenkov <arvidjaar@gmail.com>
7041
7042 * util/grub-install_header: Use @PACKAGE@.mo in message catalog name
7043 instead of hardcoding grub.mo.
7044
7045 2013-04-05 Fedora Ninjas <grub2-owner@fedoraproject.org>
7046
7047 * util/grub.d/30_os-prober.in: Support btrrfs linux-prober extensions.
7048
7049 2013-04-05 Vladimir Serbinenko <phcoder@gmail.com>
7050
7051 Use GRUB_PROPERLY_ALIGNED_ARRAY in grub-core/disk/cryptodisk.c and
7052 grub-core/disk/geli.c.
7053
7054 2013-04-05 Vladimir Serbinenko <phcoder@gmail.com>
7055
7056 * util/grub-mkfont.c: Prefer enum to #define.
7057
7058 2013-04-05 Vladimir Serbinenko <phcoder@gmail.com>
7059
7060 * grub-core/commands/acpi.c: Use sizeof rather than hardcoding the size.
7061
7062 2013-04-05 Vladimir Serbinenko <phcoder@gmail.com>
7063
7064 Replace 8 with GRUB_CHAR_BIT in several places when appropriate.
7065
7066 2013-04-05 Vladimir Serbinenko <phcoder@gmail.com>
7067
7068 Add new defines GRUB_RSDP_SIGNATURE_SIZE and GRUB_RSDP_SIGNATURE.
7069
7070 2013-04-05 Vladimir Serbinenko <phcoder@gmail.com>
7071
7072 * grub-core/commands/verify.c: Use GRUB_CHAR_BIT.
7073
7074 2013-04-05 Vladimir Serbinenko <phcoder@gmail.com>
7075
7076 * include/grub/bsdlabel.h: Use enums.
7077
7078 2013-04-05 Vladimir Serbinenko <phcoder@gmail.com>
7079
7080 Move GRUB_CHAR_BIT to types.h.
7081
7082 2013-04-04 Andrey Borzenkov <arvidjaar@gmail.com>
7083
7084 * docs/grub.texi: Document more user commands.
7085
7086 2013-04-04 Andrey Borzenkov <arvidjaar@gmail.com>
7087
7088 * docs/grub.texi: Document menuentry --id option.
7089
7090 2013-04-04 Francesco Lavra <francescolavra.fl@gmail.com>
7091
7092 * util/grub-mkimage.c: Introduce new define EFI32_HEADER_SIZE.
7093
7094 2013-04-04 Vladimir Serbinenko <phcoder@gmail.com>
7095
7096 Unify file copying setup across different install scripts. Add
7097 options for performing partial install.
7098
7099 2013-04-04 Vladimir Serbinenko <phcoder@gmail.com>
7100 2013-04-04 Peter Jones <pjones@redhat.com>
7101
7102 * grub-core/disk/efi/efidisk.c: Handle partitions on non-512B disks.
7103
7104 2013-04-04 Vladimir Serbinenko <phcoder@gmail.com>
7105
7106 Use TSC as a possible time source on i386-ieee1275.
7107
7108 2013-04-04 Vladimir Serbinenko <phcoder@gmail.com>
7109
7110 * grub-core/bus/usb/usbtrans.c (grub_usb_bulk_readwrite_packetize):
7111 Init err.
7112
7113 2013-04-04 Vladimir Serbinenko <phcoder@gmail.com>
7114
7115 * util/grub-setup.c (setup): Handle some corner cases.
7116
7117 2013-04-04 Vladimir Serbinenko <phcoder@gmail.com>
7118
7119 * grub-core/lib/posix_wrap/locale.h [GRUB_UTIL]: Include host locale.h.
7120
7121 2013-04-03 Vladimir Serbinenko <phcoder@gmail.com>
7122
7123 * grub-core/commands/verify.c: Save verified file to avoid it being
7124 tampered with after verification was done.
7125
7126 2013-04-03 Vladimir Serbinenko <phcoder@gmail.com>
7127
7128 * grub-core/term/i386/pc/console.c (grub_console_getwh): Decrease
7129 reported width by one to compensate for curesor algorithm problem.
7130
7131 2013-04-03 Vladimir Serbinenko <phcoder@gmail.com>
7132
7133 Fix screen corruption in menu entry editor and simplify the code
7134 flow while on it.
7135
7136 2013-04-03 Andrey Borzenkov <arvidjaar@gmail.com>
7137
7138 * util/grub-mount.c (fuse_init): Return error if fuse_main
7139 failed.
7140
7141 2013-04-03 Francesco Lavra <francescolavra.fl@gmail.com>
7142
7143 * include/grub/elf.h: Add missing ARM relocation codes and fix
7144 existing ones.
7145
7146 2013-04-03 Vladimir Testov <vladimir.testov@rosalab.ru>
7147
7148 * grub-core/gfxmenu/gui_progress_bar.c: Handle padding sizes.
7149
7150 2013-04-03 Vladimir Testov <vladimir.testov@rosalab.ru>
7151 2013-04-03 Vladimir Serbinenko <phcoder@gmail.com>
7152
7153 * grub-core/gfxmenu/gui_circular_progress.c: Take both width and height
7154 into account when calculating radius.
7155
7156 2013-04-03 Vladimir Testov <vladimir.testov@rosalab.ru>
7157
7158 * grub-core/gfxmenu/view.c: Fix off-by-one error.
7159
7160 2013-04-03 Vladimir Testov <vladimir.testov@rosalab.ru>
7161
7162 * grub-core/gfxmenu/gui_circular_progress.c: Fix off-by-one error.
7163
7164 2013-04-01 Radosław Szymczyszyn <lavrin@gmail.com>
7165
7166 * grub-core/partmap/apple.c (apple_partition_map_iterate): Add
7167 missing closing bracket.
7168
7169 2013-04-01 Radosław Szymczyszyn <lavrin@gmail.com>
7170
7171 * INSTALL: Mention xorriso requirement.
7172
7173 2013-03-31 Andrey Borzenkov <arvidjaar@gmail.com>
7174
7175 * grub-core/commands/verify.c: Fix hash algorithms values for
7176 the first three hashes - they start with 1, not with 0.
7177
7178 2013-03-26 Vladimir Serbinenko <phcoder@gmail.com>
7179
7180 * grub-core/kern/efi/mm.c (grub_efi_finish_boot_services):
7181 Try terminating EFI services several times due to quirks in some
7182 implementations.
7183
7184 2013-03-26 Colin Watson <cjwatson@ubuntu.com>
7185
7186 * grub-core/commands/acpihalt.c (skip_ext_op): Add support for
7187 skipping Event, Device, Processor, PowerRes, ThermalZone, and
7188 BankField extended opcodes.
7189 (get_sleep_type): Add minimal scope handling (just enough to
7190 handle setting the scope to the root path).
7191 (grub_acpi_halt): Parse any SSDTs as well as the DSDT.
7192 * include/grub/acpi.h: Add enumeration values for Event, Device,
7193 Processor, PowerRes, ThermalZone, and BankField extended opcodes.
7194
7195 2013-03-26 Vladimir Testov <vladimir.testov@rosalab.ru>
7196
7197 * grub-core/gfxmenu/font.c (grub_font_get_string_width): Fix
7198 memory leak.
7199
7200 2013-03-25 Vladimir Serbinenko <phcoder@gmail.com>
7201
7202 * grub-core/disk/ahci.c: Give more time for AHCI request.
7203
7204 2013-03-25 Vladimir Serbinenko <phcoder@gmail.com>
7205
7206 * grub-core/normal/menu.c: Wait if there were errors shown at "boot"
7207 command.
7208
7209 2013-03-25 Vladimir Serbinenko <phcoder@gmail.com>
7210
7211 Replace the region at 0 from coreboot tables to available in BSD
7212 memory map.
7213
7214 2013-03-24 Vladimir Serbinenko <phcoder@gmail.com>
7215
7216 * util/grub.d/20_linux_xen.in: Automatically add no-real-mode edd=off on
7217 non-BIOS platforms.
7218
7219 2013-03-24 Vladimir Serbinenko <phcoder@gmail.com>
7220
7221 * grub-core/Makefile.core.def (vga): Disable on coreboot and multiboot
7222 platforms.
7223
7224 2013-03-24 Vladimir Serbinenko <phcoder@gmail.com>
7225
7226 * util/grub-mkconfig_lib.in (prepare_grub_to_access_device): Fix
7227 handling of multi-device filesystems.
7228
7229 2013-03-24 Vladimir Serbinenko <phcoder@gmail.com>
7230
7231 * grub-core/Makefile.core.def (vbe): Disable on coreboot and multiboot
7232 platforms.
7233
7234 2013-03-24 Vladimir Serbinenko <phcoder@gmail.com>
7235
7236 Add new 'proc' filesystem framework and put luks_script into it.
7237
7238 2013-03-23 Vladimir Serbinenko <phcoder@gmail.com>
7239
7240 * grub-core/term/at_keyboard.c: Increase robustness on coreboot
7241 and qemu.
7242
7243 2013-03-22 Vladimir Serbinenko <phcoder@gmail.com>
7244
7245 * grub-core/fs/zfs/zfs.c: Fix incorrect handling of special volumes.
7246
7247 2013-03-22 Vladimir Serbinenko <phcoder@gmail.com>
7248
7249 Add ability to generate newc additions on runtime.
7250
7251 2013-03-22 Vladimir Serbinenko <phcoder@gmail.com>
7252
7253 * grub-core/commands/i386/coreboot/cbls.c: Fix typos and wrong
7254 description.
7255
7256 2013-03-21 Vladimir Serbinenko <phcoder@gmail.com>
7257
7258 * po/POTFILES.in: Regenerate.
7259
7260 2013-03-20 Vladimir Serbinenko <phcoder@gmail.com>
7261
7262 * grub-core/commands/verify.c (hashes): Add several hashes
7263 from the spec.
7264
7265 2013-03-20 Vladimir Serbinenko <phcoder@gmail.com>
7266
7267 Slight improve in USB-related boot-time checkpoints.
7268
7269 2013-03-20 Vladimir Serbinenko <phcoder@gmail.com>
7270
7271 * grub-core/commands/boottime.c: Fix copyright header.
7272
7273 2013-03-20 Vladimir Serbinenko <phcoder@gmail.com>
7274
7275 New commands cbmemc, lscoreboot, coreboot_boottime to inspect
7276 coreboot tables content. Support for cbmemc.
7277
7278 2013-03-20 Vladimir Serbinenko <phcoder@gmail.com>
7279
7280 Fix a conflict between ports structures with 2 controllers of
7281 same kind.
7282
7283 2013-03-20 Vladimir Serbinenko <phcoder@gmail.com>
7284
7285 * include/grub/boottime.h: Add missing file.
7286
7287 2013-03-19 Vladimir Serbinenko <phcoder@gmail.com>
7288
7289 Initialize USB ports in parallel to speed-up boot.
7290
7291 2013-03-19 Vladimir Serbinenko <phcoder@gmail.com>
7292
7293 Fix USB devices not being detected when requested
7294 due to delayed attach.
7295
7296 2013-03-19 Vladimir Serbinenko <phcoder@gmail.com>
7297
7298 Implement boot time analysis framework.
7299
7300 2013-03-19 Vladimir Serbinenko <phcoder@gmail.com>
7301
7302 Remove get_endpoint_descriptor and change all functions needing
7303 descriptor to just receive it as argument rather than endpoint
7304 address.
7305
7306 2013-03-19 Aleš Nesrsta <starous@volny.cz>
7307
7308 Better estimate the maximum USB transfer size.
7309
7310 2013-03-17 Vladimir Serbinenko <phcoder@gmail.com>
7311
7312 Resend a packet if we got the wrong buffer in status.
7313
7314 2013-03-10 Vladimir Serbinenko <phcoder@gmail.com>
7315
7316 * grub-core/loader/i386/bsdXX.c (grub_openbsd_find_ramdisk): Use
7317 multiplication rather than division.
7318
7319 2013-03-10 Vladimir Serbinenko <phcoder@gmail.com>
7320
7321 * grub-core/lib/arg.c (grub_arg_list_alloc): Use shifts rather
7322 than divisions.
7323
7324 2013-03-10 Vladimir Serbinenko <phcoder@gmail.com>
7325
7326 * grub-core/commands/verify.c (grub_verify_signature): Use unsigned
7327 operations to have intended shifts and not divisions.
7328
7329 2013-03-10 Vladimir Serbinenko <phcoder@gmail.com>
7330
7331 * grub-core/loader/i386/pc/plan9.c (fill_disk): Fix types to use
7332 intended shifts rather than division.
7333
7334 2013-03-10 Vladimir Serbinenko <phcoder@gmail.com>
7335
7336 * include/grub/datetime.h (grub_datetime2unixtime): Fix unixtime
7337 computation for some years before epoch. Avode confusing division
7338 while on it.
7339
7340 2013-03-10 Vladimir Serbinenko <phcoder@gmail.com>
7341
7342 * grub-core/video/i386/pc/vbe.c
7343 (grub_video_vbe_print_adapter_specific_info): Replace division by
7344 shifts.
7345
7346 2013-03-10 Vladimir Serbinenko <phcoder@gmail.com>
7347
7348 Adjust types in gdb module to have intended unsigned shifts rather than
7349 signed divisions.
7350
7351 2013-03-10 Vladimir Serbinenko <phcoder@gmail.com>
7352
7353 * grub-core/fs/hfs.c (grub_hfs_read_file): Avoid divmod64 since the
7354 maximum size is 4G - 1 on hfs
7355
7356 2013-03-10 Vladimir Serbinenko <phcoder@gmail.com>
7357
7358 Avoid costly 64-bit division in grub_get_time_ms on most platforms.
7359
7360 2013-03-10 Vladimir Serbinenko <phcoder@gmail.com>
7361
7362 * grub-core/fs/fshelp.c (grub_fshelp_log2blksize): Remove now unused
7363 function.
7364
7365 2013-03-07 Andrey Borzenkov <arvidjaar@gmail.com>
7366
7367 * grub-core/fs/iso9660.c (add_part): Remove always_inline attribute
7368 causing gcc error with gcc 4.7.1.
7369
7370 2013-03-07 Nickolai Zeldovich <nickolai@csail.mit.edu>
7371
7372 * grub-core/commands/acpi.c (grub_acpi_create_ebda): Don't
7373 dereference null pointer. While the code is technically correct, gcc
7374 may eliminate a null check if pointer is already dereferenced.
7375
7376 2013-03-07 Nickolai Zeldovich <nickolai@csail.mit.edu>
7377
7378 * grub-core/normal/crypto.c (read_crypto_list): Fix incorrect
7379 OOM check.
7380 * grub-core/normal/term.c (read_terminal_list): Likewise.
7381
7382 2013-03-07 Vladimir Serbinenko <phcoder@gmail.com>
7383
7384 Lift up core size limits on some platforms. Fix potential memory
7385 corruption with big core on small memory systems. Document remaining
7386 limits.
7387
7388 2013-03-05 Vladimir Serbinenko <phcoder@gmail.com>
7389
7390 * grub-core/term/terminfo.c (grub_terminfo_cls): Issue an explicit
7391 gotoxy to 0,0.
7392
7393 2013-03-03 Vladimir Serbinenko <phcoder@gmail.com>
7394
7395 Remove all trampoline support. Add -Wtrampolines when
7396 present. Remove symbols used for trampolines to make
7397 link fail if trampolines are present.
7398
7399 2013-03-03 Vladimir Serbinenko <phcoder@gmail.com>
7400
7401 * grub-core/script/execute.c (grub_script_arglist_to_argv): Move
7402 append out of its parent.
7403
7404 2013-03-03 Vladimir Serbinenko <phcoder@gmail.com>
7405
7406 * grub-core/commands/regexp.c (set_matches): Move setvar out of its
7407 parent.
7408
7409 2013-03-03 Vladimir Serbinenko <phcoder@gmail.com>
7410
7411 * grub-core/kern/env.c, include/grub/env.h: Change iterator through
7412 all vars to a macro. All users updated.
7413
7414 2013-03-03 Vladimir Serbinenko <phcoder@gmail.com>
7415
7416 * grub-core/disk/ieee1275/nand.c: Fix compilation on
7417 i386-ieee1275.
7418
7419 2013-03-02 Vladimir Serbinenko <phcoder@gmail.com>
7420
7421 * include/grub/cmos.h: Handle high CMOS addresses on sparc64.
7422
7423 2013-03-02 Vladimir Serbinenko <phcoder@gmail.com>
7424
7425 * include/grub/mips/loongson/cmos.h: Fix high CMOS addresses.
7426
7427 2013-03-02 Vladimir Serbinenko <phcoder@gmail.com>
7428
7429 Move to more hookless approach in IEEE1275 devices handling.
7430
7431 2013-03-02 Vladimir Serbinenko <phcoder@gmail.com>
7432
7433 * grub-core/kern/term.c (grub_term_normal_color),
7434 (grub_term_highlight_color): Add back lost defaults.
7435
7436 2013-03-02 Vladimir Serbinenko <phcoder@gmail.com>
7437
7438 Make elfload not use hooks. Opt for flags and iterators instead.
7439
7440 2013-03-02 Vladimir Serbinenko <phcoder@gmail.com>
7441
7442 * grub-core/lib/ia64/longjmp.S: Fix the name of longjmp function.
7443 * grub-core/lib/ia64/setjmp.S: Fix the name of setjmp function.
7444
7445 2013-03-02 Vladimir Serbinenko <phcoder@gmail.com>
7446
7447 * grub-core/script/execute.c (gettext_append): Remove nested functions.
7448
7449 2013-03-02 Vladimir Serbinenko <phcoder@gmail.com>
7450
7451 * grub-core/normal/charset.c (grub_bidi_logical_to_visual): Add
7452 hook pass-through parameter. All users updated and unnested.
7453
7454 2013-03-02 Vladimir Serbinenko <phcoder@gmail.com>
7455
7456 * grub-core/commands/loadenv.c (grub_cmd_list_env): Move print_var
7457 out of its parent.
7458
7459 2013-03-02 Vladimir Serbinenko <phcoder@gmail.com>
7460
7461 * grub-core/fs/hfs.c: Remove nested functions.
7462
7463 2013-03-01 Vladimir Serbinenko <phcoder@gmail.com>
7464
7465 * grub-core/fs/hfsplus.c (grub_hfsplus_btree_iterate_node): Pass
7466 the context through.
7467 (grub_hfsplus_iterate_dir): Move nested function out of its parent.
7468
7469 2013-03-01 Vladimir Serbinenko <phcoder@gmail.com>
7470
7471 * util/grub-editenv.c (list_variables): Move print_var out of its
7472 parent.
7473
7474 2013-03-01 Vladimir Serbinenko <phcoder@gmail.com>
7475
7476 * grub-core/kern/emu/hostdisk.c (read_device_map): Remove nested
7477 function.
7478
7479 2013-03-01 Vladimir Serbinenko <phcoder@gmail.com>
7480
7481 * grub-core/gentrigtables.c: Make tables const.
7482
7483 2013-03-01 Vladimir Serbinenko <phcoder@gmail.com>
7484
7485 Remove nested functions from videoinfo iterators.
7486
7487 2013-03-01 Vladimir Serbinenko <phcoder@gmail.com>
7488
7489 * grub-core/loader/i386/pc/linux.c (grub_cmd_linux): Fix compilation
7490 for 64-bit platforms.
7491
7492 2013-03-01 Vladimir Serbinenko <phcoder@gmail.com>
7493
7494 * grub-core/disk/efi/efidisk.c: Transform iterate_child_devices into
7495 a FOR_CHILDREN macro.
7496
7497 2013-03-01 Vladimir Serbinenko <phcoder@gmail.com>
7498
7499 * grub-core/kern/main.c (grub_set_prefix_and_root): Strip trailing
7500 platform from firmware path.
7501
7502 2013-02-28 Vladimir Serbinenko <phcoder@gmail.com>
7503
7504 Enable linux16 on non-BIOS systems for i.a. memtest.
7505
7506 * grub-core/loader/i386/pc/linux.c (grub_cmd_linux): Handle hole at 0
7507 correctly.
7508 * grub-core/Makefile.core.def (linux16): Enable on all x86 flavours.
7509
7510 2013-02-28 Vladimir Serbinenko <phcoder@gmail.com>
7511
7512 * grub-core/kern/i386/coreboot/mmap.c (grub_linuxbios_table_iterate):
7513 Fix end of table condition.
7514
7515 2013-02-28 Vladimir Serbinenko <phcoder@gmail.com>
7516
7517 * grub-core/lib/arg.c (grub_arg_show_help): Move showargs
7518 out of its parent.
7519
7520 2013-02-28 Vladimir Serbinenko <phcoder@gmail.com>
7521
7522 * grub-core/fs/jfs.c: Remove nested functions.
7523
7524 2013-02-28 Vladimir Serbinenko <phcoder@gmail.com>
7525
7526 * grub-core/fs/minix.c: Remove nested functions.
7527
7528 2013-02-28 Vladimir Serbinenko <phcoder@gmail.com>
7529
7530 * grub-core/fs/iso9660.c: Remove nested functions.
7531
7532 2013-02-28 Vladimir Serbinenko <phcoder@gmail.com>
7533
7534 * grub-core/commands/parttool.c (grub_cmd_parttool): Move show_help out
7535 of parent function.
7536
7537 2013-02-28 Vladimir Serbinenko <phcoder@gmail.com>
7538
7539 * util/grub-fstest.c: Remove nested functions.
7540
7541 2013-02-27 Vladimir Serbinenko <phcoder@gmail.com>
7542
7543 * grub-core/loader/machoXX.c: Remove nested functions.
7544
7545 2013-02-27 Colin Watson <cjwatson@ubuntu.com>
7546
7547 Remove nested functions from disk and file read hooks.
7548
7549 * include/grub/disk.h (grub_disk_read_hook_t): New type.
7550 (struct grub_disk): Add read_hook_data member.
7551 * include/grub/file.h (struct grub_file): Likewise.
7552 * include/grub/fshelp.h (grub_fshelp_read_file): Add read_hook_data
7553 argument.
7554
7555 Update all callers.
7556
7557 2012-02-27 Andrey Borzenkov <arvidjaar@gmail.com>
7558
7559 * grub-core/partmap/msdos.c (grub_partition_msdos_iterate):
7560 Fix off by one error in enumerating extended partitions.
7561
7562 2013-02-26 Andrey Borzenkov <arvidjaar@gmail.com>
7563
7564 * grub-core/disk/efi/efidisk.c(grub_efidisk_get_device_name): Fix
7565 memory leak if device name is not found.
7566
7567 2013-02-25 Andrey Borzenkov <arvidjaar@gmail.com>
7568
7569 * grub-core/normal/menu_entry.c (update_screen): remove
7570 unused variable `off' which caused scroll down arrow to be always shown.
7571
7572 2013-02-25 Andrey Borzenkov <arvidjaar@gmail.com>
7573
7574 * grub-core/normal/menu_entry.c (insert_string): fix off by one
7575 access to unallocated memory.
7576
7577 2013-02-25 Andrey Borzenkov <arvidjaar@gmail.com>
7578
7579 * Makefile.util.def: Add partmap/msdos.c to common library.
7580 * include/grub/msdos_partition.h: Add GRUB_PC_PARTITION_TYPE_LDM
7581 * grub-core/disk/ldm.c: Check for existence of
7582 GRUB_PC_PARTITION_TYPE_LDM.
7583
7584 2013-02-25 Vladimir Serbinenko <phcoder@gmail.com>
7585
7586 * grub-core/normal/misc.c (grub_normal_print_device_info): Use KiB to display
7587 sizes and display sector size.
7588
7589 2013-02-24 Vladimir Serbinenko <phcoder@gmail.com>
7590
7591 Implement new command cmosdump.
7592
7593 2013-02-19 Paulo Flabiano Smorigo <pfsmorigo@br.ibm.com>
7594
7595 Support Openfirmware disks with non-512B sectors.
7596
7597 * grub-core/disk/ieee1275/ofdisk.c (grub_ofdisk_open): Get the block
7598 size of the disk.
7599 * (grub_ofdisk_get_block_size): New function.
7600 * (grub_ofdisk_prepare): Use the correct block size.
7601 * (grub_ofdisk_read): Likewise.
7602 * (grub_ofdisk_write): Likewise.
7603 * include/grub/ieee1275/ofdisk.h (grub_ofdisk_get_block_size):
7604 New proto.
7605
7606 2013-02-06 Vladimir Serbinenko <phcoder@gmail.com>
7607
7608 * grub-core/commands/lsacpi.c: Fix types on 64-bit platform.
7609
7610 2013-02-04 Vladimir Serbinenko <phcoder@gmail.com>
7611
7612 * grub-core/disk/cryptodisk.c (grub_cryptodisk_scan_device): Don't stop
7613 on first error.
7614
7615 2013-02-01 Vladimir Serbinenko <phcoder@gmail.com>
7616
7617 * grub-core/fs/fshelp.c (find_file): Set oldnode to zero after
7618 freeing it.
7619
7620 2013-02-01 Vladimir Serbinenko <phcoder@gmail.com>
7621
7622 Implement USBDebug (full USB stack variant).
7623
7624 2013-02-01 Vladimir Serbinenko <phcoder@gmail.com>
7625
7626 * grub-core/commands/lsacpi.c: Show more info. Hide some boring parts
7627 unless they have unexpected values.
7628
7629 2013-02-01 Vladimir Serbinenko <phcoder@gmail.com>
7630
7631 * grub-core/bus/usb/usb.c (grub_usb_device_attach): Add missing
7632 grub_print_error.
7633
7634 2013-02-01 Vladimir Serbinenko <phcoder@gmail.com>
7635
7636 * grub-core/bus/usb/serial/common.c (grub_usbserial_attach): Fix missing
7637 zero-out of port structure.
7638
7639 2013-01-30 Vladimir Serbinenko <phcoder@gmail.com>
7640
7641 * grub-core/fs/xfs.c (grub_xfs_read_block): Fix computation in presence
7642 of extended attributes.
7643
7644 2013-01-27 Andrey Borzenkov <arvidjaar@gmail.com>
7645
7646 * util/grub-install.in: change misleading comment about
7647 device.map creation
7648
7649 2013-01-27 Vladimir Serbinenko <phcoder@gmail.com>
7650
7651 * grub-core/normal/menu_text.c (grub_menu_init_page): Fix behaviour
7652 when menu highlight color isn't set.
7653
7654 2013-01-27 C. Masloch <pushbx@38.de>
7655
7656 Improve FreeDOS direct loading support compatibility.
7657
7658 * include/grub/i386/relocator.h (grub_relocator16_state):
7659 New member ebp.
7660 * grub-core/lib/i386/relocator.c (grub_relocator16_ebp): New extern
7661 variable.
7662 (grub_relocator16_boot): Handle %ebp.
7663 * grub-core/lib/i386/relocator16.S: Likewise.
7664 * grub-core/loader/i386/pc/freedos.c:
7665 Load BPB to pass kernel which partition to load from.
7666 Check that kernel file is not too large.
7667 Set register dl to BIOS unit number as well.
7668
7669 2013-01-22 Colin Watson <cjwatson@ubuntu.com>
7670
7671 * util/grub-reboot.in (usage): Document the need for
7672 GRUB_DEFAULT=saved.
7673 * util/grub-set-default.in (usage): Likewise.
7674 Reported by: Brian Candler. Fixes Ubuntu bug #1102925.
7675
7676 2013-01-21 Vladimir Serbinenko <phcoder@gmail.com>
7677
7678 * grub-core/lib/libgcrypt_wrap/cipher_wrap.h: Include sys/types.h rather
7679 than defining WORDS_BIGENDIAN manually.
7680
7681 2013-01-21 Vladimir Serbinenko <phcoder@gmail.com>
7682
7683 * include/grub/kernel.h (FOR_MODULES): Adjust to preserve alignment
7684 invariants.
7685
7686 2013-01-21 Colin Watson <cjwatson@ubuntu.com>
7687
7688 * grub-core/font/font.c (blit_comb: do_blit): Make static instead of
7689 nested.
7690 (blit_comb: add_device_width): Likewise.
7691
7692 2013-01-21 Colin Watson <cjwatson@ubuntu.com>
7693
7694 Remove nested functions from USB iterators.
7695
7696 * include/grub/usb.h (grub_usb_iterate_hook_t): New type.
7697 (grub_usb_controller_iterate_hook_t): Likewise.
7698 (grub_usb_iterate): Add hook_data argument.
7699 (grub_usb_controller_iterate): Likewise.
7700 (struct grub_usb_controller_dev.iterate): Likewise.
7701
7702 Update all implementations and callers.
7703
7704 2013-01-21 Vladimir Serbinenko <phcoder@gmail.com>
7705
7706 * grub-core/normal/term.c (print_ucs4_terminal): Don't output right
7707 margin when not needed.
7708
7709 2013-01-21 Vladimir Serbinenko <phcoder@gmail.com>
7710
7711 Make color variables global instead of it being per-terminal.
7712
7713 2013-01-21 Vladimir Serbinenko <phcoder@gmail.com>
7714
7715 * grub-core/commands/ls.c (grub_ls_print_devices): Add missing
7716 asterisk.
7717
7718 2013-01-21 Colin Watson <cjwatson@ubuntu.com>
7719
7720 Fix powerpc and sparc64 build failures caused by un-nesting memory
7721 map iterators.
7722
7723 2013-01-21 Colin Watson <cjwatson@ubuntu.com>
7724
7725 * grub-core/disk/arc/arcdisk.c (grub_arcdisk_iterate): Fix
7726 parameter declarations.
7727
7728 2013-01-21 Vladimir Serbinenko <phcoder@gmail.com>
7729
7730 * grub-core/commands/lsmmap.c: Fix unused variable on emu.
7731
7732 2013-01-21 Vladimir Serbinenko <phcoder@gmail.com>
7733
7734 Improve spkmomdem reliability by adding a separator between bytes.
7735
7736 2013-01-21 Colin Watson <cjwatson@ubuntu.com>
7737
7738 * grub-core/partmap/msdos.c (embed_signatures): Add the signature of
7739 an Acer registration utility with several sightings in the wild.
7740 Reported by: Rickard Westman. Fixes Ubuntu bug #987022.
7741
7742 2013-01-21 Colin Watson <cjwatson@ubuntu.com>
7743
7744 Remove nested functions from filesystem directory iterators.
7745
7746 * include/grub/fs.h (grub_fs_dir_hook_t): New type.
7747 (struct grub_fs.dir): Add hook_data argument.
7748
7749 Update all implementations and callers.
7750
7751 2013-01-21 Colin Watson <cjwatson@ubuntu.com>
7752
7753 * docs/grub.texi (Multi-boot manual config): Fix typo for
7754 "recommended".
7755
7756 2013-01-20 Leif Lindholm <leif.lindholm@arm.com>
7757
7758 * util/grub-mkimage.c (main): Postpone freeing arguments.output
7759 until after its use in generate_image.
7760
7761 2013-01-20 Colin Watson <cjwatson@ubuntu.com>
7762
7763 * grub-core/loader/i386/linux.c (grub_cmd_initrd): Don't add the
7764 initrd size to addr_min, since the initrd will be allocated after
7765 this address.
7766
7767 2013-01-20 Andrey Borzenkov <arvidjaar@gmail.com>
7768
7769 * conf/Makefile.common: Fix autogen rules to pass definition
7770 files on stdin; Makefile.util.am needs Makefile.utilgcry.def
7771
7772 2013-01-20 Leif Lindholm <leif.lindholm@arm.com>
7773
7774 * include/grub/elf.h: Update ARM definitions based on binutils.
7775
7776 2013-01-20 Aleš Nesrsta <starous@volny.cz>
7777
7778 Split long USB transfers into short ones.
7779
7780 2013-01-20 Andrey Borzenkov <arvidjaar@gmail.com>
7781
7782 * docs/grub.texi (Simple configuration): Clarify GRUB_HIDDEN_TIMEOUT
7783 is interrupted by ESC.
7784
7785 2013-01-20 Vladimir Serbinenko <phcoder@gmail.com>
7786
7787 * util/grub-script-check.c (main): Uniform the error message.
7788
7789 2013-01-20 Colin Watson <cjwatson@ubuntu.com>
7790
7791 Remove nested functions from ELF iterators.
7792
7793 2013-01-20 Colin Watson <cjwatson@ubuntu.com>
7794
7795 Remove nested functions from device iterators.
7796
7797 * include/grub/arc/arc.h (grub_arc_iterate_devs_hook_t): New type.
7798 (grub_arc_iterate_devs): Add hook_data argument.
7799 * include/grub/ata.h (grub_ata_dev_iterate_hook_t): New type.
7800 (struct grub_ata_dev.iterate): Add hook_data argument.
7801 * include/grub/device.h (grub_device_iterate_hook_t): New type.
7802 (grub_device_iterate): Add hook_data argument.
7803 * include/grub/disk.h (grub_disk_dev_iterate_hook_t): New type.
7804 (struct grub_disk_dev.iterate): Add hook_data argument.
7805 (grub_disk_dev_iterate): Likewise.
7806 * include/grub/gpt_partition.h (grub_gpt_partition_map_iterate):
7807 Likewise.
7808 * include/grub/msdos_partition.h (grub_partition_msdos_iterate):
7809 Likewise.
7810 * include/grub/partition.h (grub_partition_iterate_hook_t): New
7811 type.
7812 (struct grub_partition_map.iterate): Add hook_data argument.
7813 (grub_partition_iterate): Likewise.
7814 * include/grub/scsi.h (grub_scsi_dev_iterate_hook_t): New type.
7815 (struct grub_scsi_dev.iterate): Add hook_data argument.
7816
7817 Update all callers.
7818
7819 2013-01-20 Colin Watson <cjwatson@ubuntu.com>
7820
7821 Fix typos for "developer" and "development".
7822
7823 2013-01-18 Vladimir Serbinenko <phcoder@gmail.com>
7824
7825 Add license header to spkmodem-recv.c.
7826
7827 2013-01-17 Vladimir Serbinenko <phcoder@gmail.com>
7828
7829 Rewrite spkmodem to use PIT for timing. Double the speed.
7830
7831 2013-01-16 Vladimir Serbinenko <phcoder@gmail.com>
7832
7833 Add new command pcidump.
7834
7835 2013-01-16 Vladimir Serbinenko <phcoder@gmail.com>
7836
7837 New terminal outputs using serial: morse and spkmodem.
7838
7839 2013-01-16 Vladimir Serbinenko <phcoder@gmail.com>
7840
7841 Improve bidi handling in entry editor.
7842
7843 2013-01-16 Vladimir Serbinenko <phcoder@gmail.com>
7844
7845 * grub-core/script/lexer.c (grub_script_lexer_init): Rename getline
7846 argument to prevent name collision.
7847
7848 2013-01-15 Colin Watson <cjwatson@ubuntu.com>
7849
7850 Remove nested functions from script reading and parsing.
7851
7852 * grub-core/kern/parser.c (grub_parser_split_cmdline): Add
7853 getline_data argument, passed to getline.
7854 * grub-core/kern/rescue_parser.c (grub_rescue_parse_line): Add
7855 getline_data argument, passed to grub_parser_split_cmdline.
7856 * grub-core/script/lexer.c (grub_script_lexer_yywrap): Pass
7857 lexerstate->getline_data to lexerstate->getline.
7858 (grub_script_lexer_init): Add getline_data argument, saved in
7859 lexerstate->getline_data.
7860 * grub-core/script/main.c (grub_normal_parse_line): Add getline_data
7861 argument, passed to grub_script_parse.
7862 * grub-core/script/script.c (grub_script_parse): Add getline_data
7863 argument, passed to grub_script_lexer_init.
7864 * include/grub/parser.h (grub_parser_split_cmdline): Update
7865 prototype. Update all callers to pass appropriate getline data.
7866 (struct grub_parser.parse_line): Likewise.
7867 (grub_rescue_parse_line): Likewise.
7868 * include/grub/reader.h (grub_reader_getline_t): Add void *
7869 argument.
7870 * include/grub/script_sh.h (struct grub_lexer_param): Add
7871 getline_data member.
7872 (grub_script_parse): Update prototype. Update all callers to pass
7873 appropriate getline data.
7874 (grub_script_lexer_init): Likewise.
7875 (grub_normal_parse_line): Likewise.
7876
7877 * grub-core/commands/legacycfg.c (legacy_file_getline): Add unused
7878 data argument.
7879 * grub-core/kern/parser.c (grub_parser_execute: getline): Make
7880 static instead of nested. Rename to ...
7881 (grub_parser_execute_getline): ... this.
7882 * grub-core/kern/rescue_reader.c (grub_rescue_read_line): Add unused
7883 data argument.
7884 * grub-core/normal/main.c (read_config_file: getline): Make static
7885 instead of nested. Rename to ...
7886 (read_config_file_getline): ... this.
7887 (grub_normal_read_line): Add unused data argument.
7888 * grub-core/script/execute.c (grub_script_execute_sourcecode:
7889 getline): Make static instead of nested. Rename to ...
7890 (grub_script_execute_sourcecode_getline): ... this.
7891 * util/grub-script-check.c (main: get_config_line): Make static
7892 instead of nested.
7893
7894 2013-01-15 Colin Watson <cjwatson@ubuntu.com>
7895
7896 Remove nested functions from memory map iterators.
7897
7898 * grub-core/efiemu/mm.c (grub_efiemu_mmap_iterate): Add hook_data
7899 argument, passed to hook.
7900 * grub-core/kern/i386/coreboot/mmap.c
7901 (grub_linuxbios_table_iterate): Likewise.
7902 (grub_machine_mmap_iterate: iterate_linuxbios_table): Make static
7903 instead of nested.
7904 (grub_machine_mmap_iterate): Add hook_data argument.
7905 * grub-core/kern/i386/multiboot_mmap.c (grub_machine_mmap_iterate):
7906 Add hook_data argument, passed to hook.
7907 * grub-core/kern/i386/pc/mmap.c (grub_machine_mmap_iterate):
7908 Likewise.
7909 * grub-core/kern/i386/qemu/mmap.c (grub_machine_mmap_iterate):
7910 Likewise.
7911 * grub-core/kern/ieee1275/mmap.c (grub_machine_mmap_iterate):
7912 Likewise.
7913 * grub-core/kern/mips/arc/init.c (grub_machine_mmap_iterate):
7914 Likewise.
7915 * grub-core/kern/mips/loongson/init.c (grub_machine_mmap_iterate):
7916 Likewise.
7917 * grub-core/kern/mips/qemu_mips/init.c (grub_machine_mmap_iterate):
7918 Likewise.
7919 * grub-core/mmap/efi/mmap.c (grub_efi_mmap_iterate): Likewise.
7920 (grub_machine_mmap_iterate): Likewise.
7921 * grub-core/mmap/mmap.c (grub_mmap_iterate): Likewise.
7922 * include/grub/efiemu/efiemu.h (grub_efiemu_mmap_iterate): Update
7923 prototype.
7924 * include/grub/memory.h (grub_memory_hook_t): Add data argument.
7925 Remove NESTED_FUNC_ATTR from here and from all users.
7926 (grub_mmap_iterate): Update prototype.
7927 (grub_efi_mmap_iterate): Update prototype. Update all callers to
7928 pass appropriate hook data.
7929 (grub_machine_mmap_iterate): Likewise.
7930
7931 * grub-core/commands/acpi.c (grub_acpi_create_ebda: find_hook): Make
7932 static instead of nested.
7933 * grub-core/commands/lsmmap.c (grub_cmd_lsmmap: hook): Likewise.
7934 Rename to ...
7935 (lsmmap_hook): ... this.
7936 * grub-core/efiemu/mm.c (grub_efiemu_mmap_init: bounds_hook):
7937 Likewise.
7938 (grub_efiemu_mmap_fill: fill_hook): Likewise.
7939 * grub-core/kern/i386/coreboot/init.c (grub_machine_init:
7940 heap_init): Likewise.
7941 * grub-core/kern/i386/pc/init.c (grub_machine_init: hook): Likewise.
7942 Rename to ...
7943 (mmap_iterate_hook): ... this.
7944 * grub-core/kern/ieee1275/init.c (grub_claim_heap: heap_init):
7945 Likewise.
7946 * grub-core/lib/ieee1275/relocator.c
7947 (grub_relocator_firmware_get_max_events: count): Likewise.
7948 (grub_relocator_firmware_fill_events: fill): Likewise. Rename
7949 to ...
7950 (grub_relocator_firmware_fill_events_iter): ... this.
7951 * grub-core/lib/relocator.c (grub_relocator_alloc_chunk_align:
7952 hook): Likewise. Rename to ...
7953 (grub_relocator_alloc_chunk_align_iter): ... this.
7954 * grub-core/loader/i386/bsd.c (generate_e820_mmap: hook): Likewise.
7955 Rename to ...
7956 (generate_e820_mmap_iter): ... this.
7957 * grub-core/loader/i386/linux.c (find_mmap_size: hook): Likewise.
7958 Rename to ...
7959 (count_hook): ... this.
7960 (grub_linux_boot: hook): Likewise. Rename to ...
7961 (grub_linux_boot_mmap_find): ... this.
7962 (grub_linux_boot: hook_fill): Likewise. Rename to ...
7963 (grub_linux_boot_mmap_fill): ... this.
7964 * grub-core/loader/i386/multiboot_mbi.c (grub_fill_multiboot_mmap:
7965 hook): Likewise. Rename to ...
7966 (grub_fill_multiboot_mmap_iter): ... this.
7967 * grub-core/loader/multiboot.c (grub_get_multiboot_mmap_count:
7968 hook): Likewise. Rename to ...
7969 (count_hook): ... this.
7970 * grub-core/loader/multiboot_mbi2.c (grub_fill_multiboot_mmap:
7971 hook): Likewise. Rename to ...
7972 (grub_fill_multiboot_mmap_iter): ... this.
7973 * grub-core/loader/powerpc/ieee1275/linux.c
7974 (grub_linux_claimmap_iterate: alloc_mem): Likewise.
7975 * grub-core/loader/sparc64/ieee1275/linux.c (alloc_phys: choose):
7976 Likewise. Rename to ...
7977 (alloc_phys_choose): ... this.
7978 (determine_phys_base: get_physbase): Likewise.
7979 * grub-core/mmap/i386/mmap.c (grub_mmap_malign_and_register:
7980 find_hook): Likewise.
7981 * grub-core/mmap/i386/pc/mmap.c (preboot: fill_hook): Likewise.
7982 (malloc_hook: count_hook): Likewise.
7983 * grub-core/mmap/i386/uppermem.c (grub_mmap_get_lower: hook):
7984 Likewise. Rename to ...
7985 (lower_hook): ... this.
7986 (grub_mmap_get_upper: hook): Likewise. Rename to ...
7987 (upper_hook): ... this.
7988 (grub_mmap_get_post64: hook): Likewise. Rename to ...
7989 (post64_hook): ... this.
7990 * grub-core/mmap/mips/uppermem.c (grub_mmap_get_lower: hook):
7991 Likewise. Rename to ...
7992 (lower_hook): ... this.
7993 (grub_mmap_get_upper: hook): Likewise. Rename to ...
7994 (upper_hook): ... this.
7995 * grub-core/mmap/mmap.c (grub_mmap_iterate: count_hook): Likewise.
7996 (grub_mmap_iterate: fill_hook): Likewise.
7997 (fill_mask): Pass addr and mask within a single struct.
7998 (grub_cmd_badram: hook): Make static instead of nested. Rename
7999 to ...
8000 (badram_iter): ... this.
8001 (grub_cmd_cutmem: hook): Likewise. Rename to ...
8002 (cutmem_iter): ... this.
8003
8004 2013-01-13 Vladimir Serbinenko <phcoder@gmail.com>
8005
8006 * grub-core/kern/emu/hostdisk.c (read_device_map): Explicitly
8007 delimit path in strings using quotes.
8008 * util/getroot.c (grub_guess_root_devices): Likewise.
8009 (grub_make_system_path_relative_to_its_root): Likewise.
8010 * util/grub-probe.c (probe): Likewise.
8011 * util/ieee1275/ofpath.c (find_obppath): Likewise.
8012 (xrealpath): Likewise.
8013
8014 2013-01-13 Vladimir Serbinenko <phcoder@gmail.com>
8015
8016 Fix compilation with older compilers.
8017
8018 * grub-core/Makefile.core.def (mpi): Add mpi-inline.c.
8019 * grub-core/lib/libgcrypt_wrap/cipher_wrap.h: Remove redundant
8020 declarations.
8021 * grub-core/lib/posix_wrap/string.h: Include sys/types.h.
8022 * grub-core/lib/posix_wrap/sys/types.h: Add common types.
8023 * grub-core/lib/xzembed/xz_dec_lzma2.c (dict_put): Replace byte
8024 identifier with b.
8025 * grub-core/lib/xzembed/xz_dec_stream.c (dec_vli): Likewise.
8026 * include/grub/crypto.h: Add type defines.
8027 * util/import_gcrypth.sed: Remove duplicate type defines.
8028
8029 2013-01-13 Vladimir Serbinenko <phcoder@gmail.com>
8030
8031 New command list_trusted.
8032
8033 * grub-core/commands/verify.c (grub_cmd_list): New function.
8034
8035 2013-01-13 Colin Watson <cjwatson@ubuntu.com>
8036
8037 * util/grub-mkimage.c (generate_image): Fix "size of public key"
8038 info message.
8039
8040 2013-01-13 Colin Watson <cjwatson@ubuntu.com>
8041
8042 Remove nested functions from PCI iterators.
8043
8044 * grub-core/bus/pci.c (grub_pci_iterate): Add hook_data argument,
8045 passed to hook. Update all callers to pass appropriate hook data.
8046 * grub-core/bus/emu/pci.c (grub_pci_iterate): Likewise.
8047 * include/grub/pci.h (grub_pci_iteratefunc_t): Add data argument.
8048 Remove NESTED_FUNC_ATTR from here and from all users.
8049 (grub_pci_iterate): Update prototype.
8050 * grub-core/bus/cs5536.c (grub_cs5536_find: hook): Make static
8051 instead of nested. Rename to ...
8052 (grub_cs5536_find_iter): ... this.
8053 * grub-core/kern/efi/mm.c (stop_broadcom: find_card): Likewise.
8054 * grub-core/kern/mips/loongson/init.c (init_pci: set_card):
8055 Likewise.
8056 * grub-core/kern/vga_init.c (grub_qemu_init_cirrus: find_card):
8057 Likewise.
8058 * grub-core/video/bochs.c (grub_video_bochs_setup: find_card):
8059 Likewise.
8060 * grub-core/video/cirrus.c (grub_video_cirrus_setup: find_card):
8061 Likewise.
8062 * grub-core/video/efi_uga.c (find_framebuf: find_card): Likewise.
8063 * grub-core/video/radeon_fuloong2e.c
8064 (grub_video_radeon_fuloong2e_setup: find_card): Likewise.
8065 * grub-core/video/sis315pro.c (grub_video_sis315pro_setup:
8066 find_card): Likewise.
8067 * grub-core/video/sm712.c (grub_video_sm712_setup: find_card):
8068 Likewise.
8069
8070 2013-01-12 Vladimir Serbinenko <phcoder@gmail.com>
8071
8072 * grub-core/commands/verify.c: Mark messages for translating.
8073
8074 2013-01-12 Vladimir Serbinenko <phcoder@gmail.com>
8075
8076 * grub-core/lib/libgcrypt_wrap/mem.c (gcry_x*alloc): Make out of memory
8077 fatal.
8078
8079 2013-01-12 Vladimir Serbinenko <phcoder@gmail.com>
8080
8081 * grub-core/lib/libgcrypt_wrap/mem.c (_gcry_log_bug): Make gcrypt bugs
8082 fatal.
8083
8084 2013-01-12 Vladimir Serbinenko <phcoder@gmail.com>
8085
8086 * autogen.sh: Do not try to delete nonexistant files.
8087 * util/import_gcrypth.sed: Add some missing header removals.
8088
8089 2013-01-12 Colin Watson <cjwatson@ubuntu.com>
8090
8091 Clean up dangling references to grub-setup.
8092 Fixes Ubuntu bug #1082045.
8093
8094 * docs/grub.texi (Images): Refer generally to grub-install rather
8095 than directly to grub-setup.
8096 (Installing GRUB using grub-install): Remove direct reference to
8097 grub-setup.
8098 (Device map) Likewise.
8099 (Invoking grub-install): Likewise.
8100 * docs/man/grub-install.h2m (SEE ALSO): Likewise.
8101 * docs/man/grub-mkimage.h2m (SEE ALSO): Likewise.
8102 * util/grub-install.in (usage): Likewise.
8103
8104 * util/bash-completion.d/grub-completion.bash.in (_grub_setup):
8105 Apply to grub-bios-setup and grub-sparc64-setup rather than to
8106 grub-setup.
8107 * configure.ac: Remove grub_setup output variable.
8108
8109 * docs/man/grub-bios-setup.h2m (NAME): Change name from grub-setup
8110 to grub-bios-setup.
8111 * docs/man/grub-sparc64-setup.h2m (NAME): Change name from
8112 grub-setup to grub-sparc64-setup.
8113
8114 2013-01-11 Vladimir Serbinenko <phcoder@gmail.com>
8115
8116 Import gcrypt public-key cryptography and implement signature checking.
8117
8118 2013-01-10 Vladimir Serbinenko <phcoder@gmail.com>
8119
8120 * grub-core/fs/ntfs.c: Ue more appropriate types.
8121 * grub-core/fs/ntfscomp.c: Likewise.
8122 * include/grub/ntfs.h: Likewise.
8123
8124 2013-01-10 Vladimir Serbinenko <phcoder@gmail.com>
8125
8126 Support Apple FAT binaries on non-Apple platforms.
8127
8128 * include/grub/macho.h (GRUB_MACHO_FAT_EFI_MAGIC): New define.
8129 * include/grub/i386/macho.h (GRUB_MACHO_CPUTYPE_IS_HOST_CURRENT):
8130 Likewise.
8131 * grub-core/loader/efi/chainloader.c (grub_cmd_chainloader): Parse
8132 Apple FAT binaries.
8133
8134 2013-01-10 Vladimir Serbinenko <phcoder@gmail.com>
8135
8136 * grub-core/kern/disk.c (grub_disk_write): Fix sector number on 4K
8137 sector devices.
8138
8139 2013-01-07 Colin Watson <cjwatson@ubuntu.com>
8140
8141 * grub-core/io/bufio.c (grub_bufio_open): Use grub_zalloc instead of
8142 explicitly zeroing elements.
8143 * grub-core/io/gzio.c (grub_gzio_open): Likewise.
8144 * grub-core/io/lzopio.c (grub_lzopio_open): Remove explicit zeroing
8145 of elements in a structure already allocated using grub_zalloc.
8146 * grub-core/io/xzio.c (grub_xzio_open): Likewise.
8147
8148 2013-01-07 Colin Watson <cjwatson@ubuntu.com>
8149
8150 * docs/grub.texi (grub_cpu): New subsection.
8151 (grub_platform): Likewise.
8152
8153 2013-01-07 Vladimir Serbinenko <phcoder@gmail.com>
8154
8155 * grub-core/fs/minix.c (grub_minix_read_file): Simplify arithmetics.
8156
8157 2013-01-05 Vladimir Serbinenko <phcoder@gmail.com>
8158
8159 * grub-core/fs/ext2.c (grub_ext2_read_block): Use shifts rather than
8160 divisions.
8161
8162 2013-01-05 Vladimir Serbinenko <phcoder@gmail.com>
8163
8164 * grub-core/fs/ntfs.c: Eliminate useless divisions in favor of shifts.
8165 * grub-core/fs/ntfscomp.c: Likewise.
8166 * include/grub/ntfs.h (grub_ntfs_data): Replace spc with log_spc.
8167 (grub_ntfs_comp): Likewise.
8168
8169 2013-01-05 Vladimir Serbinenko <phcoder@gmail.com>
8170
8171 * grub-core/fs/nilfs2.c (-grub_nilfs2_palloc_groups_per_desc_block):
8172 Rename to ...
8173 (grub_nilfs2_palloc_log_groups_per_desc_block): ... this. Return log
8174 of groups_per_block. All users updated.
8175
8176 2013-01-05 Vladimir Serbinenko <phcoder@gmail.com>
8177
8178 * grub-core/disk/diskfilter.c (grub_diskfilter_write): Call
8179 grub_error properly.
8180 * grub-core/disk/ieee1275/nand.c (grub_nand_write): Likewise.
8181 * grub-core/disk/loopback.c (grub_loopback_write): Likewise.
8182
8183 2013-01-03 Vladimir Serbinenko <phcoder@gmail.com>
8184
8185 * util/grub.d/10_kfreebsd.in: Correct the patch to zpool.cache as it's
8186 always in /boot/zfs.
8187 Reported by: Yuta Satoh.
8188
8189 2013-01-03 Yuta Satoh <nigoro>
8190
8191 * util/grub.d/10_kfreebsd.in: Fix improper references to grub-probe by
8192 ${grub_probe}
8193
8194 2013-01-03 Vladimir Serbinenko <phcoder@gmail.com>
8195
8196 * configure.ac: Extend -Wno-trampolines to host.
8197
8198 2013-01-03 Vladimir Serbinenko <phcoder@gmail.com>
8199
8200 * grub-core/fs/iso9660.c (grub_iso9660_susp_iterate): Avoid hang if
8201 entry->len = 0.
8202
8203 2013-01-03 Colin Watson <cjwatson@ubuntu.com>
8204
8205 * docs/grub.texi (Invoking grub-mkrelpath): New section.
8206 (Invoking grub-script-check): Likewise.
8207
8208 2013-01-03 Colin Watson <cjwatson@ubuntu.com>
8209
8210 * docs/grub.texi (Invoking grub-mount): New section.
8211 Reported by: Filipus Klutiero. Fixes Debian bug #666427.
8212
8213 2013-01-02 Colin Watson <cjwatson@ubuntu.com>
8214
8215 * grub-core/tests/lib/test.c (grub_test_run): Return non-zero on
8216 test failures, so that a failing unit test correctly causes 'make
8217 check' to fail.
8218
8219 2013-01-02 Colin Watson <cjwatson@ubuntu.com>
8220
8221 Fix failing printf test.
8222
8223 * grub-core/kern/misc.c (grub_vsnprintf_real): Parse '-', '.', and
8224 '$' in the correct order when collecting type information.
8225
8226 2013-01-02 Colin Watson <cjwatson@ubuntu.com>
8227
8228 * docs/grub.texi (configfile): Explain environment variable
8229 handling.
8230 (source): New section.
8231 Reported by: Arbiel Perlacremaz. Fixes Savannah bug #35564.
8232
8233 2012-12-31 Colin Watson <cjwatson@ubuntu.com>
8234
8235 Remove several trivially-unnecessary uses of nested functions.
8236
8237 * grub-core/commands/i386/pc/sendkey.c
8238 (grub_cmd_sendkey: find_key_code, find_ascii_code): Make static
8239 instead of nested.
8240 * grub-core/commands/legacycfg.c (legacy_file: getline): Likewise.
8241 Rename to ...
8242 (legacy_file_getline): ... this.
8243 * grub-core/commands/loadenv.c (grub_cmd_load_env: set_var):
8244 Likewise.
8245 * grub-core/kern/corecmd.c (grub_core_cmd_set: print_env): Likewise.
8246 * grub-core/kern/fs.c (grub_fs_probe: dummy_func): Likewise. Rename
8247 to ...
8248 (probe_dummy_iter): ... this.
8249 * grub-core/kern/i386/coreboot/mmap.c
8250 (grub_linuxbios_table_iterate: check_signature): Likewise.
8251 * grub-core/kern/parser.c (grub_parser_split_cmdline:
8252 check_varstate): Likewise. Mark inline.
8253 * grub-core/lib/arg.c (find_short: fnd_short): Likewise. Pass
8254 an additional parameter.
8255 (find_long: fnd_long): Likewise. Pass two additional parameters.
8256 * grub-core/lib/crc.c (init_crc32c_table: reflect): Likewise.
8257 * grub-core/lib/crc64.c (init_crc64_table: reflect): Likewise.
8258 * grub-core/lib/ieee1275/cmos.c (grub_cmos_find_port: hook):
8259 Likewise. Rename to ...
8260 (grub_cmos_find_port_iter): ... this.
8261 * grub-core/lib/ieee1275/datetime.c (find_rtc: hook): Likewise.
8262 Rename to ...
8263 (find_rtc_iter): ... this.
8264
8265 * grub-core/normal/menu_entry.c (run): Fold nested editor_getsource
8266 function directly into the function body, since it is only called
8267 once.
8268
8269 2012-12-30 Colin Watson <cjwatson@ubuntu.com>
8270
8271 * grub-core/bus/usb/ehci.c (grub_ehci_pci_iter): Remove incorrect
8272 __attribute__ ((unused)).
8273 * grub-core/video/bochs.c (find_card): Likewise.
8274 * grub-core/video/cirrus.c (find_card): Likewise.
8275 * grub-core/video/radeon_fuloong2e.c (find_card): Likewise.
8276 * grub-core/video/sis315pro.c (find_card): Likewise.
8277 * grub-core/video/sm712.c (find_card): Likewise.
8278
8279 2012-12-28 Colin Watson <cjwatson@ubuntu.com>
8280
8281 * util/grub-mkconfig.in: Accept GRUB_TERMINAL_OUTPUT=vga_text.
8282 Fixes Savannah bug #37821.
8283
8284 2012-12-28 Colin Watson <cjwatson@ubuntu.com>
8285
8286 Apply program name transformations at build-time rather than at
8287 run-time. Fixes Debian bug #696465.
8288
8289 * acinclude.m4 (grub_TRANSFORM): New macro.
8290 * configure.ac: Create output variables with transformed names for
8291 most programs.
8292 * util/bash-completion.d/grub-completion.bash.in: Use
8293 pre-transformed variables for program names.
8294 * util/grub-install.in: Likewise.
8295 * util/grub-kbdcomp.in: Likewise.
8296 * util/grub-mkconfig.in: Likewise.
8297 * util/grub-mkconfig_lib.in: Likewise.
8298 * util/grub-mknetdir.in: Likewise.
8299 * util/grub-mkrescue.in: Likewise.
8300 * util/grub-mkstandalone.in: Likewise.
8301 * util/grub-reboot.in: Likewise.
8302 * util/grub-set-default.in: Likewise.
8303 * util/powerpc/ieee1275/grub-mkrescue.in: Likewise.
8304 * tests/util/grub-shell-tester.in: Remove unused assignment.
8305 * tests/util/grub-shell.in: Likewise.
8306 * util/grub.d/00_header.in: Likewise.
8307
8308 2012-12-28 Colin Watson <cjwatson@ubuntu.com>
8309
8310 Backport gnulib fixes for C11. Fixes Savannah bug #37738.
8311
8312 * grub-core/gnulib/stdio.in.h (gets): Warn on use only if
8313 HAVE_RAW_DECL_GETS.
8314 * m4/stdio_h.m4 (gl_STDIO_H): Check for gets.
8315
8316 2012-12-11 Vladimir Serbinenko <phcoder@gmail.com>
8317
8318 * util/grub.d/20_linux_xen.in: Addmissing assignment to machine.
8319 Reported by: Eriks Latosheks <foresterlv>.
8320
8321 2012-12-10 Vladimir Serbinenko <phcoder@gmail.com>
8322
8323 * docs/grub.texi (Network): Update instructions on generating netboot
8324 image.
8325
8326 2012-12-10 Vladimir Serbinenko <phcoder@gmail.com>
8327
8328 * grub-core/disk/cryptodisk.c (grub_cmd_cryptomount): Strip brackets
8329 around device name if necessarry.
8330
8331 2012-12-10 Paulo Flabiano Smorigo <pfsmorigo@br.ibm.com>
8332
8333 * util/grub-install.in: Follow the symbolic link parameter added
8334 to the file command.
8335
8336 2012-12-10 Andrey Borzenkov <arvidjaar@gmail.com>
8337
8338 * util/grub-install.in: Remove stale TODO.
8339
8340 2012-12-10 Paulo Flabiano Smorigo <pfsmorigo@br.ibm.com>
8341
8342 * grub-core/kern/ieee1275/init.c (grub_machine_get_bootlocation): Use
8343 dynamic allocation for the bootpath buffer.
8344
8345 2012-12-10 Dr. Tilmann Bubeck <t.bubeck@reinform.de>
8346
8347 * grub-core/gfxmenu/view.c (init_terminal): Avoid making terminal
8348 window too small.
8349
8350 2012-12-10 Vladimir Serbinenko <phcoder@gmail.com>
8351
8352 * grub-core/term/gfxterm.c (grub_virtual_screen_setup): Get font as
8353 argument rather than font name. All users updated.
8354 (grub_gfxterm_set_window): Likewise.
8355
8356 2012-12-10 Vladimir Testov <vladimir.testov@rosalab.ru>
8357
8358 * util/grub-mkfont.c (argp_parser): Fix a typo which prevented --asce
8359 from working.
8360
8361 2012-12-10 Vladimir Serbinenko <phcoder@gmail.com>
8362
8363 * util/getroot.c (convert_system_partition_to_system_disk): Support
8364 nbd disks.
8365
8366 2012-12-10 Vladimir Serbinenko <phcoder@gmail.com>
8367
8368 * grub-core/fs/ufs.c (grub_ufs_dir): Stop if direntlen is 0 to avoid
8369 infinite loop on corrupted FS.
8370
8371 2012-12-08 Vladimir Serbinenko <phcoder@gmail.com>
8372
8373 Fix big-endian mtime.
8374
8375 * grub-core/fs/ufs.c (grub_ufs_inode): Split improperly attached
8376 together sec and usec.
8377 (grub_ufs_dir): Use correct byteswapping for UFS time.
8378
8379 2012-12-08 Vladimir Serbinenko <phcoder@gmail.com>
8380
8381 Support big-endian UFS1.
8382
8383 * Makefile.util.def (libgrubmods): Add ufs_be.c
8384 * grub-core/Makefile.core.def (ufs1_be): New module.
8385 * grub-core/fs/ufs_be.c: New file.
8386 * grub-core/fs/ufs.c: Declare grub_ufs_to_le* and use them throughout
8387 the file.
8388
8389 2012-11-28 Leif Lindholm <leif.lindholm@arm.com>
8390
8391 * include/grub/types.h: Fix functionality unaffecting typo in
8392 GRUB_TARGET_WORDSIZE conditional macro.
8393
8394 2012-11-28 Paulo Flabiano Smorigo <pfsmorigo@br.ibm.com>
8395
8396 * grub-core/net/bootp.c (parse_dhcp_vendor): Fix double increment.
8397
8398 2012-10-28 Grégoire Sutre <gregoire.sutre@gmail.com>
8399
8400 * util/grub.d/10_netbsd.in: Fix tab indentation and make sure
8401 that /netbsd appears first (when it exists).
8402
8403 2012-10-12 Christoph Junghans <ottxor@gentoo.org>
8404
8405 * grub-core/Makefile.am (moddep.lst): Use $(AWK) rather than awk.
8406 Fixes Savannah bug #37558.
8407
8408 2012-10-12 Colin Watson <cjwatson@ubuntu.com>
8409
8410 * grub-core/commands/configfile.c (GRUB_MOD_INIT): Correct
8411 description of extract_entries_configfile.
8412
8413 2012-10-05 Colin Watson <cjwatson@ubuntu.com>
8414
8415 * grub-core/loader/i386/linux.c (allocate_pages): Fix spelling of
8416 preferred_address.
8417 (grub_cmd_linux): Likewise.
8418 * grub-core/net/icmp6.c (struct prefix_option): Fix spelling of
8419 preferred_lifetime. Update all users.
8420
8421 2012-09-26 Colin Watson <cjwatson@ubuntu.com>
8422
8423 * Makefile.util.def (grub-mknetdir): Move to $prefix/bin.
8424 Reported by: Daniel Kahn Gillmor. Fixes Debian bug #688799.
8425
8426 2012-09-26 Colin Watson <cjwatson@ubuntu.com>
8427
8428 * util/grub-mkconfig_lib.in (is_path_readable_by_grub): Redirect
8429 errors from grub-probe to /dev/null, not stdout.
8430
8431 2012-09-26 Vladimir Serbinenko <phcoder@gmail.com>
8432
8433 * grub-core/fs/affs.c (grub_affs_mount): Support AFFS bootblock in
8434 sector 1.
8435
8436 2012-09-24 Colin Watson <cjwatson@ubuntu.com>
8437
8438 * util/grub-install.in: Make the error message if $source_dir
8439 doesn't exist more useful.
8440
8441 2012-09-22 Colin Watson <cjwatson@ubuntu.com>
8442
8443 Fix grub-emu build on FreeBSD.
8444
8445 * Makefile.util.def (grub-mount): Add LIBGEOM to ldadd.
8446 * grub-core/net/drivers/emu/emunet.c: Only include Linux-specific
8447 headers on Linux.
8448 (GRUB_MOD_INIT): Return immediately on non-Linux platforms; this
8449 implementation is currently Linux-specific.
8450 * util/getroot.c (exec_pipe): Define only on Linux or when either
8451 libzfs or libnvpair is unavailable.
8452 (find_root_devices_from_poolname): Remove unused path variable.
8453
8454 2012-09-19 Colin Watson <cjwatson@ubuntu.com>
8455
8456 * grub-core/partmap/msdos.c (pc_partition_map_embed): Revert
8457 incorrect off-by-one fix from 2011-02-12. A 62-sector core image
8458 should fit before end == 63.
8459
8460 2012-09-19 Colin Watson <cjwatson@ubuntu.com>
8461
8462 * util/grub-setup.c (write_rootdev): Remove unused core_img
8463 parameter. Update all callers.
8464 (setup): Define core_sectors only if GRUB_SETUP_BIOS, to appease
8465 'gcc -Wunused-but-set-variable'. Remove unnecessary nested #ifdef
8466 GRUB_SETUP_BIOS.
8467
8468 2012-09-18 Vladimir Serbinenko <phcoder@gmail.com>
8469
8470 * util/grub-mkconfig_lib.in (grub_tab): New variable.
8471 (grub_add_tab): New function.
8472 * util/grub.d/10_hurd.in: Replace \t with $grub_tab orgrub_add_tab.
8473 * util/grub.d/10_illumos.in: Likewise.
8474 * util/grub.d/10_kfreebsd.in: Likewise.
8475 * util/grub.d/10_linux.in: Likewise.
8476 * util/grub.d/10_netbsd.in: Likewise.
8477 * util/grub.d/10_windows.in: Likewise.
8478 * util/grub.d/10_xnu.in: Likewise.
8479 * util/grub.d/20_linux_xen.in: Likewise.
8480 * util/grub.d/30_os-prober.in: Likewise.
8481
8482 2012-09-18 Vladimir Serbinenko <phcoder@gmail.com>
8483
8484 * grub-core/kern/ieee1275/cmain.c (grub_ieee1275_find_options): Set
8485 GRUB_IEEE1275_FLAG_CURSORONOFF_ANSI_BROKEN on mac.
8486 * grub-core/term/ieee1275/console.c (grub_console_init_lately): Use
8487 ieee1275-nocursor if GRUB_IEEE1275_FLAG_CURSORONOFF_ANSI_BROKEN is set.
8488 * grub-core/term/terminfo.c (grub_terminfo_set_current): Add new type
8489 ieee1275-nocursor.
8490 * include/grub/ieee1275/ieee1275.h (grub_ieee1275_flag): New value
8491 GRUB_IEEE1275_FLAG_CURSORONOFF_ANSI_BROKEN.
8492
8493 2012-09-18 Vladimir Serbinenko <phcoder@gmail.com>
8494
8495 * grub-core/loader/i386/linux.c (grub_cmd_linux): Fix incorrect
8496 le-conversion.
8497 Reported by: BURETTE, Bernard.
8498
8499 2012-09-17 Colin Watson <cjwatson@ubuntu.com>
8500
8501 * util/grub-mkconfig_lib.in (grub_quote): Remove outdated sentence
8502 from comment.
8503
8504 2012-09-14 Colin Watson <cjwatson@ubuntu.com>
8505
8506 * grub-core/term/terminfo.c: Only fix up powerpc key repeat on
8507 IEEE1275 machines. Fixes powerpc-emu compilation.
8508 * include/grub/terminfo.h: Likewise.
8509
8510 2012-09-12 Vladimir Serbinenko <phcoder@gmail.com>
8511
8512 * include/grub/efi/api.h (grub_efi_runtime_services): Make vendor_guid
8513 a const pointer.
8514 * grub-core/efiemu/runtime/efiemu.c (efiemu_memcpy): Make from a
8515 const pointer.
8516 (efiemu_set_variable): Make vendor_guid a const pointer.
8517
8518 2012-09-12 Vladimir Serbinenko <phcoder@gmail.com>
8519
8520 Don't require grub-mkconfig_lib to generate manpages for programs.
8521
8522 * gentpl.py (manpage): Additional argument adddeps. Add adddeps to
8523 dependencies, don't add grub-mkconfig_lib.
8524 (program): Pass empty adddeps.
8525 (script): Pass grub-mkconfig_lib as adddeps.
8526
8527 2012-09-11 Vladimir Serbinenko <phcoder@gmail.com>
8528
8529 * grub-core/disk/diskfilter.c (free_array) [GRUB_UTIL]: Fix memory leak.
8530 * util/getroot.c (grub_find_device): Likewise.
8531 (get_mdadm_uuid): Likewise.
8532 (grub_util_is_imsm): Likewise.
8533 (grub_util_pull_device): Likewise.
8534 * util/grub-probe.c (probe): Likewise.
8535
8536 2012-09-10 Benoit Gschwind <gschwind>
8537
8538 * grub-core/loader/efi/appleloader.c (devpath_8): New var.
8539 (devs): Add devpath_8.
8540
8541 2012-09-08 Peter Jones <pjones@redhat.com>
8542
8543 * grub-core/Makefile.core.def (efifwsetup): New module.
8544 * grub-core/commands/efi/efifwsetup.c: New file.
8545 * grub-core/kern/efi/efi.c (grub_efi_set_variable): New function
8546 * include/grub/efi/api.h (GRUB_EFI_OS_INDICATIONS_BOOT_TO_FW_UI):
8547 New define.
8548 * include/grub/efi/efi.h (grub_efi_set_variable): New proto.
8549
8550 2012-09-05 Jiri Slaby <jslaby@suse.cz>
8551
8552 * configure.ac: Add SuSe path.
8553
8554 2012-09-05 Colin Watson <cjwatson@ubuntu.com>
8555
8556 * NEWS: Fix typo.
8557
8558 2012-09-05 Colin Watson <cjwatson@ubuntu.com>
8559
8560 * util/import_gcry.py: Sort cipher_files, to make build system
8561 generation more deterministic.
8562
8563 2012-09-05 Vladimir Serbinenko <phcoder@gmail.com>
8564
8565 * grub-core/disk/ieee1275/ofdisk.c (scan): Check function return value.
8566 * grub-core/lib/ieee1275/datetime.c (grub_get_datetime): Likewise.
8567 (grub_set_datetime): Likewise.
8568
8569 2012-09-05 Vladimir Serbinenko <phcoder@gmail.com>
8570
8571 * grub-core/script/yylex.l: Ignore unused-function and sign-compare
8572 warnings.
8573
8574 2012-09-05 Vladimir Serbinenko <phcoder@gmail.com>
8575
8576 * grub-core/partmap/dvh.c (grub_dvh_is_valid): Add missing byteswap.
8577
8578 2012-09-05 Vladimir Serbinenko <phcoder@gmail.com>
8579
8580 * grub-core/fs/xfs.c (grub_xfs_read_block): Make keys a const pointer.
8581
8582 2012-09-04 Colin Watson <cjwatson@ubuntu.com>
8583
8584 * Makefile.am (EXTRA_DIST): Add linguas.sh. It's only strictly
8585 required for checkouts from bzr, but it may be useful for users or
8586 distributors wishing to update translations against a tarball
8587 distribution, and it can be helpful for the tarball to be a superset
8588 of what's in bzr.
8589
8590 2012-09-04 Colin Watson <cjwatson@ubuntu.com>
8591
8592 * Makefile.am (EXTRA_DIST): Add
8593 grub-core/tests/boot/linux.init-mips.S,
8594 grub-core/tests/boot/linux.init-ppc.S, and
8595 grub-core/tests/boot/linux-ppc.cfg.
8596
8597 2012-09-04 Colin Watson <cjwatson@ubuntu.com>
8598
8599 * grub-core/mmap/mips/loongson: Remove empty directory.
8600
8601 2012-09-04 Colin Watson <cjwatson@ubuntu.com>
8602
8603 * docs/man/grub-mkdevicemap.h2m: Remove, since grub-mkdevicemap is
8604 gone.
8605
8606 2012-09-04 Colin Watson <cjwatson@ubuntu.com>
8607
8608 * .bzrignore: Add grub-bios-setup, grub-ofpathname, and
8609 grub-sparc64-setup.
8610
8611 2012-08-05 Grégoire Sutre <gregoire.sutre@gmail.com>
8612
8613 * configure.ac: Strengthen the test for working -nostdinc -isystem.
8614
8615 2012-07-31 Grégoire Sutre <gregoire.sutre@gmail.com>
8616
8617 * po/POTFILES.in: Regenerated.
8618
8619 2012-07-31 Grégoire Sutre <gregoire.sutre@gmail.com>
8620
8621 * docs/grub.texi: Note that NetBSD/i386 is Multiboot-compliant.
8622 (NetBSD): New subsection.
8623
8624 2012-07-22 Ales Nesrsta <starous@volny.cz>
8625
8626 * grub-core/bus/usb/ehci.c: PCI iter. - added PCI bus master setting.
8627 * grub-core/bus/usb/ohci.c: PCI iter. - added PCI bus master setting.
8628
8629 2012-07-22 Vladimir Serbinenko <phcoder@gmail.com>
8630
8631 * util/grub-mkconfig_lib.in (grub_quote): Remove extra layer of escape.
8632 * util/grub.d/10_hurd.in: Add missing quoting.
8633 * util/grub.d/10_illumos.in: Likewise.
8634 * util/grub.d/10_kfreebsd.in: Likewise.
8635 * util/grub.d/10_linux.in: Likewise.
8636 * util/grub.d/20_linux_xen.in: Likewise.
8637
8638 2012-07-22 Vladimir Serbinenko <phcoder@gmail.com>
8639
8640 New command `lsefi'.
8641
8642 * grub-core/Makefile.core.def (lsefi): New module.
8643 * grub-core/commands/efi/lsefi.c: New file.
8644 * include/grub/efi/api.h: Add more GUIDs.
8645
8646 2012-07-22 Vladimir Serbinenko <phcoder@gmail.com>
8647
8648 * grub-core/loader/i386/bsd.c (grub_bsd_elf32_size_hook): Fix mask.
8649 (grub_bsd_elf32_hook): Likewise.
8650 (grub_bsd_elf64_size_hook): Likewise.
8651 (grub_bsd_elf64_hook): Likewise.
8652 (grub_bsd_load_elf): Likewise.
8653
8654 2012-07-22 Vladimir Serbinenko <phcoder@gmail.com>
8655
8656 * grub-core/lib/xzembed/xz_dec_stream.c (hash_validate): Fix behaviour
8657 if hash function is unavailable.
8658 (dec_stream_header): Likewise.
8659
8660 2012-07-22 Vladimir Serbinenko <phcoder@gmail.com>
8661
8662 * grub-core/normal/autofs.c (autoload_fs_module): Save and restore
8663 filter state.
8664
8665 2012-07-22 Vladimir Serbinenko <phcoder@gmail.com>
8666
8667 Fix coreboot compilation.
8668
8669 * grub-core/term/i386/pc/vga_text.c (grub_vga_text_init): Rename to ...
8670 (grub_vga_text_init_real): ... this.
8671 (grub_vga_text_fini): Rename to ...
8672 (grub_vga_text_fini_real): ... this.
8673
8674 2012-07-07 Vladimir Serbinenko <phcoder@gmail.com>
8675
8676 * grub-core/Makefile.am: Fix path to boot/i386/pc/startup_raw.S.
8677
8678 2012-07-02 Vladimir Serbinenko <phcoder@gmail.com>
8679
8680 * grub-core/lib/legacy_parse.c: Support clear and testload.
8681
8682 2012-07-02 Vladimir Serbinenko <phcoder@gmail.com>
8683
8684 * grub-core/term/efi/serial.c: Support 1.5 stop bits.
8685
8686 2012-07-02 Vladimir Serbinenko <phcoder@gmail.com>
8687
8688 * grub-core/fs/ext2.c: Experimental support for 64-bit.
8689
8690 2012-07-02 Vladimir Serbinenko <phcoder@gmail.com>
8691
8692 * grub-core/net/tftp.c (ack): Fix endianness problem.
8693 (tftp_receive): Likewise.
8694 Reported by: Michael Davidsaver.
8695
8696 2012-07-02 Vladimir Serbinenko <phcoder@gmail.com>
8697
8698 * gentpl.py: Make mans depend on grub-mkconfig_lib.
8699
8700 2012-07-02 Vladimir Serbinenko <phcoder@gmail.com>
8701
8702 * include/grub/list.h (FOR_LIST_ELEMENTS_SAFE): New macro.
8703 * include/grub/command.h (FOR_COMMANDS_SAFE): Likewise.
8704 * grub-core/commands/help.c (grub_cmd_help): Use FOR_COMMANDS_SAFE.
8705
8706 2012-07-02 Vladimir Serbinenko <phcoder@gmail.com>
8707
8708 * grub-core/loader/i386/linux.c (find_efi_mmap_size): Don't decrease
8709 efi_mmap_size.
8710 Reported by: Stuart Hayes.
8711
8712 2012-06-28 Vladimir Serbinenko <phcoder@gmail.com>
8713
8714 Add monochrome text support (mda_text, aka `hercules' in grub-legacy).
8715
8716 * grub-core/Makefile.core.def (mda_text): New module.
8717 * grub-core/lib/legacy_parse.c (grub_legacy_parse): Support `hercules'.
8718 * grub-core/term/i386/vga_common.c (grub_console_cur_color): Moved to ..
8719 * grub-core/term/i386/pc/vga_text.c (cur_color): ... here
8720 * grub-core/term/i386/pc/console.c (grub_console_cur_color): ... and
8721 here.
8722 * grub-core/term/i386/vga_common.c (grub_console_getwh): Moved to ..
8723 * grub-core/term/i386/pc/vga_text.c (grub_console_getwh): ... here
8724 * grub-core/term/i386/pc/console.c (grub_console_getwh): ... and
8725 here.
8726 * grub-core/term/i386/vga_common.c (grub_console_setcolorstate): Moved
8727 to ..
8728 * grub-core/term/i386/pc/vga_text.c (grub_console_setcolorstate):
8729 ... here
8730 * grub-core/term/i386/pc/console.c (grub_console_setcolorstate): ... and
8731 here.
8732 * grub-core/term/i386/vga_common.c: Removed.
8733 * include/grub/i386/vga_common.h: Likewise.
8734 * include/grub/vga.h (grub_vga_cr_bw_write): New function.
8735 (grub_vga_cr_bw_read): Likewise.
8736 * include/grub/vgaregs.h (GRUB_VGA_IO_CR_BW_INDEX): New enum value.
8737 (GRUB_VGA_IO_CR_BW_DATA): Likewise.
8738 * grub-core/term/i386/pc/vga_text.c [MODE_MDA]: Call
8739 grub_vga_cr_bw_read/grub_vga_cr_bw_write instead of
8740 grub_vga_cr_read/grub_vga_cr_write.
8741 (grub_vga_text_setcolorstate) [MODE_MDA]: Ignore color.
8742
8743 2012-06-27 Vladimir Serbinenko <phcoder@gmail.com>
8744
8745 * configure.ac: Bump version to 2.00.
8746 * grub-core/normal/main.c (features): Add feature_200_final.
8747
8748 2012-06-27 Vladimir Serbinenko <phcoder@gmail.com>
8749 2012-06-27 Jordan Uggla <jordan.uggla@gmail.com>
8750
8751 * NEWS: Fix unclarity and language mistakes.
8752
8753 2012-06-27 Vladimir Serbinenko <phcoder@gmail.com>
8754
8755 * grub-core/loader/i386/linux.c (find_efi_mmap_size): Increase
8756 additional size to 3 pages.
8757 Reported by: Stuart Hayes.
8758
8759 2012-06-27 Vladimir Serbinenko <phcoder@gmail.com>
8760
8761 * NEWS: Add 2.00 entry.
8762
8763 2012-06-27 Vladimir Serbinenko <phcoder@gmail.com>
8764
8765 * grub-core/commands/wildcard.c (check_file): Fix bad logic.
8766 put explicit "/" for empty path.
8767 (wildcard_expand): Improve dprintf.
8768
8769 2012-06-27 Vladimir Serbinenko <phcoder@gmail.com>
8770
8771 * grub-core/fs/fshelp.c (grub_fshelp_find_file): Don't free oldnode if
8772 it's equal to currnode. This can happen with "" symlink.
8773
8774 2012-06-27 Yves Blusseau <blusseau@zetam.org>
8775
8776 * util/grub-mkconfig_lib.in: Fix print messages replacing builtin
8777 echo shell command by printf command.
8778
8779 2012-06-26 Vladimir Serbinenko <phcoder@gmail.com>
8780
8781 * grub-core/term/arc/console.c (grub_console_init_output): Add one since
8782 the value returned by firmware is the maximal position, not diumension.
8783 (grub_terminfo_output_state): Use a more sane fallback.
8784
8785 2012-06-26 Vladimir Serbinenko <phcoder@gmail.com>
8786
8787 * grub-core/term/terminfo.c (print_terminfo): Print terminal dimensions.
8788
8789 2012-06-26 Vladimir Serbinenko <phcoder@gmail.com>
8790
8791 * grub-core/kern/mips/arc/init.c (grub_machine_init): Set clock
8792 frequency to 150 MHz.
8793
8794 2012-06-26 Vladimir Serbinenko <phcoder@gmail.com>
8795
8796 Apple fixes.
8797
8798 * grub-core/lib/i386/relocator16.S: Use correct __APPLE__ and not
8799 __APPLE_
8800 * grub-core/lib/i386/relocator_common.S [__APPLE__]: Fix gdtdesc
8801 definition.
8802 * grub-core/lib/i386/relocator64.S [__APPLE__]: Assemble jmp manually.
8803
8804 2012-06-26 Vladimir Serbinenko <phcoder@gmail.com>
8805
8806 Handle slash in HFS label.
8807
8808 * grub-core/fs/hfs.c (macroman_to_utf8): New argument slash_translate.
8809 (grub_hfs_dir): Tanslate slash.
8810 (grub_hfs_label): Don't translate slash.
8811
8812 2012-06-26 Vladimir Serbinenko <phcoder@gmail.com>
8813
8814 * grub-core/commands/ls.c (grub_ls_list_devices): Disable
8815 network protocol listing since it introduces problematic dependency on
8816 net module.
8817
8818 2012-06-26 Vladimir Serbinenko <phcoder@gmail.com>
8819
8820 * util/grub-mkimage.c (generate_image): Add Yeeloong verified hash.
8821
8822 2012-06-26 Vladimir Serbinenko <phcoder@gmail.com>
8823
8824 Init video early on yeeloong to avoid being rebooted by watchdog.
8825
8826 * grub-core/Makefile.am (gensm712): New target.
8827 (sm712_start.S): Likewise.
8828 (boot/mips/loongson/fwstart.S): Depend on sm712_start.S
8829 * grub-core/boot/mips/loongson/fwstart.S [!FULOONG2F]: Init SM712.
8830 * grub-core/video/sm712.c [GENINIT]: Generate compact init procedure
8831 description.
8832 * include/grub/vga.h: Move registry definitions to...
8833 * include/grub/vgaregs.h: ... here.
8834
8835 2012-06-26 Vladimir Serbinenko <phcoder@gmail.com>
8836
8837 * grub-core/boot/decompressor/minilib.c (grub_memcmp): Fix the compare
8838 signedness.
8839
8840 2012-06-25 Vladimir Serbinenko <phcoder@gmail.com>
8841
8842 * util/grub-install.in: Fix dvhtool invocation. Add arc to the list of
8843 platforms with firmware disk drivers in the core.
8844
8845 2012-06-25 Vladimir Serbinenko <phcoder@gmail.com>
8846
8847 * grub-core/disk/diskfilter.c (scan_disk) [GRUB_UTIL]: Put more
8848 informative verbose message.
8849 (read_lv): Handle 64-bit segment size.
8850
8851 2012-06-25 Vladimir Serbinenko <phcoder@gmail.com>
8852
8853 * grub-core/disk/lvm.c (grub_lvm_getvalue): Handle 64-bit values.
8854
8855 2012-06-25 Vladimir Serbinenko <phcoder@gmail.com>
8856
8857 * grub-core/fs/fat.c (grub_fat_iterate_dir_next): Don't stop on a space
8858 character but still remove trainling spaces.
8859 (grub_fat_label): Ignore archive flag.
8860
8861 2012-06-25 Vladimir Serbinenko <phcoder@gmail.com>
8862
8863 * grub-core/loader/i386/linux.c (grub_cmd_initrd): Avoid unnecessarry
8864 cast between linux_kernel_header and linux_kernel_params.
8865
8866 2012-06-25 Vladimir Serbinenko <phcoder@gmail.com>
8867
8868 * include/grub/diskfilter.h (grub_raid5_recover_func_t): Use proper
8869 type for size.
8870 (grub_raid6_recover_func_t): Likewise.
8871 * grub-core/disk/raid5_recover.c (grub_raid5_recover): Likewise.
8872 * grub-core/disk/raid6_recover.c (grub_raid6_recover): Likewise.
8873
8874 2012-06-25 Vladimir Serbinenko <phcoder@gmail.com>
8875
8876 * util/grub-mkimage.c (generate_image): Add Fuloong2F verified hash.
8877
8878 2012-06-25 Grégoire Sutre <gregoire.sutre@gmail.com>
8879
8880 Fix overflow.
8881
8882 * grub-core/kern/emu/hostdisk.c (grub_util_get_fd_size)
8883 [__NetBSD__]: Add explicit cast before bitshift.
8884
8885 2012-06-23 Vladimir Serbinenko <phcoder@gmail.com>
8886
8887 * configure.ac: Bump to 2.00~rc1.
8888
8889 2012-06-23 Vladimir Serbinenko <phcoder@gmail.com>
8890
8891 * grub-core/boot/mips/loongson/fwstart.S: Add missing setting of high
8892 half of $a0.
8893
8894 2012-06-23 Vladimir Serbinenko <phcoder@gmail.com>
8895 2012-06-23 Jordan Uggla <jordan.uggla@gmail.com>
8896
8897 * docs/grub.texi: Fix search syntax.
8898 (Multi-boot manual config): Put msdos rather than GPT example.
8899 Grammar corrections.
8900
8901 2012-06-23 Vladimir Serbinenko <phcoder@gmail.com>
8902
8903 * docs/grub.texi (Multi-boot manual config): Use --set. Improve remark.
8904
8905 2012-06-22 Vladimir Serbinenko <phcoder@gmail.com>
8906
8907 * grub-core/kern/mm.c (grub_free): Fix agglomerating of free regions.
8908
8909 2012-06-22 Vladimir Serbinenko <phcoder@gmail.com>
8910
8911 * grub-core/kern/mm.c (get_header_from_pointer): Put a more informative
8912 message on double free. Put the value of magic in case of mismatch.
8913
8914 2012-06-22 Vladimir Serbinenko <phcoder@gmail.com>
8915
8916 Speed-up video on yeeloong.
8917
8918 * grub-core/video/sm712.c (framebuffer): Remove render_target and
8919 add cached_ptr.
8920 (grub_video_sm712_video_fini): Unmap cached_ptr.
8921 (grub_video_sm712_setup): Use cache address and grub_video_fb_setup.
8922 (grub_video_sm712_set_active_render_target): Removed.
8923 (grub_video_adapter): Use grub_video_fb_set_active_render_target.
8924 (grub_video_sm712_swap_buffers): Call grub_video_fb_swap_buffers and
8925 sync caches.
8926
8927 2012-06-22 Vladimir Serbinenko <phcoder@gmail.com>
8928
8929 Avoid flushing the same line multiple times on loongson.
8930
8931 * grub-core/kern/mips/cache.S [GRUB_MACHINE_MIPS_LOONGSON]:
8932 Step in 32 bytes and not 1 byte.
8933 * grub-core/kern/mips/cache_flush.S [GRUB_MACHINE_MIPS_LOONGSON]:
8934 Likewise.
8935
8936 2012-06-22 Vladimir Serbinenko <phcoder@gmail.com>
8937
8938 * util/getroot.c (grub_find_root_devices_from_mountinfo): Handle btrfs
8939 subvolumes.
8940
8941 2012-06-22 Vladimir Serbinenko <phcoder@gmail.com>
8942
8943 Implement flow control for http.
8944
8945 * grub-core/net/http.c (parse_line): Handle response 206.
8946 (http_receive): Stall if too many packets are in the queue.
8947 (http_establish): Fix range header.
8948 (http_seek): Fix double free.
8949 (http_close): Likewise.
8950 (http_packets_pulled): New function.
8951 (grub_http_protocol): Set http_seek
8952 * grub-core/net/tcp.c (grub_net_tcp_socket): New field `i_stall'.
8953 (ack_real): Set window depending on i_stall.
8954 (grub_net_send_tcp_packet): Likewise.
8955 (grub_net_tcp_stall): New function.
8956 (grub_net_tcp_unstall): Likewise.
8957 * include/grub/net/tcp.h (grub_net_tcp_stall): New proto.
8958 (grub_net_tcp_unstall): Likewise.
8959
8960 2012-06-22 Vladimir Serbinenko <phcoder@gmail.com>
8961
8962 * grub-core/net/tftp.c: Decrease stall to 50 packets.
8963
8964 2012-06-22 Vladimir Serbinenko <phcoder@gmail.com>
8965
8966 * grub-core/net/net.c (grub_net_fs_open): Free resources on failed open.
8967
8968 2012-06-22 Vladimir Serbinenko <phcoder@gmail.com>
8969
8970 * tests/util/grub-shell.in: Fix a typo.
8971
8972 2012-06-22 Vladimir Serbinenko <phcoder@gmail.com>
8973
8974 Implement flow control for tftp.
8975
8976 * grub-core/net/net.c (receive_packets): Decrease the stop to 10
8977 packets but stop only if stop condition is satisfied.
8978 (grub_net_fs_read_real): Call packets_pulled after real read. Use
8979 `stall' instead of `eof' as stop condition.
8980 * grub-core/net/http.c (parse_line): Set `stall' on EOF.
8981 (http_err): Likewise.
8982 * grub-core/net/tftp.c (ack): Replace the first argument with data
8983 instead of socket.
8984 (tftp_receive): Stall if too many packets are in wait queue.
8985 (tftp_packets_pulled): New function.
8986 (grub_tftp_protocol): Set packets_pulled.
8987 * include/grub/net.h (grub_net_packets): New field count.
8988 (grub_net_put_packet): Increment count.
8989 (grub_net_remove_packet): Likewise.
8990 (grub_net_app_protocol): New field `packets_pulled'.
8991 (grub_net): New field `stall'.
8992
8993 2012-06-22 Vladimir Serbinenko <phcoder@gmail.com>
8994
8995 * grub-core/net/net.c (receive_packets): Stop after 100 packets to let
8996 sync part to handle them.
8997
8998 2012-06-21 Vladimir Serbinenko <phcoder@gmail.com>
8999
9000 * grub-core/kern/main.c (grub_set_prefix_and_root): Fix memory leak.
9001 * grub-core/net/drivers/ieee1275/ofnet.c
9002 (grub_ieee1275_net_config_real): Likewise.
9003
9004 2012-06-21 Vladimir Serbinenko <phcoder@gmail.com>
9005
9006 * grub-core/net/bootp.c (grub_net_configure_by_dhcp_ack): Don't create
9007 the direct route for server/gateway.
9008
9009 2012-06-21 Vladimir Serbinenko <phcoder@gmail.com>
9010
9011 * grub-core/net/bootp.c (grub_net_configure_by_dhcp_ack): Prefer
9012 IP address to server name since we may not hame the DNS.
9013
9014 2012-06-21 Vladimir Serbinenko <phcoder@gmail.com>
9015
9016 * grub-core/net/dns.c (grub_cmd_nslookup): Init addresses to 0 to avoid
9017 freeing random buffer on failure.
9018 * grub-core/net/net.c (grub_net_resolve_address): Likewise.
9019
9020 2012-06-21 Vladimir Serbinenko <phcoder@gmail.com>
9021
9022 * grub-core/net/bootp.c (grub_cmd_bootp): Fix packet allocation size.
9023
9024 2012-06-21 Vladimir Serbinenko <phcoder@gmail.com>
9025
9026 * grub-core/net/drivers/emu/emunet.c (get_card_packet): Allocate the
9027 reserved bytes.
9028 * grub-core/net/drivers/i386/pc/pxe.c (grub_pxe_recv): Likewise.
9029 * grub-core/net/drivers/ieee1275/ofnet.c (get_card_packet): Likewise.
9030 Handle malloc error correctly.
9031
9032 2012-06-21 Vladimir Serbinenko <phcoder@gmail.com>
9033
9034 * grub-core/script/execute.c (grub_script_arglist_to_argv): Escape
9035 blocks.
9036
9037 2012-06-21 Vladimir Serbinenko <phcoder@gmail.com>
9038
9039 * grub-core/disk/ieee1275/ofdisk.c (grub_ofdisk_iterate): Fix double
9040 increment.
9041
9042 2012-06-20 Vladimir Serbinenko <phcoder@gmail.com>
9043
9044 * grub-core/net/dns.c (grub_cmd_nslookup): Use configured DNS servers if
9045 none is explicitly specified.
9046
9047 2012-06-20 Vladimir Serbinenko <phcoder@gmail.com>
9048
9049 * grub-core/net/dns.c (grub_net_add_dns_server): Don't erase old servers
9050 while reallocating.
9051
9052 2012-06-20 Vladimir Serbinenko <phcoder@gmail.com>
9053
9054 Respect netmask from bootp/dhcp.
9055
9056 * grub-core/net/bootp.c (parse_dhcp_vendor): Parse mask.
9057 (grub_net_configure_by_dhcp_ack): Use mask and grub_net_add_ipv4_local.
9058 * grub-core/net/net.c (grub_net_add_addr): Split creating local route
9059 into ...
9060 (grub_net_add_ipv4_local): ... this.
9061 (grub_cmd_addaddr): Use grub_net_add_ipv4_local.
9062 * include/grub/net.h (GRUB_NET_BOOTP_NETMASK): New enum value.
9063 (grub_net_add_ipv4_local): New proto.
9064
9065 2012-06-20 Vladimir Serbinenko <phcoder@gmail.com>
9066
9067 * grub-core/loader/i386/linux.c (grub_linux_boot): Setup video before
9068 determining EFI memory map size.
9069
9070 2012-06-20 Vladimir Serbinenko <phcoder@gmail.com>
9071
9072 * grub-core/disk/ieee1275/ofdisk.c (grub_ofdisk_iterate): Escape commas.
9073
9074 2012-06-20 Vladimir Serbinenko <phcoder@gmail.com>
9075
9076 * grub-core/kern/main.c (grub_set_prefix_and_root): Skip escaped commas
9077 when looking for partition separator.
9078
9079 2012-06-20 Vladimir Serbinenko <phcoder@gmail.com>
9080
9081 * grub-core/kern/ieee1275/openfw.c (grub_ieee1275_encode_devname):
9082 Escape commas.
9083
9084 2012-06-20 Vladimir Serbinenko <phcoder@gmail.com>
9085
9086 Restructure FAT driver to avoid hook in label reading as it hits a
9087 GCC bug.
9088
9089 * include/grub/err.h (grub_err_t): New enum value GRUB_ERR_EOF.
9090 * grub-core/fs/fat.c (grub_fat_iterate_context): New struct.
9091 (grub_fat_iterate_dir): Split into ...
9092 (grub_fat_iterate_init): ... this, ...
9093 (grub_fat_iterate_fini): ... this, ...
9094 (grub_fat_iterate_dir_next): ... and this. All users updated.
9095
9096 2012-06-20 Vladimir Serbinenko <phcoder@gmail.com>
9097
9098 * include/grub/ieee1275/ieee1275.h (grub_ieee1275_flag): New enum value
9099 GRUB_IEEE1275_FLAG_BROKEN_REPEAT.
9100 * grub-core/kern/ieee1275/cmain.c (grub_ieee1275_find_options): Set
9101 GRUB_IEEE1275_FLAG_BROKEN_REPEAT on PowerBook3,3.
9102 * include/grub/terminfo.h (grub_terminfo_input_state) [__powerpc__]:
9103 New fields last_key and last_key_time.
9104 * grub-core/term/terminfo.c (grub_terminfo_getkey): Transform
9105 extended key-esc into extended key-extended key.
9106
9107 2012-06-19 Vladimir Serbinenko <phcoder@gmail.com>
9108
9109 Avoid unnecessary memcpy of whole video buffer.
9110
9111 * grub-core/video/fb/video_fb.c (dirty): New struct.
9112 (framebuffer): Add members current_dirty and previous_dirty.
9113 (dirty): New function.
9114 (grub_video_fb_fill_rect): Update dirty.
9115 (common_blitter): Likewise.
9116 (grub_video_fb_scroll): Likewise.
9117 (doublebuf_blit_update_screen): Copy only dirty part.
9118 (doublebuf_pageflipping_update_screen): Likewise.
9119 (grub_video_fb_doublebuf_blit_init): Init dirty.
9120 (doublebuf_pageflipping_init): Likewise.
9121 (grub_video_fb_setup): Likewise.
9122
9123 2012-06-19 Vladimir Serbinenko <phcoder@gmail.com>
9124
9125 * grub-core/net/drivers/ieee1275/ofnet.c (search_net_devices): Decrease
9126 poll rate.
9127
9128 2012-06-19 Vladimir Serbinenko <phcoder@gmail.com>
9129
9130 Fix wildcard regexp dot and other special characters handling.
9131 Reported by: Robert Mabee.
9132
9133 * grub-core/commands/wildcard.c (isregexop): Add "|+{}[]?".
9134 (make_regex): Escape "|+{}[]". Transform '?' to '.?'.
9135 (split_path): Trigger expansion on '?'.
9136 (unescape): New function.
9137 (wildcard_expand): Unescape parts copied without globbing.
9138 * grub-core/script/execute.c (wildcard_escape): Escape '?'.
9139 (grub_script_arglist_to_argv): Don't unescape expansions.
9140
9141 2012-06-19 Vladimir Serbinenko <phcoder@gmail.com>
9142
9143 * include/grub/net.h (grub_net_card): New member txbufsize.
9144 * include/grub/ieee1275/ieee1275.h (grub_ieee1275_flag): New enum values
9145 GRUB_IEEE1275_FLAG_NO_OFNET_SUFFIX and
9146 GRUB_IEEE1275_FLAG_VIRT_TO_REAL_BROKEN.
9147 * grub-core/net/drivers/efi/efinet.c (grub_efinet_findcards): Use
9148 txbufsize.
9149 * grub-core/kern/ieee1275/cmain.c (grub_ieee1275_find_options): Use
9150 compatible property to check for macs. Set
9151 GRUB_IEEE1275_FLAG_NO_OFNET_SUFFIX and
9152 GRUB_IEEE1275_FLAG_VIRT_TO_REAL_BROKEN on macs.
9153 * grub-core/net/drivers/ieee1275/ofnet.c (card_open): Don't add suffix
9154 if GRUB_IEEE1275_FLAG_NO_OFNET_SUFFIX is set.
9155 (send_card_buffer): Use txbuf.
9156 (grub_ofnet_findcards): Allocate txbuf. Simplify code flow and move
9157 nested function out of the parent while on it.
9158
9159 2012-06-19 Vladimir Serbinenko <phcoder@gmail.com>
9160
9161 * grub-core/net/drivers/ieee1275/ofnet.c (get_card_packet): Fix packet
9162 presence check.
9163 (grub_ieee1275_net_config_real): Fix config pointer.
9164
9165 2012-06-19 Vladimir Serbinenko <phcoder@gmail.com>
9166
9167 * grub-core/kern/ieee1275/openfw.c (grub_ieee1275_parse_args): Extend
9168 filename parsing to non-block devices.
9169
9170 2012-06-19 Vladimir Serbinenko <phcoder@gmail.com>
9171
9172 * grub-core/kern/device.c (grub_device_open): Remove dead code.
9173
9174 2012-06-18 Vladimir Serbinenko <phcoder@gmail.com>
9175
9176 * include/grub/elf.h: Rename R_PPC to GRUB_R_PPC to avoid collisions.
9177 All users updated.
9178
9179 2012-06-18 Vladimir Serbinenko <phcoder@gmail.com>
9180
9181 * util/grub-mkconfig_lib.in (prepare_grub_to_access_device): Generate
9182 UUID search command even if hints probing failed.
9183
9184 2012-06-18 Vladimir Serbinenko <phcoder@gmail.com>
9185
9186 * po/POTFILES.in: Regenerated.
9187
9188 2012-06-17 Vladimir Serbinenko <phcoder@gmail.com>
9189
9190 Speed-up video on fuloong.
9191
9192 * grub-core/bus/bonito.c (grub_pci_device_map_range_cached):
9193 New function.
9194 (grub_pci_device_unmap_range): Handle non-cached address.
9195 * grub-core/video/sis315pro.c (framebuffer): Remove render_target and
9196 add direct_ptr.
9197 (grub_video_sis315pro_video_fini): Unmap direct_ptr.
9198 (grub_video_sis315pro_setup): Use cache address and grub_video_fb_setup.
9199 (grub_video_sis315pro_set_active_render_target): Removed.
9200 (grub_video_sis315pro_get_info_and_fini): Use uncached address.
9201 (grub_video_adapter): Use grub_video_fb_set_active_render_target.
9202 (grub_video_sis315pro_swap_buffers): Call grub_video_fb_swap_buffers and
9203 sync caches.
9204 * include/grub/mips/loongson/pci.h (grub_pci_device_map_range_cached):
9205 New proto.
9206
9207 2012-06-16 Vladimir Serbinenko <phcoder@gmail.com>
9208
9209 * docs/grub.texi (Multi-boot manual config): New section.
9210
9211 2012-06-15 Vladimir Serbinenko <phcoder@gmail.com>
9212
9213 Avoid slow read-back from VRAM.
9214
9215 * include/grub/video_fb.h (grub_video_fb_doublebuf_update_screen_t):
9216 Move from here ...
9217 * grub-core/video/fb/video_fb.c
9218 (grub_video_fb_doublebuf_update_screen_t): ... here. Remove arguments.
9219 * grub-core/video/fb/video_fb.c (framebuf_t): New type.
9220 (front_target): Remove front_target. Add pages.
9221 (grub_video_fb_init): Skip setting front_pages.
9222 (grub_video_fb_fini): Likewise.
9223 (doublebuf_blit_update_screen): Use pages.
9224 (grub_video_fb_doublebuf_blit_init): Likewise.
9225 (doublebuf_pageflipping_init): Allocate offscreen buffer.
9226 (doublebuf_pageflipping_update_screen): Use offscreen buffer.
9227 (grub_video_fb_setup): Prefer doublebuffing.
9228
9229 2012-06-15 Vladimir Serbinenko <phcoder@gmail.com>
9230
9231 * grub-core/normal/main.c (GRUB_MOD_INIT): Ignore errors when loading
9232 gzio.
9233
9234 2012-06-15 Vladimir Serbinenko <phcoder@gmail.com>
9235
9236 Add loongson tests.
9237
9238 * tests/util/grub-shell.in: Handle loongson.
9239 * tests/partmap_test.in: Add loongson to the list of platform using ATA
9240 drivers.
9241 * grub-core/tests/boot/linux.init-mips.S (SHUTDOWN_MAGIC3) [REBOOT]:
9242 Reboot instead of shutdown if REBOOT is defined.
9243
9244 2012-06-15 Vladimir Serbinenko <phcoder@gmail.com>
9245
9246 * grub-core/lib/mips/loongson/reboot.c (grub_reboot): Use 32-bit
9247 sized ports since unlike on real hardware qemu supports only 32-bit
9248 regs.
9249
9250 2012-06-15 Vladimir Serbinenko <phcoder@gmail.com>
9251
9252 * Makefile.util.def (grub-mkrescue): Enable on loongson.
9253 * util/grub-mkrescue.in: Handle loongson.
9254
9255 2012-06-14 Vladimir Serbinenko <phcoder@gmail.com>
9256
9257 * util/getroot.c (convert_system_partition_to_system_disk) [__APPLE__]:
9258 Set is_part appropriately.
9259 (grub_util_biosdisk_get_grub_dev): Use is_part rather than comparing
9260 names. Canonicalize partition without full disk.
9261
9262 2012-06-13 Vladimir Serbinenko <phcoder@gmail.com>
9263
9264 Revert usb-quiesce since it's wrong.
9265
9266 * grub-core/disk/ieee1275/ofdisk.c (quiesce): Removed.
9267 (grub_ofdisk_init): Don't do quiesce.
9268
9269 2012-06-13 Vladimir Serbinenko <phcoder@gmail.com>
9270
9271 * grub-core/kern/ieee1275/cmain.c (grub_ieee1275_find_options): Apply
9272 PowerMac workaround to Xserves as well.
9273 Information supplied by: Benjamin Herrenschmidt.
9274
9275 2012-06-13 Vladimir Serbinenko <phcoder@gmail.com>
9276
9277 Don't assume that beginning address is also the entry point on ppc.
9278
9279 * grub-core/loader/powerpc/ieee1275/linux.c (linux_entry): New variable.
9280 (grub_linux_boot): Use linux_entry.
9281 (grub_linux_load32): Fill linux_entry. Fix setting linux_addr.
9282 (grub_linux_load64): Likewise.
9283
9284 2012-06-13 Vladimir Serbinenko <phcoder@gmail.com>
9285
9286 * util/grub-install.in: Fix cross-disk check on non-PreP machines.
9287
9288 2012-06-13 Vladimir Serbinenko <phcoder@gmail.com>
9289
9290 * grub-core/term/ieee1275/console.c (grub_console_fini): Don't
9291 needlessly lose the console.
9292
9293 2012-06-13 Vladimir Serbinenko <phcoder@gmail.com>
9294
9295 * grub-core/normal/dyncmd.c (read_command_list): Don't access freed
9296 space.
9297
9298 2012-06-11 Vladimir Serbinenko <phcoder@gmail.com>
9299
9300 Remove non-functional EFI grub_get_rtc. Put a better fatal message
9301 than current grub_get_rtc() not implemented when booted with
9302 coreboot without TSC.
9303
9304 * grub-core/Makefile.am: Exclude efi/time.h from kernel headers.
9305 Add machine/time.h to kernel headers on loongson.
9306 * grub-core/Makefile.core.def (kernel): Remove
9307 kern/generic/rtc_get_time_ms.c on qemu-multiboot-coreboot.
9308 * grub-core/kern/efi/efi.c (grub_rtc_get_time_ms): Removed.
9309 (grub_get_rtc): Likewise.
9310 * grub-core/kern/generic/rtc_get_time_ms.c: Include grub/machine/time.h.
9311 * grub-core/kern/i386/coreboot/init.c (grub_get_rtc): Removed.
9312 * grub-core/kern/i386/pc/init.c: Include grub/machine/init.h.
9313 * grub-core/kern/i386/tsc.c (grub_tsc_init)
9314 [!GRUB_MACHINE_PCBIOS && !GRUB_MACHINE_IEEE1275]: Call grub_fatal
9315 rather than installing known non-working time source.
9316 * grub-core/kern/ieee1275/init.c (grub_get_rtc): Removed.
9317 * grub-core/kern/mips/loongson/init.c: Include grub/machine/time.h.
9318 * include/grub/time.h: Don't include machine/time.h.
9319 * include/grub/efi/time.h: Removed.
9320 * include/grub/i386/efi/time.h: Likewise.
9321 * include/grub/i386/ieee1275/time.h: Likewise.
9322 * include/grub/powerpc/ieee1275/time.h: Likewise.
9323 * include/grub/sparc64/ieee1275/time.h: Likewise.
9324 * include/grub/x86_64/efi/time.h: Likewise.
9325
9326 2012-06-11 Vladimir Serbinenko <phcoder@gmail.com>
9327
9328 Remove dot on i and j when combining with above diacritics.
9329
9330 * include/grub/unicode.h (GRUB_UNICODE_DOTLESS_LOWERCASE_I): New enum
9331 value.
9332 (GRUB_UNICODE_DOTLESS_LOWERCASE_J): Likewise.
9333 * grub-core/font/font.c (grub_font_construct_dry_run): Replace i and j
9334 with dotless variants when any combining above is present.
9335
9336 2012-06-09 Vladimir Serbinenko <phcoder@gmail.com>
9337
9338 * tests/grub_script_expansion.in: Explicitly tell grep that we handle
9339 text and not binary.
9340
9341 2012-06-09 Vladimir Serbinenko <phcoder@gmail.com>
9342
9343 Stop polling as soon as we have the packet we were waiting for.
9344
9345 * include/grub/net.h (grub_net_poll_cards): New argument stop_condition.
9346 All users updated.
9347 * grub-core/net/arp.c (have_pending): New var.
9348 (pending_req): Likewise.
9349 (grub_net_arp_send_request): Fill pending_req and use have_pending as
9350 stop indicator.
9351 (grub_net_arp_receive): Set have_pending.
9352 * grub-core/net/dns.c (recv_data): New field stop.
9353 (recv_hook): Set stop.
9354 (grub_net_dns_lookup): Init stop and use as stop condition.
9355 * grub-core/net/http.c (http_establish): Use headers_recv as stop
9356 condition.
9357 * grub-core/net/net.c (grub_net_poll_cards): New argument
9358 stop_condition. Stop when it goes true.
9359 * grub-core/net/tcp.c (grub_net_tcp_open): Use `established' as stop
9360 indicator.
9361 * grub-core/net/tftp.c (tftp_open): Use `have_oack' as stop indicator.
9362
9363 2012-06-09 Vladimir Serbinenko <phcoder@gmail.com>
9364
9365 Keep TX and RX buffers on EFI rather than always allocate new ones.
9366
9367 * include/grub/net.h (grub_net_card_driver): Allow driver to modify
9368 card. All users updated.
9369 (grub_net_card): New members txbuf, rcvbuf, rcvbufsize and txbusy.
9370 * grub-core/net/drivers/efi/efinet.c (send_card_buffer): Reuse buffer.
9371 (get_card_packet): Likewise.
9372 (grub_efinet_findcards): Init new fields.
9373
9374 2012-06-09 Vladimir Serbinenko <phcoder@gmail.com>
9375
9376 * grub-core/term/ieee1275/serial.c (do_real_config): Fix cast to fix
9377 compilation error on sparc64.
9378
9379 2012-06-09 Vladimir Serbinenko <phcoder@gmail.com>
9380
9381 Use ITC on IA64 rather than broken routine based on daytime.
9382
9383 * grub-core/kern/efi/efi.c (grub_rtc_get_time_ms) [__ia64__]: Remove on
9384 ia64.
9385 (grub_get_rtc) [__ia64__]: Likewise.
9386 * grub-core/kern/ia64/efi/init.c (divisor): New variable.
9387 (get_itc): New function.
9388 (grub_rtc_get_time_ms): Likewise.
9389 (grub_machine_init): Calibrate ITC.
9390 * include/grub/efi/time.h (grub_get_rtc), (GRUB_TICKS_PER_SECOND):
9391 Keep only on non-ia64. Don't export since it's broken and used only
9392 if TSC is unavailable.
9393
9394 2012-06-09 Vladimir Serbinenko <phcoder@gmail.com>
9395
9396 * grub-core/disk/efi/efidisk.c (find_parent_device): Return the parent
9397 even if it's used.
9398 (name_devices): Replace #if 0 with #ifdef DEBUG_NAMES.
9399 Skip if parent is unused.
9400
9401 2012-06-08 Vladimir Serbinenko <phcoder@gmail.com>
9402
9403 * tests/partmap_test.in: Skip on ppc due to serious firmware bug.
9404
9405 2012-06-08 Vladimir Serbinenko <phcoder@gmail.com>
9406
9407 Fix wildcard escaping.
9408
9409 * grub-core/commands/wildcard.c (wildcard_escape): Moved from here ...
9410 * grub-core/script/execute.c (wildcard_escape): .. to here.
9411 Don't escape dot.
9412 * grub-core/commands/wildcard.c (wildcard_unescape): Moved from here ...
9413 * grub-core/script/execute.c (wildcard_unescape): .. to here.
9414 Don't escape dot.
9415 * grub-core/script/execute.c (gettext_append): Always escape.
9416 (grub_script_arglist_to_argv): Always handle escaping/unescaping.
9417 * grub-core/script/yylex.l: Don't cut away the escaping.
9418 * tests/grub_script_echo1.in: Add tests with wildcard.
9419
9420 2012-06-08 Vladimir Serbinenko <phcoder@gmail.com>
9421
9422 * grub-core/bus/usb/serial/ftdi.c (real_config): Handle 1.5 stop bits.
9423 (ftdi_hw_configure): Likewise.
9424 * grub-core/bus/usb/serial/pl2303.c (GRUB_PL2303_STOP_BITS_1_5): New
9425 define.
9426 (real_config): Handle 1.5 stop bits.
9427 (pl2303_hw_configure): Likewise.
9428
9429 2012-06-08 Vladimir Serbinenko <phcoder@gmail.com>
9430
9431 * Makefile.am: Add ppc linux bootcheck.
9432 * grub-core/tests/boot/linux-ppc.cfg: New file.
9433 * grub-core/tests/boot/linux.init-ppc.S: Likewise.
9434
9435 2012-06-08 Vladimir Serbinenko <phcoder@gmail.com>
9436
9437 * tests/grub_script_expansion.in: Skip network protocols.
9438
9439 2012-06-08 Vladimir Serbinenko <phcoder@gmail.com>
9440
9441 * tests/util/grub-shell.in: Use escc-ch-a port on ppc.
9442
9443 2012-06-08 Vladimir Serbinenko <phcoder@gmail.com>
9444
9445 * util/powerpc/ieee1275/grub-mkrescue.in: Handle (and ignore)
9446 --rom-directory.
9447 Add -graft-points.
9448
9449 2012-06-08 Vladimir Serbinenko <phcoder@gmail.com>
9450
9451 ESCC serial driver for conducting sautomated tests in qemu.
9452 Not tested on real hardware.
9453
9454 * include/grub/serial.h (grub_serial_port): New field escc_desc.
9455 * grub-core/term/ieee1275/escc.c: New file.
9456 * grub-core/Makefile.core.def (escc): New module.
9457
9458 2012-06-08 Vladimir Serbinenko <phcoder@gmail.com>
9459
9460 * grub-core/term/ieee1275/serial.c (do_real_config): Set handle to
9461 invalid on error.
9462 (serial_hw_fetch): Don't read invalid handle.
9463 (serial_hw_put): Don't write into invalid handle.
9464
9465 2012-06-08 Vladimir Serbinenko <phcoder@gmail.com>
9466
9467 Add a 1.5 stop bits value.
9468
9469 * grub-core/term/serial.c (grub_cmd_serial): Handle 1.5.
9470 * include/grub/serial.h (grub_serial_stop_bits_t): Add
9471 GRUB_SERIAL_STOP_BITS_1_5.
9472
9473 2012-06-08 Vladimir Serbinenko <phcoder@gmail.com>
9474
9475 * grub-core/commands/wildcard.c (wildcard_expand): Set default return
9476 value rather than let it uninited.
9477
9478 2012-06-07 Vladimir Serbinenko <phcoder@gmail.com>
9479
9480 * grub-core/commands/wildcard.c (+check_file): New function.
9481 (wildcard_expand): Don't expand to non-existing files, expand with
9482 suffix and not attempt to expand if not needed.
9483
9484 2012-06-07 Vladimir Serbinenko <phcoder@gmail.com>
9485
9486 * grub-core/disk/efi/efidisk.c (name_devices): Don't make disks
9487 out of partitions containing other partitions.
9488
9489 2012-06-07 Vladimir Serbinenko <phcoder@gmail.com>
9490
9491 Pass PCIINFO on BIOS to OpenBSD since otherwise it fails to boot
9492 on some qemu versions with GRUB.
9493
9494 * include/grub/i386/openbsd_bootarg.h (OPENBSD_BOOTARG_PCIBIOS): New
9495 define.
9496 (grub_openbsd_bootarg_pcibios): New struct.
9497 * grub-core/loader/i386/bsd.c (grub_openbsd_boot) [GRUB_MACHINE_PCBIOS]:
9498 Add PCIINFO.
9499
9500 2012-06-07 Vladimir Serbinenko <phcoder@gmail.com>
9501
9502 * tests/util/grub-shell.in: Trim firmware output on EFI.
9503
9504 2012-06-07 Vladimir Serbinenko <phcoder@gmail.com>
9505
9506 * grub-core/Makefile.core.def (vga_text): Disable on muliboot
9507 and coreboot since it's already in kernel.
9508
9509 2012-06-07 Vladimir Serbinenko <phcoder@gmail.com>
9510
9511 * util/getroot.c (grub_util_get_dm_node_linear_info): Moved from here...
9512 * grub-core/kern/emu/hostdisk.c (grub_util_get_dm_node_linear_info):
9513 to here. New return value start. All users updated.
9514 Recursively scan linear mappings.
9515 * include/grub/emu/hostdisk.h (grub_util_get_dm_node_linear_info): New
9516 proto.
9517 * grub-core/kern/emu/hostdisk.c (grub_hostdisk_find_partition_start):
9518 Use grub_util_get_dm_node_linear_info.
9519 * util/getroot.c (convert_system_partition_to_system_disk): Use
9520 grub_util_info rather than grub_dprintf.
9521 (grub_util_biosdisk_get_grub_dev): Add a new grub_util_info.
9522
9523 2012-06-07 Vladimir Serbinenko <phcoder@gmail.com>
9524
9525 Move handling of GRUB_QEMU_OPTS to grub-shell so that make check works.
9526
9527 * Makefile.am: Remove GRUB_QEMU_OPTS handling.
9528 * tests/util/grub-shell.in: Add GRUB_QEMU_OPTS handling.
9529
9530 2012-06-07 Vladimir Serbinenko <phcoder@gmail.com>
9531
9532 * include/grub/types.h (grub_set_unaligned64): New function.
9533 * util/grub-setup.c (write_rootdev): Use unaligned access functions.
9534 (setup): Likewise.
9535
9536 2012-06-06 Vladimir Serbinenko <phcoder@gmail.com>
9537
9538 * grub-core/disk/ieee1275/ofdisk.c (quiesce): New function.
9539 (grub_ofdisk_fini): Quiesce USB devices.
9540
9541 2012-06-06 Vladimir Serbinenko <phcoder@gmail.com>
9542
9543 * grub-core/loader/powerpc/ieee1275/linux.c (grub_linux_boot): Sync
9544 caches.
9545
9546 2012-06-06 Vladimir Serbinenko <phcoder@gmail.com>
9547
9548 * util/grub-fstest.c (cmd_crc): Use grub_get_unaligned32 for safety.
9549
9550 2012-06-06 Vladimir Serbinenko <phcoder@gmail.com>
9551
9552 * grub-core/disk/pata.c (grub_pata_pio_read)
9553 [GRUB_MACHINE_MIPS_QEMU_MIPS]: Don't byteswap even on mipseb.
9554 (grub_pata_pio_write) [GRUB_MACHINE_MIPS_QEMU_MIPS]: Likewise.
9555
9556 2012-06-06 Vladimir Serbinenko <phcoder@gmail.com>
9557
9558 Extend automated tests to qemu-mips.
9559
9560 * Makefile.am: reorganise tests and enable qemu-mips.
9561 * configure.ac (COND_mipseb), (COND_mipsel): New conditions.
9562 * grub-core/tests/boot/linux.init-mips.S: New file.
9563 * tests/partmap_test.in: Handle ata0 disks.
9564 * tests/util/grub-shell.in: Handle qemu-mips. Make defaults work on
9565 non-pc i386.
9566
9567 2012-06-06 Vladimir Serbinenko <phcoder@gmail.com>
9568
9569 * Makefile.util.def (grub-mkrescue) Anable on mips_qemu_mips and
9570 ia64.
9571 * util/grub-mkrescue.in: Handle qemu-mips and ia64. Add missing
9572 quotes while on it.
9573
9574 2012-06-06 Vladimir Serbinenko <phcoder@gmail.com>
9575
9576 * grub-core/kern/mips/qemu_mips/init.c (grub_exit): Implement.
9577 (grub_halt): Likewise.
9578 * grub-core/lib/mips/qemu_mips/reboot.c (grub_reboot): Likewise.
9579
9580 2012-06-06 Vladimir Serbinenko <phcoder@gmail.com>
9581
9582 * grub-core/term/serial.c (grub_serial_register)
9583 [GRUB_MACHINE_MIPS_QEMU_MIPS]: Don't autostart console in order to bring
9584 the behaviour in line with x86 platforms.
9585
9586 2012-06-06 Vladimir Serbinenko <phcoder@gmail.com>
9587
9588 * grub-core/commands/hdparm.c (le16_to_char): Always byte-swap strings.
9589 (grub_ata_strncpy): Likewise.
9590 (grub_ata_identify): Add missing byteswaps.
9591
9592 2012-06-06 Vladimir Serbinenko <phcoder@gmail.com>
9593
9594 * grub-core/term/i386/pc/vga_text.c (screen_write_char): Add missing
9595 byte-swap.
9596 (screen_read_char): Likewise.
9597 (grub_vga_text_cls): Likewise.
9598
9599 2012-06-06 Vladimir Serbinenko <phcoder@gmail.com>
9600
9601 * grub-core/loader/efi/chainloader.c (copy_file_path): Handle non-ASCII
9602 filenames.
9603 (make_file_path): Likewise.
9604
9605 2012-06-06 Vladimir Serbinenko <phcoder@gmail.com>
9606
9607 * grub-core/disk/ieee1275/ofdisk.c (scan): Support vscsi on IBM
9608 machines.
9609 Tested by: Paulo Flabiano Smorigo.
9610 Crucial information about API supplied by: Coleen <Last name unknown>.
9611 Reviewed by: Coleen <Last name unknown>.
9612
9613 2012-06-05 Vladimir Serbinenko <phcoder@gmail.com>
9614
9615 * util/grub-mkimage.c: Disable -Wcast-align.
9616
9617 2012-06-05 Vladimir Serbinenko <phcoder@gmail.com>
9618
9619 * grub-core/genmod.sh.in: Enable objconv errors 2030, 2050 and 2031
9620 as they are fatal.
9621
9622 2012-06-05 Vladimir Serbinenko <phcoder@gmail.com>
9623
9624 * grub-core/Makefile.am (rs_decoder.S): Add missing -ffreestanding.
9625
9626 2012-06-05 Vladimir Serbinenko <phcoder@gmail.com>
9627
9628 * util/grub-probe.c (escape_of_path): Fix double free.
9629
9630 2012-06-05 Vladimir Serbinenko <phcoder@gmail.com>
9631
9632 * grub-core/commands/videoinfo.c (hook): Show pitch.
9633
9634 2012-06-05 Vladimir Serbinenko <phcoder@gmail.com>
9635
9636 * util/grub.d/20_linux_xen.in: Skip xen-syms.
9637
9638 2012-06-05 Vladimir Serbinenko <phcoder@gmail.com>
9639
9640 * util/grub-probe.c (escape_of_path): Don't add ieee1275/.
9641 (probe): Add ieee1275 to OFW devices.
9642
9643 2012-06-04 Vladimir Serbinenko <phcoder@gmail.com>
9644
9645 * util/ieee1275/ofpath.c (of_path_of_scsi): Fix wrong format specifier.
9646
9647 2012-06-04 Vladimir Serbinenko <phcoder@gmail.com>
9648
9649 Handle IBM OFW path.
9650
9651 * util/ieee1275/ofpath.c (find_obppath): Use devspec if obppath isn't
9652 available.
9653 (of_path_of_scsi): Handle vdevice.
9654
9655 2012-06-03 Vladimir Serbinenko <phcoder@gmail.com>
9656
9657 * grub-core/mmap/i386/pc/mmap.c (malloc_hook):
9658 Allocate in multiples of 16 to avoid adding a few bytes free region the
9659 windows bugs upon.
9660
9661 2012-06-03 Vladimir Serbinenko <phcoder@gmail.com>
9662
9663 * grub-core/commands/i386/pc/drivemap.c (install_int13_handler):
9664 Allocate in multiples of 16 to avoid adding a few bytes free region the
9665 windows bugs upon.
9666 * grub-core/mmap/i386/pc/mmap.c (malloc_hook): Likewise.
9667
9668 2012-06-02 Vladimir Serbinenko <phcoder@gmail.com>
9669
9670 * grub-core/video/efi_gop.c (grub_video_gop_setup): Reject invalid
9671 resolutions.
9672 * grub-core/video/i386/pc/vbe.c (grub_vbe_get_preferred_mode): Likewise.
9673 * grub-core/video/video.c (grub_video_edid_preferred_mode): Likewise.
9674
9675 2012-06-02 Isao Shimizu <isaoshimizu@gmail.com>
9676
9677 * util/ieee1275/ofpath.c (check_sas): Fix sas path.
9678
9679 2012-06-02 Vladimir Serbinenko <phcoder@gmail.com>
9680
9681 * grub-core/normal/menu_entry.c (print_line): Fix off-by-one error which
9682 resulted in \\ at the end of the line.
9683
9684 2012-06-02 Vladimir Serbinenko <phcoder@gmail.com>
9685
9686 * grub-core/kern/parser.c (grub_parser_state_transitions): Handle \t.
9687 (grub_parser_cmdline_state): Likewise.
9688 (grub_parser_split_cmdline): Likewise.
9689
9690 2012-06-02 Vladimir Serbinenko <phcoder@gmail.com>
9691
9692 * util/getroot.c (grub_guess_root_devices): Don't canonicalise
9693 /dev/root and /dev/dm-*.
9694
9695 2012-06-02 Vladimir Serbinenko <phcoder@gmail.com>
9696
9697 * grub-core/normal/menu_entry.c (update_screen): Fix loop condition to
9698 fix partially stale display.
9699
9700 2012-06-02 Vladimir Serbinenko <phcoder@gmail.com>
9701
9702 * grub-core/normal/menu_entry.c (backward_char): Use right line for
9703 substraction.
9704
9705 2012-06-02 Vladimir Serbinenko <phcoder@gmail.com>
9706
9707 * grub-core/kern/emu/hostdisk.c (grub_util_biosdisk_write) [__linux__]:
9708 Fix MBR remapping workaround.
9709 (grub_util_biosdisk_read) [__linux__]: Likewise.
9710
9711 2012-06-01 Vladimir Serbinenko <phcoder@gmail.com>
9712
9713 * util/grub-install.in: Check for ieee1275 and not ieee1276.
9714
9715 2012-05-31 Vladimir Serbinenko <phcoder@gmail.com>
9716
9717 * configure.ac: Bump to beta6.
9718
9719 2012-05-31 Christer Weinigel <christer@weinigel.se>
9720
9721 * grub-core/normal/main.c (grub_file_getline): Fix off-by-one error.
9722
9723 2012-05-31 Vladimir Serbinenko <phcoder@gmail.com>
9724
9725 * grub-core/loader/i386/linux.c (grub_linux_boot): Use right version.
9726 (grub_cmd_linux): Likewise.
9727
9728 2012-05-31 Christer Weinigel <christer@weinigel.se>
9729
9730 Fix EHCI low-speed.
9731
9732 * grub-core/bus/usb/ehci.c (GRUB_EHCI_MULT_ONE): Fix the value.
9733 (GRUB_EHCI_MULT_TWO): Likewise.
9734 (GRUB_EHCI_MULT_THREE): Likewise.
9735 (GRUB_EHCI_CMASK_MASK): New enum value.
9736 (GRUB_EHCI_SMASK_MASK): Likewise.
9737 (GRUB_EHCI_CMASK_OFF): Likewise.
9738 (GRUB_EHCI_SMASK_OFF): Likewise.
9739 (grub_ehci_pci_iter): Enable periodic schedule.
9740 (grub_ehci_parse_notrun): Likewise.
9741 (grub_ehci_restore_hw): Likewise.
9742 (grub_ehci_setup_qh): Set flags for low speed transfers.
9743 (grub_ehci_find_qh): Use periodic list for low speed.
9744 (grub_ehci_setup_transfer): Check periodic queue as well.
9745 (grub_ehci_check_transfer): Likewise.
9746 (grub_ehci_cancel_transfer): Cancel periodic transfer.
9747
9748 2012-05-31 Paulo Flabiano Smorigo <pfsmorigo@br.ibm.com>
9749
9750 * util/grub-install.in: Write core.elf in PReP even if the --no-nvram
9751 parameter is used.
9752
9753 2012-05-31 Peter Jones <pjones@redhat.com>
9754
9755 * include/grub/i386/linux.h (linux_kernel_params): Add v206.
9756 * grub-core/loader/i386/linux.c (grub_linux_boot): Use v206.
9757 (grub_cmd_linux) [__x86_64__]: Validate grub_efi_system_table.
9758
9759 2012-05-31 Vladimir Serbinenko <phcoder@gmail.com>
9760
9761 * grub-core/loader/i386/linux.c (grub_linux_boot): Fix overflow and
9762 uninited variable. Allocate at least setup_sects.
9763
9764 2012-05-30 Vladimir Serbinenko <phcoder@gmail.com>
9765
9766 Fix handling of EFI with big memory maps.
9767
9768 * grub-core/loader/i386/linux.c (GRUB_LINUX_CL_OFFSET): Removed.
9769 (real_mode_mem): Likewise.
9770 (real_mode_target): Likewise.
9771 (real_mode_pages): Likewise.
9772 (prot_mode_pages): Likewise.
9773 (linux_params): New var.
9774 (linux_cmdline): Likewise.
9775 (free_pages): Don't set real mode variables.
9776 (allocate_pages): Don't allocate real mode memory.
9777 (grub_e820_add_region): Remove the limit.
9778 (grub_linux_boot): Allocate and copy real mode memory.
9779 (grub_linux_unload): Free linux_cmdline.
9780 (grub_cmd_linux): Use temporary storage for parameters.
9781 (grub_cmd_initrd): Likewise.
9782 * include/grub/i386/linux.h (GRUB_E820_MAX_ENTRY): Removed.
9783 (linux_kernel_params): Make it 1K big.
9784
9785 2012-05-30 Vladimir Serbinenko <phcoder@gmail.com>
9786
9787 * Makefile.util.def: Remove -Wno-format.
9788 * grub-core/Makefile.core.def: Likewise.
9789
9790 2012-05-30 Vladimir Serbinenko <phcoder@gmail.com>
9791
9792 * tests/cmp_unit_test.c: Add missing failure message.
9793 * tests/example_unit_test.c: Likewise.
9794 * tests/printf_unit_test.c: Likewise.
9795
9796 2012-05-30 Vladimir Serbinenko <phcoder@gmail.com>
9797
9798 * grub-core/commands/gptsync.c (grub_cmd_gptsync): Propagate the
9799 relaxation of protective MBR requirements.
9800
9801 2012-05-29 Vladimir Serbinenko <phcoder@gmail.com>
9802
9803 * configure.ac: Add condition for COND_HOST_XNU.
9804 * Makefile.util.def (10_xnu): New script.
9805 * util/grub.d/10_xnu.in: New file, extracted from 30_os_prober.in.
9806
9807 2012-05-29 Vladimir Serbinenko <phcoder@gmail.com>
9808
9809 * grub-core/kern/i386/pc/startup.S [__APPLE__]: Add a workaround for
9810 objconv bug.
9811
9812 2012-05-29 Vladimir Serbinenko <phcoder@gmail.com>
9813
9814 * grub-core/gdb/i386/machdep.S: Make usable with Apple assembler.
9815 Binary on other platforms stays identical.
9816
9817 2012-05-28 Vladimir Serbinenko <phcoder@gmail.com>
9818
9819 * configure.ac: Remove APPLE_CC and add -Wl,-allow_stack_execute on
9820 Apple.
9821
9822 2012-05-28 Vladimir Serbinenko <phcoder@gmail.com>
9823
9824 * gentpl.py: Ignore error 2022 in objconv since it's irrelevant for us.
9825
9826 2012-05-28 Vladimir Serbinenko <phcoder@gmail.com>
9827
9828 * grub-core/lib/posix_wrap/sys/types.h [__APPLE__]: Include stddef
9829 rather than defining size_t ourselves to avoid conflict.
9830
9831 2012-05-28 Vladimir Serbinenko <phcoder@gmail.com>
9832
9833 * grub-core/fs/hfs.c (grub_hfs_dir): Use memset instead of
9834 initialisation to avoid __bzero reference.
9835
9836 2012-05-28 Vladimir Serbinenko <phcoder@gmail.com>
9837
9838 * grub-core/boot/i386/pc/startup_raw.S [__APPLE__]: Add Apple assembly
9839 version.
9840 * grub-core/commands/i386/pc/drivemap_int13h.S [__APPLE__]: Likewise.
9841 * grub-core/kern/i386/pc/startup.S [__APPLE__]: Likewise.
9842 * grub-core/lib/i386/relocator16.S [__APPLE__]: Likewise.
9843 * grub-core/lib/i386/relocator_common.S [__APPLE__]: Likewise.
9844 * grub-core/mmap/i386/pc/mmap_helper.S [__APPLE__]: Likewise.
9845
9846 2012-05-28 Vladimir Serbinenko <phcoder@gmail.com>
9847
9848 * grub-core/efiemu/runtime/efiemu.c: Replace APPLE_CC with __APPLE__.
9849 * grub-core/kern/misc.c: Likewise.
9850 * grub-core/loader/i386/xnu.c: Likewise.
9851 * include/grub/i386/tsc.h: Likewise.
9852 * include/grub/symbol.h: Likewise.
9853
9854 2012-05-28 Vladimir Serbinenko <phcoder@gmail.com>
9855
9856 * include/grub/list.h (grub_bad_type_cast_real): Remove return.
9857 * include/grub/misc.h (ATTRIBUTE_ERROR): Make into noreturn attribute
9858 on older compiler.
9859
9860 2012-05-28 Vladimir Serbinenko <phcoder@gmail.com>
9861
9862 * util/getroot.c (grub_util_biosdisk_get_grub_dev) [__APPLE__]:
9863 Implement Apple flavour.
9864 (convert_system_partition_to_system_disk) [__APPLE__]: Likewise.
9865
9866 2012-05-28 Vladimir Serbinenko <phcoder@gmail.com>
9867
9868 * include/grub/misc.h (memcmp) [__APPLE__]: Mark as regparm 0.
9869 (memmove) [__APPLE__]: Likewise.
9870 (memcpy) [__APPLE__]: Likewise.
9871 (memset) [__APPLE__]: Likewise.
9872 * grub-core/kern/misc.c (memcmp) [__APPLE__]: Likewise.
9873 (memmove) [__APPLE__]: Likewise.
9874 (memcpy) [__APPLE__]: Likewise.
9875 (memset) [__APPLE__]: Likewise.
9876
9877 2012-05-28 Vladimir Serbinenko <phcoder@gmail.com>
9878
9879 * grub-core/genmod.sh.in: Fix a bug in Apple part which caused
9880 dependency discard.
9881
9882 2012-05-27 Vladimir Serbinenko <phcoder@gmail.com>
9883
9884 * grub-core/normal/main.c (read_config_file): Provide config_file and
9885 config_directory.
9886 * util/grub.d/41_custom.in: Use config_directoy when available.
9887
9888 2012-05-27 Vladimir Serbinenko <phcoder@gmail.com>
9889
9890 * grub-core/fs/bfs.c (iterate_in_b_tree): Add missing NESTED_FUNC_ATTR.
9891 (grub_bfs_dir): Likewise.
9892
9893 2012-05-27 Peter Jones <pjones@redhat.com>
9894
9895 The old code gives arguments to a printf function which can't work
9896 correctly, and the compiler complains.
9897
9898 * grub-core/tests/example_functional_test.c (example_test): Add
9899 missing text.
9900 * grub-core/tests/lib/test.c (add_failure): Rewrite.
9901 * include/grub/test.h (grub_test_assert_helper): New declaration.
9902 (grub_test_assert): Use grub_test_assert_helper.
9903
9904 2012-05-27 Vladimir Serbinenko <phcoder@gmail.com>
9905
9906 * grub-core/Makefile.core.def (example_functional_test): Rename to ...
9907 (exfctest): ... this to avoid overlong filenames.
9908 All users updated.
9909
9910 2012-05-27 Vladimir Serbinenko <phcoder@gmail.com>
9911
9912 Handle "." and ".." on squashfs.
9913
9914 * grub-core/fs/squash4.c (grub_fshelp_node): New field stsize.
9915 Make inode numbers into stack.
9916 (grub_squash_read_symlink): Use stack.
9917 (grub_squash_iterate_dir): Use stack. Create "." and ".." nodes.
9918 (make_root_node): Fill stack.
9919 (grub_squash_open): Use stack.
9920
9921 2012-05-27 Vladimir Serbinenko <phcoder@gmail.com>
9922
9923 * grub-core/kern/emu/hostdisk.c (open_device): Set dest->dev to 0 after
9924 freeing.
9925
9926 2012-05-27 Vladimir Serbinenko <phcoder@gmail.com>
9927
9928 * util/grub-mkconfig_lib.in (print_option_help): Properly redirect
9929 stderr on test calls.
9930
9931 2012-05-27 Vladimir Serbinenko <phcoder@gmail.com>
9932
9933 * grub-core/fs/jfs.c (grub_jfs_find_file): Handle "." and "..".
9934
9935 2012-05-27 Vladimir Serbinenko <phcoder@gmail.com>
9936
9937 * grub-core/fs/ntfs.c (list_file): Set mtime to correct value.
9938
9939 2012-05-27 Vladimir Serbinenko <phcoder@gmail.com>
9940
9941 * grub-core/fs/iso9660.c (grub_iso9660_iterate_dir): Don't skip "." and
9942 "..".
9943
9944 2012-05-27 Vladimir Serbinenko <phcoder@gmail.com>
9945
9946 * grub-core/fs/hfsplus.c (grub_hfsplus_catfile): New field parentid.
9947 (grub_hfsplus_iterate_dir): Add "." and "..".
9948
9949 2012-05-27 Vladimir Serbinenko <phcoder@gmail.com>
9950
9951 * grub-core/fs/cpio.c (canonicalize): Handle "..".
9952 (grub_cpio_find_file) [MODE_USTAR]: Handle hardlinks.
9953
9954 2012-05-27 Vladimir Serbinenko <phcoder@gmail.com>
9955
9956 * grub-core/fs/btrfs.c (GRUB_BTRFS_ITEM_TYPE_INODE_REF): New enum value.
9957 (find_path): Handle "." and "..".
9958
9959 2012-05-27 Vladimir Serbinenko <phcoder@gmail.com>
9960
9961 * grub-core/fs/affs.c (grub_affs_file): New field hardlink.
9962 (GRUB_AFFS_FILETYPE_HARDLINK): New enum value.
9963 (grub_affs_iterate_dir): Handle hardlinks.
9964
9965 2012-05-26 Matthew Garrett <mjg@redhat.com>
9966
9967 * grub-core/term/efi/console.c (grub_efi_console_init): Set text mode.
9968 (grub_efi_console_fini): Likewise.
9969 * grub-core/video/efi_gop.c (framebuffer): New field offscreen.
9970 (grub_video_gop_fill_mode_info): Rename to ...
9971 (grub_video_gop_fill_real_mode_info): ... this.
9972 (grub_video_gop_fill_mode_info): New function.
9973 (grub_video_gop_setup): Setup double framebuffer.
9974 (grub_video_gop_get_info_and_fini): Use original framebuffer.
9975 Free offscreen.
9976 (grub_video_gop_swap_buffers): Copy framebuffer.
9977 (grub_video_gop_fini): Free offscreen buffer.
9978 * include/grub/efi/graphics_output.h (grub_efi_gop_blt_operation_t):
9979 New enum.
9980 (grub_efi_gop_blt_pixel): New struct.
9981
9982 2012-05-26 Vladimir Serbinenko <phcoder@gmail.com>
9983
9984 * gentpl.py: Remove error disabling for objconv.
9985
9986 2012-05-26 Vladimir Serbinenko <phcoder@gmail.com>
9987
9988 * configure.ac: Remove -Wunitialized as it's not available on older
9989 compilers.
9990
9991 2012-05-26 Vladimir Serbinenko <phcoder@gmail.com>
9992
9993 Fix extent overflow comparator.
9994
9995 * grub-core/fs/hfsplus.c (grub_hfsplus_extkey_internal): Add type.
9996 (grub_hfsplus_read_block): Set type.
9997 (grub_hfsplus_cmp_extkey): Compare type.
9998
9999 2012-05-25 Vladimir Serbinenko <phcoder@gmail.com>
10000
10001 * util/grub-fstest.c (cmd_cmp): Fix stat'ing of wrong file.
10002
10003 2012-05-24 Vladimir Serbinenko <phcoder@gmail.com>
10004
10005 * grub-core/fs/hfsplus.c (grub_hfsplus_label): Use found ptr rather
10006 than 0.
10007
10008 2012-05-24 Vladimir Serbinenko <phcoder@gmail.com>
10009
10010 * Makefile.am (starfield_DATA): Add dejavu_bold_14.pf2.
10011 (dejavu_bold_14.pf2): New target.
10012
10013 2012-05-24 Vladimir Serbinenko <phcoder@gmail.com>
10014
10015 * configure.ac: Fix djvu font detection.
10016
10017 2012-05-23 Vladimir Serbinenko <phcoder@gmail.com>
10018
10019 * grub-core/normal/misc.c (grub_normal_print_device_info): Dsiplay
10020 ext* instead of ext2.
10021
10022 2012-05-23 Vladimir Serbinenko <phcoder@gmail.com>
10023
10024 * grub-core/normal/term.c (read_terminal_list): Terminate the terminal
10025 name with \0.
10026
10027 2012-05-22 Jordan Uggla <jordan.uggla@gmail.com>
10028
10029 * docs/grub-dev.texi: Remove dot from .png.
10030
10031 2012-05-22 Vladimir Serbinenko <phcoder@gmail.com>
10032
10033 * grub-core/partmap/gpt.c (grub_gpt_partition_map_iterate): Accept
10034 protective entry in any slot.
10035 * grub-core/partmap/msdos.c (grub_partition_msdos_iterate): Reject
10036 if protective entry is found in any slot.
10037
10038 Protective entry in non-first slot make no sense but is a widespread
10039 brain damage.
10040
10041 2012-05-22 Vladimir Serbinenko <phcoder@gmail.com>
10042
10043 * grub-core/fs/squash4.c (grub_squash_read_data): Add missing byte-swap.
10044
10045 2012-05-22 Vladimir Serbinenko <phcoder@gmail.com>
10046
10047 * grub-core/fs/reiserfs.c (grub_reiserfs_iterate_dir): Fix size byteswap
10048 with old reiserfs.
10049 (grub_reiserfs_open): Don't free root.
10050
10051 2012-05-22 Vladimir Serbinenko <phcoder@gmail.com>
10052
10053 * grub-core/fs/fshelp.c (grub_fshelp_find_file): Set currnode to 0
10054 after freeing for safety.
10055
10056 2012-05-21 Vladimir Serbinenko <phcoder@gmail.com>
10057
10058 * grub-core/commands/sleep.c (do_print): Add missing grub_refresh.
10059 Reported by: Jordan Uggla.
10060
10061 2012-05-21 Jordan Uggla <jordan.uggla@gmail.com>
10062
10063 * docs/grub.texi Fix documentation of GRUB_HIDDEN_TIMOUNT to match the
10064 actual implementation. Specifically, clarify that the grub menu will
10065 be displayed for GRUB_TIMOUT seconds after the hidden timeout has
10066 passed.
10067
10068 2012-05-21 Benjamin Herrenschmidt <benh@kernel.crashing.org>
10069
10070 * grub-core/kern/powerpc/dl.c (trampoline_template): Use r12 instead
10071 of r0.
10072
10073 2012-05-21 Vladimir Serbinenko <phcoder@gmail.com>
10074
10075 Remove unjustified hard dependency of normal.mod on gfxterm.
10076
10077 * include/grub/term.h (grub_term_output): New member fullscreen.
10078 * include/grub/gfxterm.h (grub_gfxterm_fullscreen): Removed.
10079 * grub-core/term/gfxterm.c (grub_gfxterm_fullscreen): Make static.
10080 (grub_gfxterm): Set .fullscreen.
10081 * grub-core/normal/menu.c (menu_init): Use fullscreen.
10082 * grub-core/gfxmenu/gfxmenu.c (GRUB_MOD_INIT): Likewise.
10083
10084 2012-05-21 Vladimir Serbinenko <phcoder@gmail.com>
10085
10086 * docs/grub.texi (Internationalisation/Filesystems): Add precisions
10087 mentioning possible problems with non-ASCII (non-compliant) ISOs.
10088 Mention case-insensitive AFFS, SFS and JFS.
10089
10090 2012-05-21 Vladimir Serbinenko <phcoder@gmail.com>
10091
10092 * grub-core/fs/affs.c (grub_affs_mtime): Add missing grub_dl_ref.
10093
10094 2012-05-21 Vladimir Serbinenko <phcoder@gmail.com>
10095
10096 * grub-core/kern/fs.c (grub_fs_probe): Handle GRUB_ERR_OUT_OF_RANGE as
10097 a bad FS.
10098
10099 2012-05-18 Vladimir Serbinenko <phcoder@gmail.com>
10100
10101 * grub-core/fs/iso9660.c (grub_iso9660_iterate_dir): Mark plain
10102 ISO9660 names as case-insensitive, lowercase it and remove trailing dot.
10103
10104 2012-05-17 Vladimir Serbinenko <phcoder@gmail.com>
10105
10106 * grub-core/fs/jfs.c (grub_jfs_data): New field caseins.
10107 (grub_jfs_mount): Fill caseins.
10108 (grub_jfs_find_file): Respect caseins.
10109
10110 2012-05-17 Vladimir Serbinenko <phcoder@gmail.com>
10111
10112 * grub-core/fs/iso9660.c (grub_iso9660_iterate_dir): Don't strrchr
10113 through UTF-16.
10114
10115 2012-05-17 Vladimir Serbinenko <phcoder@gmail.com>
10116
10117 * grub-core/fs/fat.c (grub_fat_find_dir): Fix error message.
10118 New argument origpath. All users updated.
10119
10120 2012-05-15 Vladimir Serbinenko <phcoder@gmail.com>
10121
10122 * grub-core/fs/ntfs.c (read_data): Prevent overflow.
10123 (read_attr): Ensure that we read start of possibly compressed block.
10124
10125 2012-05-15 Vladimir Serbinenko <phcoder@gmail.com>
10126
10127 * include/grub/ntfs.h (grub_ntfs_comp_table_element): New struct.
10128 (grub_ntfs_comp): Use grub_ntfs_comp_table_element for comp_table.
10129 All users updated.
10130
10131 2012-05-14 Vladimir Serbinenko <phcoder@gmail.com>
10132
10133 * Makefile.am (starfield_DATA): Replace dejavu.pf2 with dejavu_10.pf2,
10134 dejavu_12.pf2, dejavu_14.pf2 and dejavu_16.pf2.
10135 (dejavu.pf2): Replace with ...
10136 (dejavu_10.pf2), (dejavu_12.pf2), (dejavu_14.pf2), (dejavu_16.pf2):
10137 this.
10138
10139 2012-05-14 Vladimir Serbinenko <phcoder@gmail.com>
10140
10141 * util/grub.d/20_linux_xen.in: Add missing line.
10142
10143 2012-05-14 Vladimir Serbinenko <phcoder@gmail.com>
10144
10145 * include/grub/charset.h (GRUB_UTF16_UPPER_SURROGATE): Fix mask sizes.
10146 (GRUB_UTF16_LOWER_SURROGATE): Likewise.
10147 (grub_utf16_to_utf8): Likewise.
10148
10149 2012-05-13 Vladimir Serbinenko <phcoder@gmail.com>
10150
10151 * grub-core/disk/ieee1275/ofdisk.c (scan): Don't scan device tree if
10152 GRUB_IEEE1275_FLAG_NO_TREE_SCANNING_FOR_DISKS is set.
10153 * grub-core/kern/ieee1275/cmain.c (grub_ieee1275_find_options): Set
10154 GRUB_IEEE1275_FLAG_NO_TREE_SCANNING_FOR_DISKS on IBM hardware.
10155 * include/grub/ieee1275/ieee1275.h (grub_ieee1275_flag): New enum value
10156 GRUB_IEEE1275_FLAG_NO_TREE_SCANNING_FOR_DISKS.
10157
10158 2012-05-13 Vladimir Serbinenko <phcoder@gmail.com>
10159
10160 * grub-core/kern/fs.c (grub_fs_probe): Handle GRUB_ERR_OUT_OF_RANGE as
10161 a bad FS.
10162
10163 2012-05-13 Vladimir Serbinenko <phcoder@gmail.com>
10164
10165 * grub-core/fs/udf.c (read_string): Bail out on size=0.
10166 (grub_udf_read_symlink): Handle read_string failure.
10167
10168 2012-05-12 Vladimir Serbinenko <phcoder@gmail.com>
10169
10170 * grub-core/kern/emu/hostdisk.c (read_device_map): Improve TRANSLATORS
10171 comment.
10172
10173 2012-05-12 Vladimir Serbinenko <phcoder@gmail.com>
10174
10175 Fix handling of UDF symlinks.
10176
10177 * grub-core/fs/udf.c (read_string): New argument outbuf.
10178 All users updated.
10179 (grub_ufs_read_symlink): Rename to ...
10180 (grub_udf_read_symlink): ... this. All users updated.
10181 Handle symlinks with more than one component.
10182
10183 2012-05-12 Vladimir Serbinenko <phcoder@gmail.com>
10184
10185 * grub-core/fs/affs.c (grub_affs_read_symlink): Fix handling of long
10186 symlinks. Replace leading colon with a slash.
10187
10188 2012-05-12 Vladimir Serbinenko <phcoder@gmail.com>
10189
10190 * grub-core/fs/jfs.c (grub_jfs_find_file): Handle multiple slashes in
10191 filename.
10192
10193 2012-05-12 Vladimir Serbinenko <phcoder@gmail.com>
10194
10195 * grub-core/fs/bfs.c (find_in_b_tree) [MODE_AFS]: Fix handling of exact
10196 match in inner node.
10197
10198 2012-05-12 Vladimir Serbinenko <phcoder@gmail.com>
10199
10200 * grub-core/fs/bfs.c (mount): Improve filesystem detection reliability.
10201 * grub-core/fs/ext2.c (grub_ext2_mount): Likewise.
10202 * grub-core/fs/hfs.c (grub_hfs_mount): Likewise.
10203 * grub-core/fs/hfsplus.c (grub_hfsplus_mount): Likewise.
10204 * grub-core/fs/jfs.c (grub_jfs_mount): Likewise.
10205 * grub-core/fs/minix.c (grub_minix_mount): Likewise.
10206 * grub-core/fs/ntfs.c (grub_ntfs_mount): Likewise.
10207 * grub-core/fs/romfs.c (grub_romfs_mount): Likewise.
10208 * grub-core/fs/xfs.c (grub_xfs_mount): Likewise.
10209
10210 2012-05-11 Vladimir Serbinenko <phcoder@gmail.com>
10211
10212 Use grub-probe and not cmp to check that disk is empty.
10213
10214 * util/grub-install.in: Use grub-probe for zero-check.
10215 * util/grub-probe.c (PRINT_ZERO_CHECK): New enum value.
10216 (probe): Handle PRINT_ZERO_CHECK.
10217 (argp_parser): Handle -t zero_check.
10218
10219 2012-05-11 Vladimir Serbinenko <phcoder@gmail.com>
10220
10221 Flush block cache on adding disk to device map.
10222
10223 * grub-core/kern/emu/hostdisk.c (flush_initial_buffer): New function.
10224 (grub_hostdisk_os_dev_to_grub_drive): Call flush_initial_buffer on
10225 adding.
10226 (read_device_map): Likewise.
10227 (open_device): Flush on opening.
10228
10229 2012-05-10 Vladimir Serbinenko <phcoder@gmail.com>
10230
10231 * grub-core/fs/cpio.c (grub_cpio_find_file): Handle prefix.
10232 (handle_symlink): Fix off-by-one error.
10233 Canonicalize the target.
10234 (grub_cpio_dir): Canonicalize the name.
10235 Fix memory leak.
10236 Set directory.
10237 (grub_cpio_open): Canonicalize the name.
10238
10239 2012-05-10 Vladimir Serbinenko <phcoder@gmail.com>
10240
10241 * grub-core/fs/iso9660.c (grub_iso9660_iterate_dir): Fix symlink
10242 handling.
10243
10244 2012-05-10 Vladimir Serbinenko <phcoder@gmail.com>
10245
10246 * grub-core/fs/ufs.c (grub_ufs_find_file): Fix handling of double slash.
10247 * grub-core/fs/minix.c (grub_minix_find_file): Likewise.
10248
10249 2012-05-10 Vladimir Serbinenko <phcoder@gmail.com>
10250
10251 * util/grub-menulst2cfg.c (main): Check return value of fwrite.
10252 * util/grub-mklayout.c (write_file): Likewise. New argument fname.
10253 All users updated.
10254
10255 2012-05-10 Vladimir Serbinenko <phcoder@gmail.com>
10256
10257 * util/grub.d/20_linux_xen.in: Update initrd list based on 10_linux.in
10258 counterpart.
10259
10260 2012-05-10 Vladimir Serbinenko <phcoder@gmail.com>
10261
10262 Fix UFS1 big file support.
10263
10264 * grub-core/fs/ufs.c (INODE): Removed.
10265 (INODE_SIZE): Always use 64-bit byte-swap since size field is always
10266 64-bit.
10267 (INODE_MODE): Simplify.
10268 (grub_ufs_inode): Use uint64_t for size and not int64_t.
10269 (grub_ufs_lookup_symlink): Don't use INODE.
10270
10271 2012-05-09 Vladimir Serbinenko <phcoder@gmail.com>
10272
10273 Fix minixfs with non-power-of-two blocks since it's supported by minix.
10274
10275 * grub-core/fs/minix.c (GRUB_MINIX_ZONESZ): Use block_size.
10276 (grub_minix_data): Replace log_block_size with block_size.
10277 (grub_minix_read_file): Use block_size but avoid 64-bit division.
10278 (grub_minix_mount): Fill block_size.
10279
10280 2012-05-09 Vladimir Serbinenko <phcoder@gmail.com>
10281
10282 * configure.ac: Bump to beta5.
10283
10284 2012-05-09 Vladimir Serbinenko <phcoder@gmail.com>
10285
10286 Fix wrapped HFS+ handling.
10287
10288 * grub-core/fs/fshelp.c (grub_fshelp_read_file): New argument
10289 blocks_start. All users updated.
10290 * grub-core/fs/hfsplus.c (grub_hfsplus_read_block): Don't add
10291 wrapping offset.
10292 (grub_hfsplus_read_file): Pass embedding offset to fshelp_read_file.
10293
10294 2012-05-09 Vladimir Serbinenko <phcoder@gmail.com>
10295
10296 Fix long symlinks on reiserfs.
10297
10298 * grub-core/fs/reiserfs.c (grub_fshelp_node): New field size.
10299 (grub_reiserfs_read_symlink): Use grub_reiserfs_read_real.
10300 (grub_reiserfs_iterate_dir): Save size for non-directories.
10301 (grub_reiserfs_open): Don't reread stat block as we already know the
10302 size.
10303 (grub_reiserfs_read): Split into...
10304 (grub_reiserfs_read_real): ... and ...
10305 (grub_reiserfs_read): ...this.
10306
10307 2012-05-09 Vladimir Serbinenko <phcoder@gmail.com>
10308
10309 Fix non-indexed JFS.
10310
10311 * grub-core/fs/jfs.c (grub_jfs_sblock): New field flags.
10312 (grub_jfs_data): New field namecomponentlen.
10313 (grub_jfs_mount): Fill namecomponentlen.
10314 (grub_jfs_getent): Use namecomponentlen rather than hardcoded 11.
10315
10316 2012-05-08 Vladimir Serbinenko <phcoder@gmail.com>
10317
10318 * grub-core/script/yylex.l: Ugly fix for "\\\n ".
10319 * tests/grub_script_echo1.in: Add tests.
10320
10321 2012-05-08 Vladimir Serbinenko <phcoder@gmail.com>
10322
10323 * util/grub-install.in: Ignore empty devicetree directory.
10324
10325 2012-05-08 Bean <bean123ch@gmail.com>
10326
10327 * grub-core/net/ip.c (reassemble): Make asm_buffer into asm_netbuff.
10328 All users updated.
10329 (free_rsm): Free header as well.
10330 (free_old_fragments): Fix memory leak.
10331 * grub-core/net/netbuff.c (grub_netbuff_free): Make return void.
10332 * grub-core/net/tftp.c (tftp_receive): Fix memory leak.
10333 (destroy_pq): Likewise.
10334 * include/grub/net/netbuff.h (grub_netbuff_free): Make return void.
10335
10336 2012-05-08 Vladimir Serbinenko <phcoder@gmail.com>
10337
10338 * grub-core/commands/hashsum.c (grub_cmd_hashsum): Align space for
10339 resulting hash as a precaution.
10340
10341 2012-05-08 Vladimir Serbinenko <phcoder@gmail.com>
10342
10343 * grub-core/net/bootp.c (set_env_limn_ro): Replace reserved ':' with
10344 '_' in variable names.
10345 * grub-core/net/net.c (grub_net_network_level_interface_register):
10346 Likewise.
10347
10348 2012-05-08 Vladimir Serbinenko <phcoder@gmail.com>
10349
10350 Fix AFFS with non-512B blocks.
10351
10352 * grub-core/fs/affs.c (grub_affs_rblock): Make type uint32_t.
10353 (AFFS_MAX_LOG_BLOCK_SIZE): New definition.
10354 (grub_affs_data): Replace blocksize with log_blocksize.
10355 (grub_affs_read_block): Fix non-512B blocks.
10356 (grub_affs_read_symlink): Likewise.
10357 (grub_affs_iterate_dir): Likewise. Fix freeing corruption.
10358 (grub_affs_read): Fix non-512B blocks.
10359 (grub_affs_label): Likewise.
10360 (grub_affs_mtime): Likewise.
10361 (grub_affs_mount): Fix block detection routine.
10362
10363 2012-05-08 Vladimir Serbinenko <phcoder@gmail.com>
10364
10365 Add filesystem mtime to AFFS.
10366
10367 * grub-core/fs/affs.c (grub_affs_file): Make type unsigned.
10368 (aftime2ctime): New function.
10369 (grub_affs_dir): Use aftime2ctime.
10370 (grub_affs_label): Fix return value.
10371 (grub_affs_mtime): New function.
10372 (grub_affs_fs): Add mtime.
10373
10374 2012-05-07 Vladimir Serbinenko <phcoder@gmail.com>
10375
10376 * grub-core/fs/affs.c (grub_affs_read_symlink): Convert latin1 into
10377 UTF-8.
10378
10379 2012-05-07 Vladimir Serbinenko <phcoder@gmail.com>
10380
10381 * grub-core/fs/sfs.c (grub_sfs_read_symlink): Convert latin1 into
10382 UTF-8.
10383
10384 2012-05-07 Vladimir Serbinenko <phcoder@gmail.com>
10385
10386 * grub-core/fs/affs.c (grub_affs_iterate_dir): Mark as case insensitive.
10387
10388 2012-05-07 Vladimir Serbinenko <phcoder@gmail.com>
10389
10390 * grub-core/fs/sfs.c (grub_sfs_rblock): New fields createtime and
10391 flags.
10392 (FLAGS_CASE_SENSITIVE): New enum value.
10393 (cache_entry): New struct.
10394 (grub_fshelp_node): Add fields cache_off, next_extent, cache_allocated,
10395 cache_size and cache.
10396 (grub_sfs_data): Remove blocksize. All users switched to log_blocksize.
10397 Add log_blocksize and fshelp_flags.
10398 (grub_sfs_read_extent): Handle non-512 blocks.
10399 (grub_sfs_read_block): Add cаche and handle non-512 blocks.
10400 (grub_sfs_read_file): Handle non-512 blocks.
10401 (grub_sfs_mount): Handle non-512 blocks. Fill log_blocksize and
10402 fshelp_flags.
10403 (grub_sfs_read_symlink): Handle non-512 blocks.
10404 (grub_sfs_iterate_dir): Init new fields. Mark as case-insensitive.
10405 (grub_sfs_dir): Free cache.
10406 (grub_sfs_close): Likewise.
10407
10408 2012-05-06 Vladimir Serbinenko <phcoder@gmail.com>
10409
10410 * grub-core/fs/bfs.c (read_bfs_file): Fix overflow with over 2TiB
10411 filesystems.
10412
10413 2012-05-06 Vladimir Serbinenko <phcoder@gmail.com>
10414
10415 * grub-core/fs/affs.c (grub_affs_read_block): Fix theoretical overflow.
10416
10417 2012-05-06 Vladimir Serbinenko <phcoder@gmail.com>
10418
10419 * grub-core/commands/ls.c (grub_ls_list_files): Fix overflow.
10420
10421 2012-05-06 Vladimir Serbinenko <phcoder@gmail.com>
10422
10423 * grub-core/fs/sfs.c (grub_fshelp_node): Fix types.
10424 (grub_sfs_read_extent): Likewise.
10425 (grub_sfs_read_block): Likewise.
10426 (grub_sfs_mount): Likewise.
10427 (grub_sfs_iterate_dir): Likewise.
10428 (grub_sfs_read_symlink): Use strncpy instead of strcpy.
10429 (grub_sfs_read): Remove unnecessarry and wrong temporary variable.
10430
10431 2012-05-04 Vladimir Serbinenko <phcoder@gmail.com>
10432
10433 Fix errors on compressed NTFS with 512B clusters.
10434
10435 * include/grub/ntfs.h (grub_ntfscomp_func_t): Use appropriately sized
10436 types.
10437 * grub-core/fs/ntfs.c (grub_ntfs_read): Return correct -1 on error and
10438 not 0.
10439 * grub-core/fs/ntfscomp.c (read_block): Use appropriately-sized types.
10440 Relax check for inline extents.
10441 (ntfscomp): Return correct -1 on error and not 0.
10442
10443 2012-05-04 Vladimir Serbinenko <phcoder@gmail.com>
10444
10445 * util/grub-install.in: Fix handling of prefix containing spaces.
10446
10447 2012-05-04 Vladimir Serbinenko <phcoder@gmail.com>
10448
10449 * grub-core/fs/squash4.c (grub_squash_inode): Fix offset field.
10450 (grub_squash_read_data): Fix offset byte-swapping.
10451
10452 2012-05-04 Vladimir Serbinenko <phcoder@gmail.com>
10453
10454 * grub-core/kern/misc.c (grub_strcmp): Use unsigned comparison as
10455 per common usage and preffered in several parts of code.
10456 (grub_memcmp): Likewise.
10457 (grub_strncmp): Likewise.
10458 * include/grub/misc.h (grub_strcasecmp): Likewise.
10459 (grub_strncasecmp): Likewise.
10460 * Makefile.util.def (cmp_test): New test.
10461 (grub_script_strcmp): Likewise.
10462 * tests/cmp_unit_test.c: New file.
10463 * tests/grub_script_strcmp.in: Likewise.
10464 * grub-core/fs/hfsplus.c (grub_hfsplus_cmp_catkey): Add a comment.
10465
10466 2012-05-04 Vladimir Serbinenko <phcoder@gmail.com>
10467
10468 * include/grub/pci.h: Move enums into no-asm part.
10469
10470 2012-05-04 Vladimir Serbinenko <phcoder@gmail.com>
10471
10472 * grub-core/fs/bfs.c (bfs_strcmp) [MODE_AFS]: Use signed comparison.
10473
10474 2012-05-04 Samuel Thibault <samuel.thibault@ens-lyon.org>
10475
10476 * util/getroot.c (find_hurd_root_device): Try to make error message
10477 and comments to translators clearer.
10478
10479 2012-05-04 Vladimir Serbinenko <phcoder@gmail.com>
10480
10481 * grub-core/commands/menuentry.c: Fix typo in TRANSLATORS comments.
10482
10483 2012-05-04 Vladimir Serbinenko <phcoder@gmail.com>
10484
10485 * grub-core/kern/fs.c (grub_fs_probe) [GRUB_UTIL]: Add workaround for
10486 btrfs.
10487
10488 2012-05-04 Vladimir Serbinenko <phcoder@gmail.com>
10489
10490 * docs/grub.cfg: Update.
10491
10492 2012-05-04 Vladimir Serbinenko <phcoder@gmail.com>
10493
10494 * docs/grub.texi (PXE): Remove not present variables.
10495
10496 2012-05-04 Vladimir Serbinenko <phcoder@gmail.com>
10497
10498 * grub-core/net/net.c (defserver_set_env): New function.
10499 (defserver_get_env): Likewise.
10500 (GRUB_MOD_INIT): Register net_default_server and pxe_default_server.
10501
10502 2012-05-03 Vladimir Serbinenko <phcoder@gmail.com>
10503
10504 * grub-core/kern/emu/hostdisk.c (read_device_map): Skip invalid Fedora
10505 entries.
10506
10507 2012-05-03 Vladimir Serbinenko <phcoder@gmail.com>
10508
10509 * grub-core/commands/menuentry.c: Add TRANSLATORS comments.
10510 * grub-core/kern/emu/hostdisk.c: Likewise.
10511
10512 2012-05-03 Samuel Thibault <samuel.thibault@ens-lyon.org>
10513
10514 Handle hurd userspace partitions.
10515
10516 * util/getroot.c (find_hurd_root_device): New function.
10517 (grub_guess_root_devices): Use find_hurd_root_device on Hurd.
10518
10519 2012-05-03 Vladimir Serbinenko <phcoder@gmail.com>
10520
10521 * util/getroot.c (convert_system_partition_to_system_disk); Add etherd
10522 names.
10523 Reported by: Bastian Blank.
10524
10525 2012-05-03 Vladimir Serbinenko <phcoder@gmail.com>
10526
10527 * grub-core/fs/btrfs.c (grub_btrfs_lzo_decompress): Fix offset when
10528 crossing page boundary.
10529
10530 2012-05-03 Vladimir Serbinenko <phcoder@gmail.com>
10531
10532 Fix B-tree search in BFS, especially in presence of non-ASCII
10533 characters.
10534
10535 * grub-core/fs/bfs.c (bfs_strcmp): New function.
10536 (find_in_b_tree): Use standard bsearch + btree algorithm.
10537
10538 2012-05-03 Vladimir Serbinenko <phcoder@gmail.com>
10539
10540 * util/grub-fstest.c (cmd_cmp): Avoid comparing devices, pipes
10541 and so on.
10542
10543 2012-05-03 Matthew Garrett <mjg@redhat.com>
10544 2012-05-03 Vladimir Serbinenko <phcoder@gmail.com>
10545
10546 Suspend broadcom cards in order to stop their DMA.
10547
10548 * grub-core/Makefile.am (KERNEL_HEADER_FILES): Add pci.h on x86 EFI.
10549 * grub-core/Makefile.core.def (kernel): Add pci.c on x86 EFI.
10550 (pci): Don't build on x86 EFI.
10551 * grub-core/bus/pci.c (grub_pci_find_capability): New function.
10552 * grub-core/kern/efi/mm.c (stop_broadcom) [__i386__ || __x86_64__]:
10553 New function.
10554 (grub_efi_finish_boot_services) [__i386__ || __x86_64__]: Call
10555 stop_broadcom if running on EFI.
10556 * include/grub/pci.h (GRUB_PCI_CLASS_NETWORK): New enum value.
10557 (GRUB_PCI_CAP_POWER_MANAGEMENT): Likewise.
10558 (GRUB_PCI_VENDOR_BROADCOM): Likewise.
10559 (grub_pci_find_capability): New proto.
10560
10561 2012-05-03 Vladimir Serbinenko <phcoder@gmail.com>
10562
10563 * docs/grub.texi: Remove dot from the extension as it apparently
10564 doesn't work with some makeinfo versions.
10565
10566 2012-05-03 Vladimir Serbinenko <phcoder@gmail.com>
10567
10568 * po/Makefile.in.in: Make msgfmt output in little-endian in accordance
10569 with GRUB expectance.
10570
10571 2012-05-03 Vladimir Serbinenko <phcoder@gmail.com>
10572
10573 * util/grub-fstest.c (cmd_cmp): Compare directories recursively.
10574
10575 2012-05-03 Vladimir Serbinenko <phcoder@gmail.com>
10576
10577 * grub-core/fs/reiserfs.c (grub_reiserfs_iterate_dir): Put a trailing
10578 zero after directory block since last entry may be not 0-terminated if
10579 it ends on block boundary. Use continue instead of if spanning whole
10580 loop.
10581
10582 2012-05-03 Vladimir Serbinenko <phcoder@gmail.com>
10583
10584 Support 4K sectors UDF inline files.
10585
10586 * grub-core/fs/udf.c (grub_udf_file_entry): Don't specify padding size.
10587 (grub_udf_extended_file_entry): Likewise.
10588 (grub_fshelp_node): Name the anonymous union. Put block at the end.
10589 All users updated.
10590 (get_fshelp_size): New function.
10591 (grub_udf_read_icb): Read whole block.
10592 (grub_udf_iterate_dir): Likewise.
10593 (grub_udf_dir): Likewise.
10594 (grub_udf_open): Likewise.
10595
10596 2012-05-03 Vladimir Serbinenko <phcoder@gmail.com>
10597
10598 * grub-core/fs/ufs.c (grub_ufs_get_file_block): Support triple indirect.
10599
10600 2012-05-03 Vladimir Serbinenko <phcoder@gmail.com>
10601
10602 * grub-core/fs/ufs.c (grub_ufs_lookup_symlink): Use proper check for
10603 inline symlinks in addition to workaround.
10604
10605 2012-05-03 Vladimir Serbinenko <phcoder@gmail.com>
10606
10607 * grub-core/fs/xfs.c (grub_xfs_iterate_dir): Handle read_inode errors.
10608
10609 2012-05-03 Vladimir Serbinenko <phcoder@gmail.com>
10610
10611 * grub-core/fs/xfs.c (GRUB_XFS_EXTENT_BLOCK): Fix bitmask.
10612
10613 2012-05-03 Vladimir Serbinenko <phcoder@gmail.com>
10614
10615 * grub-core/fs/zfs/zfs.c (nvlist_find_value): Fix return value.
10616
10617 2012-05-02 Vladimir Serbinenko <phcoder@gmail.com>
10618
10619 Fix reiserfs big seek times.
10620
10621 * grub-core/fs/reiserfs.c (grub_reiserfs_get_item): New argument
10622 exact. All users updated.
10623 (grub_reiserfs_read): Use nearest btree search for seeking.
10624 Fix return value on error.
10625
10626 2012-05-02 Vladimir Serbinenko <phcoder@gmail.com>
10627
10628 * grub-core/commands/legacycfg.c (legacy_file): Default to restricted
10629 entries.
10630 * grub-core/commands/menuentry.c (grub_cmd_menuentry): Likewise.
10631 * docs/grub.texi: Update menuentry description.
10632
10633 2012-05-02 Vladimir Serbinenko <phcoder@gmail.com>
10634
10635 * util/grub-setup.c (setup): Remove duplicate call to embed. Fixes
10636 crash when embedding onto filesystem.
10637
10638 2012-05-02 Vladimir Serbinenko <phcoder@gmail.com>
10639
10640 * util/getroot.c (find_root_devices_from_poolname): Handle spaces in the
10641 name.
10642
10643 2012-05-01 Vladimir Serbinenko <phcoder@gmail.com>
10644
10645 * grub-core/net/ip.c (handle_dgram): Fix undeclared variable.
10646
10647 2012-05-01 Vladimir Serbinenko <phcoder@gmail.com>
10648
10649 * grub-core/normal/autofs.c (read_fs_list): Revert accidental wrong
10650 commit.
10651
10652 2012-05-01 Vladimir Serbinenko <phcoder@gmail.com>
10653 2012-05-01 Bean <bean123ch@gmail.com>
10654
10655 * grub-core/net/ip.c (handle_dgram): Fix DHCP mac comparison.
10656
10657 2012-05-01 Vladimir Serbinenko <phcoder@gmail.com>
10658
10659 * grub-core/kern/file.c (grub_file_read): Read nothing if len = 0.
10660 Special behaviour for len = 0 to read whole file isn't used anywhere and
10661 can cause buffer ovewrflows in several places.
10662
10663 2012-05-01 Vladimir Serbinenko <phcoder@gmail.com>
10664
10665 * grub-core/normal/autofs.c (read_fs_list): Fix memory leak.
10666
10667 2012-05-01 Vladimir Serbinenko <phcoder@gmail.com>
10668
10669 Handle RAIDZ on non-512B sectors.
10670
10671 * grub-core/fs/zfs/zfs.c (grub_zfs_device_desc): New member
10672 max_children_ashift.
10673 (fill_vdev_info_real): Fill max_children_ashift.
10674 (read_device): Use max_children_ashift.
10675
10676 2012-05-01 Vladimir Serbinenko <phcoder@gmail.com>
10677
10678 * grub-core/fs/fshelp.c (grub_fshelp_find_file): Fix memory leak.
10679
10680 2012-05-01 Vladimir Serbinenko <phcoder@gmail.com>
10681
10682 * grub-core/kern/emu/hostdisk.c (read_device_map): Reject non-standard
10683 disk names.
10684 * docs/grub.texi: Update device.map parts.
10685
10686 2012-05-01 Vladimir Serbinenko <phcoder@gmail.com>
10687
10688 Don't scan into non-diskfilter devices having diskfilter names.
10689
10690 * grub-core/disk/diskfilter.c (is_valid_diskfilter_name): New function.
10691 (scan_disk): New argument accept_diskfilter. Fix recursion depth
10692 handling.
10693 (scan_disk_hook): New function.
10694
10695 2012-04-29 Bean <bean123ch@gmail.com>
10696
10697 * grub-core/net/drivers/efi/efinet.c (get_card_packet): Fix buffer
10698 allocation.
10699
10700 2012-04-29 Mads Kiilerich <mads@kiilerich.com> (tiny)
10701
10702 * configure.ac: Detect starfield theme font path
10703 /usr/share/fonts/dejavu/DejaVuSans.ttf for Fedora.
10704
10705 2012-04-26 Vladimir Serbinenko <phcoder@gmail.com>
10706
10707 * grub-core/term/ieee1275/console.c (grub_console_dimensions): Use 80x24
10708 geometry on serial consoles.
10709
10710 2012-04-26 Vladimir Serbinenko <phcoder@gmail.com>
10711
10712 * grub-core/term/terminfo.c (grub_terminfo_readkey): Increase timeout
10713 because of network consoles.
10714
10715 2012-04-26 Vladimir Serbinenko <phcoder@gmail.com>
10716
10717 * grub-core/term/terminfo.c (grub_terminfo_getkey): Fix incorrect queue
10718 handling.
10719
10720 2012-04-26 Vladimir Serbinenko <phcoder@gmail.com>
10721
10722 * grub-core/disk/diskfilter.c (read_segment): Fix the case when disknr
10723 falls on Q syndrom.
10724
10725 2012-04-26 Vladimir Serbinenko <phcoder@gmail.com>
10726
10727 * grub-core/fs/nilfs2.c (grub_nilfs2_palloc_entry_offset_log):
10728 Fix argument to grub_nilfs2_palloc_bitmap_block_offset.
10729
10730 2012-04-25 Vladimir Serbinenko <phcoder@gmail.com>
10731
10732 * grub-core/fs/squash4.c (lzo_decompress): Set grub_errno on error.
10733 Allocate at lest 8192 for temporary buffer as required for lzo.
10734
10735 2012-04-25 Vladimir Serbinenko <phcoder@gmail.com>
10736
10737 * grub-core/fs/fat.c (grub_fat_mount): Don't add logical_sector_bits
10738 to cluster_bits, since it's already added in.
10739 (grub_fat_read_data): Likewise.
10740
10741 2012-04-25 Vladimir Serbinenko <phcoder@gmail.com>
10742
10743 * grub-core/fs/ntfs.c (grub_ntfs_mount): Support 256-byte sectors,
10744 as long as cluster size is multiple of 512 bytes.
10745
10746 2012-04-23 Vladimir Serbinenko <phcoder@gmail.com>
10747
10748 * util/grub-mkrescue.in: Fix locale directory.
10749
10750 2012-04-23 Vladimir Serbinenko <phcoder@gmail.com>
10751
10752 * grub-core/kern/emu/hostdisk.c (map): Make static.
10753
10754 2012-04-23 Bean <bean123ch@gmail.com>
10755
10756 * util/grub-fstest.c (fstest): Add missing break.
10757
10758 2012-04-22 Samuel Thibault <samuel.thibault@ens-lyon.org>
10759
10760 Fix hurd build.
10761
10762 * grub-core/kern/emu/hostdisk.c (grub_util_get_fd_size) [__GNU__]: Do
10763 not define nr variable.
10764 * util/getroot.c [__GNU__] (strip_extra_slashes, xgetcwd, exec_pipe,
10765 find_root_devices_from_poolname, find_root_devices_from_libzfs,
10766 grub_find_device): Do not define.
10767
10768 2012-04-21 Vladimir Serbinenko <phcoder@gmail.com>
10769
10770 Fix kfreebsd compile and behaviour.
10771
10772 * grub-core/kern/emu/hostdisk.c (grub_util_follow_gpart_up): Fix
10773 format-security.
10774 * util/getroot.c: Fix wait.h include.
10775 (grub_guess_root_devices): Error if grub_find_device fails.
10776 (grub_util_get_geom_abstraction): Fix shadowing and format-security.
10777 (grub_util_get_dev_abstraction): Likewise.
10778 (grub_util_pull_device): Likewise.
10779 (grub_util_get_grub_dev): Likewise.
10780 * util/lvm.c (grub_util_lvm_isvolume): Likewise.
10781
10782 2012-04-21 Vladimir Serbinenko <phcoder@gmail.com>
10783
10784 Fix and unify wholedisk detection.
10785
10786 * util/getroot.c (convert_system_partition_to_system_disk): New argument
10787 is_part. All users updated.
10788 (device_is_wholedisk): Removed.
10789 (grub_util_biosdisk_get_grub_dev): Use is_part.
10790
10791 2012-04-18 Vladimir Serbinenko <phcoder@gmail.com>
10792
10793 * grub-core/kern/emu/hostdisk.c (grub_util_biosdisk_write): Fix opening
10794 mode.
10795
10796 2012-04-18 Vladimir Serbinenko <phcoder@gmail.com>
10797
10798 * configure.ac: Bump to beta4.
10799
10800 2012-04-18 Vladimir Serbinenko <phcoder@gmail.com>
10801
10802 * grub-core/commands/search_wrap.c (grub_cmd_search): Handle old
10803 --fs-uuid --set UUID syntax.
10804
10805 2012-04-18 Vladimir Serbinenko <phcoder@gmail.com>
10806
10807 * grub-core/kern/emu/hostdisk.c (grub_util_biosdisk_write): Fix message
10808 disunification.
10809
10810 2012-04-18 Vladimir Serbinenko <phcoder@gmail.com>
10811
10812 * conf/Makefile.common (LDFLAGS_PLATFORM): Use explicit -Wl.
10813
10814 2012-04-18 Mads Kiilerich <mads@kiilerich.com>
10815
10816 * grub-mkconfig_lib.in: Ignore *.rpmnew and *.rpmsave.
10817
10818 2012-04-18 Mike Gilbert <floppym@gentoo.org>
10819
10820 * util/grub.d/10_linux.in: Fix detection of genkernel initramfs.
10821
10822 2012-04-18 Bean <bean123ch@gmail.com>
10823
10824 * grub-core/disk/ata.c (grub_ata_strncpy): Put terminating zero at right
10825 place.
10826
10827 2012-04-18 Vladimir Serbinenko <phcoder@gmail.com>
10828
10829 * grub-core/kern/emu/hostdisk.c (open_device): New argument max. All
10830 users updated.
10831 (grub_util_biosdisk_read): Handle Linux partitions not exactly
10832 corresponding to GRUB partitions.
10833 (grub_util_biosdisk_write): Likewise.
10834
10835 2012-04-18 Vladimir Serbinenko <phcoder@gmail.com>
10836
10837 Scan mdraid before LVM.
10838
10839 * include/grub/diskfilter.h (grub_diskfilter_register): Renamed to ..
10840 (grub_diskfilter_register_front): ... this.
10841 (grub_diskfilter_register_back): New function.
10842 All users of grub_diskfilter_register updated.
10843
10844 2012-04-18 Vladimir Serbinenko <phcoder@gmail.com>
10845
10846 * util/grub-install.in: Fix an automatic target detection bug.
10847
10848 2012-04-18 Vladimir Serbinenko <phcoder@gmail.com>
10849
10850 * util/grub-install.in: New option --efi-directory.
10851
10852 2012-04-17 Vladimir Serbinenko <phcoder@gmail.com>
10853
10854 * grub-core/loader/i386/linux.c (allocate_pages): Overwrite low memory
10855 boot services if we have no other choice.
10856
10857 2012-04-14 Vladimir Serbinenko <phcoder@gmail.com>
10858
10859 * util/grub-mknetdir.in: Rename --override-directory to --directory and
10860 document it.
10861 * tests/util/grub-shell.in: Update to --directory.
10862
10863 2012-04-13 Vladimir Serbinenko <phcoder@gmail.com>
10864
10865 * grub-core/fs/zfs/zfs.c: Disable -Wstrict-aliasing.
10866
10867 2012-04-13 Vladimir Serbinenko <phcoder@gmail.com>
10868
10869 * grub-core/fs/minix.c (grub_minix_data): Fix ino type.
10870 (grub_minix_read_file): Likewise.
10871 (grub_minix_read_inode): Likewise.
10872 (grub_minix_find_file): Likewise.
10873 (grub_minix_dir): Likewise.
10874
10875 2012-04-13 Vladimir Serbinenko <phcoder@gmail.com>
10876
10877 * util/grub-setup.c (setup): Fix partition handling and blocklist
10878 check.
10879
10880 2012-04-13 Vladimir Serbinenko <phcoder@gmail.com>
10881
10882 * grub-core/lib/relocator.c (grub_relocator_alloc_chunk_align): Remove
10883 redundant buggy overlap check.
10884
10885 2012-04-11 Vladimir Serbinenko <phcoder@gmail.com>
10886
10887 * tests/util/grub-shell.in: Set pkgdatadir when calling grub-mkrescue
10888 and grub-mknetdir.
10889
10890 2012-04-11 Vladimir Serbinenko <phcoder@gmail.com>
10891
10892 * grub-core/loader/i386/linux.c (grub_cmd_linux): Avoid accessing
10893 kh.loadflags on pre-2.00 kernels.
10894
10895 2012-04-11 Vladimir Serbinenko <phcoder@gmail.com>
10896
10897 Terminate UNDI and PXE before launching the payload to avoid problems
10898 with DMA.
10899
10900 * grub-core/commands/boot.c (grub_loader_noreturn): Rename to ...
10901 (grub_loader_flags): ... this. All users updated.
10902 (grub_loader_boot): Check for GRUB_LOADER_FLAG_NORETURN.
10903 * grub-core/loader/i386/pc/pxechainloader.c (grub_cmd_pxechain): Mark
10904 loader as GRUB_LOADER_FLAG_PXE_NOT_UNLOAD.
10905 * grub-core/net/drivers/i386/pc/pxe.c (grub_pxe_shutdown): New
10906 function.
10907 (grub_pxe_restore): Likewise.
10908 (fini_hnd): New var.
10909 (GRUB_MOD_INIT): Register shutdown hook.
10910 (GRUB_MOD_FINI): Shutdown and unregister shutdown hook.
10911 * include/grub/loader.h (GRUB_LOADER_FLAG_NORETURN): New const.
10912 (GRUB_LOADER_FLAG_PXE_NOT_UNLOAD): Likewise.
10913 (grub_loader_set): Rename second argument to flags.
10914
10915 2012-04-07 Vladimir Serbinenko <phcoder@gmail.com>
10916
10917 * grub-core/normal/charset.c (grub_ucs4_to_utf8): Return number of
10918 written bytes.
10919 (grub_get_num_of_utf8_bytes): New function.
10920 (grub_ucs4_to_utf8_alloc): Use grub_get_num_of_utf8_bytes.
10921 * grub-core/normal/menu_entry.c (run): Convert entry to UTF-8 before
10922 executing it.
10923 * include/grub/charset.h (grub_get_num_of_utf8_bytes): New proto.
10924 (grub_ucs4_to_utf8): Change return type.
10925
10926 2012-04-07 Vladimir Serbinenko <phcoder@gmail.com>
10927
10928 * grub-core/commands/usbtest.c (usb_print_str): Silence spurious
10929 warning.
10930 * grub-core/fs/bfs.c (hop_level): Likewise.
10931 * grub-core/net/bootp.c (grub_cmd_bootp): Likewise.
10932
10933 2012-04-07 Vladimir Serbinenko <phcoder@gmail.com>
10934
10935 * grub-core/lib/adler32.c: Recode due to license unclearness.
10936
10937 2012-04-07 Vladimir Serbinenko <phcoder@gmail.com>
10938
10939 * grub-core/io/lzopio.c (read_block_header): Fix incorrect byte swapping
10940 (test_header): Likewise.
10941
10942 2012-04-07 Vladimir Serbinenko <phcoder@gmail.com>
10943
10944 Fix --help formatting.
10945
10946 * util/grub-mkconfig_lib.in (print_option_help): New function.
10947 (grub_fmt): Likewise.
10948 * util/grub-install.in: Use print_option_help and grub_fmt.
10949 * util/grub-kbdcomp.in: Likewise.
10950 * util/grub-mkconfig.in: Likewise.
10951 * util/grub-mknetdir.in: Likewise.
10952 * util/grub-mkrescue.in: Likewise.
10953 * util/grub-mkstandalone.in: Likewise.
10954 * util/grub-reboot.in: Likewise.
10955 * util/grub-set-default.in: Likewise.
10956 * util/powerpc/ieee1275/grub-mkrescue.in: Likewise.
10957
10958 2012-04-07 Vladimir Serbinenko <phcoder@gmail.com>
10959
10960 * linguas.sh: Remove autogenerated *.po.
10961
10962 2012-04-04 Vladimir Serbinenko <phcoder@gmail.com>
10963
10964 * po/README: Move language fetcing to ...
10965 * linguas.sh: ... here.
10966 * po/README: Point to linguas.sh.
10967
10968 2012-04-04 Vladimir Serbinenko <phcoder@gmail.com>
10969
10970 * po/README: Exclude ko.po due to disclaimer problems.
10971
10972 2012-04-04 Vladimir Serbinenko <phcoder@gmail.com>
10973
10974 * grub-core/gettext/gettext.c (grub_gettext_pread): Fix the case when
10975 len = 0.
10976 (grub_gettext_translate_real): Handle 0th string.
10977 (grub_gettext_translate): Ensure that "" isn't translated.
10978
10979 2012-04-04 Vladimir Serbinenko <phcoder@gmail.com>
10980
10981 * grub-core/disk/diskfilter.c (grub_diskfilter_memberlist): Add
10982 TRANSLATORS comment.
10983 (grub_diskfilter_print_partmap): Propagate changing of error into
10984 warning.
10985
10986 2012-04-04 Vladimir Serbinenko <phcoder@gmail.com>
10987
10988 * include/grub/diskfilter.h (grub_diskfilter_vg): Increase extent_size
10989 to uint64_t to prevent overflow.
10990 (grub_diskfilter_lv): Increase start_extent and extent_count
10991 to uint64_t to prevent overflow.
10992
10993 2012-04-01 Vladimir Serbinenko <phcoder@gmail.com>
10994
10995 * configure.ac: Increase version.
10996
10997 2012-04-01 Vladimir Serbinenko <phcoder@gmail.com>
10998
10999 Introduce en@cyrillic en@hebrew en@arabic and en@greek.
11000
11001 * po/Rules-translit: New file.
11002 * po/arabic.sed: Likewise.
11003 * po/cyrillic.sed: Likewise.
11004 * po/greek.sed: Likewise.
11005 * po/hebrew.sed: Likewise.
11006 * po/README: Add en@cyrillic en@hebrew en@arabic and en@greek.
11007 * po/Makefile.in.in: Add extra_dist4.
11008
11009 2012-04-01 Vladimir Serbinenko <phcoder@gmail.com>
11010
11011 Handle big-endian minixfs (fixes minixfs tests on bigendian).
11012
11013 * grub-core/fs/minix.c: Replace le with minix. Add necessary defines,
11014 modify names. Introduce MODE_BIGENDIAN.
11015 * grub-core/fs/minix_be.c: New file.
11016 * grub-core/fs/minix2_be.c: Likewise
11017 * grub-core/fs/minix3_be.c: Likewise.
11018 * Makefile.util.def (libgrubmods): Add minix_be, minix2_be and
11019 minix3_be.
11020 * grub-core/Makefile.core.def (minix_be): New module.
11021 (minix2_be): Likewise.
11022 (minix3_be): Likewise.
11023
11024 2012-04-01 Felix <email@hamburg.de>
11025
11026 * grub-core/loader/efi/appleloader.c (devpath_7): New var.
11027 (devs): Add MBP 2011.
11028
11029 2012-04-01 Vladimir Serbinenko <phcoder@gmail.com>
11030
11031 * grub-core/font/font.c (blit_comb): Handle dagesh somewhat.
11032
11033 2012-04-01 Vladimir Serbinenko <phcoder@gmail.com>
11034
11035 * grub-core/normal/cmdline.c (print_completion): New field
11036 prompt_len.
11037 (grub_cmdline_get): Handle width properly.
11038
11039 2012-04-01 Vladimir Serbinenko <phcoder@gmail.com>
11040
11041 * grub-core/commands/lsacpi.c (options): Add missing terminator.
11042
11043 2012-03-31 Vladimir Serbinenko <phcoder@gmail.com>
11044
11045 * include/grub/datetime.h (grub_datetime2unixtime): Fix handling of days
11046 after 29th of February.
11047
11048 2012-03-31 Vladimir Serbinenko <phcoder@gmail.com>
11049
11050 Fix exfat endianness handling.
11051
11052 * grub-core/fs/fat.c (grub_fat_data): Make fat_sector 32-bit.
11053 (grub_fat_mount) [MODE_EXFAT]: Fix bpb.num_reserved_sectors byte-swap.
11054 (grub_fat_iterate_dir) [MODE_EXFAT]: Fix attr byte-swap.
11055 Byte-swap utf16 when necessary.
11056 (grub_fat_label) [MODE_EXFAT]: Byte-swap utf16 when necessary.
11057
11058 2012-03-31 Anton Blanchard <anton@samba.org>
11059 2012-03-31 Vladimir Serbinenko <phcoder@gmail.com>
11060
11061 Fix btrfs endianness handling.
11062
11063 * grub-core/fs/btrfs.c (key_cmp): Use grub_le_to_cpu for clarity.
11064 (lower_bound): Make root uint64_t. Use root in le.
11065 (grub_btrfs_read_logical): Fix template key init. Fix address byteswap.
11066 (find_path): Fix template key init.
11067 (grub_btrfs_dir): Fix mtime byteswap.
11068 * include/grub/types.h (grub_cpu_to_le64_compile_time): New macro.
11069
11070 2012-03-31 Vladimir Serbinenko <phcoder@gmail.com>
11071
11072 * grub-core/fs/btrfs.c (grub_btrfs_read_logical): New argument
11073 recursion_depth. Break infinite resursions. All users updated.
11074
11075 2012-03-31 Vladimir Serbinenko <phcoder@gmail.com>
11076
11077 * util/getroot.c (convert_system_partition_to_system_disk): Fix use
11078 after free.
11079 Reported by: Peter Jones.
11080
11081 2012-03-31 Anton Blanchard <anton@samba.org>
11082
11083 * grub-core/fs/iso9660.c (grub_iso9660_iterate_dir): Do not byteswap
11084 8 bit values.
11085
11086 2012-03-28 Vladimir Serbinenko <phcoder@gmail.com>
11087
11088 * util/grub-install.in: Fix nvram call for PreP.
11089
11090 2012-03-28 Vladimir Serbinenko <phcoder@gmail.com>
11091
11092 * grub-core/disk/diskfilter.c (grub_diskfilter_memberlist): Degrade
11093 the error when some elements are missing into a warning.
11094
11095 2012-03-28 Vladimir Serbinenko <phcoder@gmail.com>
11096
11097 * grub-core/normal/charset.c (bidi_line_wrap): Fix out-of-range swap.
11098
11099 2012-03-28 Colin Watson <cjwatson@ubuntu.com>
11100
11101 * docs/grub.texi (Invoking grub-probe): New section.
11102 Reported by: Filipus Klutiero. Fixes Debian bug #666031.
11103
11104 2012-03-27 Vladimir Serbinenko <phcoder@gmail.com>
11105
11106 Fix tab and wide character handling in editor and menu.
11107
11108 * grub-core/normal/charset.c (grub_unicode_aglomerate_comb): Don't
11109 agglomerate control characters with combining marks.
11110 (bidi_line_wrap): Allow break on tab.
11111 (grub_unicode_get_comb_start): New function.
11112 * grub-core/normal/menu_entry.c: Restructure to handle wide characters
11113 and tab correctly.
11114 * grub-core/normal/menu_text.c (print_entry): Replace \n, \r, \b and \e
11115 with a space.
11116 * grub-core/normal/term.c (print_ucs4_terminal): New argument
11117 fixed_tab_size. All users updated.
11118 * include/grub/term.h (GRUB_TERM_TAB_WIDTH): New const.
11119 (grub_term_getcharwidth): Handle \t.
11120 * include/grub/unicode.h (grub_unicode_glyph_dup): Fix allocation
11121 and copy.
11122
11123 2012-03-26 Vladimir Serbinenko <phcoder@gmail.com>
11124
11125 Handle big-endian mdraid.
11126
11127 * Makefile.util.def (libgrubkern): Add mdraid_linux_be.c.
11128 * grub-core/Makefile.core.def (mdraid09_be): New module.
11129 * grub-core/disk/mdraid_linux.c: Use grub_md_to_cpu* and grub_cpu_to_md*
11130 rather than grub_le_to_cpu* and grub_cpu_to_le*.
11131 * grub-core/disk/mdraid_linux_be.c: New file.
11132
11133 2012-03-26 Vladimir Serbinenko <phcoder@gmail.com>
11134
11135 * grub-core/gettext/gettext.c (GRUB_MOD_INIT): Handle errors.
11136
11137 2012-03-19 Vladimir Serbinenko <phcoder@gmail.com>
11138
11139 * util/getroot.c (grub_make_system_path_relative_to_its_root): Fix
11140 missing quotes which caused confusion among translators.
11141
11142 2012-03-19 Vladimir Serbinenko <phcoder@gmail.com>
11143
11144 * util/grub-mkconfig_lib.in: Fix typo.
11145
11146 2012-03-19 Vladimir Serbinenko <phcoder@gmail.com>
11147
11148 * grub-core/script/argv.c (grub_script_argv_split_append): Skip leading
11149 spaces.
11150 * tests/grub_script_leading_whitespace.in: New file.
11151 * Makefile.util.def (grub_script_leading_whitespace): New test.
11152
11153 2012-03-19 Vladimir Serbinenko <phcoder@gmail.com>
11154
11155 * grub-core/kern/dl.c (grub_dl_add): Make global in order for gdb_grub
11156 to work.
11157
11158 2012-03-19 Vladimir Serbinenko <phcoder@gmail.com>
11159
11160 * grub-core/fs/jfs.c (grub_jfs_label): Use first label if second one
11161 starts with control character.
11162
11163 2012-03-19 Vladimir Serbinenko <phcoder@gmail.com>
11164
11165 * grub-core/gdb/cstub.c (grub_gdb_inbuf): Increase the size to avoid
11166 overflow.
11167 (grub_gdb_outbuf): Likewise.
11168
11169 2012-03-19 Vladimir Serbinenko <phcoder@gmail.com>
11170
11171 * grub-core/commands/menuentry.c (grub_normal_add_menu_entry): Add
11172 zero terminator. Fixes a crash.
11173
11174 2012-03-11 Vladimir Serbinenko <phcoder@gmail.com>
11175
11176 * grub-core/loader/i386/linux.c (allocate_pages): Don't allocate
11177 beyond 4 GiB.
11178 (grub_cmd_linux): Use GRUB_LINUX_BZIMAGE_ADDR for non-relocatable
11179 images independently of preffered adderss field.
11180
11181 2012-03-11 Vladimir Serbinenko <phcoder@gmail.com>
11182
11183 * grub-core/commands/i386/pc/play.c: Improve TRANSLATORS comments.
11184 * grub-core/commands/regexp.c: Likewise.
11185 * grub-core/loader/i386/linux.c: Likewise.
11186 * grub-core/partmap/msdos.c: Likewise.
11187 * grub-core/script/execute.c: Likewise.
11188 * grub-core/term/gfxterm.c: Likewise.
11189
11190 2012-03-11 Vladimir Serbinenko <phcoder@gmail.com>
11191
11192 Add variable parsing in $"..." and fix several mismatches with bash.
11193
11194 * Makefile.util.def (grub_script_gettext): New test.
11195 * grub-core/script/execute.c (parse_string): New function.
11196 (gettext_append): Likewise.
11197 (grub_script_arglist_to_argv): Use gettext_append.
11198 * grub-core/script/yylex.l: Fix slash and newline handling in $"...".
11199 * tests/grub_script_gettext.in: New file.
11200
11201 2012-03-11 Vladimir Serbinenko <phcoder@gmail.com>
11202
11203 Fix handling of leading spaces in scripts.
11204
11205 * grub-core/normal/cmdline.c (grub_cmdline_get): Don't strip leading
11206 spaces.
11207 * grub-core/normal/main.c (grub_file_getline): Remove all preprocessing
11208 other than skipping \r. All users updated.
11209 * tests/grub_script_echo1.in: Add space-related tests.
11210 * util/grub-menulst2cfg.c (main): Remove useless space skipping.
11211
11212 2012-03-11 Vladimir Serbinenko <phcoder@gmail.com>
11213
11214 * grub-core/commands/cat.c (grub_cmd_cat): Fix termination key check.
11215
11216 2012-03-10 Vladimir Serbinenko <phcoder@gmail.com>
11217
11218 * configure.ac: Bump up the version to beta2.
11219
11220 2012-03-10 Vladimir Serbinenko <phcoder@gmail.com>
11221
11222 Fix gettext reload bugs (e.g. inability to disable gettext
11223 once enabled).
11224
11225 * grub-core/gettext/gettext.c: Encapsulate all static variables in
11226 main_context and secondary_context. All functions updated.
11227 (grub_gettext_translate): Rename to ...
11228 (grub_gettext_translate_real): ... this. Return NULL on failed
11229 translate.
11230 (grub_gettext_translate): Handle secondary context.
11231 (grub_gettext_delete_list): Close file and zero-out the context.
11232 (grub_mofile_open): Don't call grub_gettext_delete_list.
11233 Don't close file.
11234 (grub_gettext_init_ext): Call grub_gettext_init_ext. Skip loading
11235 if locale="" to avoid pointless error message.
11236 (grub_gettext_env_write_lang): Update lang even if load fails.
11237 Handle secondary context.
11238 (grub_gettext_reread_prefix): New function.
11239 (read_main): Likewise.
11240 (read_secondary): Likewise.
11241 (GRUB_MOD_INIT): Handle secondary context. Hook and export variables.
11242 (GRUB_MOD_FINI): Handle secondary context. Don't close file.
11243 * grub-core/normal/main.c (read_lists): Call grub_gettext_reread_prefix.
11244 * include/grub/normal.h (grub_gettext_reread_prefix): New proto.
11245
11246 2012-03-10 Vladimir Serbinenko <phcoder@gmail.com>
11247
11248 * configure.ac: Decrease warning level to avoid spurious warnings and
11249 to be able to compile with GCC 4.2.
11250 * Makefile.util.def: Remove -Wno-error=logical-op.
11251
11252 2012-03-10 William Bittner <william.bittner@gmail.com>
11253
11254 * util/import_unicode.py: Add missing brackets around string for
11255 python 3 support.
11256
11257 2012-03-10 Vladimir Serbinenko <phcoder@gmail.com>
11258
11259 Fix efi chainloader on network root.
11260
11261 * grub-core/loader/efi/chainloader.c (grub_cmd_chainloader): Handle
11262 network devices.
11263 * grub-core/net/drivers/efi/efinet.c (grub_efinet_get_device_handle):
11264 New function.
11265
11266 2012-03-10 Vladimir Serbinenko <phcoder@gmail.com>
11267
11268 * grub-core/gfxmenu/gui_progress_bar.c (grub_gui_progress_bar): Remove
11269 unused show_text member.
11270 * docs/grub.texi: Document "text" property.
11271
11272 2012-03-10 Vladimir Serbinenko <phcoder@gmail.com>
11273
11274 * grub-core/loader/efi/chainloader.c (grub_cmd_chainloader): Fix format
11275 in dprintf.
11276
11277 2012-03-10 Vladimir Serbinenko <phcoder@gmail.com>
11278
11279 Fix IMSM handling on Fedora.
11280
11281 * util/getroot.c (grub_util_is_imsm): New function.
11282 (grub_util_get_dev_abstraction): Treat IMSM as simple device, not RAID.
11283
11284 2012-03-10 Vladimir Serbinenko <phcoder@gmail.com>
11285
11286 * Makefile.am: Strip gold section.
11287 * conf/Makefile.common: Likewise.
11288 * gentpl.py: Likewise.
11289 * grub-core/Makefile.core.def: Likewise.
11290 * grub-core/genmod.sh.in: Likewise.
11291
11292 2012-03-10 Vladimir Serbinenko <phcoder@gmail.com>
11293
11294 * util/grub.d/10_linux.in: Use stat if grub-probe on root fails.
11295 * util/grub.d/20_linux_xen.in: Likewise.
11296 Based on Debian patch.
11297
11298 2012-03-10 Vladimir Serbinenko <phcoder@gmail.com>
11299
11300 * util/grub.d/10_linux.in: Fix syntax error resulting in
11301 Richard Laager's patch.
11302 * util/grub.d/20_linux_xen.in: Propagate Richard Laager's patch.
11303
11304 2012-03-10 Vladimir Serbinenko <phcoder@gmail.com>
11305
11306 * tests/partmap_test.in: Replace qemu-img usage with dd to decrease
11307 dependencies.
11308
11309 2012-03-10 Richard Laager <rlaager@wiktel.com>
11310
11311 * util/grub.d/10_linux.in: Fix ZFS root passing.
11312
11313 2012-03-10 Vladimir Serbinenko <phcoder@gmail.com>
11314
11315 * grub-core/commands/videoinfo.c: Add TRANSLATORS comments.
11316 * grub-core/commands/xnu_uuid.c: Likewise.
11317 * grub-core/loader/efi/appleloader.c: Likewise.
11318 * grub-core/script/execute.c: Likewise.
11319 * grub-core/script/main.c: Likewise.
11320 * util/grub-mkfont.c: Likewise.
11321
11322 2012-03-10 Vladimir Serbinenko <phcoder@gmail.com>
11323
11324 * util/grub-mkfont.c (options): Use more appropriate "select" that
11325 "set" for face index.
11326
11327 2012-03-10 Vladimir Serbinenko <phcoder@gmail.com>
11328
11329 * util/grub-editenv.c (options): Gettextize command summaries.
11330
11331 2012-03-10 Vladimir Serbinenko <phcoder@gmail.com>
11332
11333 * grub-core/loader/efi/chainloader.c (grub_cmd_chainloader): Use
11334 "out of memory" error messagge.
11335
11336 2012-03-10 Vladimir Serbinenko <phcoder@gmail.com>
11337
11338 * grub-core/disk/diskfilter.c (grub_diskfilter_memberlist): Add scanning
11339 of diskfilter for diskfilter on diskfilter support.
11340
11341 2012-03-10 Vladimir Serbinenko <phcoder@gmail.com>
11342
11343 * util/getroot.c (exec_pipe): Ensure that the child is not localised.
11344
11345 2012-03-10 Vladimir Serbinenko <phcoder@gmail.com>
11346
11347 * util/grub-install.in: Check for themes/starfield/theme.txt and not
11348 themes/starfield.
11349
11350 2012-03-10 Vladimir Serbinenko <phcoder@gmail.com>
11351
11352 * grub-core/gnulib/regcomp.c (regerror): Fix out-of-range array lookup.
11353
11354 2012-03-10 Vladimir Serbinenko <phcoder@gmail.com>
11355
11356 * grub-core/gdb/i386/idt.c (grub_gdb_breakpoint): Remove old debug code.
11357
11358 2012-03-10 Vladimir Serbinenko <phcoder@gmail.com>
11359
11360 * grub-core/commands/hashsum.c (grub_cmd_hashsum): Remove dot at the end
11361 of error message.
11362
11363 2012-03-09 Vladimir Serbinenko <phcoder@gmail.com>
11364
11365 * util/grub-install.in: Fix install non-PreP IEEE1275 install.
11366
11367 2012-03-09 Vladimir Serbinenko <phcoder@gmail.com>
11368
11369 * grub-core/commands/i386/pc/sendkey.c (GRUB_MOD_INIT): Fix confusing
11370 message.
11371 * util/grub-install.in: Fix and gettextize error message.
11372
11373 2012-03-08 Vladimir Serbinenko <phcoder@gmail.com>
11374
11375 * util/grub-fstest.c (options): Replace N with NUM and S with STRING.
11376 Gettextize.
11377 * util/grub-mount.c (options): Likewise.
11378
11379 2012-03-08 Vladimir Serbinenko <phcoder@gmail.com>
11380
11381 * grub-core/commands/probe.c (options): Replace VAR with VARNAME and
11382 gettextize.
11383 * grub-core/commands/search_wrap.c (options): Likewise.
11384
11385 2012-03-08 Vladimir Serbinenko <phcoder@gmail.com>
11386
11387 * grub-core/normal/charset.c (bidi_line_wrap): Fix a spurious warning.
11388
11389 2012-03-08 Vladimir Serbinenko <phcoder@gmail.com>
11390
11391 * grub-core/boot/i386/pc/startup_raw.S (multiboot_trampoline): Fix
11392 size calculation.
11393 * grub-core/kern/i386/realmode.S (realidt): Assume default BIOS IDT if
11394 none is known.
11395
11396 2012-03-08 Vladimir Serbinenko <phcoder@gmail.com>
11397
11398 * grub-core/net/net.c (grub_net_addr_to_str): Don't translate
11399 "temporary" since it's used in identifier and is limited in space.
11400
11401 2012-03-08 Vladimir Serbinenko <phcoder@gmail.com>
11402
11403 * po/POTFILES.in: Regenerate. Include *.h since they contain
11404 translatable strings as well.
11405
11406 2012-03-08 Vladimir Serbinenko <phcoder@gmail.com>
11407
11408 * grub-core/disk/mdraid1x_linux.c (grub_mdraid_detect): Add missing
11409 byte-swap on big-endian.
11410 Reported by: Lennart Sorensen
11411
11412 2012-03-07 Vladimir Serbinenko <phcoder@gmail.com>
11413
11414 * grub-core/loader/i386/linux.c (prot_init_space): New variable.
11415 (allocate_pages): Improve dprintf.
11416 (grub_cmd_linux): Fill prot_init_space. Fix improper usage of
11417 code32_start. Fill code32_start and kernel_alignment in params.
11418 (grub_cmd_initrd): Use prot_init_space.
11419
11420 2012-03-06 Vladimir Serbinenko <phcoder@gmail.com>
11421
11422 * util/grub-mkstandalone.in: Propagate grub-mkimage.c change.
11423
11424 2012-03-06 Vladimir Serbinenko <phcoder@gmail.com>
11425
11426 * util/grub-install.in: Add missing dot at the end of sentence.
11427
11428 2012-03-06 Vladimir Serbinenko <phcoder@gmail.com>
11429
11430 * grub-core/commands/videoinfo.c: Add TRANSLATORS comments.
11431 * grub-core/commands/videotest.c: Likewise.
11432 * grub-core/loader/i386/linux.c: Likewise.
11433
11434 2012-03-06 Vladimir Serbinenko <phcoder@gmail.com>
11435
11436 * grub-core/commands/acpi.c (options): Fix a dot in the middle of the
11437 sentence.
11438 Reported by: Milo Casagrande.
11439
11440 2012-03-06 Vladimir Serbinenko <phcoder@gmail.com>
11441
11442 * grub-core/commands/acpi.c: Add TRANSLATORS comments.
11443 * grub-core/commands/gptsync.c: Likewise.
11444 * grub-core/commands/hashsum.c: Likewise.
11445 * grub-core/commands/i386/pc/sendkey.c: Likewise.
11446 * grub-core/commands/legacycfg.c: Likewise.
11447 * grub-core/io/gzio.c: Likewise.
11448 * grub-core/net/net.c: Likewise.
11449 * grub-core/term/gfxterm.c: Likewise.
11450 * grub-core/term/terminfo.c: Likewise.
11451 * grub-core/tests/test_blockarg.c: Likewise.
11452 * grub-core/video/video.c: Likewise.
11453 * util/grub-install.in: Likewise.
11454 * util/grub-mkfont.c: Likewise.
11455
11456 2012-03-06 Vladimir Serbinenko <phcoder@gmail.com>
11457
11458 * util/grub-mkimage.c (help_filter): Add missing capitalisation.
11459
11460 2012-03-06 Vladimir Serbinenko <phcoder@gmail.com>
11461
11462 * grub-core/commands/search_wrap.c (options): Fix a typo.
11463 Reported by: David Prévot.
11464
11465 2012-03-06 Vladimir Serbinenko <phcoder@gmail.com>
11466
11467 * util/grub-kbdcomp.in: Change "layout" to "keyboard layout" in
11468 description.
11469
11470 2012-03-06 Vladimir Serbinenko <phcoder@gmail.com>
11471
11472 * util/grub-script-check.c (main): Fix a syntax error message which was
11473 unclear.
11474
11475 2012-03-06 Vladimir Serbinenko <phcoder@gmail.com>
11476
11477 * util/grub-mkrescue.in (usage): Fix ROM capitalisation.
11478
11479 2012-03-06 Vladimir Serbinenko <phcoder@gmail.com>
11480
11481 * grub-core/commands/search_wrap.c (options): Fix wrong copy-paste in
11482 messages.
11483
11484 2012-03-06 Vladimir Serbinenko <phcoder@gmail.com>
11485
11486 * util/grub-fstest.c (options): Remove OPTION_ARG_OPTIONAL from options
11487 without argument.
11488 * util/grub-mount.c (options): Likewise.
11489
11490 2012-03-05 Vladimir Serbinenko <phcoder@gmail.com>
11491
11492 * util/grub-mkimage.c (generate_image): Unify diskboot.img size message.
11493
11494 2012-03-05 Vladimir Serbinenko <phcoder@gmail.com>
11495
11496 * grub-core/net/http.c: Add TRANSLATORS comments.
11497 * grub-core/normal/cmdline.c: Likewise.
11498 * grub-core/normal/misc.c: Likewise.
11499 * grub-core/partmap/msdos.c: Likewise.
11500 * grub-core/parttool/msdospart.c: Likewise.
11501 * grub-core/script/execute.c: Likewise.
11502 * grub-core/script/main.c: Likewise.
11503 * grub-core/term/terminfo.c: Likewise.
11504 * grub-core/video/bitmap.c: Likewise.
11505 * util/grub-install.in: Likewise.
11506 * util/grub-mkimage.c: Likewise.
11507 * util/grub-mklayout.c: Likewise.
11508 * util/grub-setup.c: Likewise.
11509
11510 2012-03-05 Vladimir Serbinenko <phcoder@gmail.com>
11511
11512 * util/grub-mount.c (fuse_init): Unify cryptomount and loopback messages
11513 with similar messages in grub-fstest.
11514
11515 2012-03-05 Vladimir Serbinenko <phcoder@gmail.com>
11516
11517 * util/grub-install.in: Unify "option requires an argument" message
11518 with similar messages in other files.
11519 * util/grub-mkconfig.in: Likewise.
11520
11521 2012-03-05 Vladimir Serbinenko <phcoder@gmail.com>
11522
11523 * util/grub-set-default.in: Replace printf with gettext_printf (the
11524 string in in question is already translated from grub-reboot)
11525
11526 2012-03-05 Vladimir Serbinenko <phcoder@gmail.com>
11527
11528 * configure.ac: Bump up the version to beta1.
11529
11530 2012-03-04 Vladimir Serbinenko <phcoder@gmail.com>
11531
11532 * grub-core/loader/i386/linux.c (allocate_pages): Fix handling of the
11533 case when min_align = 0.
11534
11535 2012-03-04 Vladimir Serbinenko <phcoder@gmail.com>
11536
11537 * grub-core/normal/charset.c (bidi_line_wrap): Fix a spurious warning
11538 and fix a case when line_start overflows.
11539
11540 2012-03-04 Vladimir Serbinenko <phcoder@gmail.com>
11541
11542 * util/grub-reboot.in (usage): Mention id posibility.
11543 * util/grub-set-default.in (usage): Likewise.
11544
11545 2012-03-04 Vladimir Serbinenko <phcoder@gmail.com>
11546
11547 * include/grub/misc.h (ALIGN_UP_OVERHEAD): New define.
11548 * grub-core/loader/i386/linux.c (grub_cmd_initrd): Align initrds at 4.
11549 * grub-core/loader/i386/pc/linux.c (grub_cmd_initrd): Likewise.
11550 * grub-core/loader/ia64/efi/linux.c (grub_cmd_initrd): Likewise.
11551 * grub-core/loader/mips/linux.c (grub_cmd_initrd): Likewise.
11552 * grub-core/loader/powerpc/ieee1275/linux.c (grub_cmd_initrd): Likewise.
11553 * grub-core/loader/sparc64/ieee1275/linux.c (grub_cmd_initrd): Likewise.
11554
11555 2012-03-04 Vladimir Serbinenko <phcoder@gmail.com>
11556
11557 * grub-core/commands/menuentry.c (options): Remove
11558 GRUB_ARG_OPTION_REPEATABLE.
11559 Reported by: Andreas Vogel
11560
11561 2012-03-04 Andreas Vogel <Andreas.Vogel@anvo-it.de>
11562
11563 * grub-core/normal/main.c (grub_normal_free_menu): Fix memory leak.
11564
11565 2012-03-04 Hideki EIRAKU <hdk1983@gmail.com>
11566
11567 * grub-core/normal/menu_entry.c (kill_line): Fix a crash and off-by-one
11568 error.
11569
11570 2012-03-04 Vladimir Serbinenko <phcoder@gmail.com>
11571
11572 Use sort -V by the idea of Georgi Georgiev.
11573
11574 * util/grub-mkconfig_lib.in (version_sort): New function.
11575 (version_test_numeric): Use version_sort.
11576
11577 2012-03-04 Vladimir Serbinenko <phcoder@gmail.com>
11578
11579 Use submenus in grub-mkconfig.
11580
11581 * util/grub-mkconfig.in: Define GRUB_ACTUAL_DEFAULT.
11582 * util/grub-mkconfig_lib.in (grub_quote): New function.
11583 (gettext_printf): Use gettext and not gettext_quoted to fix several
11584 messages.
11585 * util/grub.d/10_hurd.in: Use submenus.
11586 * util/grub.d/10_kfreebsd.in: Likewise.
11587 * util/grub.d/10_linux.in: Likewise.
11588 * util/grub.d/10_netbsd.in: Likewise.
11589 * util/grub.d/20_linux_xen.in: Likewise.
11590 * util/grub.d/30_os-prober.in: Likewise.
11591 * util/grub.d/10_illumos.in: Add missing quoting.
11592 * util/grub.d/10_windows.in: Likewise.
11593
11594 2012-03-04 Vladimir Serbinenko <phcoder@gmail.com>
11595
11596 Fix menu title instability bug.
11597
11598 * grub-core/commands/menuentry.c (options): New option --id.
11599 (grub_normal_add_menu_entry): New argument id. All users updated.
11600 (grub_cmd_menuentry): Handle --id.
11601 (grub_menu_init): Accept unknown arguments.
11602 * grub-core/normal/main.c (features): Add feature_menuentry_id and
11603 feature_menuentry_options.
11604 * grub-core/normal/menu.c (grub_menu_execute_entry): Use id for
11605 saved_entry.
11606 (get_entry_number): Match with id as well.
11607 * include/grub/menu.h (grub_menu_entry): New member id.
11608 * util/grub-mkconfig_lib.in (grub_get_device_id): New function.
11609 * util/grub.d/00_header.in: Define menuentry_id_option.
11610 * util/grub.d/10_hurd.in: Define id.
11611 * util/grub.d/10_illumos.in: Likewise.
11612 * util/grub.d/10_kfreebsd.in: Likewise.
11613 * util/grub.d/10_linux.in: Likewise.
11614 * util/grub.d/10_netbsd.in: Likewise.
11615 * util/grub.d/10_windows.in: Likewise.
11616 * util/grub.d/20_linux_xen.in: Likewise.
11617 * util/grub.d/30_os-prober.in: Likewise.
11618
11619 2012-03-04 Vladimir Serbinenko <phcoder@gmail.com>
11620
11621 * grub-core/script/execute.c (grub_script_return): Replace ambiguous
11622 "scope" with "body".
11623
11624 2012-03-03 Vladimir Serbinenko <phcoder@gmail.com>
11625
11626 * include/grub/i386/linux.h (linux_kernel_header): Fix init_size type.
11627 * grub-core/loader/i386/linux.c (grub_cmd_linux): Differentiate between
11628 prot_size and prot_file_size.
11629
11630 2012-03-03 Vladimir Serbinenko <phcoder@gmail.com>
11631
11632 * grub-core/disk/diskfilter.c (is_lv_readable): New argument "easily".
11633 All users updated. If easily=1 require raid-5/-6 to be full.
11634 (is_node_readable): Likewise.
11635 (scan_devices): Scan incomplete but readable LVs at the end.
11636 (grub_diskfilter_memberlist): Pull missing devices.
11637 (insert_array): Skip scanning until device is complete or scan is
11638 done otherwise.
11639 * grub-core/disk/mdraid1x_linux.c (grub_mdraid_detect): Fix wrong
11640 check.
11641 * include/grub/diskfilter.h (grub_diskfilter_lv): New member scanned.
11642 * util/raid.c (grub_util_raid_getmembers): Handle "removed" disks.
11643
11644 2012-03-03 Matthew Garrett <mjg@redhat.com>
11645 2012-03-03 Vladimir Serbinenko <phcoder@gmail.com>
11646
11647 Avoid EFI boot services when loading Linux.
11648
11649 * grub-core/lib/i386/relocator.c (grub_relocator32_boot): New argument
11650 avoid_efi_bootservices. All users updated.
11651 * grub-core/lib/relocator.c (grub_relocator_alloc_chunk_align): New
11652 argument avoid_efi_bootservices. All users updated.
11653 Use grub_efi_mmap_iterate on EFI, grub_mmap_iterate if available.
11654 * grub-core/loader/i386/linux.c (allocate_pages): New arguments
11655 align, min_align, relocatable, prefered_address. All users updated.
11656 Allocate avoiding boot services if kernel is relocatable.
11657 (grub_cmd_linux): Check if kernel is relocatable.
11658 * grub-core/mmap/efi/mmap.c (grub_machine_mmap_iterate): Move most to ..
11659 (grub_efi_mmap_iterate): ... here. New argument avoid_efi_boot_services.
11660 Skip GRUB_EFI_BOOT_SERVICES_DATA and GRUB_EFI_BOOT_SERVICES_CODE if
11661 avoid_efi_boot_services.
11662 (grub_machine_mmap_iterate): Wrap grub_efi_mmap_iterate.
11663 * include/grub/i386/linux.h (linux_kernel_header): Update to 2.10.
11664 (linux_kernel_params): Likewise.
11665
11666 2012-03-03 Matthew Garrett <mjg@redhat.com>
11667 2012-03-03 Vladimir Serbinenko <phcoder@gmail.com>
11668
11669 Use EDID on EFI.
11670
11671 * grub-core/kern/efi/efi.c (grub_efi_get_variable): New argument
11672 datasize_out.
11673 * grub-core/video/efi_gop.c (check_protocol): Check that GOP has usable
11674 modes. Set gop_handle.
11675 (grub_video_gop_get_edid): New function.
11676 (grub_gop_get_preferred_mode): Likewise.
11677 (grub_video_gop_setup): Use grub_gop_get_preferred_mode.
11678 (grub_video_efi_gop_adapter): Set .get_edid.
11679 * include/grub/efi/edid.h: New file.
11680 * include/grub/efi/efi.h (grub_efi_get_variable): Update proto.
11681
11682 2012-03-03 Vladimir Serbinenko <phcoder@gmail.com>
11683
11684 * util/grub-install.in: Load efivars unconditionally.
11685
11686 2012-03-03 Vladimir Serbinenko <phcoder@gmail.com>
11687
11688 * po/Rules-piglatin: Change suffix from .po-update-en to
11689 .po-update-en-piglatin.
11690
11691 2012-03-03 Vladimir Serbinenko <phcoder@gmail.com>
11692
11693 Add a pig farm.
11694
11695 * po/piglatin.sed: New file.
11696 * po/en@piglatin.header: Likewise.
11697 * po/Rules-piglatin: Likewise.
11698 * po/README: Add en@piglatin to autogenerated languages.
11699
11700 2012-03-03 Vladimir Serbinenko <phcoder@gmail.com>
11701
11702 * grub-core/commands/date.c (GRUB_MOD_INIT): Remove non-uniform
11703 "Command for ...".
11704 * grub-core/commands/hdparm.c (options): Use "Display" rather than
11705 "Check" since we don't check anything.
11706 * grub-core/commands/i386/cpuid.c (options): Clarify that long mode
11707 is 64-bit one.
11708 * grub-core/commands/search_wrap.c (options): Clarify the conditions.
11709 * grub-core/disk/geli.c (grub_md_sha256_real): Fix typo.
11710 (grub_md_sha512_real): Likewise.
11711
11712 2012-03-03 Vladimir Serbinenko <phcoder@gmail.com>
11713
11714 * grub-core/commands/gptsync.c: Fix typographic quoting.
11715 * grub-core/commands/ieee1275/suspend.c: Likewise.
11716 * grub-core/commands/parttool.c: Likewise.
11717 * grub-core/commands/search_wrap.c: Likewise.
11718 * grub-core/commands/videoinfo.c: Likewise.
11719 * grub-core/gfxmenu/gui_label.c: Likewise.
11720 * grub-core/hello/hello.c: Likewise.
11721 * grub-core/kern/emu/main.c: Likewise.
11722 * grub-core/net/net.c: Likewise.
11723 * grub-core/normal/menu.c: Likewise.
11724 * grub-core/normal/menu_text.c: Likewise.
11725 * grub-core/normal/misc.c: Likewise.
11726 * util/grub-editenv.c: Likewise.
11727 * util/grub-install.in: Likewise.
11728 * util/grub-kbdcomp.in: Likewise.
11729 * util/grub-mkconfig.in: Likewise.
11730 * util/grub-mknetdir.in: Likewise.
11731 * util/grub-mkrescue.in: Likewise.
11732 * util/grub-mkstandalone.in: Likewise.
11733 * util/grub-reboot.in: Likewise.
11734 * util/grub-set-default.in: Likewise.
11735 * util/grub-setup.c: Likewise.
11736 * util/powerpc/ieee1275/grub-mkrescue.in: Likewise.
11737
11738 2012-03-02 Vladimir Serbinenko <phcoder@gmail.com>
11739
11740 * grub-core/commands/acpihalt.c: Add TRANSLATORS comments.
11741 * grub-core/commands/keystatus.c: Likewise.
11742 * grub-core/commands/loadenv.c: Likewise.
11743 * grub-core/commands/probe.c: Likewise.
11744 * grub-core/commands/regexp.c: Likewise.
11745 * grub-core/commands/true.c: Likewise.
11746 * grub-core/commands/videoinfo.c: Likewise.
11747 * grub-core/disk/cryptodisk.c: Likewise.
11748 * grub-core/disk/ldm.c: Likewise.
11749 * grub-core/disk/loopback.c: Likewise.
11750 * grub-core/disk/luks.c: Likewise.
11751 * grub-core/fs/zfs/zfsinfo.c: Likewise.
11752 * grub-core/kern/disk.c: Likewise.
11753 * grub-core/kern/emu/hostdisk.c: Likewise.
11754
11755 2012-03-02 Vladimir Serbinenko <phcoder@gmail.com>
11756
11757 * grub-core/fs/zfs/zfsinfo.c (print_vdev_info): Add TRANSLATORS comment.
11758 * util/grub-install.in: Add missing quote in the comment.
11759
11760 2012-03-02 Vladimir Serbinenko <phcoder@gmail.com>
11761
11762 * grub-core/commands/i386/pc/drivemap.c: Add TRANSLATORS comments.
11763 * grub-core/commands/lsmmap.c: Likewise.
11764 * grub-core/commands/minicmd.c: Likewise.
11765 * grub-core/commands/mips/loongson/lsspd.c: Likewise.
11766 * grub-core/commands/regexp.c: Likewise.
11767 * grub-core/gdb/gdb.c: Likewise.
11768 * grub-core/term/gfxterm.c: Likewise.
11769 * util/grub-mkconfig.in: Likewise.
11770 * util/grub-mkfont.c: Likewise.
11771 * util/grub-mklayout.c: Likewise.
11772 * util/grub-mknetdir.in: Likewise.
11773 * util/grub-mkrescue.in: Likewise.
11774 * util/grub.d/30_os-prober.in: Likewise.
11775
11776 2012-03-02 Vladimir Serbinenko <phcoder@gmail.com>
11777
11778 * grub-core/commands/videoinfo.c (hook): Replace "Direct"
11779 with "Direct color" and "Packed" with "Packed pixel".
11780 (grub_cmd_videoinfo): Simplify legend.
11781
11782 2012-03-02 Vladimir Serbinenko <phcoder@gmail.com>
11783
11784 * util/getroot.c (grub_make_system_path_relative_to_its_root): Fix
11785 absolutely unclear error message.
11786
11787 2012-03-02 Vladimir Serbinenko <phcoder@gmail.com>
11788
11789 * util/grub-mkstandalone.in: Remove confusing leftover print.
11790
11791 2012-03-02 Vladimir Serbinenko <phcoder@gmail.com>
11792
11793 * grub-core/fs/zfs/zfsinfo.c (print_vdev_info): Add TRANSLATORS
11794 comments.
11795 * grub-core/gdb/gdb.c (grub_cmd_gdbstub): Likewise.
11796 (GRUB_MOD_INIT): Likewise.
11797 * grub-core/loader/i386/linux.c (grub_cmd_linux): Clarify that it's
11798 VGA mode.
11799 * grub-core/net/net.c (grub_net_route_address): Add TRANSLATORS
11800 comments.
11801 * util/grub-install.in (usage): Likewise.
11802 Spell ID in whole letters.
11803 Add missing ending dot.
11804 Quote variables.
11805 * util/grub-reboot.in: Fix capitalisation.
11806 * util/grub-set-default.in: Likewise.
11807
11808 2012-03-02 Vladimir Serbinenko <phcoder@gmail.com>
11809
11810 * util/getroot.c (strip_extra_slashes) [CYGWIN]: #ifdef-out.
11811 (exec_pipe) [CYGWIN || MINGW32]: Likewise.
11812 (find_root_devices_from_poolname) [CYGWIN || MINGW32]: Likewise.
11813 (find_root_devices_from_libzfs) [CYGWIN || MINGW32]: Likewise.
11814 Disable -Werror for -Wdeprecated-declarations.
11815 (grub_guess_root_devices) [CYGWIN || MINGW32]: #ifdef-out.
11816 (get_dm_uuid) [!HAVE_DEVICE_MAPPER]: Likewise.
11817 (grub_util_get_dm_abstraction) [! __linux__]: #ifdef-out.
11818 (grub_util_get_grub_dev): Make luks handling dependent on
11819 HAVE_DEVICE_MAPPER and not __linux__.
11820 (get_win32_path): Fix format security.
11821 (grub_find_zpool_from_dir) [CYGWIN || MINGW32]: #ifdef-out.
11822 (grub_make_system_path_relative_to_its_root) [CYGWIN || MINGW32]:
11823 Don't try grub_find_zpool_from_dir.
11824 (grub_make_system_path_relative_to_its_root) [!__linux__]:
11825 #ifdef-out paresdir.
11826
11827 2012-03-02 Vladimir Serbinenko <phcoder@gmail.com>
11828
11829 * util/grub-pe2elf.c (usage): Add missing noreturn.
11830 (write_section_data): Rename name to shname to avoid shadowing.
11831 (write_symbol_table): Rename name to symname to avoid shadowing.
11832 Fix write_reloc_section call.
11833
11834 2012-03-02 Vladimir Serbinenko <phcoder@gmail.com>
11835
11836 * grub-core/boot/i386/pc/startup_raw.S: Move decompressor_end to .bss
11837 to ensure that it's after the last byte of .text.
11838
11839 2012-03-02 Vladimir Serbinenko <phcoder@gmail.com>
11840
11841 * util/ieee1275/ofpath.c (my_isdigit): New function.
11842 (trailing_digits): Use my_isdigit.
11843 (strip_trailing_digits): Likewise.
11844
11845 2012-03-02 Vladimir Serbinenko <phcoder@gmail.com>
11846
11847 * util/resolve.c (read_dep_list): Use grub_isspace instead of isspace.
11848 * grub-core/kern/emu/hostdisk.c (read_device_map): Likewise.
11849
11850 2012-03-02 Vladimir Serbinenko <phcoder@gmail.com>
11851
11852 * grub-core/kern/i386/pc/startup.S: Define __start.
11853
11854 2012-03-02 Vladimir Serbinenko <phcoder@gmail.com>
11855
11856 * gentpl.py (kernel): Remove the use of TARGET_OBJ2ELF after strip since
11857 strip already transforms he format.
11858
11859 2012-03-02 Vladimir Serbinenko <phcoder@gmail.com>
11860
11861 * conf/i386-pc-cygwin-img-ld.sc: Define also _edata and __edata.
11862
11863 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
11864
11865 * util/grub-install.in: Add missing gettext init.
11866 * util/grub-kbdcomp.in: Likewise.
11867 * util/grub-mkconfig.in: Likewise.
11868 * util/grub-mknetdir.in: Likewise.
11869 * util/grub-mkrescue.in: Likewise.
11870 * util/grub-mkstandalone.in: Likewise.
11871 * util/grub-reboot.in: Likewise.
11872 * util/grub-set-default.in: Likewise.
11873 * util/grub.d/00_header.in: Likewise.
11874 * util/grub.d/10_hurd.in: Likewise.
11875 * util/grub.d/10_windows.in: Likewise.
11876 * util/grub.d/30_os-prober.in: Likewise.
11877 * util/powerpc/ieee1275/grub-mkrescue.in: Likewise.
11878
11879 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
11880
11881 * po/Rules-swiss: Fix header comment.
11882
11883 2012-02-29 Andreas Vogel <anvoit>
11884
11885 * grub-core/kern/misc.c (grub_xvasprintf): Fix an exit path which
11886 resulted in leak of arguments.
11887
11888 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
11889
11890 * grub-core/boot/i386/pc/startup_raw.S: Use separate
11891 reed_solomon_size const definition instead of computing it since
11892 Apple assembler doesn't support the later.
11893
11894 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
11895
11896 * gentpl.py (kernel): Rewrite Apple part.
11897
11898 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
11899
11900 * include/grub/kernel.h (FOR_MODULES): Check module magic.
11901
11902 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
11903
11904 * util/grub-mkimagexx.c (locate_sections): Support non-standard
11905 ELF section gap.
11906 (load_image): Likewise.
11907
11908 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
11909
11910 * configure.ac: Fix a typo in previous commit.
11911
11912 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
11913
11914 Don't add -Wl,-N on Apple platform.
11915
11916 * configure.ac (TARGET_LDFLAGS_OLDMAGIC): New subst.
11917 * conf/Makefile.common: Use TARGET_LDFLAGS_OLDMAGIC instead of -Wl,-N
11918
11919 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
11920
11921 * grub-core/Makefile.core.def (lzma_decompress): Use
11922 TARGET_IMG_BASE_LDOPT rather than hardcoding -Wl,-Ttext.
11923
11924 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
11925
11926 * grub-core/genmod.sh.in: Rewrite the Apple part.
11927
11928 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
11929
11930 * grub-core/loader/machoXX.c (grub_macho_load): Fix signed vs unsigned
11931 comparison.
11932
11933 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
11934
11935 * acinclude.m4 (grub_CHECK_PIC): New test.
11936 * configure.ac: Add -fno-PIC to TARGET_CFLAGS if -fPIC is default.
11937
11938 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
11939
11940 * include/grub/libgcc.h (__STDC_VERSION__): Define if it's not yet so
11941 to avoid the warning.
11942
11943 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
11944
11945 * grub-core/boot/i386/pc/diskboot.S (firstlist): Rename to ...
11946 (LOCAL(firstlist)): ... this. Move it before the firstlist and not
11947 after. All users updated.
11948
11949 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
11950
11951 Use the common size routine in hostfs so we can read disks as well.
11952
11953 * grub-core/kern/emu/hostdisk.c (grub_util_get_fd_sectors): Rename to ..
11954 (grub_util_get_fd_size): ... this. Return size in bytes.
11955 All users updated.
11956 * grub-core/kern/emu/hostfs.c (grub_hostfs_open): Use
11957 grub_util_get_fd_size.
11958
11959 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
11960
11961 * grub-core/kern/emu/hostdisk.c (grub_util_get_fd_sectors) [__APPLE__]:
11962 Add blocksize retrieval.
11963
11964 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
11965
11966 * configure.ac: Restore CFLAGS after efiemu check.
11967
11968 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
11969
11970 * configure.ac: Move -fnested-functions to CPPFLAGS to workaround
11971 Apple bug.
11972
11973 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
11974
11975 * grub-core/Makefile.am (MACHO2IMG): Add missing variable.
11976
11977 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
11978
11979 * grub-core/commands/i386/pc/halt.c (grub_halt): Add noreturn attribute.
11980 (grub_cmd_halt): Likewise.
11981
11982 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
11983
11984 * grub-core/lib/i386/relocator16.S: Declare LOCAL(relocator16_end)
11985 for local arithmetics.
11986 Break %sp init into 2 instructions.
11987 Add 0 byte at the end.
11988
11989 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
11990
11991 * grub-core/disk/diskfilter.c (read_segment): Initialise err
11992 before loops.
11993
11994 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
11995
11996 * grub-core/lib/xzembed/xz_dec_stream.c (hash_validate): Use void *
11997 for context.
11998
11999 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
12000
12001 * grub-core/disk/ldm.c (make_vg): Init part.name.
12002 (grub_ldm_detect): Silence spurious warning.
12003 (grub_util_is_ldm): Likewise.
12004
12005 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
12006
12007 * grub-core/loader/i386/xnu.c (grub_xnu_boot): Init fsbfreq to
12008 sane value to avoid a spurious warning.
12009
12010 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
12011
12012 * include/grub/dl.h: Switch from APPLE_CC to __APPLE__.
12013 (GRUB_MOD_LICENSE) [ASM_FILE]: Make into macro. All users updated.
12014
12015 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
12016
12017 * include/grub/symbol.h (EXT_C) [!ASM_FILE]: Redefine with strings.
12018 * grub-core/lib/i386/backtrace.c (grub_backtrace): Use EXT_C.
12019
12020 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
12021
12022 * grub-core/gdb/i386/machdep.S: Use VARIABLE and EXT_C instead of
12023 hardcoding the relevant info.
12024
12025 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
12026
12027 * grub-core/gnulib/argp-fmtstream.c (__argp_get_display_len): Add
12028 missing const qualifiers.
12029 * grub-core/gnulib/argp-fmtstream.h (__argp_get_display_len): Likewise.
12030
12031 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
12032
12033 * util/getroot.c [__APPLE__]: Add missing includes.
12034 (grub_util_biosdisk_is_floppy): Fix usage of undefined variable.
12035
12036 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
12037
12038 * util/grub-mkimage.c (generate_image): Silence spurious warning.
12039
12040 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
12041
12042 * util/ieee1275/ofpath.c: Rename devname to sys_devname everywhere to
12043 avoid conflicts.
12044
12045 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
12046
12047 * util/ieee1275/grub-ofpathname.c: Add missing config.h include.
12048
12049 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
12050
12051 * util/grub-setup.c (setup) [!__linux__]: Add missing file declaration
12052 and grub_file_close call.
12053
12054 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
12055
12056 Add LZSS Mach-O support (needed for new xnu kernelcache).
12057
12058 * grub-core/Makefile.core.def (xnu): Add file lzss.c
12059 * grub-core/loader/lzss.c: New file.
12060 * grub-core/loader/xnu.c (grub_xnu_load_driver): Close binaryfile
12061 on Mach-O open failure.
12062 * grub-core/loader/macho.c (grub_macho_close): Free uncompressedXX.
12063 Don't free cmdsXX in uncompressedXX is set.
12064 (grub_macho_file): Init new fields.
12065 New argument is_64bit. All users updated.
12066 Handle compressed. Error out if no suitable architecture is found.
12067 Don't close file.
12068 (grub_macho_open): New argument is_64bit. All users updated.
12069 * grub-core/loader/macho32.c: Add defines for new fields.
12070 * grub-core/loader/macho64.c: Likewise.
12071 * grub-core/loader/machoXX.c (grub_macho_contains_macho): Make static.
12072 (grub_macho_parse): Handle compressed.
12073 Defer actual processing if compressed.
12074 (grub_macho_cmds_iterate): Decompress if compressed. New argument
12075 "filename". All users updated.
12076 (grub_macho_size): New argument "filename". All users updated.
12077 (grub_macho_get_entry_point): Likewise.
12078 (grub_macho_load): Handle compressed.
12079 * include/grub/macho.h (grub_macho_lzss_header): New struct.
12080 (GRUB_MACHO_LZSS_OFFSET): New define.
12081 (grub_decompress_lzss): New proto.
12082 * include/grub/machoload.h (grub_macho_file): New fields to handle
12083 compressed.
12084 (grub_macho_contains_macho64): Remove proto.
12085 (grub_macho_contains_macho32): Likewise.
12086 * util/grub.d/30_os-prober.in: Use kernel cache if available.
12087
12088 2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
12089
12090 * grub-core/disk/pata.c (grub_pata_readwrite): Fix ATAPI protocol error.
12091
12092 2012-02-28 Vladimir Serbinenko <phcoder@gmail.com>
12093
12094 Fix make dist.
12095
12096 * Makefile.am (starfield_theme_files): New var.
12097 (starfield_DATA): Use starfield_theme_files.
12098 (EXTRA_DIST): Add starfield_theme_files. Add starfield source files.
12099 Add bootcheck-related files.
12100 * conf/Makefile.extra-dist (EXTRA_DIST): Add several missing files.
12101 * docs/Makefile.am (EXTRA_DIST): Add font_char_metrics.png
12102 and font_char_metrics.txt.
12103 * grub-core/Makefile.core.def (kernel): Update extra_dist.
12104 (setjmp): Add lib/ia64/longjmp.S.
12105 * po/Makefile.in.in (DISTFILES): Add POTFILES-shell.in and grub.d.sed.
12106 * po/POTFILES.in: Regenerate.
12107 * po/Rules-swiss: use DISTFILES.common.extra2 and not
12108 DISTFILES.common.extra1.
12109 * util/devicemap.c: Removed.
12110 * grub-core/lib/i386/relocator_backward.S: Likewise.
12111 * util/import_gcry.py: Remove unused files. Add extra_dist for
12112 ChangeLog.
12113
12114 2012-02-28 Vladimir Serbinenko <phcoder@gmail.com>
12115
12116 * grub-core/gettext/gettext.c (grub_mofile_open): Call
12117 grub_gettext_delete_list before changing grub_gettext_max to avoid
12118 running out of array bounds.
12119
12120 2012-02-28 Vladimir Serbinenko <phcoder@gmail.com>
12121
12122 * grub-core/term/i386/pc/vga_text.c: Add GRUB_MACHINE_MULTIBOOT to
12123 grub_vga_text_init/grub_vga_text_fini.
12124
12125 2012-02-28 Vladimir Serbinenko <phcoder@gmail.com>
12126
12127 * grub-core/loader/i386/xnu.c (grub_xnu_boot): Fix format specification.
12128
12129 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12130
12131 * configure.ac: Bump to 2.00~beta0.
12132
12133 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12134
12135 * util/getroot.c (grub_find_root_devices_from_btrfs): Add
12136 missing initialisation.
12137
12138 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12139
12140 * grub-core/partmap/msdos.c (message_warn): Clarify messages.
12141
12142 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12143
12144 Support v2 xnu boot arguments.
12145
12146 * grub-core/loader/i386/xnu.c (grub_cpu_xnu_fill_devicetree):
12147 New argument fsbfreq_out.
12148 (grub_xnu_set_video): Receive an argument grub_xnu_boot_params_common.
12149 (grub_xnu_boot): Support v2 arguments. Disable PIC so that APIC can
12150 be used.
12151 * grub-core/loader/machoXX.c (grub_macho_load): New argument
12152 darwin_version.
12153 * grub-core/loader/xnu.c (grub_xnu_darwin_version): New variable.
12154 * include/grub/i386/xnu.h (grub_xnu_boot_params_common): New struct.
12155 (grub_xnu_boot_params): Rename to ...
12156 (grub_xnu_boot_params_v1): ...this. Use grub_xnu_boot_params_common.
12157 (grub_xnu_boot_params_v2): New struct.
12158
12159 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12160
12161 * grub-core/efiemu/prepare.c (grub_efiemu_crc): Add missing
12162 zeroing of CRC field before computing CRC.
12163
12164 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12165
12166 * grub-core/lib/relocator.c (malloc_in_range): Fix memory leak.
12167 Change order of allocations to decrease fragmentation.
12168
12169 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12170
12171 * Makefile.util.def (grub-ofpathname): Enable on all platforms.
12172
12173 2012-02-27 Colin Watson <cjwatson@ubuntu.com>
12174
12175 Use write-combining MTRR to speed up video with buggy BIOSes.
12176
12177 * grub-core/video/i386/pc/vbe.c (framebuffer): New member mtrr.
12178 (cpuid): New define.
12179 (rdmsr): Likewise.
12180 (wrmsr): Likewise.
12181 (mtrr_base): Likewise.
12182 (mtrr_mask): Likewise.
12183 (grub_vbe_enable_mtrr_entry): New function.
12184 (grub_vbe_enable_mtrr): Likewise.
12185 (grub_vbe_disable_mtrr): Likewise.
12186 (grub_vbe_bios_set_display_start): Disable mtrr when handing the
12187 control off to BIOS.
12188 (grub_video_vbe_init): Fill mtrr.
12189 (grub_video_vbe_fini): Disable mtrr.
12190 (grub_video_vbe_get_info_and_fini): Likewise.
12191 (grub_video_vbe_setup): Enable mtrr.
12192
12193 2012-02-27 Colin Watson <cjwatson@ubuntu.com>
12194
12195 * include/grub/partition.h (grub_partition_map): Change prototype of
12196 embed to take a maximum value for nsectors.
12197 * include/grub/emu/hostdisk.h (grub_util_ldm_embed): Likewise.
12198 * include/grub/fs.h (grub_fs): Likewise.
12199 * grub-core/partmap/msdos.c (embed_signatures): New array.
12200 (pc_partition_map_embed): Check for and avoid sectors matching any
12201 of the signatures in embed_signatures, up to max_nsectors.
12202 * grub-core/partmap/gpt.c (gpt_partition_map_embed): Restrict
12203 returned sector map to max_nsectors.
12204 * grub-core/disk/ldm.c (grub_util_ldm_embed): Likewise.
12205 * grub-core/fs/btrfs.c (grub_btrfs_embed): Likewise.
12206 * grub-core/fs/zfs/zfs.c (grub_zfs_embed): Likewise.
12207 * util/grub-setup.c (setup): Allow for the embedding area being
12208 split into multiple blocklists. Tell dest_partmap->embed the
12209 maximum number of sectors we care about.
12210
12211 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12212
12213 * include/grub/fs.h (grub_fs) [GRUB_UTIL]: Add blocklist_install field.
12214 Specify blocklist_install and reserver_first_sector for all fs.
12215 * util/grub-setup.c (setup): Use FIBMAP/FIEMAP on Linux. Check resulting
12216 blocklists.
12217
12218 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12219
12220 * util/grub-install.in: Clarify strings.
12221 Fix source dir check.
12222
12223 2012-02-27 Richard Laager <rlaager@wiktel.com>
12224
12225 * util/getroot.c (grub_find_root_devices_from_mountinfo): Handle
12226 "zfs" and "fuse.zfs" as synonyms.
12227
12228 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12229
12230 * configure.ac: Put platform and target_cpu substitutions back since
12231 they are used for directories.
12232
12233 2012-02-27 Richard Laager <rlaager@wiktel.com>
12234 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12235
12236 * util/grub.d/10_linux.in: Add ZFS-related arguments.
12237 * util/grub.d/20_linux_xen.in: Likewise.
12238
12239 2012-02-27 Richard Laager <rlaager@wiktel.com>
12240
12241 * util/getroot.c (find_root_devices_from_poolname): Handle vdevs
12242 with full paths.
12243
12244 2012-02-27 Richard Laager <rlaager@wiktel.com>
12245
12246 * util/getroot.c (grub_find_root_devices_from_mountinfo): Add missing
12247 unescape.
12248
12249 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12250
12251 Don't use insecure popen in getroot.
12252
12253 * util/getroot.c (get_mdadm_uuid): Move pipe logic to ...
12254 (exec_pipe): ... here.
12255 (find_root_devices_from_poolname): Use exec_pipe.
12256
12257 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12258
12259 Remove platform and target_cpu replacement.
12260
12261 * configure.ac: Remove platform and target_cpu substitutions.
12262 * tests/util/grub-shell.in: Use modinfo.
12263 * util/powerpc/ieee1275/grub-mkrescue.in: Specify powerpc-ieee1275
12264 explicitly.
12265
12266 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12267
12268 Autodetect platform in grub-install but allow override.
12269
12270 * util/grub-install.in: Autodetect platform. Support --target and
12271 --directory. Read platform from modinfo.sh.
12272
12273 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12274
12275 Support btrfs multi-volume probe.
12276
12277 * util/getroot.c (btrfs_ioctl_dev_info_args) [__linux__]: New struct.
12278 (btrfs_ioctl_fs_info_args) [__linux__]: Likewise.
12279 (BTRFS_IOC_DEV_INFO) [__linux__]: New define.
12280 (BTRFS_IOC_FS_INFO) [__linux__]: Likewise.
12281 (grub_find_root_devices_from_btrfs) [__linux__]: New function.
12282 (grub_find_root_devices_from_mountinfo) [__linux__]: Use
12283 grub_find_root_devices_from_btrfs if on btrfs.
12284
12285 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12286
12287 Remove any awareness of *.c util files about target.
12288
12289 * Makefile.util.def (grub-setup): Split to ...
12290 (grub-bios-setup): ... and this.
12291 (grub-sparc64-setup): ... and this.
12292 * configure.ac: Don't add machine_CPPFLAGS into HOST_CPPFLAGS.
12293 * docs/man/grub-setup.h2m: Split into ...
12294 * docs/man/grub-sparc64-setup.h2m: ... this.
12295 * docs/man/grub-bios-setup.h2m: ... and this.
12296 * include/grub/dl.h (grub_dl) [GRUB_UTIL]: Remove struct.
12297 * include/grub/elf.h (Elf_*) [GRUB_UTIL]: Remove types.
12298 (GRUB_TARGET_WORDSIZE) [GRUB_UTIL]: Remove.
12299 (grub_target_addr_t): Remove.
12300 (grub_target_size_t): Remove.
12301 (grub_target_ssize_t): Remove.
12302 * util/grub-install.in: Use new grub-*-setup.
12303 * util/grub-mkimagexx.c (Elf_Word): New define.
12304 (Elf_Half): Likewise.
12305 (Elf_Section): Likewise.
12306 (ELF_ST_TYPE): Likewise.
12307 * util/grub-setup.c: Switch from GRUB_MACHINE_SPARC64 to
12308 GRUB_SETUP_SPARC64 and from GRUB_MACHINE_PCBIOS to GRUB_SETUP_BIOS.
12309
12310 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12311
12312 Replace grub_target_addr with more appropriate types.
12313
12314 * grub-core/commands/efi/fixvideo.c (scan_card): Replace
12315 grub_target_addr with grub_addr.
12316 * grub-core/commands/iorw.c (grub_cmd_read): Replace
12317 grub_target_addr with grub_port.
12318 (grub_cmd_write): Likewise.
12319 * grub-core/commands/memrw.c (grub_cmd_read): Replace
12320 grub_target_addr with grub_addr.
12321 (grub_cmd_write): Likewise.
12322 * grub-core/video/efi_uga.c (find_line_len): Likewise.
12323
12324 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12325
12326 * include/grub/efi/api.h (grub_efi_runtime_services): Add missing
12327 const qualifier for vendor_guid.
12328
12329 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12330
12331 * grub-core/efiemu/runtime/efiemu.c (efiemu_get_variable): Add missing
12332 const qualifier.
12333 (efiemu_memequal): Likewise.
12334 (find_variable): Likewise.
12335
12336 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12337
12338 Fix missing console prototype on qemu-mips.
12339
12340 * include/grub/mips/qemu_mips/console.h: New file.
12341
12342 2012-02-27 Matthew Garrett <mjg@redhat.com>
12343 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12344
12345 * grub-core/kern/efi/efi.c (grub_efi_get_variable): Add new function.
12346 * include/grub/efi/efi.h: Likewise.
12347 * include/grub/efi/api.h: Add guid for EFI-specified variables.
12348 * include/grub/charset.h (GRUB_MAX_UTF16_PER_UTF8): New definition.
12349 * grub-core/normal/charset.c (grub_utf8_process): Move from here ...
12350 * include/grub/charset.h (grub_utf8_process): ... to here. Inline.
12351 * grub-core/normal/charset.c (grub_utf8_to_utf16): Move from here ...
12352 * include/grub/charset.h (grub_utf8_to_utf16): ... to here. Inline.
12353
12354 2012-02-27 Matthew Garrett <mjg@redhat.com>
12355
12356 * include/grub/efi/pci.h: New file to define EFI PCI protocols.
12357
12358 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12359
12360 * grub-core/disk/diskfilter.c (grub_diskfilter_iterate): Fix off-by-one
12361 error.
12362
12363 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12364
12365 * configure.ac: Remove inappropriate use of program_transform_name
12366 on grubdir and bootdir but allow explicit specification of those
12367 variables.
12368
12369 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12370
12371 * util/grub-mknetdir.in (grub_prefix): Removed.
12372 (subdir): Use @bootdirname@ and @grubdirname@.
12373
12374 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12375
12376 Replace PACKAGE_TARNAME with PACKAGE in pkglibdir and pkgdatadir.
12377
12378 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12379
12380 * po/POTFILES.in: Regenerated.
12381
12382 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12383
12384 Remove improper use of program_transform_name on pkglibrootdir.
12385
12386 * configure.ac (pkglibrootdir): Removed.
12387 (grub-mkimage): Replace PKGLIBROOTDIR with PKGLIBDIR.
12388 * util/grub-mkimage.c: Likewise.
12389
12390 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12391
12392 * grub-core/normal/menu_text.c (grub_print_message_indented_real): Fix a
12393 warning.
12394
12395 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12396
12397 * util/grub-install.in: Use file identifier if no UUID is available
12398 or user explicitly prompted for it.
12399
12400 2012-02-27 Navdeep Parhar <nparhar@gmail.com>
12401
12402 * grub-core/loader/i386/bsd.c (freebsd_zfsguid): New variable.
12403 (freebsd_get_zfs): New function.
12404 (grub_freebsd_boot): Pass zfs UUID.
12405 (grub_cmd_freebsd): Set zfs UUID.
12406
12407 2012-02-27 Vladimir Serbinenko <phcoder@gmail.com>
12408
12409 * conf/Makefile.common (platformdir): Base on pkglibdir and not
12410 pkglibrootdir.
12411
12412 2012-02-27 Mike Gilbert <floppym@gentoo.org>
12413
12414 Add configure flag to control libzfs integration.
12415
12416 * configure.ac: Add AC_ARG_ENABLE(libzfs ...) and associated logic.
12417
12418 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12419
12420 * grub-core/disk/diskfilter.c (insert_array): Choose the smallest
12421 device.
12422 * grub-core/disk/mdraid_linux.c (grub_mdraid_detect): Reject too
12423 small devices.
12424
12425 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12426
12427 Remove grub_{modname}_init and grub_{modname}_fini. They should never
12428 be used directly if it's really a module and GRUB_MOD_INIT shouldn't
12429 be used on non-modules.
12430
12431 * grub-core/commands/boot.c (GRUB_MOD_INIT) [LOONGSON || QEMU_MIPS]:
12432 Rename to grub_boot_init.
12433 (GRUB_MOD_FINI) [LOONGSON || QEMU_MIPS]: Rename to grub_boot_fini.
12434 * grub-core/commands/keylayouts.c (GRUB_MOD_INIT)
12435 [LOONGSON || QEMU_MIPS]: Rename to grub_keylayouts_init.
12436 (GRUB_MOD_FINI) [LOONGSON || QEMU_MIPS]: Rename to grub_keylayouts_fini.
12437 * grub-core/font/font_cmd.c (GRUB_MOD_INIT)
12438 [LOONGSON || QEMU_MIPS]: Rename to grub_font_init.
12439 (GRUB_MOD_FINI) [LOONGSON || QEMU_MIPS]: Rename to grub_font_fini.
12440 * grub-core/kern/mips/loongson/init.c: Replace explicit protos with
12441 includes.
12442 (grub_machine_init): Remove empty inits.
12443 * grub-core/kern/mips/qemu_mips/init.c: Replace explicit protos with
12444 includes.
12445 (grub_machine_init): Remove empty inits.
12446 * grub-core/term/arc/console.c: Remove explicit proto.
12447 * grub-core/term/at_keyboard.c (GRUB_MOD_INIT)
12448 [LOONGSON || QEMU_MIPS]: Rename to grub_at_keyboard_init.
12449 (GRUB_MOD_FINI) [LOONGSON || QEMU_MIPS]: Rename to
12450 grub_at_keyboard_fini.
12451 * grub-core/term/gfxterm.c (GRUB_MOD_INIT)
12452 [LOONGSON || QEMU_MIPS]: Rename to grub_gfxterm_init.
12453 (GRUB_MOD_FINI) [LOONGSON || QEMU_MIPS]: Rename to
12454 grub_gfxterm_fini.
12455 * grub-core/term/i386/pc/vga_text.c (GRUB_MOD_INIT)
12456 [LOONGSON || QEMU_MIPS]: Rename to grub_vgatext_init.
12457 (GRUB_MOD_FINI) [LOONGSON || QEMU_MIPS]: Rename to
12458 grub_vgatext_fini.
12459 * grub-core/term/ieee1275/console.c: Remove explicit proto.
12460 * grub-core/term/serial.c (GRUB_MOD_INIT)
12461 [LOONGSON || QEMU_MIPS]: Rename to grub_serial_init.
12462 (GRUB_MOD_FINI) [LOONGSON || QEMU_MIPS]: Rename to
12463 grub_serial_fini.
12464 * grub-core/term/terminfo.c (GRUB_MOD_INIT)
12465 [LOONGSON || QEMU_MIPS]: Rename to grub_terminfo_init.
12466 (GRUB_MOD_FINI) [LOONGSON || QEMU_MIPS]: Rename to
12467 grub_terminfo_fini.
12468 * grub-core/video/bitmap.c (GRUB_MOD_INIT): Removed.
12469 (GRUB_MOD_FINI): Likewise.
12470 * grub-core/video/radeon_fuloong2e.c (GRUB_MOD_INIT)
12471 [LOONGSON]: Rename to grub_video_radeon_fuloong2e_init.
12472 (GRUB_MOD_FINI) [LOONGSON]: Rename to
12473 grub_video_radeon_fuloong2e_fini.
12474 * grub-core/video/sis315pro.c (GRUB_MOD_INIT)
12475 [LOONGSON]: Rename to grub_video_sis315pro_init.
12476 (GRUB_MOD_FINI) [LOONGSON]: Rename to
12477 grub_video_sis315pro_fini.
12478 * grub-core/video/sm712.c (GRUB_MOD_INIT)
12479 [LOONGSON]: Rename to grub_video_sm712_init.
12480 (GRUB_MOD_FINI) [LOONGSON]: Rename to
12481 grub_video_sm712_fini.
12482 * include/grub/at_keyboard.h (grub_at_keyboard_init): New proto.
12483 (grub_at_keyboard_fini): Likewise.
12484 * include/grub/dl.h (GRUB_MOD_INIT) [!GRUB_UTIL && !EMU]:
12485 Don't declare grub_{modname}_init.
12486 (GRUB_MOD_INIT) [!GRUB_UTIL && !EMU]: Don't declare grub_{modname}_fini.
12487 * include/grub/keyboard_layouts.h (grub_keylayouts_init) [!EMU]:
12488 New proto.
12489 (grub_keylayouts_fini) [!EMU]: Likewise.
12490 * include/grub/serial.h (grub_serial_init) [!EMU]:
12491 New proto.
12492 (grub_serial_fini) [!EMU]: Likewise.
12493 * include/grub/terminfo.h (grub_terminfo_init) [!EMU]:
12494 New proto.
12495 (grub_terminfo_fini) [!EMU]: Likewise.
12496 * include/grub/video.h (grub_font_init) [!EMU]:
12497 New proto.
12498 (grub_font_fini) [!EMU]: Likewise.
12499 (grub_gfxterm_init) [!EMU]: Likewise.
12500 (grub_gfxterm_fini) [!EMU]: Likewise.
12501 (grub_video_sm712_init) [!EMU]: Likewise.
12502 (grub_video_sm712_fini) [!EMU]: Likewise.
12503 (grub_video_sis315pro_init) [!EMU]: Likewise.
12504 (grub_video_sis315pro_fini) [!EMU]: Likewise.
12505 (grub_video_radeon_fuloong2e_init) [!EMU]: Likewise.
12506 (grub_video_radeon_fuloong2e_fini) [!EMU]: Likewise.
12507
12508 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12509
12510 Make nand a prefix for nand devices.
12511
12512 * grub-core/disk/ieee1275/nand.c (grub_nand_open): Use prefix nand.
12513
12514 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12515
12516 * grub-core/kern/misc.c (grub_stpcpy): Move from here ...
12517 * include/grub/misc.h (grub_stpcpy): ... to here. Inlined.
12518
12519 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12520
12521 * include/grub/env.h (grub_env_find): Remove prototype.
12522 * grub-core/kern/env.c (grub_env_find): Make static.
12523 (grub_env_set): Remove useless set.
12524
12525 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12526
12527 * grub-core/kern/i386/realmode.S: Remove useless align.
12528
12529 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12530
12531 * include/grub/dl.h (grub_dl_load_file): Don't export.
12532
12533 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12534
12535 * grub-core/disk/diskfilter.c (grub_diskfilter_open): Remove useless
12536 grub_dprintf.
12537
12538 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12539
12540 * grub-core/disk/dmraid_nvidia.c (grub_dmraid_nv_detect): Remove useless
12541 grub_errors.
12542 * grub-core/disk/mdraid1x_linux.c (grub_mdraid_detect): Simplify by
12543 not reloading whole superblock but only the part which is really needed.
12544 Remove useless grub_errors.
12545 * grub-core/disk/mdraid_linux.c (grub_mdraid_detect): Remove useless
12546 grub_errors.
12547
12548 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12549
12550 Don't export grub_get_rtc.
12551
12552 * include/grub/i386/pc/time.h (grub_get_rtc): Don't export.
12553 * grub-core/commands/i386/pc/play.c (play): Use grub_get_time_ms.
12554
12555 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12556
12557 * grub-core/genmod.sh.in: Add -R .note.GNU-stack to strip.
12558
12559 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12560
12561 * grub-core/disk/diskfilter.c (insert_array): Remove scanner_name
12562 argument since it can be deduced from diskfilter. All users updated.
12563
12564 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12565
12566 Remove prio_list.
12567
12568 * include/grub/list.h (grub_prio_list): Removed.
12569 (GRUB_PRIO_LIST_PRIO_MASK): Removed. All users switched to
12570 GRUB_COMMAND_PRIO_MASK.
12571 (GRUB_PRIO_LIST_FLAG_ACTIVE): Removed. All users switched to
12572 GRUB_COMMAND_FLAG_ACTIVE.
12573 (grub_prio_list_insert): Removed.
12574 (grub_prio_list_remove): Likewise.
12575 (GRUB_AS_PRIO_LIST): Likewise.
12576 (GRUB_AS_PRIO_LIST_P): Likewise.
12577 * include/grub/command.h (GRUB_COMMAND_PRIO_MASK): New define.
12578 (GRUB_COMMAND_FLAG_ACTIVE): Likewise.
12579 * grub-core/kern/list.c (grub_prio_list_insert): Remove.
12580 * grub-core/kern/command.c (grub_register_command_prio): Inline
12581 the prio_list code.
12582 (grub_unregister_command): Likewise.
12583
12584 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12585
12586 Fix interrupt mixup from previous commit.
12587
12588 * include/grub/i386/pc/int.h (grub_i386_idt): New struct.
12589 (grub_realidt): New var.
12590 * grub-core/lib/i386/relocator16.S (grub_relocator16_idt): New variable
12591 Load idt.
12592 * grub-core/lib/i386/relocator.c (grub_relocator16_idt):
12593 New declaration.
12594 (grub_relocator16_boot): Set grub_relocator16_idt.
12595 * grub-core/kern/i386/realmode.S (realidt): Renamed to ...
12596 (LOCAL(realidt)): ... this.
12597 * grub-core/boot/i386/pc/startup_raw.S: Pass pointer to realidt in eax.
12598 * grub-core/kern/i386/pc/startup.S: Save pointer to realidt.
12599 (grub_realidt): New variable.
12600
12601 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12602
12603 * grub-core/lib/i386/backtrace.c (grub_cmd_backtrace): Move from ...
12604 * grub-core/lib/backtrace.c (grub_cmd_backtrace): ... to here.
12605 * grub-core/lib/i386/backtrace.c (GRUB_MOD_INIT): Move from ...
12606 * grub-core/lib/backtrace.c (GRUB_MOD_INIT): ... to here.
12607 Gettextize.
12608 * grub-core/lib/i386/backtrace.c (GRUB_MOD_FINI): Move from ...
12609 * grub-core/lib/backtrace.c (GRUB_MOD_FINI): ... to here.
12610 * po/POTFILES.in: Regenerate.
12611
12612 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12613
12614 * grub-core/commands/probe.c (grub_cmd_probe): Gettextise UUID and label
12615 errors.
12616
12617 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12618
12619 * grub-core/gnulib/argp-fmtstream.c (__argp_get_display_len): Stop on
12620 \0.
12621 (add_length): Likewise.
12622
12623 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12624 2012-02-26 Lubomir Kundrak <lkundrak@redhat.com>
12625
12626 GDB serial and backtrace support.
12627
12628 * grub-core/kern/i386/realmode.S (real_to_prot): Reload IDT.
12629 (prot_to_real): Likewise.
12630 * grub-core/kern/i386/int.S (grub_bios_interrupt): Remove IDT reload.
12631 * grub-core/Makefile.core.def (backtrace): New module.
12632 (gdb): Likewise.
12633 * grub-core/gdb/cstub.c: New file.
12634 * grub-core/gdb/gdb.c: Likewise.
12635 * grub-core/gdb/i386/idt.c: Likewise.
12636 * grub-core/gdb/i386/machdep.S: Likewise.
12637 * grub-core/gdb/i386/signal.c: Likewise.
12638 * grub-core/lib/i386/backtrace.c: Likewise.
12639 * grub-core/lib/backtrace.c: Likewise.
12640 * include/grub/backtrace.h: Likewise.
12641 * include/grub/gdb.h: Likewise.
12642 * include/grub/i386/gdb.h: Likewise.
12643
12644 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12645
12646 * grub-core/gnulib/argp-fmtstream.c (__argp_get_display_len):
12647 New function.
12648 (add_length): Likewise.
12649 (__argp_fmtstream_update): Handle strings with non-ASCII chars.
12650 * grub-core/gnulib/argp-fmtstream.h (__argp_get_display_len): New
12651 proto.
12652 * grub-core/gnulib/argp-help.c (argp_args_usage): Use
12653 __argp_get_display_len.
12654
12655 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12656
12657 $"..." support in scripts.
12658
12659 * grub-core/script/execute.c (grub_script_arglist_to_argv): Handle
12660 GRUB_SCRIPT_ARG_TYPE_GETTEXT.
12661 * grub-core/script/yylex.l: Likewise.
12662 * include/grub/script_sh.h (GRUB_SCRIPT_ARG_TYPE_GETTEXT): New enum
12663 value.
12664
12665 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12666
12667 * gentpl.py: Remove obsolete pkglib_DATA handling.
12668
12669 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12670
12671 Don't transform PACKAGE_TARNAME following a discussion on autoconf
12672 mailing list.
12673
12674 * util/grub-install.in: Don't transform PACKAGE_TARNAME.
12675 * util/grub-kbdcomp.in: Likewise.
12676 * util/grub-mkconfig.in: Likewise.
12677 * util/grub-mkconfig_lib.in: Likewise.
12678 * util/grub-mknetdir.in: Likewise.
12679 * util/grub-mkrescue.in: Likewise.
12680 * util/grub-mkstandalone.in: Likewise.
12681 * util/grub-reboot.in: Likewise.
12682 * util/grub-set-default.in: Likewise.
12683 * util/powerpc/ieee1275/grub-mkrescue.in: Likewise.
12684
12685 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12686
12687 Remove GRUB_PREFIX.
12688
12689 * util/grub-mkconfig.in: Remove GRUB_PREFIX.
12690 * util/grub.d/00_header.in: Compute prefix in the only place it's still
12691 used for backward compatibility.
12692
12693 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12694
12695 Add new all_video module.
12696
12697 * grub-core/Makefile.am (moddep.lst): Make dependent on video.lst.
12698 * grub-core/Makefile.core.def (all_video): New module.
12699 * grub-core/genmoddep.awk: Generate dependency of all_video from
12700 video.lst.
12701 * grub-core/lib/fake_module.c: New file.
12702 * grub-core/normal/main.c (features): Add feature_all_video_module.
12703 * util/grub.d/00_header.in: Define locale_dir based on $prefix and
12704 don't do explicit search again.
12705 insmod all_video in load_video if available.
12706
12707 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12708
12709 Another round of string clarification and adding TRANSLATORS comments.
12710
12711 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12712
12713 * util/grub-mknetdir.in: Remove erroneous reference to install_device.
12714
12715 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12716
12717 * grub-core/normal/charset.c (grub_utf8_to_ucs4_alloc): Fix return type
12718 to grub_ssize_t.
12719 * grub-core/normal/main.c (grub_normal_init_page): Fix msg_len type.
12720 * include/grub/charset.h (grub_utf8_to_ucs4_alloc): Fix prototype.
12721
12722 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12723
12724 * grub-core/normal/menu_text.c (grub_print_message_indented_real): Add
12725 trailing newline implicitly. All users updated.
12726
12727 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12728
12729 Implement serial on IEEE1275 and EFI.
12730
12731 * docs/grub.texi (Platform-specific limitations): Fix the columen video
12732 on emu. Mention arc and emu as the only platforms without serial
12733 support.
12734 * grub-core/Makefile.core.def (serial): Enable on all terminfomodule and
12735 ieee1275 platforms.
12736 * grub-core/term/efi/serial.c: New file.
12737 * grub-core/term/ieee1275/serial.c: Likewise.
12738 * grub-core/term/serial.c (grub_serial_find): Disable direct port
12739 specification if no ns8250 driver is available.
12740 (grub_cmd_serial): Likewise.
12741 (GRUB_MOD_INIT) [GRUB_MACHINE_IEEE1275]: Init ofserial.
12742 (GRUB_MOD_INIT) [GRUB_MACHINE_EFI]: Init efiserial.
12743 * include/grub/efi/api.h (GRUB_EFI_SERIAL_IO_GUID): New define.
12744 (grub_efi_parity_type_t): New type.
12745 (grub_efi_stop_bits_t): Likewise.
12746 (grub_efi_serial_io_interface): New struct.
12747 * include/grub/serial.h (grub_serial_port): Make 'broken' field
12748 available for all interfaces.
12749 Add EFI and IEEE1275 fields.
12750 (grub_ofserial_init): New proto.
12751 (grub_efiserial_init): Likeiwse.
12752 * util/grub.d/00_header.in: Don't check for the presence of serial
12753 module.
12754
12755 2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
12756
12757 * grub-core/disk/ieee1275/ofdisk.c (scan): Fix improper use of device
12758 name as if it was an alias.
12759
12760 2012-02-25 Vladimir Serbinenko <phcoder@gmail.com>
12761
12762 * grub-core/commands/lsacpi.c (options): Fix typo.
12763
12764 2012-02-25 Vladimir Serbinenko <phcoder@gmail.com>
12765
12766 Convert grub-emu to argp.
12767
12768 * grub-core/Makefile.core.def (kernel): Add kern/emu/argp_common.c on
12769 emu.
12770 * util/argp_common.c: Rename to ...
12771 * grub-core/kern/emu/argp_common.c: ... this. All users updated.
12772 Add missing includes.
12773 * grub-core/kern/emu/main.c: Convert to argp.
12774 * po/POTFILES.in: Regenerate.
12775 * util/grub-install.in (usage): Make first letter lowcase in messages
12776 for uniformity.
12777 * util/grub-setup.c (options): Likewise.
12778
12779 2012-02-24 Vladimir Serbinenko <phcoder@gmail.com>
12780
12781 * grub-core/gfxmenu/gui_progress_bar.c (progress_bar_set_property):
12782 Put back accidently commented-out code.
12783
12784 2012-02-24 Vladimir Serbinenko <phcoder@gmail.com>
12785
12786 * grub-core/fs/hfsplus.c (grub_hfsplus_btree_iterate_node): Add btree
12787 loop check using Brent algorithm.
12788 (grub_hfsplus_btree_search): Likewise.
12789
12790 2012-02-24 Vladimir Serbinenko <phcoder@gmail.com>
12791
12792 * util/grub-install.in: Fix usage of wrong device for PreP install.
12793
12794 2012-02-24 Vladimir Serbinenko <phcoder@gmail.com>
12795
12796 * conf/Makefile.common (CFLAGS_GNULIB): Add
12797 -Wno-unsafe-loop-optimizations.
12798 * configure.ac: Remove -Wmissing-declarations and -Wmissing-prototypes
12799 on tools.
12800 * grub-core/commands/legacycfg.c: Add pragma to skip
12801 -Wunsafe-loop-optimizations.
12802 (check_password_md5_real): Fix loop counter type.
12803 * grub-core/commands/testload.c (grub_cmd_testload): Fix over the EOF
12804 reading.
12805 * grub-core/disk/ldm.c (grub_util_get_ldm): Fix logic error.
12806 * grub-core/fs/zfs/zfs_sha256.c (zio_checksum_SHA256): Add safety
12807 loop condition.
12808 * grub-core/io/gzio.c: Add pragma to skip -Wunsafe-loop-optimizations.
12809 * grub-core/lib/LzmaEnc.c (GetOptimum): Avoid possible infinite loop.
12810 * grub-core/net/net.c (grub_net_route_address): Add safety loop
12811 condition.
12812 * grub-core/normal/charset.c (bidi_line_wrap): Likewise.
12813 * grub-core/normal/cmdline.c (grub_set_history): Fix loop types and
12814 avoid possible infinite loops.
12815 * grub-core/script/parser.y: Add pragma to skip -Wmissing-declarations
12816 and -Wunsafe-loop-optimizations.
12817 * grub-core/script/yylex.l: Likewise.
12818 * util/grub-mkfont.c: Add pragma to skip -Wunsafe-loop-optimizations.
12819 (print_glyphs): Avoid infinite loops.
12820 * util/grub-mkimage.c (compress_kernel_xz): Fix format security.
12821
12822 2012-02-24 Grégoire Sutre <gregoire.sutre@gmail.com>
12823
12824 * grub-core/commands/lsacpi.c (disp_acpi_xsdt_table): Fix loop condition
12825 to avoid infinite loop.
12826 (disp_acpi_rsdt_table): Likewise.
12827
12828 2012-02-24 Vladimir Serbinenko <phcoder@gmail.com>
12829
12830 * grub-core/font/font.c (grub_font_load): Add support for default
12831 path for fonts ($prefix/fonts).
12832 * grub-core/kern/corecmd.c (grub_core_cmd_insmod): Unify condition
12833 for checking if string is a path.
12834 * grub-core/normal/main.c (features): Add feature_default_font_path.
12835 * util/grub-mkconfig.in: Skip mangling of GRUB_FONT into GRUB_FONT_PATH.
12836 * util/grub.d/00_header.in: Use default directory if possible.
12837 * util/grub-install.in: Install unicode.pf2.
12838
12839 2012-02-24 Vladimir Serbinenko <phcoder@gmail.com>
12840
12841 * po/README: Add de_CH and en@quot to po/LINGUAS generation command.
12842 * po/Rules-swiss: New file.
12843 * po/swiss.sed: Likewise.
12844
12845 2012-02-23 Vladimir Serbinenko <phcoder@gmail.com>
12846
12847 * grub-core/fs/btrfs.c (find_device): Fix typos.
12848 * grub-core/fs/zfs/zfs.c (read_device): Likewise.
12849 * util/grub-mkrelpath.c (argp_parser): Likewise.
12850 Reported by: Yuri Chornoivan.
12851
12852 2012-02-23 Dalet Omega <daletomega@gmail.com>
12853
12854 * grub-core/gfxmenu/gui_label.c (label_set_property): Add template
12855 for usual informative messages.
12856
12857 2012-02-23 Dalet Omega <daletomega@gmail.com>
12858
12859 Starfield theme.
12860
12861 * Makefile.am: Define starfield_DATA and dejavu.pf2 generation.
12862 * conf/Makefile.common: Define starfielddir.
12863 * configure.ac: Configure starfield.
12864 * themes/starfield/COPYING.CC-BY-SA-3.0: New file.
12865 * themes/starfield/README: Likewise.
12866 * themes/starfield/blob_w.png: Likewise.
12867 * themes/starfield/boot_menu_c.png: Likewise.
12868 * themes/starfield/boot_menu_e.png: Likewise.
12869 * themes/starfield/boot_menu_n.png: Likewise.
12870 * themes/starfield/boot_menu_ne.png: Likewise.
12871 * themes/starfield/boot_menu_nw.png: Likewise.
12872 * themes/starfield/boot_menu_s.png: Likewise.
12873 * themes/starfield/boot_menu_se.png: Likewise.
12874 * themes/starfield/boot_menu_sw.png: Likewise.
12875 * themes/starfield/boot_menu_w.png: Likewise.
12876 * themes/starfield/slider_c.png: Likewise.
12877 * themes/starfield/slider_n.png: Likewise.
12878 * themes/starfield/slider_s.png: Likewise.
12879 * themes/starfield/src/blob_nw.xcf: Likewise.
12880 * themes/starfield/src/bootmenu/: Likewise.
12881 * themes/starfield/src/bootmenu/center.xcf: Likewise.
12882 * themes/starfield/src/bootmenu/corner.xcf: Likewise.
12883 * themes/starfield/src/bootmenu/side.xcf: Likewise.
12884 * themes/starfield/src/slider_c.xcf: Likewise.
12885 * themes/starfield/src/slider_n.xcf: Likewise.
12886 * themes/starfield/src/slider_s.xcf: Likewise.
12887 * themes/starfield/src/terminalbox/: Likewise.
12888 * themes/starfield/src/terminalbox/center.xcf: Likewise.
12889 * themes/starfield/src/terminalbox/corner.xcf: Likewise.
12890 * themes/starfield/src/terminalbox/side.xcf: Likewise.
12891 * themes/starfield/starfield.png: Likewise.
12892 * themes/starfield/terminal_box_c.png: Likewise.
12893 * themes/starfield/terminal_box_e.png: Likewise.
12894 * themes/starfield/terminal_box_n.png: Likewise.
12895 * themes/starfield/terminal_box_ne.png: Likewise.
12896 * themes/starfield/terminal_box_nw.png: Likewise.
12897 * themes/starfield/terminal_box_s.png: Likewise.
12898 * themes/starfield/terminal_box_se.png: Likewise.
12899 * themes/starfield/terminal_box_sw.png: Likewise.
12900 * themes/starfield/terminal_box_w.png: Likewise.
12901 * themes/starfield/theme.txt: Likewise.
12902
12903 2012-02-23 Vladimir Serbinenko <phcoder@gmail.com>
12904
12905 * util/grub.d/00_header.in: Add missing export theme.
12906
12907 2012-02-22 Vladimir Serbinenko <phcoder@gmail.com>
12908
12909 * util/ieee1275/ofpath.c: Remove include of malloc.h since stdlib is
12910 already included.
12911 Reported by: Eren D.
12912
12913 2012-02-22 Vladimir Serbinenko <phcoder@gmail.com>
12914
12915 * conf/Makefile.common (grubdatadir): Removed.
12916 (Makefile.am): Move eveything grubdata to pkgdata.
12917
12918 2012-02-22 Vladimir Serbinenko <phcoder@gmail.com>
12919
12920 * grub-core/commands/acpihalt.c (get_sleep_type):
12921 Remove unused variable.
12922
12923 2012-02-22 Vladimir Serbinenko <phcoder@gmail.com>
12924
12925 * include/grub/acpi.h (GRUB_ASCII_OPCODE): Add
12926 GRUB_ACPI_OPCODE_STRING_CONST, GRUB_ACPI_OPCODE_BUFFER,
12927 GRUB_ACPI_OPCODE_CREATE_WORD_FIELD
12928 and GRUB_ACPI_OPCODE_CREATE_BYTE_FIELD.
12929 * grub-core/commands/acpihalt.c [GRUB_DSDT_TEST]: Replace include of
12930 i18n with gettext no-op.
12931 (skip_data_ref_object): Support GRUB_ACPI_OPCODE_BUFFER and
12932 GRUB_ACPI_OPCODE_STRING_CONST.
12933 (get_sleep_type): Support GRUB_ACPI_OPCODE_CREATE_WORD_FIELD and
12934 GRUB_ACPI_OPCODE_CREATE_BYTE_FIELD. Add handling of unknown opcodes.
12935
12936 2012-02-22 Vladimir Serbinenko <phcoder@gmail.com>
12937
12938 * po/POTFILES.in: Regenerate.
12939
12940 2012-02-22 Vladimir Serbinenko <phcoder@gmail.com>
12941
12942 * Makefile.util.def (libgrubmods.a): Add -Wno-error=logical-op
12943 -Wno-error=missing-noreturn.
12944
12945 2012-02-22 Vladimir Serbinenko <phcoder@gmail.com>
12946
12947 * grub-core/fs/affs.c (grub_affs_read_block): Avoid <= in loop
12948 condition to avoid possibly infinite loops.
12949 * grub-core/lib/pbkdf2.c (grub_crypto_pbkdf2): Likewise.
12950 * grub-core/lib/xzembed/xz_dec_bcj.c (bcj_powerpc): Likewise.
12951
12952 2012-02-22 Vladimir Serbinenko <phcoder@gmail.com>
12953
12954 * grub-core/normal/charset.c (bidi_line_wrap): Avoid <= in loop
12955 condition to avoid possibly infinite loops.
12956
12957 2012-02-22 Vladimir Serbinenko <phcoder@gmail.com>
12958
12959 * grub-core/kern/emu/hostdisk.c (read_device_map): Add missing noreturn
12960 on show_error.
12961
12962 2012-02-22 Vladimir Serbinenko <phcoder@gmail.com>
12963
12964 * grub-core/kern/disk.c (grub_disk_write): Add missing const qualifier.
12965
12966 2012-02-22 Vladimir Serbinenko <phcoder@gmail.com>
12967
12968 * grub-core/kern/corecmd.c (grub_core_cmd_ls): Add missing var init.
12969
12970 2012-02-22 Vladimir Serbinenko <phcoder@gmail.com>
12971
12972 * util/bin2h.c (usage): Add missing attribute noreturn.
12973
12974 2012-02-22 Vladimir Serbinenko <phcoder@gmail.com>
12975
12976 * grub-core/commands/testload.c (grub_cmd_testload): Fix overflow
12977 if the size isn't divisible by 512.
12978
12979 2012-02-22 Vladimir Serbinenko <phcoder@gmail.com>
12980
12981 Make list_push and list_remove functions rather than inline functions
12982 to decrease size and avoid aliasing violations.
12983
12984 * include/grub/list.h (grub_list_push): Move to ...
12985 * grub-core/kern/list.c (grub_list_push): ... here. Don't inline.
12986 * include/grub/list.h (grub_list_remove): Move to ...
12987 * grub-core/kern/list.c (grub_list_remove): ... here. Don't inline.
12988
12989 2012-02-22 Vladimir Serbinenko <phcoder@gmail.com>
12990
12991 * configure.ac: Disable for now -Wstack-protector, -Wunreachable-code
12992 and -Wunused-result.
12993
12994 2012-02-21 Vladimir Serbinenko <phcoder@gmail.com>
12995
12996 * grub-core/net/net.c (grub_cmd_deladdr): Fix index.
12997 Reported by: Seth Goldberg
12998
12999 2012-02-21 Vladimir Serbinenko <phcoder@gmail.com>
13000
13001 * configure.ac: Add -fno-builtin-gettext on host if NLS is disabled.
13002
13003 2012-02-19 Samuel Thibault <samuel.thibault@ens-lyon.org>
13004
13005 * util/grub-mkconfig.in (GRUB_CMDLINE_GNUMACH): Export variable.
13006 * util/grub.d/10_hurd.in: Include GRUB_CMDLINE_GNUMACH in gnumach
13007 command line.
13008 * docs/grub.texi (Simple configuration): Document
13009 GRUB_CMDLINE_GNUMACH.
13010
13011 2012-02-18 Vladimir Serbinenko <phcoder@gmail.com>
13012
13013 * conf/Makefile.common (platform_SCRIPTS): New variable.
13014 (platform_PROGRAMS): Likewise.
13015 * gentpl.py: Mark *,module and *.image for install.
13016 * grub-core/gdb_grub.in: Add a notice of expected environment.
13017 * grub-core/Makefile.core.def (gdb_grub): Mark for install.
13018 (gmodule.pl): Likewise.
13019
13020 2012-02-18 Vladimir Serbinenko <phcoder@gmail.com>
13021
13022 Replace grub_checkkey with grub_getkey_noblock.
13023
13024 * grub-core/kern/term.c (grub_checkkey): Replaced with ...
13025 (grub_getkey_noblock): ... this. All users updated.
13026
13027 2012-02-18 Vladimir Serbinenko <phcoder@gmail.com>
13028
13029 * grub-core/kern/emu/console.c: Move to ...
13030 * grub-core/term/emu/console.c: ...here.
13031 (grub_ncurses_getkey): Fix return value if no key is detected.
13032
13033 2012-02-12 Vladimir Serbinenko <phcoder@gmail.com>
13034
13035 * include/grub/test.h (grub_unit_test_init): Add missing prototype.
13036 (grub_unit_test_fini): Likewise.
13037 * tests/lib/unit_test.c (main): Remove extra nested external prototype.
13038
13039 2012-02-12 Vladimir Serbinenko <phcoder@gmail.com>
13040
13041 * include/grub/test.h (GRUB_UNIT_TEST)
13042
13043 2012-02-12 Vladimir Serbinenko <phcoder@gmail.com>
13044
13045 * grub-core/script/execute.c (grub_script_break): Clarify logic.
13046 Better error handling.
13047 (grub_script_return): Likewise.
13048 * grub-core/script/lexer.c (grub_script_lexer_yywrap): Likewise.
13049
13050 2012-02-12 Vladimir Serbinenko <phcoder@gmail.com>
13051
13052 * grub-core/lib/libgcrypt_wrap/cipher_wrap.h (__GNU_LIBRARY__): Avoid
13053 rimplicit redifinition.
13054
13055 2012-02-12 Vladimir Serbinenko <phcoder@gmail.com>
13056
13057 * docs/grub.texi (Internationalisation): Detail (lack of) collation in
13058 GRUB.
13059
13060 2012-02-12 Vladimir Serbinenko <phcoder@gmail.com>
13061
13062 * grub-core/normal/cmdline.c (grub_cmdline_get): Don't gettext prompt.
13063 * grub-core/normal/main.c (grub_normal_read_line_real): Gettext
13064 prompt here.
13065
13066 2012-02-12 Vladimir Serbinenko <phcoder@gmail.com>
13067
13068 * grub-core/fs/zfs/zfs.c (zfs_fetch_nvlist): Mark unknown member here
13069 as GRUB_ERR_BUG. Don't malloc if no device is available.
13070
13071 2012-02-12 Vladimir Serbinenko <phcoder@gmail.com>
13072
13073 * grub-core/term/terminfo.c (grub_terminfo_output_unregister):
13074 Mark calling with invalid term as GRUB_ERR_BUG.
13075
13076 2012-02-12 Vladimir Serbinenko <phcoder@gmail.com>
13077
13078 * grub-core/net/tftp.c (tftp_receive): Silently discard too short
13079 packets rather than raising an error.
13080
13081 2012-02-12 Vladimir Serbinenko <phcoder@gmail.com>
13082
13083 * grub-core/loader/xnu.c (grub_xnu_writetree_toheap_real): Avoid set
13084 in if.
13085
13086 2012-02-12 Vladimir Serbinenko <phcoder@gmail.com>
13087
13088 * grub-core/loader/efi/appleloader.c (grub_cmd_appleloader): Move
13089 diagnostic to dprintf.
13090 * grub-core/loader/i386/pc/linux.c (grub_cmd_linux): Likewise.
13091
13092 2012-02-12 Vladimir Serbinenko <phcoder@gmail.com>
13093
13094 * grub-core/kern/corecmd.c (grub_core_cmd_ls): Handle error in parsing
13095 device name.
13096
13097 2012-02-12 Vladimir Serbinenko <phcoder@gmail.com>
13098
13099 * grub-core/fs/ntfs.c (locate_attr): Avoid set in if.
13100 (grub_ntfs_iterate_dir): Likewise.
13101
13102 2012-02-12 Vladimir Serbinenko <phcoder@gmail.com>
13103
13104 Efiemu stylistic fixes and gettext.
13105
13106 * grub-core/efiemu/i386/loadcore32.c
13107 (grub_arch_efiemu_relocate_symbols32): Avoid set in if.
13108 * grub-core/efiemu/i386/loadcore64.c
13109 (grub_arch_efiemu_relocate_symbols64): Likewise.
13110 * grub-core/efiemu/i386/pc/cfgtables.c
13111 (grub_machine_efiemu_init_tables): Likewise.
13112 * grub-core/efiemu/loadcore.c (grub_efiemu_resolve_symbols): Likewise.
13113 (grub_efiemu_loadcore_initXX): Add a filename argument.
13114 All users updated.
13115 Improved error message.
13116 * grub-core/efiemu/loadcore_common.c (grub_efiemu_loadcore_init):
13117 Add a filename argument.
13118 All users updated.
13119 * grub-core/efiemu/symbols.c (grub_efiemu_set_virtual_address_map):
13120 Reclassify double relocation as GRUB_ERR_BUG.
13121
13122 2012-02-12 Vladimir Serbinenko <phcoder@gmail.com>
13123
13124 * grub-core/commands/i386/pc/play.c (grub_cmd_play): Improve error
13125 handling.
13126
13127 2012-02-12 Vladimir Serbinenko <phcoder@gmail.com>
13128
13129 * grub-core/commands/hdparm.c (grub_cmd_hdparm): Allow running
13130 on partition.
13131
13132 2012-02-12 Vladimir Serbinenko <phcoder@gmail.com>
13133
13134 * include/grub/misc.h (grub_error_save): Fix cleaning grub_errno.
13135
13136 2012-02-12 Vladimir Serbinenko <phcoder@gmail.com>
13137
13138 Improve string. Gettextize.
13139
13140 2012-02-11 Vladimir Serbinenko <phcoder@gmail.com>
13141
13142 * configure.ac: Remove -Winline altogether and -Wmissing-prototypes on
13143 utils.
13144 * util/import_gcry.py: Add -Wno-strict-aliasing on checked modules.
13145
13146 2012-02-11 Vladimir Serbinenko <phcoder@gmail.com>
13147
13148 * grub-core/disk/diskfilter.c (grub_diskfilter_print_partmap)
13149 [GRUB_UTIL]: New function.
13150 (insert_array) [GRUB_UTIL]: Store partmaps.
13151 * include/grub/diskfilter.h (grub_diskfilter_pv) [GRUB_UTIL]: New member
13152 partmaps.
13153 (grub_diskfilter_print_partmap) [GRUB_UTIL]: New proto.
13154 * util/grub-probe.c (probe_partmap): Call grub_diskfilter_print_partmap.
13155 (probe_abstraction): Print diskfilter and not raid.
13156 Reported by: Lennart Sorensen
13157
13158 2012-02-11 Vladimir Serbinenko <phcoder@gmail.com>
13159
13160 * util/grub-mkimage.c (generate_image): Explicitly init decompress_size.
13161 * util/grub-mkimagexx.c (MASK3): New define.
13162 (add_value_to_slot_20b): Use MASK3.
13163 (add_value_to_slot_21): Likewise.
13164 (relocate_addresses): Fix format specification.
13165 (load_image): Explicitly init symtab_section.
13166
13167 2012-02-11 Vladimir Serbinenko <phcoder@gmail.com>
13168
13169 * util/getroot.c (grub_find_root_devices_from_mountinfo): Fix types.
13170 (grub_util_biosdisk_get_grub_dev): Fix format specification.
13171
13172 2012-02-11 Vladimir Serbinenko <phcoder@gmail.com>
13173
13174 * grub-core/kern/emu/full.c (grub_arch_dl_get_tramp_got_size): Enable
13175 on powerpc.
13176 Reported by: Lennart Sorensen
13177
13178 2012-02-11 Vladimir Serbinenko <phcoder@gmail.com>
13179
13180 * gentpl.py: Add missing license header.
13181 * docs/grub.texi: Update copyright year.
13182
13183 2012-02-10 Grégoire Sutre <gregoire.sutre@gmail.com>
13184
13185 Source grub-mkconfig_lib from the build directory at build time.
13186 Suggested by: Vladimir Serbinenko.
13187
13188 * gentpl.py (manpage): Set pkgdatadir to $(builddir) on help2man call.
13189 * util/grub-install.in: Define pkgdatadir if not already set, and source
13190 grub-mkconfig_lib from there.
13191 * util/grub-kbdcomp.in: Likewise.
13192 * util/grub-mkconfig.in: Likewise.
13193 * util/grub-mknetdir.in: Likewise.
13194 * util/grub-mkrescue.in: Likewise.
13195 * util/grub-mkstandalone.in: Likewise.
13196 * util/grub-reboot.in: Likewise.
13197 * util/grub-set-default.in: Likewise.
13198 * util/powerpc/ieee1275/grub-mkrescue.in: Likewise.
13199
13200 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13201
13202 Increase warning level.
13203
13204 * conf/Makefile.common (CFLAGS_GNULIB): Add -Wno-redundant-decls
13205 -Wno-unreachable-code -Wno-conversion -Wno-old-style-definition.
13206 * configure.ac (HOST_CFLAGS): Add bunch of -W arguments.
13207 (TARGET_CFLAGS): Likewise.
13208 (HOST_CFLAGS): Add -Werror unless --disable-werror is activated.
13209 * grub-core/Makefile.core.def (decompressor_xz): Add
13210 -Wno-unreachable-code.
13211 (normal): Add -Wno-redundant-decls.
13212 (xzio): Add -Wno-unreachable-code.
13213 (lzopio): Add -Wno-redundant-decls -Wno-error.
13214 * grub-core/commands/acpi.c: Add exception to -Wcast-align.
13215 * grub-core/commands/lsacpi.c: Add exception to -Wcast-align.
13216 * grub-core/gensymlist.sh: Add exception to -Wmissing-format-attribute.
13217 * grub-core/kern/dl.c: Add exception to -Wcast-align.
13218 * grub-core/kern/efi/efi.c (grub_efi_modules_addr): Likewise.
13219 * grub-core/kern/i386/coreboot/init.c: Add exception to
13220 -Wsuggest-attribute=noreturn.
13221 * grub-core/kern/ia64/dl.c: Add exception to -Wcast-align.
13222 * grub-core/kern/ia64/dl_helper.c: Likewise.
13223 * grub-core/kern/mips/dl.c: Likewise.
13224 * grub-core/kern/sparc64/dl.c: Likewise.
13225 * grub-core/lib/LzmaEnc.c: Add exception to -Wshadow.
13226 * grub-core/lib/libgcrypt_wrap/cipher_wrap.h (memcpy): Likewise.
13227 (memcmp): Likewise.
13228 * grub-core/lib/pbkdf2.c: Add exception to -Wunreachable-code.
13229 * grub-core/loader/ia64/efi/linux.c: Add exception to -Wcast-align.
13230 * grub-core/loader/mips/linux.c: Likewise.
13231 * grub-core/loader/multiboot_elfxx.c: Likewise.
13232 * grub-core/script/parser.y: Add exception to -Wunreachable-code.
13233 * grub-core/video/sm712.c: Add exception to -Wcast-align.
13234 * util/import_gcry.py: Add -Wno-cast-align to modules checked by hand.
13235 * grub-core/font/font.c (grub_font_loader_init): Add explicit cast and
13236 fixme.
13237 * grub-core/fs/iso9660.c (grub_iso9660_iterate_dir): Likewise.
13238 * grub-core/kern/i386/multiboot_mmap.c (grub_machine_mmap_init):
13239 Fix prototype.
13240
13241 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13242
13243 * grub-core/lib/i386/relocator16.S: Fix incorrect use of absolute
13244 address.
13245
13246 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13247
13248 * grub-core/commands/legacycfg.c (grub_cmd_legacy_kernel):
13249 Avoid improper use of strings.
13250 (grub_cmd_legacy_initrdnounzip): Likewise.
13251
13252 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13253
13254 * include/grub/emu/misc.h (grub_util_warn): Add missing format
13255 attribute.
13256 (grub_util_info): Likewise.
13257 (grub_util_error): Likewise.
13258
13259 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13260
13261 * util/grub-mount.c (fuse_init): Avoid improper use of strings.
13262 * util/grub-fstest.c (fstest): Likewise.
13263
13264 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13265
13266 * grub-core/disk/geli.c (grub_md_sha256_real): Respect format security.
13267 (grub_md_sha512_real): Likewise.
13268 (grub_util_get_geli_uuid): Likewise.
13269 * grub-core/kern/emu/hostdisk.c (grub_util_get_fd_sectors): Likewise.
13270 (grub_util_biosdisk_open): Fix format specification.
13271 Respect format security.
13272 * grub-core/kern/emu/misc.c (xmalloc): Respect format security.
13273 (xrealloc): Likewise.
13274 (xasprintf): Likewise.
13275
13276 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13277
13278 * util/import_gcry.py: Include grub/crypto.h in init.c.
13279
13280 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13281
13282 * util/grub-mkimage.c (compress_kernel_lzma): Respect format security.
13283 (generate_image): Make prefix a const char *.
13284 Fix format specifications. Respect format security.
13285 Avoid void * arithmetics.
13286 Avoid shadowing.
13287 (argp_parser): Remove unused variable. Respect format security.
13288 * util/grub-mkimagexx.c (relocate_symbols): Avoid shadowing.
13289 (count_funcs) [!MKIMAGE_ELF64]: #if-out.
13290 (count_funcs): Remove unused variable.
13291 (relocate_addresses): Fix format specification.
13292 Disable x86-64 with elf32. Remove unused variables.
13293 (add_fixup_entry): Avoid shadowing.
13294 (make_reloc_section): Fix format specification.
13295 Use assert.
13296 (locate_sections): Fix format specifications.
13297 (load_image): Avoid shadowing.
13298
13299 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13300
13301 * util/grub-setup.c (setup): Remove unused variable. Avoid shadowing.
13302 Fix format specifications. Respect format security.
13303 Don't translate already translated grub_errmsg.
13304 (argp_parser): Remove unused variable
13305
13306 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13307
13308 * util/grub-mkrelpath.c (argp_parser): Remove unused variable.
13309
13310 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13311
13312 * util/grub-mkpasswd-pbkdf2.c (argp_parser): Remove unused variable.
13313 (main): Likewise. Use xmalloc. Respect format security.
13314
13315 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13316
13317 * util/grub-mklayout.c (console_grub_equivalence): Make "layout"
13318 a const char *.
13319 (argp_parser): Remove unused variable.
13320
13321 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13322
13323 * util/grub-mkfont.c (grub_font_info): Make name a const char *.
13324 (add_pixel): Make static.
13325 (add_font): Likewise.
13326 (write_string_section): Make name and str a const char *.
13327 (write_be16_section): Make name a const char *.
13328 (print_glyphs): Make static.
13329 (write_font_ascii_bitmap): Likewise.
13330 (write_font_width_spec): Likewise.
13331 (write_font_pf2): Likewise.
13332 (argp_parser): Remove unused variable.
13333 Respect format security.
13334 (main): Avoid shadowing. Respect format security.
13335
13336 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13337
13338 * util/grub-editenv.c (argp_parser): Make static.
13339 (create_envblk_file): Use xmalloc.
13340 (open_envblk_file): Likewise.
13341 Resepect format security.
13342 (set_variables): Respect format security.
13343
13344 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13345
13346 * util/getroot.c (grub_find_device): Respect format security.
13347 (get_mdadm_uuid): Remove unused variable.
13348 (grub_util_pull_device): Dont call gettext on already translated
13349 grub_errmsg.
13350 (find_system_device): Remove unused variable.
13351 (grub_util_get_grub_dev): Likewise.
13352 (grub_make_system_path_relative_to_its_root): Respect format security.
13353
13354 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13355
13356 * util/grub-fstest.c (execute_command): Make first argument
13357 a const char *.
13358 (read_file): Avoid shadowing.
13359 Reuse underlying error message if device open fails.
13360 (cmd_cmp): Respect format security.
13361 (root): Make const char *.
13362 (fstest): Remove args argument and use global copy.
13363 Respect format security.
13364 (argp_parser): Make static.
13365 (main): Make default_root const char *.
13366
13367 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13368
13369 * util/grub-mount.c (root): Make const char *.
13370 (execute_command): Make first argument a const char *.
13371 (fuse_init): Respect format security.
13372 (argp_parser): Make static. Remove unused variable.
13373 (main): Make default_root a const char *.
13374 Respect format security.
13375
13376 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13377
13378 * util/grub-probe.c (probe): Don't call gettext on already translated
13379 grub_errmsg.
13380 Remove unused variables.
13381 (argp_parser): Remove unused variable.
13382
13383 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13384
13385 * util/grub-script-check.c (argp_parser): Remove unused variable.
13386 (main): Rename read to curread to avoid shadowing.
13387
13388 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13389
13390 * util/misc.c (grub_util_write_image_at): Fix format specification.
13391 (grub_util_write_image): Likewise.
13392 (grub_script_execute_argument_to_string): Removed (unused).
13393 (grub_script_execute_menuentry): Likewise.
13394 (grub_putchar): Likewise.
13395
13396 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13397
13398 * include/grub/symbol.h (EXT_C) [GRUB_UTIL]: Removed.
13399 (FUNCTION) [GRUB_UTIL]: Likewise.
13400 (VARIABLE) [GRUB_UTIL]: Likewise.
13401
13402 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13403
13404 * include/grub/misc.h: Avoid evaluationg NEED_ENABLE_EXECUTE_STACK and
13405 NEED_REGISTER_FRAME_INFO in GRUB_UTIL.
13406
13407 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13408
13409 * grub-core/partmap/bsdlabel.c (iterate_real): Fix freeing of static
13410 buffer.
13411
13412 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13413
13414 * grub-core/lib/LzmaEnc.c (LzmaEnc_FastPosInit): Made static.
13415 (LzmaEnc_SaveState): Removed (unused).
13416 (LzmaEnc_RestoreState): Likewise.
13417 (LzmaEnc_InitPriceTables): Made static.
13418 (LzmaEnc_Construct): Likewise.
13419 (LzmaEnc_FreeLits): Likewise.
13420 (LzmaEnc_Destruct): Likewise.
13421 (LzmaEnc_Init): Likewise.
13422 (LzmaEnc_InitPrices): Likewise.
13423 (LzmaEnc_Finish): Likewise.
13424 (LzmaEnc_PrepareForLzma2): Removed (unused).
13425 (LzmaEnc_MemPrepare): Likewise.
13426 (LzmaEnc_GetNumAvailableBytes): Likewise.
13427 (LzmaEnc_GetCurBuf): Likewise.
13428 (LzmaEnc_CodeOneMemBlock): Likewise.
13429
13430 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13431
13432 * grub-core/disk/ldm.c (grub_util_get_ldm): Remove unused variables.
13433 (grub_util_ldm_embed): Likewise.
13434
13435 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13436
13437 * util/grub-editenv.c (print_var): Rename name to varname to
13438 avoid shadowing.
13439 (main): Rename index to curindex to avoid shadowing.
13440 Make filename a const char *.
13441
13442 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13443
13444 * grub-core/script/lexer.c (grub_script_lexer_init): Rename getline
13445 to arg_getline to avoid shadowing.
13446
13447 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13448
13449 * grub-core/partmap/gpt.c (gpt_partition_map_embed): Rename disk to
13450 disk_ to avoid shadowing.
13451
13452 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13453
13454 * grub-core/lib/LzFind.c (MatchFinder_GetIndexByte): Rename index to
13455 curindex to avoid shadowing.
13456 Make static.
13457 (MatchFinder_GetNumAvailableBytes): Make static.
13458
13459 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13460
13461 * grub-core/fs/squash4.c (direct_read): Rename read to curread to
13462 avoid shadowing.
13463
13464 2012-02-10 Vladimir Serbinenko <phcoder@gmail.com>
13465
13466 * grub-core/disk/cryptodisk.c (grub_cryptodisk_endecrypt): Rename
13467 argument from encrypt to do_encrypt to avoid shadowing.
13468
13469 2012-02-09 Vladimir Serbinenko <phcoder@gmail.com>
13470
13471 * grub-core/loader/multiboot_elfxx.c (grub_multiboot_load_elf): Fix
13472 incorrect nesting of #if's.
13473
13474 2012-02-09 Vladimir Serbinenko <phcoder@gmail.com>
13475
13476 * grub-core/commands/lsacpi.c (disp_acpi_xsdt_table): #if'-out the
13477 checks which are always false on some platforms.
13478 (grub_cmd_lsacpi): Likewise.
13479 * grub-core/kern/misc.c (grub_strtoul): Likewise.
13480 * grub-core/loader/multiboot.c (grub_multiboot_set_video_mode):
13481 Likewise.
13482
13483 2012-02-09 Vladimir Serbinenko <phcoder@gmail.com>
13484
13485 * grub-core/disk/diskfilter.c (read_segment): Renome unreachable code.
13486 * grub-core/net/ip.c (grub_net_recv_ip4_packets): Likewise.
13487
13488 2012-02-09 Vladimir Serbinenko <phcoder@gmail.com>
13489
13490 * grub-core/gnulib/regex.h (re_pattern_buffer): Declare buffer as
13491 re_dfa_t to avoid breaking alignment invariants.
13492 * grub-core/gnulib/regex_internal.h (re_dfa_t): Moved to ...
13493 * grub-core/gnulib/regex.h (re_dfa_t): ... here.
13494
13495 2012-02-09 Vladimir Serbinenko <phcoder@gmail.com>
13496
13497 * grub-core/loader/i386/xnu.c (grub_xnu_boot): Fix printf.
13498 * grub-core/loader/ia64/efi/linux.c (grub_cmd_fpswa): Likewise.
13499
13500 2012-02-09 Vladimir Serbinenko <phcoder@gmail.com>
13501
13502 * grub-core/kern/i386/qemu/mmap.c (grub_machine_mmap_init):
13503 Fix declaration.
13504
13505 2012-02-09 Vladimir Serbinenko <phcoder@gmail.com>
13506
13507 * grub-core/bus/usb/ehci.c (grub_ehci_ehcc_read32): Restructure to
13508 conserve alignment invariants.
13509 (grub_ehci_ehcc_read16): Likewise.
13510 (grub_ehci_oper_read32): Likewise.
13511 (grub_ehci_oper_write32): Likewise.
13512 (grub_ehci_pci_iter) [!GRUB_HAVE_UNALIGNED_ACCESS]: Check alignment.
13513 Conserve alignment invariants.
13514
13515 2012-02-09 Vladimir Serbinenko <phcoder@gmail.com>
13516
13517 * grub-core/kern/emu/full.c (grub_emu_post_init): Remove raid reinit.
13518 * include/grub/disk.h [GRUB_MACHINE_EMU]: Remove now useless LVM/RAID
13519 declarations.
13520
13521 2012-02-09 Vladimir Serbinenko <phcoder@gmail.com>
13522
13523 * grub-core/kern/emu/hostfs.c (grub_hostfs_close):
13524 Remove unused variable.
13525
13526 2012-02-09 Vladimir Serbinenko <phcoder@gmail.com>
13527
13528 * grub-core/efiemu/loadcore_common.c (grub_efiemu_loadcore_load):
13529 Remove set in if.
13530
13531 2012-02-09 Vladimir Serbinenko <phcoder@gmail.com>
13532
13533 * include/grub/net.h: Remove double declarations.
13534
13535 2012-02-09 Vladimir Serbinenko <phcoder@gmail.com>
13536
13537 Remove "payload" command in ia64 Linux loader since I couldn't
13538 find any evidence of it being used for anything.
13539 Replace "relocate" command with an environment variable
13540
13541 * grub-core/loader/ia64/efi/linux.c (ia64_boot_param): Remove extra
13542 fields.
13543 (ia64_boot_payload): Removed.
13544 (last_payload): Likewise.
13545 (RELOCATE_OFF): Likewise.
13546 (RELOCATE_ON): Likewise.
13547 (RELOCATE_FORCE): Likewise.
13548 (relocate): Likewise.
13549 (free_pages): Don't free payloads.
13550 (grub_load_elf64): Use common error messages.
13551 Use "linux_relocate" variable.
13552 Increase the space after boot_params.
13553 (grub_cmd_payload): Removed.
13554 (grub_cmd_relocate): Likewise.
13555 (grub_cmd_fpswa): Improve messages.
13556 (cmd_payload): Removed.
13557 (cmd_relocate): Likewise.
13558 (GRUB_MOD_INIT): Don't register "payload" and "relocate".
13559 (GRUB_MOD_FINI): Don't unregister "payload" and "relocate".
13560
13561 2012-02-09 Vladimir Serbinenko <phcoder@gmail.com>
13562
13563 Convert UHCI to DMA framework.
13564
13565 * grub-core/bus/usb/uhci.c (grub_uhci): Add chunk and phys members.
13566 (grub_uhci_pci_iter): Fill new members
13567 (grub_alloc_td): Use P2V and V2P functions.
13568 (grub_free_queue): Likewise.
13569 (grub_alloc_qh): Likewise.
13570 (grub_uhci_setup_transfer): Likewise.
13571 (grub_uhci_check_transfer): Likewise.
13572
13573 2012-02-09 Vladimir Serbinenko <phcoder@gmail.com>
13574
13575 * grub-core/video/colors.c (grub_video_parse_color): Fix error message.
13576 Remove assignment in if while on it.
13577
13578 2012-02-09 Vladimir Serbinenko <phcoder@gmail.com>
13579
13580 * util/grub-mkstandalone.in: Fix modules directory.
13581
13582 2012-02-09 Vladimir Serbinenko <phcoder@gmail.com>
13583
13584 * util/grub-mkimage.c (image_targets): Set default_compression to lzma
13585 on i386-pc target.
13586 (argp_parser): Accept "auto" as compression specification.
13587
13588 2012-02-09 Vladimir Serbinenko <phcoder@gmail.com>
13589
13590 Fix `help' with unloaded modules.
13591
13592 * include/grub/normal.h (grub_dyncmd_get_cmd): New proto.
13593 * grub-core/normal/dyncmd.c (grub_dyncmd_get_cmd): New function.
13594 (grub_dyncmd_dispatcher): Small stylistic fix.
13595 * grub-core/commands/help.c (grub_cmd_help): Load missing modules when
13596 explicit help is requested.
13597
13598 2012-02-09 Vladimir Serbinenko <phcoder@gmail.com>
13599
13600 * grub-core/fs/cpio.c (grub_cpio_dir): Fix a bug with multiple listing.
13601 Explicitly init restart while on it.
13602
13603 2012-02-09 Vladimir Serbinenko <phcoder@gmail.com>
13604
13605 * grub-core/lib/posix_wrap/wchar.h (mbrtowc): Set pwc to zero to avoid
13606 uninited variable.
13607
13608 2012-02-08 Vladimir Serbinenko <phcoder@gmail.com>
13609
13610 * util/grub-mknetdir.in: Use . rather than source for POSIX
13611 compatibility.
13612
13613 2012-02-08 Vladimir Serbinenko <phcoder@gmail.com>
13614
13615 * util/grub-probe.c (main): Fix trailing space in compatibility hint.
13616
13617 2012-02-08 Vladimir Serbinenko <phcoder@gmail.com>
13618
13619 * grub-core/kern/partition.c (grub_partition_get_name): Fix uninited
13620 variable.
13621
13622 2012-02-08 Vladimir Serbinenko <phcoder@gmail.com>
13623
13624 * grub-core/commands/hdparm.c (grub_cmd_hdparm): Accept device name
13625 without quotes.
13626
13627 2012-02-08 Vladimir Serbinenko <phcoder@gmail.com>
13628
13629 * grub-core/net/net.c (GRUB_MOD_INIT): Don't register netfs.
13630
13631 2012-02-08 Vladimir Serbinenko <phcoder@gmail.com>
13632
13633 * grub-core/kern/partition.c (grub_partition_get_name): Fix reverse
13634 iteration of partitions.
13635
13636 2012-02-08 Vladimir Serbinenko <phcoder@gmail.com>
13637
13638 Improve gettext support. Stylistic fixes and error handling fixes while
13639 on it.
13640
13641 2012-02-07 Vladimir Serbinenko <phcoder@gmail.com>
13642
13643 * grub-core/lib/i386/relocator16.S: Revert moving A20 code into PM
13644 part. Instead setup the correct stack in RM.
13645 * grub-core/lib/i386/relocator.c (grub_relocator16_boot): Reserve place
13646 for stack.
13647 * include/grub/i386/relocator_private.h: New file.
13648
13649 2012-02-05 Vladimir Serbinenko <phcoder@gmail.com>
13650
13651 * grub-core/commands/minicmd.c (GRUB_MOD_INIT): Add missing SIZE
13652 argument.
13653 * util/grub-fstest.c (options): Add missing DEVICE part.
13654
13655 2012-02-05 Vladimir Serbinenko <phcoder@gmail.com>
13656
13657 Clarify and unify messages.
13658
13659 * grub-core/commands/hashsum.c (options): Unify messages.
13660 * grub-core/commands/keystatus.c (GRUB_MOD_INIT): Don't mark a
13661 literal-only message as translatable.
13662 * grub-core/commands/lsacpi.c (GRUB_MOD_INIT): Likewise.
13663 * grub-core/loader/ia64/efi/linux.c (GRUB_MOD_INIT): Likewise.
13664 * grub-core/commands/legacycfg.c (GRUB_MOD_INIT): Add quoting around
13665 commands.
13666 * grub-core/commands/menuentry.c (options): Clarify that it's a keyboard
13667 key, not the key used to unlock. Clarify what it's used for.
13668 * grub-core/kern/emu/hostdisk.c (read_device_map): Unify error message.
13669 * grub-core/loader/xnu.c (grub_xnu_load_driver): Remove erroneous colon.
13670 * grub-core/script/main.c (GRUB_MOD_INIT): Clarify [n] to be [NUM].
13671 * util/grub-editenv.c (options): Unify "verbose" message.
13672 * util/grub-fstest.c (read_file): Unify error message.
13673 (fstest): Add quotes around commands.
13674 (options): Unify "verbose" message.
13675 * util/grub-install.in: Add quotes around variable name.
13676 * util/grub-kbdcomp.in: Unify error message.
13677 * util/grub-mkfont.c (main): Likewise.
13678 * util/grub-mkrescue.in: Likewise.
13679 * util/grub-mklayout.c (options): Unify "verbose" message.
13680 * util/grub-mkstandalone.in: Unify help and verbose messages.
13681 * util/grub-mount.c (options): Unify "verbose" message.
13682 * util/grub-probe.c (options): Likewise.
13683 * util/grub-script-check.c (options): Likewise.
13684 * util/grub-setup.c (setup): Unify no-terminator message.
13685 (options): Use DEVICE and not DEV.
13686 Unify "verbose" message.
13687 * util/ieee1275/ofpath.c (xrealpath): Unify error message.
13688
13689 2012-02-05 Vladimir Serbinenko <phcoder@gmail.com>
13690
13691 Improve and unify messages.
13692
13693 * grub-core/kern/emu/hostdisk.c (grub_util_get_fd_sectors): Add argument
13694 name. All users updated.
13695 Print filename in error.
13696 (read_device_map): Print filename in error.
13697 * util/getroot.c (grub_guess_root_devices): Print filename in error.
13698 (grub_util_get_os_disk): Likewise.
13699 (grub_util_biosdisk_get_grub_dev): Likewise.
13700 (grub_util_check_block_device): Likewise.
13701 (grub_util_check_char_device): Likewise.
13702 (grub_make_system_path_relative_to_its_root): Likewise.
13703 * util/grub-editenv.c (create_envblk_file): Likewise.
13704 (open_envblk_file): Likewise.
13705 (write_envblk): Likewise.
13706 * util/grub-fstest.c (cmd_cp): Likewise.
13707 (cmd_cat): Likewise.
13708 (cmd_cmp): Likewise.
13709 * util/grub-menulst2cfg.c (main): Likewise.
13710 * util/grub-mkfont.c (write_font_ascii_bitmap): Likewise.
13711 (write_font_width_spec): Likewise.
13712 (write_font_pf2): Likewise.
13713 * util/grub-mkimage.c (generate_image): New argument outname.
13714 All users updated.
13715 Remove unreacheable message.
13716 (options): Unify messages.
13717 (help_filter): Likewise.
13718 * util/grub-mklayout.c (usage): Removed (unused).
13719 (main): Print filename in error.
13720 * util/grub-mkrescue.in: Fix wrong quoting.
13721 * util/grub-setup.c (setup): Print filename in error.
13722 * util/ieee1275/ofpath.c (vendor_is_ATA): Likewise.
13723 (check_sas): Likewise.
13724 * util/misc.c (grub_util_get_fp_size): Removed.
13725 (grub_util_get_image_size): Print filename in error.
13726 (grub_util_read_at): Removed.
13727 (grub_util_read_image): Print filename in error.
13728 (grub_util_load_image): Likewise.
13729 (grub_util_write_image_at): New argument filename. All users updated.
13730 Print filename in error.
13731 (grub_util_write_image): New argument filename. All users updated.
13732 Print filename in error.
13733 * util/raid.c (grub_util_raid_getmembers): Print filename in error.
13734 * util/resolve.c (grub_util_resolve_dependencies): Likewise.
13735
13736 2012-02-05 Vladimir Serbinenko <phcoder@gmail.com>
13737
13738 * grub-core/Makefile.core.def (pxechain): New module.
13739 * grub-core/loader/i386/pc/pxechainloader.c: New file.
13740 * grub-core/net/drivers/i386/pc/pxe.c (grub_pxe_get_cached): New
13741 function.
13742 (grub_pc_net_config_real): Use grub_pxe_get_cached.
13743 * include/grub/i386/pc/pxe.h (grub_pxe_get_cached): New proto.
13744
13745 2012-02-05 Vladimir Serbinenko <phcoder@gmail.com>
13746
13747 * grub-core/kern/err.c (GRUB_MAX_ERRMSG): Move to ...
13748 * include/grub/err.h (GRUB_MAX_ERRMSG): ... here.
13749 * include/grub/err.h (grub_error_saved): New struct.
13750 (grub_errmsg): Make array size explicit.
13751 * include/grub/misc.h (grub_error_save): New function.
13752 (grub_error_load): Likewise.
13753 * grub-core/kern/err.c (grub_error_stack_items): Use grub_error_saved.
13754 (grub_error_push): Update `errno' member name.
13755 (grub_error_pop): Likewise
13756 * grub-core/net/tftp.c (tftp_data): New member save_err.
13757 (tftp_receive): Save error.
13758 (tftp_open): Restore error.
13759
13760 2012-02-05 Vladimir Serbinenko <phcoder@gmail.com>
13761
13762 * grub-core/lib/i386/relocator16.S (grub_relocator16_start): Move switch
13763 to real mode down to execute A20-related code in protected mode as
13764 intended.
13765
13766 2012-02-05 Grégoire Sutre <gregoire.sutre@gmail.com>
13767
13768 * grub-core/disk/diskfilter.c (grub_diskfilter_make_raid): Return
13769 NULL when the argument `level' has an unexpected value.
13770
13771 2012-02-04 Vladimir Serbinenko <phcoder@gmail.com>
13772
13773 Move platform-dependent files from $prefix to $prefix/$platform.
13774
13775 * config.h.in (GRUB_TARGET_CPU): New definition.
13776 (GRUB_PLATFORM): Likewise.
13777 * configure.ac: Define GRUB_TARGET_CPU and GRUB_PLATFORM.
13778 * grub-core/commands/parttool.c (grub_cmd_parttool): Update dir.
13779 * grub-core/efiemu/main.c (grub_efiemu_autocore): Likewise.
13780 * grub-core/kern/dl.c (grub_dl_load): Likewise.
13781 * grub-core/normal/autofs.c (read_fs_list): Likewise.
13782 * grub-core/normal/crypto.c (read_crypto_list): Likewise.
13783 * grub-core/normal/dyncmd.c (read_command_list): Likewise.
13784 * grub-core/normal/term.c (read_terminal_list): Likewise.
13785 * grub-core/gettext/gettext.c (grub_mofile_open_lang): Use
13786 $prefix/locale.
13787 (grub_gettext_init_ext): Likewise.
13788 * grub-core/normal/main.c (GRUB_MOD_INIT): Define grub_cpu and
13789 grub_platform.
13790 * util/grub-install.in: Update directories.
13791 * util/grub-mknetdir.in: Likewise.
13792 * util/grub-mkrescue.in: Likewise.
13793
13794 2012-02-04 Vladimir Serbinenko <phcoder@gmail.com>
13795
13796 * grub-core/kern/ieee1275/openfw.c (grub_claimmap): Change to
13797 grub_error framework. All users updated.
13798
13799 2012-02-04 Vladimir Serbinenko <phcoder@gmail.com>
13800
13801 * grub-core/gettext/gettext.c: Mostly rewritten to avoid using
13802 lists (by always binsearching), improve caching (cache strings
13803 used for binsearch, not only results), improve
13804 maintainability (by using more structured binary search) and correct
13805 error handling.
13806
13807 2012-02-04 Vladimir Serbinenko <phcoder@gmail.com>
13808
13809 * grub-core/script/execute.c (grub_script_return): Fix warning.
13810
13811 2012-02-04 Vladimir Serbinenko <phcoder@gmail.com>
13812
13813 * grub-core/script/execute.c (grub_script_return): Fix potential
13814 NULL-dereference.
13815 Reported by: Jim Meyering.
13816
13817 2012-02-03 Vladimir Serbinenko <phcoder@gmail.com>
13818
13819 * po/POTFILES.in: Regenerate.
13820 * util/grub-install.in: Gettextize the strings missed in first pass.
13821
13822 2012-02-03 Vladimir Serbinenko <phcoder@gmail.com>
13823
13824 * Makefile.util.def (grub-mkdevicemap): Removed.
13825 * include/grub/emu/hostdisk.h (grub_util_get_os_disk): New proto.
13826 * include/grub/util/deviceiter.h: Removed.
13827 * util/deviceiter.c: Likewise.
13828 * util/getroot.c (grub_util_get_os_disk): New function.
13829 * util/grub-install.in: Remove grub-mkdevicemap. Use -t disk as
13830 replacement for EFI.
13831 * util/grub-mkdevicemap.c: Removed.
13832 * util/grub-probe.c (probe): Handle PRINT_DISK.
13833 (argp_parser): Handle -t disk.
13834
13835 2012-02-03 Vladimir Serbinenko <phcoder@gmail.com>
13836
13837 * util/grub-mkfont.c: Migrate to argp.
13838 * util/grub-mklayout.c: Likewise.
13839 * util/grub-mkpasswd-pbkdf2.c: Likewise.
13840 * util/grub-mkrelpath.c: Likewise.
13841 * util/grub-probe.c: Likewise.
13842 * util/grub-script-check.c: Likewise.
13843
13844 2012-02-03 Vladimir Serbinenko <phcoder@gmail.com>
13845
13846 * util/grub-reboot.in: Add missing datarootdir.
13847 Add missing newline.
13848 * util/grub-set-default.in: Add missing datarootdir.
13849 * util/powerpc/ieee1275/grub-mkrescue.in: Add missing newline.
13850 * util/grub-mkrescue.in: Likewise.
13851
13852 2012-02-03 Vladimir Serbinenko <phcoder@gmail.com>
13853
13854 * util/grub.d/30_os-prober.in: Fix TRANSLATORS comment.
13855
13856 2012-02-03 Vladimir Serbinenko <phcoder@gmail.com>
13857
13858 * util/grub-kbdcomp.in: Add decent help and gettextize.
13859 * docs/man/grub-kbdcomp.h2m: New file.
13860
13861 2012-02-03 Vladimir Serbinenko <phcoder@gmail.com>
13862
13863 Migrate grub-mkimage.c to argp.
13864
13865 * Makefile.util.def (grub-mkimage): Add util/argp_common.c.
13866 (grub-setup): Likewise.
13867 * util/grub-setup.c (print_version): Move to ...
13868 * util/argp_common.c (print_version): ... here.
13869 * util/grub-setup.c (argp_program_version_hook): Move to ...
13870 * util/argp_common.c (argp_program_version_hook): ... here.
13871 * util/grub-setup.c (argp_parser): Add exit (1) on fatal error for
13872 safety.
13873 * util/grub-mkimage.c (main): Migrate to argp.
13874
13875 2012-02-03 Vladimir Serbinenko <phcoder@gmail.com>
13876
13877 * util/grub-mkrescue.in: Use same message as
13878 util/powerpc/ieee1275/grub-mkrescue.in with %s in place of command
13879 for better translations.
13880
13881 2012-02-03 Vladimir Serbinenko <phcoder@gmail.com>
13882
13883 * util/powerpc/ieee1275/grub-mkrescue.in: Gettextize. Unify the command
13884 options with generic grub-mkrescue.in with the goal of future
13885 merge.
13886
13887 2012-02-03 Vladimir Serbinenko <phcoder@gmail.com>
13888
13889 * grub-core/kern/mm.c: Add missing include of i18n.h
13890 * grub-core/lib/relocator.c: Likewise.
13891
13892 2012-02-03 Vladimir Serbinenko <phcoder@gmail.com>
13893
13894 * grub-core/loader/ia64/efi/linux.c (find_mmap_size): Replace fatal with
13895 error.
13896 (allocate_pages): Check return value.
13897 Replace fatal with error.
13898 (grub_linux_boot): Replace printf with dprintf.
13899 Check find_mmap_size return value.
13900 Replace fatal with error.
13901 Don't call grub_machine_fini.
13902 (grub_load_elf64): Replace printf with dprintf.
13903 (grub_cmd_linux): Likewise.
13904 (grub_cmd_initrd): Likewise.
13905 (grub_cmd_payload): Likewise.
13906
13907 2012-02-03 Vladimir Serbinenko <phcoder@gmail.com>
13908
13909 * grub-core/loader/i386/xnu.c (grub_cmd_devprop_load): Fix error
13910 message.
13911 * grub-core/video/radeon_fuloong2e.c
13912 (grub_video_radeon_fuloong2e_setup): Likewise.
13913 * grub-core/video/sis315pro.c (grub_video_sis315pro_setup): Likewise.
13914 * grub-core/video/video.c (grub_video_set_mode): Don't override
13915 standard out of memory message.
13916
13917 2012-02-03 Grégoire Sutre <gregoire.sutre@gmail.com>
13918
13919 NetBSD disk wedge support.
13920
13921 * grub-core/kern/emu/hostdisk.c (grub_hostdisk_find_partition_start)
13922 [__NetBSD__]: Handle NetBSD disk wedges.
13923 * util/getroot.c (convert_system_partition_to_system_disk)
13924 [__NetBSD__]: Likewise.
13925
13926 2012-02-03 Mark Wooding <mdw@distorted.org.uk>
13927
13928 * util/grub-mkconfig.in: Use umask rather than chmod to create
13929 grub.cfg.new to avoid insecure grub.cfg.
13930
13931 2012-02-03 Vladimir Serbinenko <phcoder@gmail.com>
13932
13933 * grub-core/commands/ls.c: Gettextize.
13934 * grub-core/commands/setpci.c: Likewise.
13935 * grub-core/commands/videotest.c: Likewise.
13936 * grub-core/disk/geli.c: Likewise.
13937 * grub-core/kern/mm.c: Likewise.
13938 * grub-core/lib/relocator.c: Likewise.
13939 * grub-core/loader/efi/appleloader.c: Likewise.
13940 * grub-core/loader/i386/xnu.c: Likewise.
13941 * grub-core/loader/ia64/efi/linux.c: Likewise.
13942 * grub-core/loader/xnu.c: Likewise.
13943 * grub-core/net/dns.c: Likewise.
13944 * grub-core/net/net.c: Likewise.
13945 * grub-core/script/lexer.c: Likewise.
13946 * grub-core/script/parser.y: Likewise.
13947 * grub-core/script/yylex.l: Likewise.
13948 * util/getroot.c: Likewise.
13949 * util/grub-setup.c: Likewise.
13950
13951 2012-02-03 Vladimir Serbinenko <phcoder@gmail.com>
13952
13953 * grub-core/fs/reiserfs.c (grub_reiserfs_get_item): Use proper error
13954 number.
13955
13956 2012-02-03 Vladimir Serbinenko <phcoder@gmail.com>
13957
13958 * grub-core/disk/ldm.c (grub_util_ldm_embed): Correct error message.
13959
13960 2012-02-03 Vladimir Serbinenko <phcoder@gmail.com>
13961
13962 * grub-core/commands/search_file.c (SEARCH_TARGET): Remove obsolete
13963 macro.
13964 * grub-core/commands/search_label.c (SEARCH_TARGET): Likewise.
13965 * grub-core/commands/search_uuid.c (SEARCH_TARGET): Likewise.
13966
13967 2012-02-03 Vladimir Serbinenko <phcoder@gmail.com>
13968
13969 * util/grub-mkstandalone.in: Fix help messages. Gettextize.
13970 * util/grub-install.in: Gettextize.
13971 * util/grub-mkconfig.in: Likewise.
13972 * util/grub-mkconfig_lib.in: Replace gettext with echo -n and not echo
13973 if not available.
13974 (grub_warn): Gettextize.
13975 * util/grub-mknetdir.in: Gettextize.
13976 * util/grub-mkrescue.in: Likewise.
13977 * util/grub-mkstandalone.in: Likewise.
13978 * util/grub-reboot.in: Likewise.
13979 * util/grub-set-default.in: Likewise.
13980 * util/grub.d/00_header.in: Likewise.
13981 * util/grub.d/10_hurd.in: Likewise.
13982 * util/grub.d/10_kfreebsd.in: Likewise.
13983 * util/grub.d/10_linux.in: Likewise.
13984 * util/grub.d/10_netbsd.in: Likewise.
13985 * util/grub.d/10_windows.in: Likewise.
13986 * util/grub.d/20_linux_xen.in: Likewise.
13987 * util/grub.d/30_os-prober.in: Likewise.
13988 * po/POTFILES-shell.in: Regenerate.
13989
13990 2012-02-03 Richard Laager <rlaager@wiktel.com>
13991
13992 * util/grub-mkimage.c (main): Fix format-security warning.
13993 * util/grub-mkrelpath.c (main): Likewise.
13994 * util/grub-probe.c (main): Likewise.
13995
13996 2012-02-03 Richard Laager <rlaager@wiktel.com>
13997
13998 * util/grub-probe.c (probe): Don't crash on canonicalize_file_name
13999 failure.
14000 Put back lost PRINT_DRIVE.
14001
14002 2012-02-03 Richard Laager <rlaager@wiktel.com>
14003
14004 * util/getroot.c (find_root_devices_from_libzfs): Fix compilation error.
14005 (grub_guess_root_devices): Replace strlen with sizeof.
14006 Avoid crash.
14007 (find_root_devices_from_poolname): Remove unused variable.
14008 Handle raidzN.
14009
14010 2012-02-03 Vladimir Serbinenko <phcoder@gmail.com>
14011
14012 Support install on multi-device filesystems.
14013
14014 * include/grub/emu/getroot.h (grub_guess_root_device): Renamed to ...
14015 (grub_guess_root_devices): ...this. Return char **. All users updated.
14016 * include/grub/emu/misc.h (grub_find_root_device_from_mountinfo):
14017 Removed.
14018 * util/getroot.c (find_root_device_from_libzfs): Moved pool logic to ...
14019 (find_root_devices_from_poolname): ... here.
14020 (grub_find_root_devices_from_mountinfo): Return char **. Make static.
14021 Support zfs-fuse.
14022 (grub_guess_root_device): Rename to ...
14023 (grub_guess_root_devices): ... this. Return char **. All users updated.
14024 * util/grub-install.in: Handle multi-device filesystems.
14025 * util/grub-probe.c (probe). Make device_names a char **. Add delim
14026 argument. All users updated.
14027 Handle multi-device filesystems.
14028 Use 'delim' as separator.
14029 Remove device check to allow filesystems on file.
14030 (main): Support -0 argument. Handle multi-device.
14031 * util/grub-setup.c (setup): Remove root argument. Handle multi-device.
14032 Fix a cross-device check while on it.
14033 (arguments): Remove root_dev.
14034 (argp_parser): Remove -r.
14035 (main): Remove root_dev.
14036
14037 2012-02-01 Vladimir Serbinenko <phcoder@gmail.com>
14038
14039 * grub-core/fs/zfs/zfscrypt.c: Add link to documentation.
14040
14041 2012-02-01 Vladimir Serbinenko <phcoder@gmail.com>
14042
14043 * grub-core/commands/videotest.c (grub_cmd_videotest): Fix subset
14044 symbol.
14045 Reported by: NODA, Kai <nodakai>.
14046
14047 2012-02-01 Vladimir Serbinenko <phcoder@gmail.com>
14048
14049 Fix ehci on amd64.
14050
14051 * grub-core/bus/usb/usbhub.c (grub_usb_hub_add_dev): Use %p to print
14052 pointers.
14053 * grub-core/bus/usb/ehci.c (grub_ehci_pci_iter): Likewise.
14054 (grub_ehci_setup_qh): Likewise.
14055 (grub_ehci_find_qh): Likewise.
14056 (grub_ehci_transaction): Likewise.
14057 (grub_ehci_setup_transfer): Likewise.
14058 (grub_ehci_check_transfer): Likewise.
14059 (grub_ehci_portstatus): Likewise.
14060 (grub_ehci_detect_dev): Likewise.
14061 (grub_ehci_transfer_controller_data): New field td_last_phys.
14062 (grub_ehci_setup_transfer): Fill td_last_phys.
14063 (grub_ehci_check_transfer): Use td_last_phys.
14064
14065 2012-02-01 Seth Goldberg <seth.goldberg@oracle.com>
14066
14067 * grub-core/normal/context.c (grub_env_extractor_close): Don't crash
14068 if no submenu is present.
14069
14070 2012-02-01 Aleš Nesrsta <starous@volny.cz>
14071
14072 CBI support.
14073
14074 * include/grub/usb.h (grub_usbms_protocol_t): New values
14075 GRUB_USBMS_PROTOCOL_CB and GRUB_USBMS_PROTOCOL_CBI.
14076 * grub-core/disk/usbms.c (GRUB_USBMS_CBI_CMD_SIZE): New define.
14077 (GRUB_USBMS_CBI_ADSC_REQ): Likewise.
14078 (grub_usbms_dev): Add subclass, protocol and intrpt.
14079 Remove in_maxsz and out_maxsz.
14080 (grub_usbms_reset): Rename to ...
14081 (grub_usbms_bo_reset): .. this.
14082 (grub_usbms_cbi_cmd): New function.
14083 (grub_usbms_cbi_reset): Likewise.
14084 (grub_usbms_reset): Likewise.
14085 (grub_usbms_attach): Recognize cbi. Same subclass and protocol.
14086 (grub_usbms_transfer): Rename to ...
14087 (grub_usbms_transfer_bo): ... this.
14088 (grub_usbms_transfer_cbi): Likewise.
14089 (grub_usbms_transfer): Likewise.
14090
14091 2012-02-01 Aleš Nesrsta <starous@volny.cz>
14092 2012-02-01 Vladimir Serbinenko <phcoder@gmail.com>
14093
14094 EHCI support. All of the credit goes to Aleš Nesrsta. I've just added
14095 the support for the CS5536 modification thereos and few bugfixes.
14096
14097 * grub-core/Makefile.core.def (ehci): New module.
14098 * grub-core/bus/usb/ehci.c: New file.
14099 * grub-core/bus/usb/usbhub.c (grub_usb_hub_add_dev): New arguments
14100 port and hubaddr. All users updated.
14101 Save port and hubaddr into dev structure.
14102 * include/grub/cs5536.h (GRUB_CS5536_MSR_USB_BASE_SMI_ENABLE): New
14103 define.
14104 * include/grub/pci.h (grub_dma_phys2virt): New function.
14105 (grub_dma_virt2phys): Likewise.
14106 * include/grub/usb.h (grub_usb_device): New members port and hubaddr.
14107
14108 2012-01-31 Vladimir Serbinenko <phcoder@gmail.com>
14109
14110 * grub-core/fs/fat.c (grub_fat_mount) [!MODE_EXFAT]: Remove fstype
14111 check as some mkfs implementations omit it.
14112
14113 2012-01-31 Vladimir Serbinenko <phcoder@gmail.com>
14114
14115 * docs/grub.texi (Unicode): Mention identifier and space limitations.
14116
14117 2012-01-31 Vladimir Serbinenko <phcoder@gmail.com>
14118
14119 * grub-core/fs/jfs.c (grub_jfs_sblock): Make volname a char array.
14120 Add new member volname2.
14121 (grub_jfs_label): Use volname2 if available.
14122
14123 2012-01-31 Vladimir Serbinenko <phcoder@gmail.com>
14124
14125 * grub-core/fs/nilfs2.c (grub_nilfs2_super_block): Expand volume_name
14126 over last_mounted as seen in image generated by mkfs.nilfs2.
14127 (grub_nilfs2_label): Use sizeof for the size of s_volume_name.
14128
14129 2012-01-31 Vladimir Serbinenko <phcoder@gmail.com>
14130
14131 * grub-core/fs/fat.c (grub_fat_dir_entry) [MODE_EXFAT]: Expand label
14132 to 15 UTF-16 characters as seen in FS generated by mkexfatfs.
14133 (grub_fat_label) [MODE_EXFAT]: Use macros for size.
14134
14135 2012-01-31 Vladimir Serbinenko <phcoder@gmail.com>
14136
14137 * grub-core/fs/romfs.c (grub_romfs_mount): Fix a bug with labels going
14138 over the sector.
14139
14140 2012-01-31 Vladimir Serbinenko <phcoder@gmail.com>
14141
14142 * grub-core/fs/zfs/zfs.c (get_filesystem_dnode): Support space in
14143 subvolume name (by removing a bogus and useless check).
14144
14145 2012-01-31 Vladimir Serbinenko <phcoder@gmail.com>
14146
14147 * grub-core/fs/ext2.c (grub_ext2_label): Fix field size. Change to
14148 sizeof while on it.
14149
14150 2012-01-30 Vladimir Serbinenko <phcoder@gmail.com>
14151
14152 * grub-core/disk/scsi.c (grub_scsi_read_capacity): Renamed to ...
14153 (grub_scsi_read_capacity10): ... this.
14154 (grub_scsi_read_capacity16): New function.
14155 (grub_scsi_open): Use read_capacity16 if read_capacity10 returned
14156 0xffffffff.
14157 Fix off-by-one error.
14158 * include/grub/scsi.h (grub_scsi): Rename size to last_block and make it
14159 64-bit unsigned.
14160 * include/grub/scsicmd.h (grub_scsi_read_capacity): Rename to ...
14161 (grub_scsi_read_capacity10): ... this.
14162 (grub_scsi_read_capacity_data): Rename to ...
14163 (grub_scsi_read_capacity10_data): ... this. Rename size to last_block.
14164 (grub_scsi_read_capacity16): New struct.
14165 (grub_scsi_read_capacity16_data): Likewise.
14166 (grub_scsi_cmd_t): Rename grub_scsi_cmd_read_capacity to
14167 grub_scsi_cmd_read_capacity10.
14168 New command grub_scsi_cmd_read_capacity16.
14169
14170 2012-01-30 Vladimir Serbinenko <phcoder@gmail.com>
14171
14172 SCSI >2TiB support.
14173
14174 * grub-core/disk/scsi.c (grub_scsi_read16): New function.
14175 (grub_scsi_write16): Likewise.
14176 (grub_scsi_read): Use read16 when necessary.
14177 (grub_scsi_write): Likewise.
14178 * include/grub/scsicmd.h (grub_scsi_read16): New struct.
14179 (grub_scsi_write16): Likewise.
14180 (grub_scsi_cmd_t): Add READ16 and WRITE16.
14181
14182 2012-01-30 Vladimir Serbinenko <phcoder@gmail.com>
14183
14184 SCSI write support (for usbms mainly).
14185
14186 * grub-core/disk/scsi.c (grub_scsi_write10): Uncomment. Make buffer
14187 a const pointer.
14188 (grub_scsi_write): Implement.
14189 * include/grub/scsi.h (grub_scsi_dev): Make write buffer a const pointer
14190
14191 2012-01-30 Vladimir Serbinenko <phcoder@gmail.com>
14192
14193 * grub-core/io/lzopio.c (uncompress_block): Fix use of incorrect
14194 variable.
14195
14196 2012-01-29 Vladimir Serbinenko <phcoder@gmail.com>
14197
14198 * grub-core/lib/posix_wrap/string.h (memchr): New function.
14199
14200 2012-01-29 Vladimir Serbinenko <phcoder@gmail.com>
14201
14202 * po/POTFILES.in: Regenerate.
14203
14204 2012-01-29 Vladimir Serbinenko <phcoder@gmail.com>
14205
14206 * grub-core/lib/posix_wrap/assert.h (assert_real): Replace grub_fatal
14207 with grub_printf to avoid unnecessary fatal failure.
14208
14209 2012-01-29 Vladimir Serbinenko <phcoder@gmail.com>
14210
14211 * grub-core/lib/posix_wrap/limits.h (SHRT_MAX): New define.
14212 (INT_MAX): Likewise.
14213 * grub-core/lib/posix_wrap/stdio.h (snprintf): New function.
14214 * grub-core/lib/posix_wrap/stdlib.h (abs): Likewise.
14215 * grub-core/lib/posix_wrap/string.h (memcmp): Likewise.
14216 (strcpy): Likewise.
14217 (strstr): Likewise.
14218 (strchr): Likewise.
14219 (strncpy): Likewise.
14220 (strcat): Likewise.
14221 (strncat): Likewise.
14222 (strcoll): Likewise.
14223 * include/grub/types.h (GRUB_SHRT_MAX): New define.
14224 (GRUB_INT_MAX): Likewise.
14225
14226 2012-01-29 Vladimir Serbinenko <phcoder@gmail.com>
14227
14228 * grub-core/gnulib/regcomp.c (regerror): Don't use abort on
14229 unexpected error.
14230 (optimize_utf8): Likewise.
14231 * grub-core/lib/posix_wrap/stdlib.h (abort): Removed.
14232
14233 2012-01-29 Vladimir Serbinenko <phcoder@gmail.com>
14234
14235 * grub-core/boot/i386/pc/lnxboot.S: Use
14236 GRUB_DECOMPRESSOR_MAX_DECOMPRESSOR_SIZE.
14237 * grub-core/boot/i386/pc/startup_raw.S: Ensure about boot_dev
14238 location.
14239 * include/grub/offsets.h (GRUB_DECOMPRESSOR_I386_PC_BOOT_DEVICE): New
14240 definition.
14241 (GRUB_DECOMPRESSOR_I386_PC_MAX_DECOMPRESSOR_SIZE): Likewise.
14242
14243 2012-01-29 Vladimir Serbinenko <phcoder@gmail.com>
14244
14245 * util/getroot.c (grub_util_get_dm_node_linear_info): Fix memory leak.
14246 * grub-core/disk/cryptodisk.c (cryptodisk_cleanup): Disable for
14247 now to avoid double free.
14248 * grub-core/kern/emu/hostdisk.c (grub_util_biosdisk_dev): Rename to
14249 hostdisk.
14250 * include/grub/disk.h (grub_disk_dev_id): New id HOSTDISK.
14251 * util/grub-probe.c (escape_of_path): Always return a new copy.
14252 (print_full_name): Escape path.
14253 (probe): Don't call grub_util_devname_to_ofpath on NULL.
14254 Fix hints on abstractions.
14255
14256 2012-01-29 Vladimir Serbinenko <phcoder@gmail.com>
14257
14258 * util/grub-mkconfig_lib.in (prepare_grub_to_access_device):
14259 Don't add "root" line if no compatibility hont is available.
14260 Suggested by: Seth Goldberg.
14261
14262 2012-01-29 Vladimir Serbinenko <phcoder@gmail.com>
14263
14264 * include/grub/ata.h (grub_ata): Add a new element maxbuffer.
14265 * grub-core/disk/ata.c (grub_ata_readwrite): Limit to ata->maxbuffer.
14266 * grub-core/disk/pata.c (grub_pata_open): Set ata->maxbuffer.
14267 * grub-core/disk/ahci.c (grub_ahci_open): Likewise.
14268
14269 2012-01-29 Vladimir Serbinenko <phcoder@gmail.com>
14270
14271 * include/grub/zfs/dnode.h (DN_MIN_INDBLKSHIFT): Removed.
14272
14273 2012-01-29 Vladimir Serbinenko <phcoder@gmail.com>
14274
14275 * util/grub-pe2elf.c (ehdr): Make static.
14276 (shdr): Likewise.
14277 (num_sections): Likewise.
14278 (offset): Likewise.
14279
14280 2012-01-29 Vladimir Serbinenko <phcoder@gmail.com>
14281
14282 Eliminate ofpath limits and possible overflows.
14283
14284 * util/ieee1275/ofpath.c (grub_util_info) [STANDALONE]: New function.
14285 (OF_PATH_MAX): Removed.
14286 (MAX_DISK_CAT): New const.
14287 (find_obppath): Use allocated rather than preallocated buffer.
14288 Return result. Argument of_path removed. All users updated.
14289 Add missing fdstat.
14290 (xrealpath): New function.
14291 (block_device_get_sysfs_path_and_link): Remove sysfs argument.
14292 Allocate rather than use preallocated buffer. All users updated.
14293 (__of_path_common): Use allocated rather than preallocatecd buffer.
14294 Return result. Argument of_path removed. All users updated.
14295 (vendor_is_ATA): Read only needed part form the file.
14296 (check_sas): Allocate depending on contents rather than fixed.
14297 (main) [STANDALONE]: Handle NULL result.
14298
14299 2012-01-29 Vladimir Serbinenko <phcoder@gmail.com>
14300
14301 * grub-core/normal/completion.c (iterate_dev): Close the disk.
14302
14303 2012-01-29 Vladimir Serbinenko <phcoder@gmail.com>
14304
14305 Cryptodisk write support.
14306
14307 * grub-core/disk/cryptodisk.c (grub_crypto_pcbc_encrypt): New function.
14308 (grub_cryptodisk_decrypt): Moved logic to ...
14309 (grub_cryptodisk_endecrypt): ...this. New argument "encrypt".
14310 (grub_cryptodisk_write): Implement.
14311 * grub-core/kern/emu/hostdisk.c (nwrite): Rename to ...
14312 (grub_util_fd_write): ... this. Make global.
14313 * include/grub/emu/hostdisk.h (grub_util_fd_write): New proto.
14314
14315 2012-01-29 Vladimir Serbinenko <phcoder@gmail.com>
14316
14317 * include/grub/list.h (grub_list_remove): Don't crash if element is
14318 removed twice.
14319
14320 2012-01-29 Vladimir Serbinenko <phcoder@gmail.com>
14321
14322 Rename ofconsole to console.
14323
14324 * grub-core/commands/terminal.c (handle_command): Handle ofconsole
14325 as sysnonym to console.
14326 * grub-core/term/ieee1275/ofconsole.c: Renamed to ..
14327 * grub-core/term/ieee1275/console.c: ... this. All users updated.
14328 Rename grub_ofconsole_ to grub_console_. All users updated
14329 (grub_console_term_output): Rename "ofconsole" to "console".
14330 * grub-core/term/terminfo.c (grub_cmd_terminfo): Handle "ofconsole"
14331 as "console".
14332
14333 2012-01-29 Vladimir Serbinenko <phcoder@gmail.com>
14334
14335 * grub-core/loader/i386/pc/plan9.c (grub_cmd_plan9): Remove PXE
14336 handling.
14337 * include/grub/disk.h (grub_disk_dev_id): Remove obsolete
14338 GRUB_DISK_DEVICE_UUID_ID, GRUB_DISK_DEVICE_PXE_ID and
14339 GRUB_DISK_DEVICE_FILE_ID.
14340
14341 2012-01-29 Vladimir Serbinenko <phcoder@gmail.com>
14342
14343 * grub-core/kern/partition.c (grub_partition_get_name): Simplify logic
14344 and improve performance.
14345
14346 2012-01-29 Vladimir Serbinenko <phcoder@gmail.com>
14347
14348 * grub-core/kern/ieee1275/openfw.c (grub_ieee1275_encode_devname): Fix
14349 missing ieee1275/ prefix on whole disk.
14350
14351 2012-01-29 Vladimir Serbinenko <phcoder@gmail.com>
14352
14353 * include/grub/powerpc/ieee1275/util/biosdisk.h: Remove.
14354 * include/grub/powerpc/ieee1275/biosdisk.h: Likewise.
14355
14356 2012-01-29 Vladimir Serbinenko <phcoder@gmail.com>
14357
14358 * grub-core/fs/cpio.c (handle_symlink): Fix a bug.
14359
14360 2012-01-29 Vladimir Serbinenko <phcoder@gmail.com>
14361
14362 Merge common RAID and LVM logic to an abstract diskfilter.
14363 Add LDM support using the same framework.
14364
14365 * Makefile.util.def (libgrubkern): Add grub-core/disk/ldm.c,
14366 grub-core/disk/diskfilter.c and grub-core/partmap/gpt.c.
14367 (libgrubmods): Remove grub-core/disk/raid.c and
14368 grub-core/partmap/gpt.c.
14369 * grub-core/Makefile.core.def (ldm): New module.
14370 (raid): Renamed to diskfilter. All users updated.
14371 * grub-core/disk/raid.c: Moved to ...
14372 * grub-core/disk/diskfilter.c: ... here.
14373 * grub-core/disk/diskfilter.c: Rename grub_raid_ to grub_diskfilter_.
14374 (lv_num): New var.
14375 (find_array): Renamed to ...
14376 (find_lv): ... this. Support multi-LV. Skip nameless LVs
14377 (grub_is_array_readable): Renamed to ...
14378 (grub_is_lv_readable): ... this. Support multinode hierarchy.
14379 (insert_array): New argument id.
14380 (is_node_readable): New function.
14381 (scan_device): Rename to ...
14382 (scan_disk): .. this. Restrict to one disk.
14383 (scan_devices): New function.
14384 (grub_diskfilter_iterate): Support multi-LV.
14385 Skip invisible and nameless LVs.
14386 (grub_diskfilter_memberlist): Support multi-LV.
14387 (grub_diskfilter_read_node): New function.
14388 (grub_raid_read): Most of logic moved to ...
14389 (read_segment): ... here
14390 (read_lv): New function.
14391 (grub_diskfilter_get_vg_by_uuid): New function.
14392 (grub_diskfilter_make_raid): Likewise.
14393 * grub-core/disk/ldm.c: New file.
14394 * grub-core/disk/lvm.c (vg_list): Removed.
14395 (lv_count): Likewise.
14396 (scan_depth): Likewise.
14397 (is_lv_readable): Likewise.
14398 (grub_lvm_getvalue): Advance pointer past the number.
14399 (find_lv): Removed.
14400 (do_lvm_scan): Refactored into ...
14401 (grub_lvm_detect): ... this. Support raid.
14402 (grub_lvm_iterate): Removed.
14403 (grub_lvm_memberlist): Likewise.
14404 (grub_lvm_open): Likewise.
14405 (grub_lvm_close): Likewise.
14406 (read_lv): Likewise.
14407 (read_node): Likewise.
14408 (is_node_readable): Likewise.
14409 (is_lv_readable): Likewise.
14410 (grub_lvm_read): Likewise.
14411 (grub_lvm_write): Likewise.
14412 (grub_lvm_dev): Use diskfilter
14413 (GRUB_MOD_INIT): Likewise.
14414 (GRUB_MOD_FINI): Likewise.
14415 * grub-core/disk/dmraid_nvidia.c (grub_dmraid_nv_detect): Use
14416 new interface.
14417 * grub-core/disk/mdraid1x_linux.c (grub_mdraid_detect): Likewise.
14418 * grub-core/disk/mdraid_linux.c (grub_mdraid_detect): Likewise.
14419 * grub-core/disk/raid5_recover.c (grub_raid5_recover): Use
14420 grub_diskfilter_read_node.
14421 Fix a bug with xor.
14422 * grub-core/disk/raid6_recover.c (grub_raid6_recover): Use
14423 grub_diskfilter_read_node.
14424 Support GRUB_RAID_LAYOUT_MUL_FROM_POS.
14425 * grub-core/kern/disk.c (grub_disk_dev_list): Make global.
14426 (grub_disk_dev_iterate): Move from here...
14427 * include/grub/disk.h (grub_disk_dev_iterate): ... to here. Inlined.
14428 * grub-core/kern/emu/hostdisk.c (grub_hostdisk_find_partition_start):
14429 Make global.
14430 (grub_hostdisk_find_partition_start): Likewise.
14431 (grub_hostdisk_os_dev_to_grub_drive): New function.
14432 (grub_util_biosdisk_get_osdev): Check that disk is biosdisk.
14433 * grub-core/kern/emu/hostdisk.c (make_device_name): Move to ...
14434 * util/getroot.c (make_device_name): ... here.
14435 * grub-core/kern/emu/hostdisk.c (grub_util_get_dm_node_linear_info):
14436 Move to ...
14437 * util/getroot.c (grub_util_get_dm_node_linear_info): ...here.
14438 * grub-core/kern/emu/hostdisk.c
14439 (convert_system_partition_to_system_disk): Move to ...
14440 * util/getroot.c (convert_system_partition_to_system_disk): ...here.
14441 * grub-core/kern/emu/hostdisk.c (device_is_wholedisk): Move to ...
14442 * util/getroot.c (device_is_wholedisk): ... here.
14443 * grub-core/kern/emu/hostdisk.c (find_system_device): Move to ...
14444 * util/getroot.c (find_system_device): ... here.
14445 * grub-core/kern/emu/hostdisk.c (grub_util_biosdisk_is_present):
14446 Move to ...
14447 * util/getroot.c (grub_util_biosdisk_is_present): ...here.
14448 * grub-core/kern/emu/hostdisk.c (grub_util_biosdisk_get_grub_dev):
14449 Move to ...
14450 * util/getroot.c (grub_util_biosdisk_get_grub_dev): ... here.
14451 Handle LDM.
14452 * grub-core/kern/emu/hostdisk.c (grub_util_biosdisk_is_floppy):
14453 Move to ...
14454 * util/getroot.c (grub_util_biosdisk_is_floppy): ... here.
14455 * grub-core/partmap/gpt.c (grub_gpt_partition_map_iterate): Made global.
14456 * include/grub/disk.h (grub_disk_dev_id): Replaced RAID and LVM with
14457 DISKFILTER.
14458 * include/grub/raid.h: Renamed to ...
14459 * include/grub/diskfilter.h: ... this.
14460 * include/grub/diskfilter.h: Rename grub_raid_* to grub_diskfilter_*
14461 (GRUB_RAID_LAYOUT_*): Make into array.
14462 (GRUB_RAID_LAYOUT_MUL_FROM_POS): New value.
14463 (grub_diskfilter_vg): New struct.
14464 (grub_diskfilter_pv_id): Likewise.
14465 (grub_raid_member): Removed.
14466 (grub_raid_array): Likewise.
14467 (grub_diskfilter_pv): New struct.
14468 (grub_diskfilter_lv): Likewise.
14469 (grub_diskfilter_segment): Likewise.
14470 (grub_diskfilter_node): Likewise.
14471 (grub_diskfilter_get_vg_by_uuid): New proto.
14472 (grub_raid_register): Inline.
14473 (grub_diskfilter_unregister): Likewise.
14474 (grub_diskfilter_make_raid): New proto.
14475 (grub_diskfilter_vg_register): Likewise.
14476 (grub_diskfilter_read_node): Likewise.
14477 (grub_diskfilter_get_pv_from_disk) [GRUB_UTIL]: Likewise.
14478 * include/grub/emu/hostdisk.h (grub_util_get_ldm): New proto.
14479 (grub_util_is_ldm): Likewise.
14480 (grub_util_ldm_embed) [GRUB_UTIL]: Likewise.
14481 (grub_hostdisk_find_partition_start): Likewise.
14482 (grub_hostdisk_os_dev_to_grub_drive): Likewise.
14483 * include/grub/gpt_partition.h (GRUB_GPT_PARTITION_TYPE_LDM):
14484 New definition.
14485 (grub_gpt_partition_map_iterate): New proto.
14486 * include/grub/lvm.h (grub_lvm_vg): Removed.
14487 (grub_lvm_pv): Likewise.
14488 (grub_lvm_lv): Likewise.
14489 (grub_lvm_segment): Likewise.
14490 (grub_lvm_node): Likewise.
14491 * util/getroot.c [...]
14492 * util/grub-probe.c (probe_raid_level): Handle diskfilter.
14493 (probe_abstraction): Likewise.
14494 * util/grub-setup.c (setup): Remove must_embed. Support LDM.
14495 (main): Remove dead logic.
14496
14497 2012-01-28 Vladimir Serbinenko <phcoder@gmail.com>
14498
14499 Simplify root device discover and don't fail when trying to open
14500 incorrect devices.
14501
14502 * grub-core/disk/efi/efidisk.c (get_diskname_from_path_real): New
14503 function.
14504 (get_diskname_from_path): Likewise.
14505 (grub_efidisk_get_device_name): Use get_diskname_from_path instead
14506 of iterating.
14507
14508 2012-01-27 Vladimir Serbinenko <phcoder@gmail.com>
14509
14510 * grub-core/Makefile.core.def (setpci): Enable on all PCI platforms.
14511
14512 2012-01-27 Vladimir Serbinenko <phcoder@gmail.com>
14513
14514 * grub-core/fs/zfs/zfs.c (nvlist_find_value): Check that we don't go
14515 pastthe end.
14516
14517 2012-01-27 Vladimir Serbinenko <phcoder@gmail.com>
14518
14519 * util/grub-install.in: Add missing \.
14520 Reported by: gentoofan
14521
14522 2012-01-26 Vladimir Serbinenko <phcoder@gmail.com>
14523
14524 * grub-core/fs/squash4.c (xz_decompress): Fix return value.
14525 (direct_read): Use correct compressed size.
14526 (grub_squash_read_data): Likewise.
14527
14528 2012-01-26 Vladimir Serbinenko <phcoder@gmail.com>
14529
14530 * docs/grub.texi (Platform limitations): New section.
14531 (Platform-specific operations): Likewise.
14532 * docs/grub-dev.texi (Porting): Likewise.
14533
14534 2012-01-25 Vladimir Serbinenko <phcoder@gmail.com>
14535
14536 IEEE1275 disk write support.
14537
14538 * grub-core/kern/ieee1275/ieee1275.c (grub_ieee1275_write): Make buffer
14539 const void *.
14540 * include/grub/ieee1275/ieee1275.h (grub_ieee1275_write): Likewise.
14541 * grub-core/disk/ieee1275/ofdisk.c (grub_ofdisk_read): Move open
14542 and seek loginc to ...
14543 (grub_ofdisk_prepare): ... here.
14544 (grub_ofdisk_write): Implement.
14545
14546 2012-01-25 Vladimir Serbinenko <phcoder@gmail.com>
14547
14548 ARC disk write support.
14549
14550 * grub-core/disk/arc/arcdisk.c (handle_writable): New var.
14551 (reopen): New argument writable. All users updated.
14552 Handle required access mode.
14553 (grub_arcdisk_write): Implement.
14554 * include/grub/arc/arc.h (grub_arc_file_access): New enum.
14555 (grub_arc_firmware_vector): Make buffer to write a const buffer.
14556
14557 2012-01-25 Vladimir Serbinenko <phcoder@gmail.com>
14558
14559 * grub-core/fs/btrfs.c (grub_btrfs_device): New field size.
14560 (read_sblock): Don't attempt to read superblocks outside the disk size.
14561
14562 2012-01-25 Vladimir Serbinenko <phcoder@gmail.com>
14563
14564 * grub-core/fs/nilfs2.c (grub_nilfs2_load_sb): Use device size from
14565 first superblock to find the second one when possible.
14566
14567 2012-01-25 Vladimir Serbinenko <phcoder@gmail.com>
14568
14569 * util/grub-install.in: Fix an ARC bug.
14570 Print a warning if no platform-specific setup is available.
14571
14572 2012-01-24 Vladimir Serbinenko <phcoder@gmail.com>
14573
14574 Use static allocation rather than scratch pointer in reed_solomon.
14575 It decreases its size significantly and avoids a variable in .text.
14576
14577 * grub-core/lib/reed_solomon.c (scratch): Removed.
14578 (chosenstat): New const or static array.
14579 (sigma): Likewise.
14580 (errpot): Likewise.
14581 (errpos): Likewise.
14582 (sy): Likewise.
14583 (mstat): Likewise.
14584 (errvals): Likewise.
14585 (eqstat): Likewise.
14586 (pol_evaluate): Replace x with log_x argument. All users updated.
14587 (syndroms): Removed.
14588 (gauss_solve): Use statically allocated arrays.
14589 (rs_recover): Likewise.
14590 Calculate syndroms directly.
14591 (decode_block): Use statically allocated arrays.
14592 (grub_reed_solomon_add_redundancy) [TEST]: Fix -DTEST compilation.
14593 (main) [TEST]: Allow -DTEST -DSTANDALONE.
14594
14595 2012-01-24 Vladimir Serbinenko <phcoder@gmail.com>
14596
14597 Eliminate fixed limit on reed solomon decoder length.
14598
14599 * grub-core/boot/i386/pc/lnxboot.S: Scan for multiboot signature
14600 rather than hardcoding the address.
14601 * grub-core/boot/i386/pc/startup_raw.S: Add new data field
14602 no_reed_solomon_length.
14603 Move gate_a20 to no-reed-solomon part.
14604 Don't force a particular size of no reed-solomon part.
14605 * include/grub/offsets.h (GRUB_KERNEL_I386_PC_NO_REED_SOLOMON_PART):
14606 Removed.
14607 (GRUB_KERNEL_I386_PC_NO_REED_SOLOMON_LENGTH): New define.
14608 * util/grub-setup.c (setup): Read no_rs_length from the image itself.
14609
14610 2012-01-24 Vladimir Serbinenko <phcoder@gmail.com>
14611
14612 * grub-core/commands/wildcard.c (match_files): Handle filenames
14613 without explicit device.
14614 (wildcard_expand): Don't add explicit device if not already present.
14615 * tests/grub_script_echo1.in: Add a new expansion test.
14616
14617 2012-01-24 Vladimir Serbinenko <phcoder@gmail.com>
14618
14619 Replace single-linked with double-linked lists. It results in more
14620 compact and more efficient code.
14621
14622 * grub-core/kern/list.c (grub_list_push): Moved from here ...
14623 * include/grub/list.h (grub_list_push): ... to here. Set prev.
14624 (grub_list_remove): Moved from here ...
14625 * include/grub/list.h (grub_list_remove): ... here. Use and set prev.
14626 (grub_prio_list_insert): Set prev.
14627 * include/grub/list.h (grub_list): Add prev. All users updated.
14628
14629 2012-01-24 Vladimir Serbinenko <phcoder@gmail.com>
14630
14631 Handle newer autotools. Add some missing quotes while on it.
14632
14633 * Makefile.am (pkglib_DATA): Remove update-grub_lib.
14634 (pkglib_DATA): Move grub-mkconfig_lib from here ...
14635 (pkgdata_DATA): ... here.
14636 * Makefile.util.def (update-grub_lib): Removed.
14637 * conf/Makefile.common (pkglib_DATA): Removed.
14638 (pkglib_SCRIPTS): Likewise.
14639 (pkgdata_DATA): New variable.
14640 * tests/util/grub-shell-tester.in: Replace pkglib with pkgdata where
14641 needed.
14642 Add missing quotes.
14643 Remove unused variable while on it.
14644 * tests/util/grub-shell.in: Likewise.
14645 * util/grub-install.in: Likewise.
14646 * util/grub-mkconfig.in: Likewise.
14647 * util/grub-mknetdir.in: Likewise.
14648 * util/grub-mkrescue.in: Likewise.
14649 * util/grub-mkstandalone.in: Likewise.
14650 * util/grub.d/00_header.in: Likewise.
14651 * util/grub.d/10_hurd.in: Likewise.
14652 * util/grub.d/10_illumos.in: Likewise.
14653 * util/grub.d/10_kfreebsd.in: Likewise.
14654 * util/grub.d/10_linux.in: Likewise.
14655 * util/grub.d/10_netbsd.in: Likewise.
14656 * util/grub.d/10_windows.in: Likewise.
14657 * util/grub.d/20_linux_xen.in: Likewise.
14658 * util/grub.d/30_os-prober.in: Likewise.
14659 * util/update-grub_lib.in: Removed.
14660
14661 2012-01-24 Seth Goldberg <seth.goldberg@oracle.com>
14662
14663 * grub-core/net/drivers/i386/pc/pxe.c (grub_pxe_recv): Relax checks as
14664 a workaround for intel problem.
14665
14666 2012-01-23 Paulo de Rezende Pinatti <ppinatti@linux.vnet.ibm.com>
14667 2012-01-23 Vladimir Serbinenko <phcoder@gmail.com>
14668 2012-01-23 pfsmorigo
14669
14670 * util/grub-install.in: Support dd'in into PreP partition.
14671 * util/grub-probe.c (probe): Support discovering partition type.
14672 (main): Support -t msdos_parttype.
14673
14674 2012-01-23 Vladimir Serbinenko <phcoder@gmail.com>
14675
14676 * grub-core/normal/crypto.c (grub_crypto_autoload): Prevent
14677 infinite recursion using counter.
14678 * grub-core/lib/xzembed/xz_dec_stream.c (xz_dec_init): Defer s->crc32
14679 init to skip it if the magic check fails.
14680 (dec_stream_header): Init s->crc32.
14681
14682 2012-01-22 Vladimir Serbinenko <phcoder@gmail.com>
14683 2012-01-22 Zachary Bedell <pendorbound@gmail.com>
14684 2012-01-22 Richard Laager <rlaager@wiktel.com>
14685
14686 * grub-core/fs/zfs/zfs.c (uberblock_verify): New parameter size.
14687 All users updated.
14688 (find_bestub): Determine correct size.
14689 (fill_vdev_info_real): Fill ashift. New argument. All users updated.
14690 (scan_disk): Align the size down.
14691 Call check pool before find_bestub to have ashift.
14692
14693 2012-01-22 Vladimir Serbinenko <phcoder@gmail.com>
14694
14695 * grub-core/lib/relocator.c (malloc_in_range): Remove couple of
14696 dprintf in no-malloc zone.
14697
14698 2012-01-22 Mario Limonciello <mario_limonciello@dell.com>
14699
14700 * configure.ac: Add back in test for limits.h.
14701
14702 2012-01-20 Vladimir Serbinenko <phcoder@gmail.com>
14703
14704 Support 4K-sector NTFS.
14705
14706 * include/grub/ntfs.h (GRUB_NTFS_MAX_MFT): Increase to 8.
14707 (grub_ntfs_data): Remove blocksize.
14708 * grub-core/fs/ntfs.c (fixup): Fix size comparison.
14709 Remove data argument. All users updated.
14710
14711 2012-01-20 Vladimir Serbinenko <phcoder@gmail.com>
14712
14713 * grub-core/kern/mips/arc/init.c (grub_total_modules_size): Mark as
14714 being in .text to avoid dprel references.
14715 * include/grub/mips/loongson/kernel.h (grub_arch_machine): Likewise.
14716 * include/grub/mips/loongson/memory.h (grub_arch_memsize): Likewise.
14717 (grub_arch_highmemsize): Likewise.
14718 * include/grub/mips/loongson/time.h (grub_arch_busclock): Likewise.
14719 * include/grub/mips/qemu_mips/memory.h (grub_arch_memsize): Likewise.
14720 * include/grub/mips/time.h (grub_arch_cpuclock): Likewise.
14721
14722 2012-01-18 Vladimir Serbinenko <phcoder@gmail.com>
14723
14724 Support powerpc with GCC that defines __PPC__ but not __powerpc__.
14725
14726 * config.h.in (__powerpc__) [__PPC__ && !__powerpc__]: New definition.
14727 * grub-core/lib/setjmp.S: Treat __PPC__ as equivalent to __powerpc__.
14728
14729 2012-01-18 Vladimir Serbinenko <phcoder@gmail.com>
14730
14731 * include/grub/datetime.h (grub_get_datetime_cmos): Don't define in
14732 GRUB_UTIL.
14733 (grub_set_datetime_cmos): Likewise.
14734
14735 2012-01-18 Vladimir Serbinenko <phcoder@gmail.com>
14736
14737 Make XZ compression parameters dependent on target and not host CPU.
14738
14739 * configure.ac: Define GRUB_TARGET_CPU_XYZ series.
14740 * grub-core/lib/xzembed/xz_config.h: Use GRUB_TARGET_CPU_XYZ.
14741
14742 2012-01-18 Vladimir Serbinenko <phcoder@gmail.com>
14743
14744 * grub-core/kern/powerpc/dl.c (grub_arch_dl_get_tramp_got_size): Remove
14745 set but not used variable.
14746
14747 2012-01-14 Vladimir Serbinenko <phcoder@gmail.com>
14748
14749 * grub-core/fs/reiserfs.c (grub_reiserfs_uuid): Reject 0-uuid as
14750 created when no uuid support is compiled into mkfs.reiser.
14751
14752 2012-01-14 Vladimir Serbinenko <phcoder@gmail.com>
14753
14754 * grub-core/fs/hfs.c (macroman_to_utf8): Convert / to :.
14755 (utf8_to_macroman): Do the opposite.
14756 * grub-core/fs/hfsplus.c (grub_hfsplus_iterate_dir): Convert / to :.
14757
14758 2012-01-14 Vladimir Serbinenko <phcoder@gmail.com>
14759
14760 * configure.ac: Refise build qemu_mips w/o unifont.
14761
14762 2012-01-14 Vladimir Serbinenko <phcoder@gmail.com>
14763
14764 Eliminate grub_min/grub_max prone to overflow usage.
14765
14766 * grub-core/bus/usb/usbhub.c (grub_usb_add_hub): Eliminate grub_min.
14767 (poll_nonroot_hub): Likewise.
14768 * grub-core/fs/affs.c (grub_affs_iterate_dir): Likewise.
14769 (grub_affs_label): Likewise.
14770 * grub-core/fs/btrfs.c (grub_btrfs_lzo_decompress): Likewise.
14771 * grub-core/fs/hfs.c (grub_hfs_dir): Likewise.
14772 (grub_hfs_label): Likewise.
14773 * grub-core/fs/hfsplus.c (grub_hfsplus_cmp_catkey): Likewise.
14774 * grub-core/fs/zfs/zfs.c (MIN): Remove.
14775 (zap_leaf_array_equal): Use grub_size. Remove MIN.
14776 (zap_leaf_array_get): Likewise.
14777 (dnode_get_path): Likewise.
14778 * grub-core/io/lzopio.c (grub_lzopio_read): Eliminate grub_min.
14779 * grub-core/io/xzio.c (grub_xzio_read): Likewise.
14780 * grub-core/script/execute.c (grub_script_break): Likewise.
14781 * grub-core/script/lexer.c (grub_script_lexer_record): Eliminate
14782 grub_max.
14783 * grub-core/script/yylex.l (grub_lexer_yyrealloc): Likewise.
14784 * include/grub/misc.h (grub_min): Removed.
14785 (grub_max): Likewise.
14786
14787 2012-01-14 Samuel Thibault <samuel.thibault@ens-lyon.org>
14788
14789 * grub-core/fs/ext2.c (grub_ext2_iterate_dir): Ignore entries with
14790 direct.inode = 0.
14791
14792 2012-01-14 Vladimir Serbinenko <phcoder@gmail.com>
14793
14794 * grub-core/lib/posix_wrap/wctype.h (CHARCLASS_NAME_MAX): New define.
14795
14796 2012-01-14 Vladimir Serbinenko <phcoder@gmail.com>
14797
14798 * include/grub/datetime.h (grub_datetime2unixtime): Fix offset.
14799
14800 2012-01-14 Vladimir Serbinenko <phcoder@gmail.com>
14801
14802 * grub-core/lib/posix_wrap/stdlib.h (MB_CUR_MAX): Moved from here ...
14803 * grub-core/lib/posix_wrap/wchar.h (MB_CUR_MAX): ... here. Value fixed.
14804
14805 2012-01-14 Vladimir Serbinenko <phcoder@gmail.com>
14806
14807 * grub-core/fs/fshelp.c (grub_fshelp_find_file): Use grub_strcasecmp
14808 rather than a hack for grub_strncasemap.
14809
14810 2012-01-14 Vladimir Serbinenko <phcoder@gmail.com>
14811
14812 Support multiple initrds
14813 Note: part of this was accidently committed in r3739.
14814
14815 * grub-core/loader/i386/linux.c (grub_cmd_initrd): Support multiple
14816 initrd.
14817 * grub-core/loader/i386/pc/linux.c (grub_cmd_initrd): Likewise.
14818 * grub-core/loader/ia64/efi/linux.c (grub_cmd_initrd): Likewise.
14819 * grub-core/loader/mips/linux.c (grub_cmd_initrd): Likewise.
14820 * grub-core/loader/powerpc/ieee1275/linux.c (grub_cmd_initrd): Likewise.
14821 * grub-core/loader/sparc64/ieee1275/linux.c (grub_cmd_initrd): Likewise.
14822
14823 2012-01-14 Vladimir Serbinenko <phcoder@gmail.com>
14824
14825 * grub-core/disk/dmraid_nvidia.c (grub_dmraid_nv_detect): Skip
14826 disks with unknown size.
14827 * grub-core/disk/raid.c (scan_devices): Allow disks with unknown sizes.
14828
14829 2012-01-14 Vladimir Serbinenko <phcoder@gmail.com>
14830
14831 Remove defines pertaining to arbitrary limits not affecting GRUB
14832 anymore.
14833
14834 * grub-core/fs/ext2.c (EXT2_PATH_MAX): Removed.
14835 (EXT2_MAX_SYMLINKCNT): Likewise.
14836 * grub-core/fs/nilfs2.c (NILFS_BTREE_LEVEL_MAX): Likewise.
14837 * grub-core/net/tftp.c (TFTP_MAX_PACKET): Likewise.
14838 * include/grub/i386/pc/pxe.h (GRUB_PXE_MIN_BLKSIZE): Likewise.
14839 (GRUB_PXE_MAX_BLKSIZE): Likewise.
14840 * include/grub/normal.h (GRUB_MAX_CMDLINE): Likewise.
14841 * include/grub/zfs/dnode.h (DN_MAX_INDBLKSHIFT): Likewise.
14842 (DN_MAX_OBJECT_SHIFT): Likewise.
14843 (DN_MAX_OFFSET_SHIFT): Likewise.
14844 (DN_MAX_OBJECT): Likewise.
14845 (DNODES_PER_LEVEL_SHIFT): Likewise.
14846 * include/grub/zfs/spa.h (SPA_MAXBLOCKSHIFT): Likewise.
14847 (SPA_MAXBLOCKSIZE): Likewise.
14848 (SPA_BLOCKSIZES): Likewise.
14849 * include/grub/zfs/zap_impl.h (MZAP_MAX_BLKSHIFT): Likewise.
14850 (MZAP_MAX_BLKSZ): Likewise.
14851
14852 2012-01-14 Vladimir Serbinenko <phcoder@gmail.com>
14853
14854 * grub-core/fs/zfs/zfs.c (grub_zfs_read): Remove useless alloc and
14855 handle NULL appropriately.
14856 Remove MIN.
14857
14858 2012-01-13 Vladimir Serbinenko <phcoder@gmail.com>
14859
14860 Fix efiemu.
14861
14862 * grub-core/efiemu/runtime/efiemu.c: explicitly include right
14863 cpu/types.h.
14864 (efiemu_set_virtual_address_map): Remove UINT_TO_PTR.
14865 * configure.ac: Fix efiemu check.
14866
14867 2012-01-13 Vladimir Serbinenko <phcoder@gmail.com>
14868
14869 * util/grub.d/30_os-prober.in: Fix occurence of grub-probe instead of
14870 grub_probe.
14871 Reported by: adamwill
14872
14873 2012-01-12 Seth Goldberg <seth.goldberg@oracle.com>
14874
14875 * grub-core/lib/arg.c (grub_arg_parse): Fix NULL pointer dereference.
14876
14877 2012-01-12 Vladimir Serbinenko <phcoder@gmail.com>
14878
14879 Fix handling of wide characters in gfxterm.
14880
14881 * grub-core/term/gfxterm.c (grub_colored_char): Remove width and index.
14882 (clear_char): Likewise.
14883 (paint_char): Skip code == NULL chars.
14884 (grub_gfxterm_putchar): Set code = NULL on "shadowed" positions.
14885
14886 2012-01-12 Vladimir Serbinenko <phcoder@gmail.com>
14887
14888 * grub-core/normal/charset.c: Move comment to right place.
14889
14890 2012-01-11 Vladimir Serbinenko <phcoder@gmail.com>
14891
14892 * grub-core/fs/affs.c (grub_affs_bblock): Revert flags.
14893 (GRUB_AFFS_FLAG_FFS): Put back where it was.
14894 (grub_affs_mount): Revert the correct version checking.
14895
14896 2012-01-11 Vladimir Serbinenko <phcoder@gmail.com>
14897
14898 * docs/grub.texi (Unicode): Mention several other unsupported features.
14899
14900 2011-12-26 Vladimir Serbinenko <phcoder@gmail.com>
14901
14902 * grub-core/fs/squash4.c (squash_mount): Mark endian conversion in
14903 case statements as compile-time one.
14904 (direct_read): Prevent spurious warnings.
14905 (grub_squash_read_data): Likewise.
14906
14907 2011-12-26 Vladimir Serbinenko <phcoder@gmail.com>
14908
14909 Various squash4 fixes and LZO and XZ support.
14910
14911 * Makefile.util.def (libgrubmods.a): Add xzembed directory to cppflags.
14912 Add xzembed source files.
14913 * grub-core/Makefile.core.def (squash4): Add xzembed and minilzo flags.
14914 * grub-core/fs/squash4.c (grub_squash_super): New field compression.
14915 (grub_squash_inode): New subtype long_dir.
14916 (SQUASH_TYPE_LONG_DIR): New inode type.
14917 (COMPRESSION): New enum.
14918 (XZBUFSIZ): New const.
14919 (grub_squash_data): New fields blksz, decompress, xzdec, xzbuf.
14920 (read_chunk): Use data->decompress.
14921 (zlib_decompress): New function.
14922 (lzo_decompress): Likewise.
14923 (xz_decompress): Likewise.
14924 (squash_mount): Set new data fields.
14925 (grub_squash_iterate_dir): Handle long dir.
14926 (squash_unmount): Free xzdec and xzbuf.
14927 (grub_squash_open): Check ino type.
14928 (direct_read): Stylistic fixes. Use data->decompress.
14929 (grub_squash_read_data): Likewise.
14930 * grub-core/io/gzio.c (grub_gzio): Remove disk_input.
14931 (get_byte): Likewise.
14932 (grub_zlib_disk_read): Removed.
14933 * grub-core/lib/posix_wrap/sys/types.h (ssize_t): New type.
14934 (GRUB_POSIX_BOOL_DEFINED): New define.
14935 * grub-core/lib/posix_wrap/unistd.h: Include sys/types.h.
14936 * grub-core/lib/xzembed/xz.h: Addmissing includes.
14937 [!GRUB_POSIX_BOOL_DEFINED]: Define bool.
14938 * include/grub/deflate.h (grub_zlib_disk_read): Removed.
14939
14940 2011-12-26 Vladimir Serbinenko <phcoder@gmail.com>
14941
14942 Don't override more informative errors.
14943
14944 * grub-core/commands/acpi.c (grub_cmd_acpi): Don't override errors.
14945 * grub-core/font/font.c (open_section): Likewise.
14946 * grub-core/loader/i386/bsd.c (grub_bsd_load_aout): New argument
14947 filename. Don't override errors.
14948 (grub_cmd_openbsd_ramdisk): Don't override errors.
14949 * grub-core/loader/i386/linux.c (grub_cmd_linux): Likewise.
14950 (grub_cmd_initrd): Likewise.
14951 * grub-core/loader/i386/pc/linux.c (grub_cmd_linux): Likewise.
14952 (grub_cmd_initrd): Likewise.
14953 * grub-core/loader/ia64/efi/linux.c (grub_load_elf64): Likewise.
14954 (grub_cmd_linux): Likewise.
14955 (grub_cmd_initrd): Likewise.
14956 (grub_cmd_payload): Likewise.
14957 * grub-core/loader/mips/linux.c (grub_cmd_initrd): Likewise.
14958 * grub-core/loader/multiboot.c (grub_cmd_multiboot): Likewise.
14959 (grub_cmd_module): Likewise.
14960 * grub-core/loader/powerpc/ieee1275/linux.c (grub_cmd_initrd): Likewise.
14961 * grub-core/loader/sparc64/ieee1275/linux.c (grub_cmd_initrd): Likewise.
14962 * grub-core/loader/xnu.c (grub_xnu_load_driver): Likewise.
14963 (grub_cmd_xnu_mkext): Likewise.
14964 (grub_cmd_xnu_ramdisk): Likewise.
14965 (grub_xnu_check_os_bundle_required): Likewise.
14966 (grub_xnu_load_kext_from_dir): Likewise.
14967 (grub_cmd_xnu_kextdir): Likewise.
14968 * grub-core/loader/xnu_resume.c (grub_xnu_resume): Likewise.
14969
14970 2011-12-25 Vladimir Serbinenko <phcoder@gmail.com>
14971
14972 * grub-core/fs/minix.c (grub_minix_mount) [MODE_MINIX3]: Treat 0xffff
14973 as 1024 in block size field. Found on one of my test images.
14974 Small optimisation while on it.
14975
14976 2011-12-25 Vladimir Serbinenko <phcoder@gmail.com>
14977
14978 * docs/grub.texi (Filesystems): Mention SFS as Latin1 filesystem.
14979 * grub-core/fs/sfs.c (grub_sfs_mount): Fix a memory leak while on it.
14980 (grub_sfs_iterate_dir): Convert Latin1 to UTF8. Stylistic and
14981 performance fixes while on it.
14982 (grub_sfs_close): Fix memory leak while on it.
14983 (grub_sfs_label): Convert Latin1 to UTF-8.
14984
14985 2011-12-25 Vladimir Serbinenko <phcoder@gmail.com>
14986
14987 * grub-core/fs/hfs.c (grub_hfs_dir): Cap keylen to actually available
14988 space to avoid overflows.
14989 (grub_hfs_label): Convert from macroman to UTF-8.
14990
14991 2011-12-25 Vladimir Serbinenko <phcoder@gmail.com>
14992
14993 * grub-core/fs/affs.c (grub_affs_label): Interpret label as latin1.
14994
14995 2011-12-25 Vladimir Serbinenko <phcoder@gmail.com>
14996
14997 * grub-core/normal/menu.c (menu_init): Don't stop menu init at gfxterm.
14998
14999 2011-12-25 Vladimir Serbinenko <phcoder@gmail.com>
15000
15001 * unicode: Import Unicode 6.0 data.
15002
15003 2011-12-25 Vladimir Serbinenko <phcoder@gmail.com>
15004
15005 * grub-core/term/gfxterm.c (grub_gfxterm_putchar): Don't set values
15006 outside of range.
15007
15008 2011-12-25 Vladimir Serbinenko <phcoder@gmail.com>
15009
15010 Avoid cutting in the middle of UTF-8 character.
15011
15012 * include/grub/charset.h (grub_getend): New function.
15013 * grub-core/script/function.c (grub_script_function_find): Use
15014 grub_getend.
15015 * grub-core/normal/completion.c (add_completion): Likewise.
15016
15017 2011-12-25 Vladimir Serbinenko <phcoder@gmail.com>
15018
15019 * grub-core/normal/charset.c (grub_ucs4_to_utf8): Small stylistic fix.
15020 (grub_bidi_line_logical_to_visual): Skip tags. They are deprecated.
15021 * include/grub/unicode.h (GRUB_UNICODE_TAG_START): New enum value.
15022 (GRUB_UNICODE_TAG_END): Likewise.
15023 (GRUB_UNICODE_LAST_VALID): Likewise.
15024
15025 2011-12-25 Vladimir Serbinenko <phcoder@gmail.com>
15026
15027 * include/grub/unicode.h (grub_unicode_compact_range): Replace end with
15028 len and make it smaller. All users updated.
15029 * util/import_unicode.py: Put length and not end character.
15030 Check length.
15031
15032 2011-12-25 Vladimir Serbinenko <phcoder@gmail.com>
15033
15034 Make better Unicode-compliant and unify some UTF-8 code pathes.
15035
15036 * grub-core/normal/charset.c (grub_utf8_to_utf16): Don't eat possibly
15037 valid character.
15038 (grub_is_valid_utf8): Use grub_utf8_process.
15039 Check resulting code range.
15040 (grub_utf8_to_ucs4): Use grub_utf8_process.
15041 * include/grub/charset.h (grub_utf16_to_utf8): Don't eat up a possibly
15042 valid character.
15043
15044 2011-12-25 Vladimir Serbinenko <phcoder@gmail.com>
15045
15046 * grub-core/io/bufio.c (grub_bufio_read): Fix handling of corner cases.
15047
15048 2011-12-25 Vladimir Serbinenko <phcoder@gmail.com>
15049
15050 * docs/grub.texi (Filesystems): Mention AFS.
15051
15052 2011-12-25 Vladimir Serbinenko <phcoder@gmail.com>
15053
15054 * docs/grub.texi (Filesystems): Clarify restrictions.
15055 (Regexp): Mention non-Unicode regexp behaviour.
15056 (Other): Mention non-Unicode matching behaviour.
15057
15058 2011-12-24 Vladimir Serbinenko <phcoder@gmail.com>
15059
15060 Make HFS implementation use MacRoman.
15061
15062 * grub-core/fs/hfs.c (MAX_UTF8_PER_MAC_ROMAN): New define.
15063 (macroman): New const array.
15064 (macroman_to_utf8): New function.
15065 (utf8_to_macroman): Likewise.
15066 (grub_hfs_find_dir): Use utf8_to_macroman.
15067 (grub_hfs_dir): Use macroman_to_utf8.
15068 Set case_insensitive.
15069
15070 2011-12-24 Vladimir Serbinenko <phcoder@gmail.com>
15071
15072 * docs/grub.texi (Filesystems): Add IEEE1275 full-path example.
15073
15074 2011-12-24 Vladimir Serbinenko <phcoder@gmail.com>
15075
15076 Integrate hints into autogeneration scripts.
15077
15078 * docs/grub.texi (Filesystems): Add a hostdisk example.
15079 * Makefile.util.def (grub-mkdevicemap): Remove ofpath.
15080 (grub-probe): Add ofpath.
15081 * gentpl.py: Remove group nosparc64.
15082 * grub-core/commands/search.c (cache_entry): New struct.
15083 (cache): New var.
15084 (FUNC_NAME): Use and save cache. Fix handling of trailing comma.
15085 * grub-core/commands/search_wrap.c (options): Add platform-specific
15086 hint options.
15087 (grub_cmd_search): Handle platform-specific hints.
15088 (GRUB_MOD_INIT): Declare grub_cmd_search as accept_dash.
15089 * grub-core/kern/emu/hostdisk.c (map): New field device_map.
15090 (grub_util_biosdisk_data): Likewise.
15091 (grub_util_biosdisk_open): Set device_map.
15092 (read_device_map): Handle "" as indication of no map.
15093 Set device_map.
15094 (find_system_device): Add hostdisk/ prefix for autogenerated entries.
15095 (grub_util_biosdisk_get_compatibility_hint): New function.
15096 * grub-core/normal/main.c (features): Add feature_platform_search_hint.
15097 * include/grub/emu/hostdisk.h
15098 (grub_util_biosdisk_get_compatibility_hint): New proto.
15099 * util/grub-install.in: Don't call grub-mkdevicemap.
15100 Add platform-specific hint to load.cfg.
15101 * util/grub-mkconfig.in: Don't call grub-mkdevicemap.
15102 * util/grub-mkconfig_lib.in (prepare_grub_to_access_device): Add
15103 hints. Set root preliminary to compatibility hint, not to OS name.
15104 * util/grub-probe.c (PRINT_*): Add hints.
15105 (print): Make static.
15106 (escape_of_path): New function.
15107 (guess_bios_drive): Likewise.
15108 (guess_efi_drive): Likewise.
15109 (guess_baremetal_drive): Likewise.
15110 (print_full_name): Likewise.
15111 (probe): Handle hints.
15112 (main): Likewise.
15113 * util/ieee1275/devicemap.c: Removed.
15114 * util/ieee1275/ofpath.c (find_obppath): Allow to fail. All users
15115 updated.
15116 (grub_util_devname_to_ofpath): Return NULL on failure.
15117
15118 * grub-core/kern/emu/hostdisk.c (grub_util_biosdisk_get_grub_dev): Fix
15119 resource leak.
15120 * util/getroot.c (grub_util_pull_device): Fix memory leak.
15121
15122 * po/POTFILES.in: Regenerated.
15123
15124 Allow purely long options
15125
15126 * grub-core/lib/arg.c (SHORT_ARG_HELP): Removed.
15127 (SHORT_ARG_USAGE): Likewise.
15128 (grub_arg_show_help): Compare opt with help_options.
15129 (parse_option): Receive opt as argument. If makes big simplificatons.
15130 All users updated
15131
15132 2011-12-24 Vladimir Serbinenko <phcoder@gmail.com>
15133
15134 * grub-core/lib/libgcrypt_wrap/cipher_wrap.h (WORDS_BIGENDIAN):
15135 Restructure to avoid warning.
15136
15137 2011-12-24 Vladimir Serbinenko <phcoder@gmail.com>
15138
15139 * util/grub-install.in: Account for possible escaped comma in device
15140 name.
15141
15142 2011-12-24 Vladimir Serbinenko <phcoder@gmail.com>
15143
15144 * util/ieee1275/ofpath.c (of_path_of_ide): Fix address for secondary
15145 channel.
15146
15147 2011-12-24 Vladimir Serbinenko <phcoder@gmail.com>
15148
15149 * grub-core/kern/ieee1275/openfw.c (grub_devalias_iterate): Fix
15150 allocation and zero-setting.
15151 (grub_ieee1275_get_devname): Check that alias is complete.
15152
15153 2011-12-24 Vladimir Serbinenko <phcoder@gmail.com>
15154
15155 * grub-core/kern/disk.c (grub_disk_read): Fix hook calling for
15156 unaligned segments.
15157
15158 2011-12-24 Vladimir Serbinenko <phcoder@gmail.com>
15159
15160 * grub-core/disk/ieee1275/ofdisk.c (grub_ofdisk_iterate): Add ieee1275/
15161 prefix.
15162 (grub_ofdisk_open): Check and discard ieee1275 prefix.
15163 * grub-core/kern/ieee1275/openfw.c (grub_ieee1275_encode_devname):
15164 Add ieee1275 prefix.
15165
15166 2011-12-23 Vladimir Serbinenko <phcoder@gmail.com>
15167
15168 * docs/grub.texi (Filesystems): Update.
15169
15170 2011-12-23 Vladimir Serbinenko <phcoder@gmail.com>
15171
15172 Support odc, newc and bigendian cpio formats.
15173
15174 * Makefile.util.def (libgrubmods): Add odc.c, newc.c and cpio_be.c.
15175 * grub-core/Makefile.core.def (newc): New module.
15176 (odc): Likewise.
15177 (cpio_be): Likewise.
15178 * grub-core/fs/cpio.c (ALIGN_CPIO): New macro.
15179 (MAGIC): Likewise.
15180 (MAGIC2): Likewise.
15181 (head) [MODE_ODC]: Adapt for the format.
15182 (head) [MODE_NEWC]: Likewise.
15183 (head) [!MODE_*]: Write fields of interest as arrays.
15184 (MAGIC_USTAR): Removed.
15185 (read_number) [MODE_NEWC]: Change to hex.
15186 (read_number) [!MODE_*]: Parse binary arrays.
15187 (grub_cpio_find_file): Factor out the code for better structure and
15188 always use read_number.
15189 (grub_cpio_mount): Use MAGIC and MAGIC2.
15190 (grub_cpio_dir): Exit on first hook non-0 return.
15191 (grub_cpio_fs) [MODE_ODC]: Set name to odc.
15192 (grub_cpio_fs) [MODE_NEWC]: Set name to newc.
15193 (GRUB_MOD_INIT) [MODE_ODC]: Set name to odc.
15194 (GRUB_MOD_INIT) [MODE_NEWC]: Set name to newc.
15195 (GRUB_MOD_FINI) [MODE_ODC]: Set name to odc.
15196 (GRUB_MOD_FINI) [MODE_NEWC]: Set name to newc.
15197 * grub-core/fs/newc.c: New file.
15198 * grub-core/fs/odc.c: Likewise.
15199 * grub-core/fs/cpio_be.c: Likewise.
15200
15201 2011-12-23 Vladimir Serbinenko <phcoder@gmail.com>
15202
15203 Fix handling of tar numbers occupying the whole field.
15204
15205 * grub-core/fs/cpio.c (read_number): New function.
15206 (grub_cpio_find_file): Use read_number instead of strtoull.
15207
15208 2011-12-23 Vladimir Serbinenko <phcoder@gmail.com>
15209
15210 * grub-core/fs/cpio.c (grub_cpio_find_file): Fix handling of names
15211 occupying the whole field size.
15212
15213 2011-12-23 Lukas Anzinger <l.anzinger@gmail.com>
15214
15215 * util/grub-mkconfig_lib.in (version_test_gt): Fix variable names.
15216
15217 2011-12-23 Vladimir Serbinenko <phcoder@gmail.com>
15218
15219 * grub-core/net/net.c (grub_cmd_delroute): Add missing out condition.
15220
15221 2011-12-23 Seth Goldberg <seth.goldberg@oracle.com>
15222
15223 * grub-core/Makefile.core.def (lzma_decompress): Add missing
15224 TARGET_IMG_LDFLAGS.
15225
15226 2011-12-23 Vladimir Serbinenko <phcoder@gmail.com>
15227
15228 * util/getroot.c (ESCAPED_PATH_MAX): New define.
15229 (mountinfo_entry): Increase the field size to take escaping into
15230 account.
15231 (find_root_device_from_libzfs): Add one byte to size of strings for
15232 security.
15233
15234 2011-12-23 Vladimir Serbinenko <phcoder@gmail.com>
15235
15236 * grub-core/lib/reed_solomon.c (grub_reed_solomon_add_redundancy): Add
15237 an assert.
15238 * util/grub-setup.c (setup): Likewise.
15239
15240 2011-12-23 Vladimir Serbinenko <phcoder@gmail.com>
15241
15242 * grub-core/boot/i386/pc/startup_raw.S: Add missing argument for
15243 _LzmaDecodeA.
15244
15245 2011-12-22 Vladimir Serbinenko <phcoder@gmail.com>
15246
15247 * docs/grub.texi (Internationalisation): New section.
15248
15249 2011-12-22 Vladimir Serbinenko <phcoder@gmail.com>
15250
15251 * docs/grub.texi (Loopback booting): New section.
15252
15253 2011-12-22 Keshav P R <the.ridikulus.rat@gmail.com>
15254
15255 * util/grub-mkstandalone.in: Fix minor typo errors.
15256
15257 2011-12-20 Vladimir Serbinenko <phcoder@gmail.com>
15258
15259 IPv6, TCP, HTTP, ICMP and DNS support. Several cleanups and bugfixes.
15260
15261 * grub-core/Makefile.core.def (net): Add net/dns.c, net/tcp.c,
15262 net/icmp.c and net/icmp6.c.
15263 (http): New module.
15264 (priority_queue): Likewise.
15265 * grub-core/io/bufio.c: Rewritten.
15266 * grub-core/lib/legacy_parse.c (legacy_command): New argument type
15267 TYPE_WITH_CONFIGFILE_OPTION.
15268 (legacy_commands): Add bootp and dhcp.
15269 (is_option): Handle TYPE_WITH_CONFIGFILE_OPTION.
15270 (grub_legacy_parse): Likewise.
15271 * grub-core/lib/priority_queue.c: New file.
15272 * grub-core/net/arp.c: Add missing license header.
15273 (arp_find_entry): Removed.
15274 (arp_find_entry): Likewise.
15275 (grub_net_arp_resolve): Rename to ...
15276 (grub_net_arp_send_request): ...this.
15277 (grub_net_arp_receive): New card argument.
15278 * grub-core/net/bootp.c (parse_dhcp_vendor): Clean up.
15279 Set router and DNS server.
15280 (grub_net_configure_by_dhcp_ack): Handle routing information.
15281 (grub_cmd_bootp): Set checksum.
15282 (grub_bootp_init): Remove net_dhcp.
15283 * grub-core/net/dns.c: New file.
15284 * grub-core/net/drivers/efi/efinet.c (send_card_buffer): Wait for
15285 completion.
15286 (get_card_packet): Handle allocation.
15287 (grub_efinet_findcards): Set mtu.
15288 * grub-core/net/drivers/emu/emunet.c: Add missing license header.
15289 (get_card_packet): Handle allocation.
15290 (emucard): Set mtu.
15291 * grub-core/net/drivers/i386/pc/pxe.c (grub_pxe_recv): Handle allocation
15292 (GRUB_MOD_INIT): Set mtu.
15293 * grub-core/net/drivers/ieee1275/ofnet.c (grub_ofnetcard_data): Remove
15294 mtu.
15295 (get_card_packet): Handle allocation.
15296 (grub_ofnet_findcards): Set mtu.
15297 * grub-core/net/ethernet.c (send_ethernet_packet): Add compile time
15298 assert.
15299 (grub_net_recv_ethernet_packet): Handle IPv6.
15300 * grub-core/net/http.c: New file.
15301 * grub-core/net/icmp.c: Likewise.
15302 * grub-core/net/icmp6.c: Likewise.
15303 * grub-core/net/ip.c (ip6addr): New type.
15304 (ip6hdr): Likewise.
15305 (reassemble): Likewise.
15306 (cmp): New function.
15307 (reassembles): New variable.
15308 (grub_net_ip_chksum): Handle 0xffff sum and unaligned buffers.
15309 (id): New variable.
15310 (send_fragmented): New function.
15311 (grub_net_send_ip_packet): Rename to ...
15312 (grub_net_send_ip4_packet): ... this. Send fragmented if needed.
15313 Handle non-UDP.
15314 (grub_net_recv_ip_packets): Rename to ...
15315 (handle_dgram): ... this. Check checksum. Handle non-UDP.
15316 (free_rsm): New function.
15317 (free_old_fragments): Likewise.
15318 (grub_net_recv_ip4_packets): New function.
15319 (grub_net_send_ip6_packet): Likewise.
15320 (grub_net_send_ip_packet): Likewise.
15321 (grub_net_recv_ip6_packets): Likewise.
15322 (grub_net_recv_ip_packets): Likewise.
15323 * grub-core/net/net.c (grub_net_link_layer_entry): New struct.
15324 (LINK_LAYER_CACHE_SIZE): New const.
15325 (link_layer_find_entry): New function.
15326 (grub_net_link_layer_add_address): Likewise.
15327 (grub_net_link_layer_resolve_check): Likewise.
15328 (grub_net_link_layer_resolve): Likewise.
15329 (grub_net_ipv6_get_slaac): Likewise.
15330 (grub_net_ipv6_get_link_local): Likewise.
15331 (grub_cmd_ipv6_autoconf): Likewise.
15332 (parse_ip): Handle one number representation.
15333 (parse_ip6): New functoion.
15334 (match_net): Handle IPv6.
15335 (grub_net_resolve_address): Handle IPv6 and DNS.
15336 (grub_net_resolve_net_address): Handle IPv6.
15337 (route_cmp): New function.
15338 (grub_net_route_address): Find best route.
15339 (grub_net_addr_to_str): Handle IPv6.
15340 (grub_net_addr_cmp): New function.
15341 (grub_net_add_addr): Register local route.
15342 (print_net_address): Handle net address.
15343 (grub_net_poll_cards): Retransmit TCP.
15344 (grub_net_poll_cards_idle_real): Likewise.
15345 (have_ahead): New function.
15346 (grub_net_seek_real): Use underlying seek.
15347 (GRUB_MOD_INIT): Register net_ipv6_autoconf and init dns.
15348 * grub-core/net/tcp.c: New file.
15349 * grub-core/net/tftp.c (tftp_data): Add priority_queue.
15350 (cmp): New function.
15351 (ack): Likewise.
15352 (tftp_receive): Handle unordered input.
15353 (destroy_pq): New function.
15354 (tftp_close): Close pq.
15355 * grub-core/net/udp.c: Put missing license header.
15356 (grub_net_udp_socket): New function.
15357 (udp_socket_register): Likewise.
15358 (grub_net_udp_close): Likewise.
15359 (grub_net_recv_udp_packet): Check checksum.
15360 * include/grub/efi/api.h (grub_efi_simple_network): Add status.
15361 * include/grub/misc.h (grub_memchr): New function.
15362 * include/grub/net.h (GRUB_NET_*_SIZE): New enum.
15363 (grub_net_card_driver): Return buf in recv.
15364 (grub_net_slaac_mac_list): New struct.
15365 (grub_network_level_protocol_id): Add ipv6.
15366 (grub_net_network_level_addr): Likewise.
15367 (grub_net_network_level_net_addr): Likewise.
15368 (grub_net_app_protocol): Add seek.
15369 (grub_net_socket): Removed.
15370 (grub_net_sockets): Likewise.
15371 (grub_net_socket_register): Likewise.
15372 (grub_net_socket_unregister): Likewise.
15373 (FOR_NET_SOCKETS): Likewise.
15374 (grub_net_add_addr): Add const.
15375 (GRUB_NET_BOOTP_*): New enum.
15376 (grub_net_addr_cmp): New proto.
15377 (GRUB_NET_MAX_STR_ADDR_LEN): Take IPV6 into account.
15378 (GRUB_NET_MAX_STR_HWADDR_LEN): New define.
15379 (grub_net_hwaddr_to_str): NEw proto.
15380 (FOR_NET_NETWORK_LEVEL_INTERFACES): New macro.
15381 (FOR_NET_NETWORK_LEVEL_INTERFACES_SAFE): Handle NULL.
15382 (grub_dns_init): New proto.
15383 (grub_dns_fini): Likewise.
15384 (grub_net_tcp_retransmit): Likewise.
15385 (grub_net_link_layer_add_address): Likewise.
15386 (grub_net_link_layer_resolve_check): Likewise.
15387 (grub_net_link_layer_resolve): Likewise.
15388 (grub_net_dns_lookup): Likewise.
15389 (grub_net_add_dns_server): Likewise.
15390 (grub_net_remove_dns_server): Likewise.
15391 (GRUB_NET_TRIES): New const.
15392 (GRUB_NET_INTERVAL): Likewise.
15393 * include/grub/net/arp.h: Mostly rewritten.
15394 * include/grub/net/ethernet.h (grub_net_ethertype_t): New enum.
15395 * include/grub/net/ip.h: Mostly rewritten.
15396 * include/grub/net/netbuff.h: Indent.
15397 * include/grub/net/tcp.h: New file.
15398 * include/grub/net/udp.h: Mostly rewritten.
15399 * include/grub/priority_queue.h: New file.
15400 * include/grub/types.h (PRIdGRUB_SSIZE): New define.
15401 (grub_swap_bytes64_compile_time): Likewise.
15402 (grub_cpu_to_be16_compile_time): Likewise.
15403 (grub_cpu_to_be32_compile_time): Likewise.
15404 (grub_cpu_to_be64_compile_time): Likewise.
15405 (grub_be_to_cpu64_compile_time): Likewise.
15406
15407 2011-12-16 Vladimir Serbinenko <phcoder@gmail.com>
15408
15409 * grub-core/commands/i386/pc/drivemap.c (int13slot): Replace
15410 UINT_TO_PTR with cast.
15411
15412 2011-12-15 Vladimir Serbinenko <phcoder@gmail.com>
15413
15414 * util/import_gcry.py: Skip _gcry_rmd160_mixblock and serpent_test. We
15415 don't use them.
15416
15417 2011-12-15 Vladimir Serbinenko <phcoder@gmail.com>
15418
15419 * util/import_gcry.py: Don't add include camellia.h to camellia.c. It's
15420 already there.
15421
15422 2011-12-15 Vladimir Serbinenko <phcoder@gmail.com>
15423
15424 * util/grub-mkimage.c (generate_image): Clean multiboot header to avoid
15425 confusing ipxe.
15426
15427 2011-12-15 Vladimir Serbinenko <phcoder@gmail.com>
15428
15429 * grub-core/lib/libgcrypt/cipher/md4.c (transform) [WORDS_BIGENDIAN]:
15430 Add missing const attribute.
15431 * grub-core/lib/libgcrypt/cipher/md5.c (transform) [WORDS_BIGENDIAN]:
15432 Likewise.
15433 * grub-core/lib/libgcrypt/cipher/rmd160.c (transform) [WORDS_BIGENDIAN]:
15434 Likewise.
15435
15436 2011-12-15 Vladimir Serbinenko <phcoder@gmail.com>
15437
15438 * grub-core/lib/libgcrypt/cipher/serpent.c (serpent_key_prepare): Fix
15439 misaligned access.
15440 (serpent_setkey): Likewise.
15441 (serpent_encrypt_internal): Likewise.
15442 (serpent_decrypt_internal): Likewise.
15443 (serpent_encrypt): Don't put an alignment-increasing cast.
15444 (serpent_decrypt): Likewise.
15445 (serpent_test): Likewise.
15446
15447 2011-12-15 Vladimir Serbinenko <phcoder@gmail.com>
15448
15449 * grub-core/loader/multiboot.c (grub_cmd_module): Fix target address.
15450
15451 2011-12-15 Vladimir Serbinenko <phcoder@gmail.com>
15452
15453 Replace UINT_TO_PTR and PTR_TO_UINT with explicit grub_addr_t casts.
15454
15455 * include/grub/types.h (UINT_TO_PTR): Removed. All users switched to
15456 grub_addr_t casts.
15457 (PTR_TO_UINT64): Likewise.
15458 (PTR_TO_UINT32): Likewise.
15459
15460 2011-12-15 Vladimir Serbinenko <phcoder@gmail.com>
15461
15462 * util/grub-mkimage.c (generate_image): Decrease the higher limit
15463 because of stack.
15464 * util/grub-setup.c (setup): Don't add redundancy past the higher load
15465 limit.
15466
15467 2011-12-15 Vladimir Serbinenko <phcoder@gmail.com>
15468
15469 * grub-core/gfxmenu/gui_label.c (label_paint): Handle the case
15470 text_width > available width a bit more gracefully.
15471
15472 2011-12-15 Vladimir Serbinenko <phcoder@gmail.com>
15473
15474 * grub-core/loader/i386/bsdXX.c (grub_freebsd_load_elfmodule): Fix
15475 current address calculation.
15476
15477 2011-12-15 Vladimir Serbinenko <phcoder@gmail.com>
15478
15479 * grub-core/lib/reed_solomon.c (decode_block): Allocate on heap and not
15480 stack.
15481 (encode_block): Likewise.
15482
15483 2011-12-15 Vladimir Serbinenko <phcoder@gmail.com>
15484
15485 * grub-core/boot/i386/pc/startup_raw.S: Clear direction flag for
15486 certainety.
15487
15488 2011-12-15 Vladimir Serbinenko <phcoder@gmail.com>
15489
15490 * grub-core/boot/i386/pc/startup_raw.S: Move realmode routines to
15491 non-RS part to avoid RS messing with GDT.
15492 * include/grub/offsets.h (GRUB_KERNEL_I386_PC_NO_REED_SOLOMON_PART):
15493 Increase to suit in realmode routines.
15494
15495 2011-12-15 Vladimir Serbinenko <phcoder@gmail.com>
15496
15497 * grub-core/kern/i386/realmode.S: Increase alignment.
15498 * grub-core/boot/i386/pc/startup_raw.S: Likewise.
15499
15500 2011-12-14 Vladimir Serbinenko <phcoder@gmail.com>
15501
15502 * grub-core/lib/reed_solomon.c (init_powx): Set gf_powx_inv[0] just to
15503 be deterministic.
15504 (syndroms): Compute 0 syndrom.
15505 (rs_recover): Use 0 syndrom.
15506
15507 2011-12-14 Vladimir Serbinenko <phcoder@gmail.com>
15508
15509 * include/grub/kernel.h (FOR_MODULES): Make it a bit faster.
15510
15511 2011-12-14 Vladimir Serbinenko <phcoder@gmail.com>
15512
15513 * include/grub/types.h (GRUB_PROPERLY_ALIGNED_ARRAY): Add missing
15514 brackets.
15515
15516 2011-12-14 Vladimir Serbinenko <phcoder@gmail.com>
15517
15518 * grub-core/gfxmenu/widget-box.c (get_left_pad): Take corners into
15519 account.
15520 (get_top_pad): Likewise.
15521 (get_right_pad): Likewise.
15522 (get_bottom_pad): Likewise.
15523
15524 2011-12-14 Vladimir Serbinenko <phcoder@gmail.com>
15525
15526 * grub-core/gfxmenu/gui_list.c (draw_menu): Don't use assignment in if.
15527
15528 2011-12-14 Vladimir Serbinenko <phcoder@gmail.com>
15529
15530 * include/grub/efi/api.h (grub_efi_memory_descriptor): Add packed
15531 attribute as the structure isn't guaranteed to be properly aligned.
15532 (grub_efi_pci_device_path): Likewise.
15533 (grub_efi_pccard_device_path): Likewise.
15534 (grub_efi_memory_mapped_device_path): Likewise. Additionaly explicitly
15535 specify the size of `memory_type'.
15536 (grub_efi_vendor_device_path): Likewise.
15537 (grub_efi_controller_device_path): Likewise.
15538 (grub_efi_acpi_device_path): Likewise.
15539 (grub_efi_expanded_acpi_device_path): Likewise.
15540 (grub_efi_atapi_device_path): Likewise.
15541 (grub_efi_scsi_device_path): Likewise.
15542 (grub_efi_fibre_channel_device_path): Likewise.
15543 (grub_efi_1394_device_path): Likewise.
15544 (grub_efi_usb_device_path): Likewise.
15545 (grub_efi_usb_class_device_path): Likewise.
15546 (grub_efi_i2o_device_path): Likewise.
15547 (grub_efi_mac_address_device_path): Likewise.
15548 (grub_efi_ipv4_device_path): Likewise.
15549 (grub_efi_ipv6_device_path): Likewise.
15550 (grub_efi_infiniband_device_path): Likewise.
15551 (grub_efi_uart_device_path): Likewise.
15552 (grub_efi_vendor_messaging_device_path): Likewise.
15553 (grub_efi_hard_drive_device_path): Likewise.
15554 (grub_efi_cdrom_device_path): Likewise.
15555 (grub_efi_vendor_media_device_path): Likewise.
15556 (grub_efi_file_path_device_path): Likewise.
15557 (grub_efi_protocol_device_path): Likewise.
15558 (grub_efi_piwg_device_path): Likewise.
15559 (grub_efi_bios_device_path): Likewise.
15560
15561 2011-12-14 Vladimir Serbinenko <phcoder@gmail.com>
15562
15563 * include/grub/charset.h (grub_utf16_to_utf8): Make src a const pointer.
15564 (grub_ucs4_to_utf8_alloc): Likewise.
15565 (grub_ucs4_to_utf8): Likewise.
15566 * grub-core/normal/charset.c (grub_ucs4_to_utf8): Likewise.
15567 (grub_ucs4_to_utf8_alloc): Likewise.
15568
15569 2011-12-14 Vladimir Serbinenko <phcoder@gmail.com>
15570
15571 AFFS never uses unicode.
15572
15573 * include/grub/charset.h (GRUB_MAX_UTF8_PER_LATIN1): New const.
15574 (grub_latin1_to_utf8): New inline function.
15575 * grub-core/fs/affs.c (grub_affs_iterate_dir): Convert latin1 to UTF8.
15576
15577 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15578
15579 * grub-core/fs/romfs.c (grub_romfs_mount): Fix pointer comparison
15580 overflow.
15581
15582 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15583
15584 * grub-core/fs/squash4.c (grub_squash_inode): Fix field sizes.
15585 (grub_squash_dirent_header): Likewise.
15586 (read_chunk): Don't double swap.
15587 (grub_squash_iterate_dir): Fix swap sizes.
15588
15589 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15590
15591 * grub-core/fs/jfs.c (grub_jfs_getent): Handle UTF16 endianness.
15592
15593 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15594
15595 * grub-core/fs/hfs.c (grub_hfs_find_node): Handle unaligned keys.
15596 (grub_hfs_iterate_dir): Likewise.
15597
15598 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15599
15600 Fix video on platforms where unaligned access is forbidden.
15601 Make several optimisations while on it.
15602
15603 * grub-core/video/fb/fbblit.c (grub_video_fbblit_replace_directN):
15604 Optimise and use GRUB_VIDEO_FB_ADVANCE_POINTER.
15605 (grub_video_fbblit_replace_32bit_1bit): Likewise.
15606 (grub_video_fbblit_replace_24bit_1bit) [!GRUB_HAVE_UNALIGNED_ACCESS]:
15607 Disable.
15608 (grub_video_fbblit_replace_16bit_1bit):
15609 Optimise and use GRUB_VIDEO_FB_ADVANCE_POINTER.
15610 (grub_video_fbblit_replace_8bit_1bit): Likewise.
15611 (grub_video_fbblit_replace_BGRX8888_RGBX8888): Likewise.
15612 (grub_video_fbblit_replace_BGRX8888_RGB888): Likewise.
15613 (grub_video_fbblit_replace_BGR888_RGBX8888): Likewise.
15614 (grub_video_fbblit_replace_BGR888_RGBX8888): Likewise.
15615 (grub_video_fbblit_replace_BGR888_RGB888): Likewise.
15616 (grub_video_fbblit_replace_RGBX8888_RGB88): Likewise.
15617 (grub_video_fbblit_replace_RGB888_RGBX888): Likewise.
15618 (grub_video_fbblit_replace_RGB888_RGBX8888): Likewise.
15619 (grub_video_fbblit_replace_index_RGBX8888): Likewise.
15620 (grub_video_fbblit_replace_index_RGB888): Likewise.
15621 (grub_video_fbblit_blend_BGRA8888_RGBA8888): Likewise.
15622 (grub_video_fbblit_blend_BGR888_RGBA8888): Likewise.
15623 (grub_video_fbblit_blend_RGBA8888_RGBA8888): Likewise.
15624 (grub_video_fbblit_blend_RGB888_RGBA8888): Likewise.
15625 (grub_video_fbblit_blend_index_RGBA8888): Likewise.
15626 (grub_video_fbblit_blend_XXXA8888_1bit): Likewise.
15627 (grub_video_fbblit_blend_XXX888_1bit) [!GRUB_HAVE_UNALIGNED_ACCESS]:
15628 Disable.
15629 (grub_video_fbblit_blend_XXX565_1bit):
15630 Optimise and use GRUB_VIDEO_FB_ADVANCE_POINTER.
15631 * grub-core/video/fb/fbfill.c (grub_video_fbfill_direct32): Likewise.
15632 * grub-core/video/fb/fbutil.c (grub_video_fb_get_video_ptr): Return
15633 void *.
15634 * grub-core/video/fb/video_fb.c (common_blitter)
15635 [!GRUB_HAVE_UNALIGNED_ACCESS]: Skip disabled blitters.
15636 (grub_video_fb_create_render_target_from_pointer)
15637 [!GRUB_HAVE_UNALIGNED_ACCESS]: Check alignment.
15638 * include/grub/fbutil.h (grub_video_fb_get_video_ptr): Return void *.
15639 * include/grub/i386/types.h (GRUB_HAVE_UNALIGNED_ACCESS): New
15640 definition.
15641 * include/grub/x86_64/types.h (GRUB_HAVE_UNALIGNED_ACCESS): Likewise.
15642
15643 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15644
15645 * grub-core/kern/sparc64/dl.c (grub_arch_dl_relocate_symbols): Support
15646 HH22 and HM10 relocations.
15647
15648 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15649
15650 * grub-core/kern/misc.c (grub_vsnprintf_real): Fix fmt2 parsing.
15651
15652 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15653
15654 * grub-core/commands/videotest.c (grub_cmd_videotest): Check that
15655 allocation succeeded.
15656
15657 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15658
15659 * grub-core/fs/iso9660.c (grub_iso9660_convert_string): Make first
15660 argument a u8 pointer. All users updated.
15661 Handle unaligned buffers.
15662
15663 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15664
15665 * grub-core/fs/iso9660.c (grub_iso9660_iterate_dir): Force inlining of
15666 add_part to workaround compiler bug.
15667
15668 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15669
15670 * include/grub/kernel.h (FOR_MODULES): Preserve alignment invariants.
15671
15672 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15673
15674 * grub-core/loader/multiboot_mbi2.c (grub_multiboot_add_elfsyms):
15675 Reserve alignment invariants.
15676 (grub_multiboot_load): Likewise.
15677 (retrieve_video_parameters): Likewise.
15678 (grub_multiboot_make_mbi): Likewise.
15679
15680 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15681
15682 * grub-core/loader/i386/xnu.c (grub_xnu_devprop_remove_property): Fix
15683 incorrect pointer.
15684
15685 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15686
15687 * grub-core/disk/pata.c (grub_pata_pio_read): Handle unaligned buffer.
15688 (grub_pata_pio_write): Likewise.
15689
15690 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15691
15692 Add noreturn attributes and remove unreachable code.
15693
15694 * grub-core/bus/cs5536.c (grub_cs5536_smbus_wait): Remove unreachable
15695 code.
15696 * grub-core/commands/halt.c (grub_cmd_halt): Remove unreachable
15697 code. Mark as noreturn.
15698 * grub-core/commands/minicmd.c (grub_mini_cmd_exit): Likewise.
15699 * grub-core/commands/reboot.c (grub_cmd_reboot): Likewise.
15700 * grub-core/disk/efi/efidisk.c (grub_efidisk_get_device_name): Remove
15701 unreachable code.
15702 * grub-core/kern/main.c (grub_main): Mark as noreturn.
15703 * grub-core/kern/rescue_reader.c (grub_rescue_run): Likewise.
15704 * grub-core/lib/posix_wrap/stdlib.h (abort): Likewise.
15705 * grub-core/normal/menu.c (run_menu): Remove unreachable code.
15706 * include/grub/kernel.h (grub_main): Mark as noreturn.
15707 * include/grub/reader.h (grub_rescue_run): Likewise.
15708
15709 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15710
15711 * include/grub/i386/qemu/memory.h (grub_machine_mmap_init): Remove
15712 redundant declaration.
15713
15714 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15715
15716 * include/grub/net.h (grub_net_network_level_interfaces): Remove
15717 redundant declaration.
15718 (FOR_NET_NETWORK_LEVEL_INTERFACES): Move to appropriate place.
15719
15720 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15721
15722 * grub-core/commands/hdparm.c (le16_to_char): Make src and dest uint16 *
15723 to ensure alignment.
15724 (grub_hdparm_print_identify): Make argument uint16 * to ensure
15725 alignment. Ensure tmp alignment.
15726 (grub_cmd_hdparm): Ensure buf alignment.
15727 * grub-core/disk/ata.c (grub_ata_strncpy): Make src and dest uint16 *
15728 to ensure alignment.
15729 (grub_ata_dumpinfo): Ensure text alignment.
15730 (grub_atapi_identify): Preserve alignment invariant.
15731 (grub_ata_identify): Likewise. Use grub_get_unaligned32 when necessary.
15732
15733 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15734
15735 * include/grub/emu/misc.h (xasprintf): Add missing format attribute.
15736 * include/grub/mips/kernel.h (grub_halt): Remove redundant declaration.
15737 * include/grub/mips/qemu_mips/kernel.h (grub_halt): Likewise.
15738 * include/grub/misc.h (grub_reboot)
15739 [GRUB_MACHINE_EMU || GRUB_MACHINE_QEMU_MIPS]: Export.
15740 (grub_halt) [__mips__]: Likewise.
15741
15742 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15743
15744 * include/grub/efi/memory.h (grub_machine_mmap_iterate):
15745 Remove redundant declaration.
15746 (grub_mmap_get_post64): Likewise.
15747 (grub_mmap_get_upper): Likewise.
15748 (grub_mmap_get_lower): Likewise.
15749
15750 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15751
15752 * grub-core/partmap/dvh.c (grub_dvh_is_valid): Make argument
15753 uint32_t * to ensure alignment.
15754 (dvh_partition_map_iterate): Make `block' a union to ensure alignment.
15755
15756 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15757
15758 * grub-core/partmap/sunpc.c (grub_sun_is_valid): Make argument
15759 uint16_t * to ensure alignment.
15760 (sun_pc_partition_map_iterate): Make `block' a union to ensure
15761 alignment.
15762
15763 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15764
15765 * grub-core/partmap/sun.c (grub_sun_is_valid): Make argument uint16_t *
15766 to ensure alignment.
15767 (sun_partition_map_iterate): Make `block' a union to ensure alignment.
15768
15769 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15770
15771 * grub-core/fs/ntfs.c (u16at): Make into inline function.
15772 Handle unaligned pointers.
15773 (u32at): Likewise.
15774 (u64at): Likewise.
15775 (fixup): Use byte access instead of v16at.
15776 (find_attr): Fix imporper usage of v32at.
15777 (read_data): Likewise.
15778 (list_file): Handle byte-swapping and unaligned strings.
15779 (grub_ntfs_label): Likewise.
15780
15781 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15782
15783 * grub-core/fs/udf.c (grub_udf_partmap): Add packed attribute
15784 as it's not necessarily aligned.
15785
15786 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15787
15788 * grub-core/kern/mips/qemu_mips/init.c (grub_at_keyboard_init): Remove
15789 redundant declaration.
15790 (grub_serial_init): Likewise.
15791 (grub_terminfo_init): Likewise.
15792
15793 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15794
15795 * grub-core/fs/zfs/zfs.c (DVA_OFFSET_TO_PHYS_SECTOR): Make into inline
15796 function.
15797 (ZAP_HASH_IDX): Likewise.
15798 (ZAP_LEAF_HASH_SHIFT): Likewise.
15799 (ZAP_LEAF_HASH_NUMENTRIES): Likewise.
15800 (LEAF_HASH): Likewise.
15801 (ZAP_LEAF_NUMCHUNKS): Likewise.
15802 (ZAP_LEAF_CHUNK): Likewise. Changed pointer arithmetic to preserve
15803 alignment invariants. Return pointer. All users updated.
15804 (ZAP_LEAF_ENTRY): Make into inline function.
15805 (NBBY): Removed.
15806 (xor): LIkewise.
15807 (xor_out): Use grub_crypto_xor.
15808 (dnode_get_path): Use grub_get_unaligned.
15809 (nvlist_find_value): Likewise.
15810 (grub_zfs_nvlist_lookup_uint64): Likewise.
15811 (grub_zfs_nvlist_lookup_string): Likewise.
15812 (get_nvlist_size): Likewise.
15813 (grub_zfs_open): Likewise.
15814 (fill_fs_info): Likewise.
15815 (grub_zfs_dir): Likewise.
15816 * include/grub/zfs/zap_leaf.h (zap_leaf_phys): Adapt to preserve
15817 alignment invariants.
15818 * include/grub/zfs/zio.h (zio_eck_t): Mark as packed as it's not
15819 necessarily aligned.
15820
15821 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15822
15823 * grub-core/net/netbuff.c (grub_netbuff_alloc): Ensure proper alignment.
15824
15825 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15826
15827 * grub-core/disk/mdraid_linux.c (grub_mdraid_detect): Change pointer
15828 arithmetic to conserve alignment invariants.
15829
15830 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15831
15832 * include/grub/efiemu/efiemu.h (grub_efiemu_get_memory_map): Remove
15833 redundant declaration.
15834 (grub_efiemu_mm_obtain_request): Likewise.
15835 (grub_efiemu_prepare): Likewise.
15836
15837 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15838
15839 * include/grub/list.h: Explicitly cast return of grub_bad_type_cast
15840 to match types.
15841
15842 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15843
15844 * grub-core/fs/hfsplus.c (grub_hfsplus_btree_recoffset): Handle the
15845 case of aunaligned recptr.
15846 (grub_hfsplus_read_block): Declare extoverflow as key to ensure
15847 alignment.
15848 (grub_hfsplus_btree_search): Handle unaligned index.
15849
15850 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15851
15852 * grub-core/fs/xfs.c (grub_xfs_iterate_dir): Use grub_get_unaligned16
15853 to get freetag and skip.
15854
15855 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15856
15857 * grub-core/fs/nilfs2.c (grub_nilfs2_btree_node): Add zero-size keys
15858 array.
15859 (grub_nilfs2_btree_node_dkeys): Ensure return pointer alignment.
15860 (grub_nilfs2_btree_lookup): Ensure buffer alignment.
15861
15862 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15863
15864 * grub-core/fs/romfs.c (grub_romfs_iterate_dir): Properly align
15865 name for checksum and fix allocation algorithm.
15866
15867 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15868
15869 * include/grub/types.h (grub_properly_aligned_t): New type.
15870 (GRUB_PROPERLY_ALIGNED_ARRAY): New macro.
15871 (grub_get_unaligned16): Add explicit casts.
15872 (grub_get_unaligned32): Likewise.
15873 (grub_get_unaligned64): Likewise.
15874 (grub_set_unaligned16): New function.
15875 (grub_set_unaligned32): Likewise.
15876
15877 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15878
15879 * grub-core/normal/datetime.c (grub_weekday_names): Make const.
15880
15881 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15882
15883 * grub-core/fs/udf.c (read_string): Macroify GRUB_MAX_UTF8_PER_UTF16.
15884 * grub-core/fs/jfs.c (grub_jfs_diropen): Likewise.
15885 * grub-core/fs/fat.c (grub_fat_iterate_dir): Likewise.
15886
15887 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15888
15889 * grub-core/term/at_keyboard.c (set_scancodes): Fix preprocessor
15890 conditionals.
15891
15892 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15893
15894 * grub-core/kern/emu/main.c (main): Add missing const qualifier.
15895 * grub-core/loader/efi/appleloader.c (devdata): Likewise.
15896
15897 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15898
15899 Unify and improve RAID and crypto xor.
15900
15901 * grub-core/disk/raid.c (grub_raid_block_xor): Removed. All users
15902 changed to grub_crypto_xor
15903 * grub-core/lib/crypto.c (grub_crypto_xor): Moved from here ...
15904 * include/grub/crypto.h (grub_crypto_xor): ... here. Inlined.
15905 Use bigger types when possible.
15906
15907 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15908
15909 * grub-core/disk/raid.c (scan_devices): Fix condition.
15910
15911 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15912
15913 * grub-core/net/drivers/ieee1275/ofnet.c (bootp_response_properties):
15914 Make name a const ptr.
15915
15916 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15917
15918 * grub-core/kern/ieee1275/ieee1275.c (grub_ieee1275_finddevice): Make
15919 first argument a const pointer.
15920 * grub-core/kern/ieee1275/openfw.c (grub_children_iterate): Likewise.
15921 * include/grub/ieee1275/ieee1275.h (grub_ieee1275_finddevice): Update
15922 proto.
15923 (grub_children_iterate): Likewise.
15924 (grub_machine_mmap_iterate): Remove redundant declaration.
15925
15926 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15927
15928 * grub-core/commands/acpi.c (grub_acpi_create_ebda) [!x86]: Disable.
15929 (grub_cmd_acpi) [!x86]: Disable EBDA.
15930
15931 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15932
15933 Enable UTF8 in gnulib regexp.
15934
15935 * config.h.in (RE_ENABLE_I18N) [!GRUB_UTIL]: New define.
15936 * grub-core/lib/posix_wrap/ctype.h (islower): Use grub_islower.
15937 (isupper): Use grub_isupper.
15938 (isascii): New inline function.
15939 * grub-core/lib/posix_wrap/wchar.h: Replace dummy with real contents.
15940 * grub-core/lib/posix_wrap/wctype.h: Likewise.
15941 * grub-core/normal/charset.c (grub_utf8_process): New function.
15942 (grub_utf8_to_utf16): Use grub_utf8_process.
15943 (grub_encode_utf8_character): New function.
15944 (grub_ucs4_to_utf8): Use grub_encode_utf8_character.
15945 * include/grub/charset.h (grub_utf8_process): New declaration.
15946 (grub_encode_utf8_character): Likewise.
15947 * include/grub/misc.h (grub_islower): New inline function.
15948 (grub_isupper): Likewise.
15949 (grub_strchrsub): Moved down to fix the definitions.
15950
15951 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15952
15953 * grub-core/bus/usb/ohci.c (grub_ohci_check_transfer): Add an unsigned
15954 specification.
15955
15956 2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
15957
15958 * include/grub/loader.h (grub_loader_register_preboot_hook):
15959 Use struct preboot * and not void * for handle. All users updated.
15960 (grub_loader_unregister_preboot_hook): Likewise.
15961
15962 2011-12-12 Vladimir Serbinenko <phcoder@gmail.com>
15963
15964 * include/grub/charset.h (GRUB_MAX_UTF8_PER_UTF16): New const.
15965 * grub-core/fs/hfsplus.c (grub_hfsplus_catkey_internal): Change to
15966 UTF-16-BE. All users updated.
15967 (grub_hfsplus_cmp_catkey): Fix unicode handling.
15968 (grub_hfsplus_iterate_dir): Likewise.
15969 (grub_hfsplus_label): Likewise.
15970
15971 2011-12-12 Vladimir Serbinenko <phcoder@gmail.com>
15972
15973 * grub-core/disk/ahci.c (grub_ahci_pciinit): Fix compat condition.
15974
15975 2011-11-30 Vladimir Serbinenko <phcoder@gmail.com>
15976
15977 Add missing const qualifiers.
15978
15979 * grub-core/commands/i386/pc/sendkey.c (keysym): Add missing const.
15980 * grub-core/commands/lspci.c (grub_pci_classname): Likewise.
15981 * grub-core/commands/menuentry.c (hotkey_aliases): Likewise.
15982 * grub-core/disk/lvm.c (grub_lvm_getvalue): Likewise.
15983 (grub_lvm_check_flag): Likewise.
15984 * grub-core/efiemu/i386/coredetect.c
15985 (grub_efiemu_get_default_core_name): Likewise
15986 * grub-core/efiemu/main.c (grub_efiemu_autocore): Likewise.
15987 * grub-core/fs/hfsplus.c (grub_hfsplus_catkey_internal): Likewise.
15988 * grub-core/fs/ntfs.c (fixup): Likewise.
15989 * grub-core/fs/xfs.c (grub_xfs_iterate_dir): Likewise.
15990 * grub-core/fs/zfs/zfs.c (decomp_entry): Likewise.
15991 (fzap_lookup): Likewise.
15992 (zap_lookup): Likewise.
15993 * grub-core/gnulib/regcomp.c (init_dfa): Likewise.
15994 * grub-core/lib/legacy_parse.c (check_option): Likewise.
15995 * grub-core/lib/posix_wrap/langinfo.h (nl_langinfo): Likewise.
15996 * grub-core/loader/i386/bsd.c (grub_bsd_add_meta): Likewise.
15997 (grub_freebsd_add_meta_module): Likewise.
15998 (grub_cmd_freebsd_module): Likewise.
15999 * grub-core/loader/i386/xnu.c (tbl_alias): Likewise.
16000 * grub-core/loader/xnu.c (grub_xnu_register_memory): Likewise.
16001 (grub_xnu_writetree_get_size): Likewise.
16002 (grub_xnu_writetree_toheap_real): Likewise.
16003 (grub_xnu_find_key): Likewise.
16004 (grub_xnu_create_key): Likewise.
16005 (grub_xnu_create_value): Likewise.
16006 (grub_xnu_register_memory): Likewise.
16007 (grub_xnu_check_os_bundle_required): Likewise.
16008 (grub_xnu_scan_dir_for_kexts): Likewise.
16009 (grub_xnu_load_kext_from_dir): Likewise.
16010 * grub-core/normal/color.c (color_list): Likewise.
16011 * grub-core/normal/completion.c (current_word): Likewise.
16012 * grub-core/normal/menu_entry.c (insert_string): Likewise.
16013 * grub-core/term/serial.c (grub_serial_find): Likewise.
16014 * grub-core/term/tparm.c (grub_terminfo_tparm): Likewise.
16015 * include/grub/efiemu/efiemu.h (grub_efiemu_get_default_core_name):
16016 Likewise.
16017 * include/grub/i386/bsd.h (grub_bsd_add_meta): Likewise.
16018 (grub_freebsd_add_meta_module): Likewise.
16019 * include/grub/lib/arg.h (grub_arg_option): Likewise.
16020 * include/grub/net.h (grub_net_card_driver): Likewise.
16021 (grub_net_card): Likewise.
16022 (grub_net_app_protocol): Likewise.
16023 * include/grub/parttool.h (grub_parttool_argdesc): Likewise.
16024 * include/grub/serial.h (grub_serial_find): Likewise.
16025 * include/grub/tparm.h (grub_terminfo_tparm): Likewise.
16026 * include/grub/xnu.h (grub_xnu_create_key): Likewise.
16027 (grub_xnu_create_value): Likewise.
16028 (grub_xnu_find_key): Likewise.
16029 (grub_xnu_scan_dir_for_kexts): Likewise.
16030 (grub_xnu_load_kext_from_dir): Likewise.
16031
16032 * include/grub/zfs/zio_checksum.h (zio_checksum_t): Moved from here ...
16033 * grub-core/fs/zfs/zfs.c (zio_checksum_t): ...here.
16034 * include/grub/zfs/zio_checksum.h (zio_checksum_info):
16035 Moved from here ...
16036 * grub-core/fs/zfs/zfs.c (zio_checksum_info): ... here. Added missing const.
16037
16038 2011-11-28 Colin Watson <cjwatson@ubuntu.com>
16039
16040 * util/getroot.c (find_root_device_from_libzfs): Use xasprintf.
16041
16042 2011-11-27 Vladimir Serbinenko <phcoder@gmail.com>
16043
16044 * grub-core/fs/zfs/zfs.c (recovery): Fix spelling.
16045 (read_device): Fix size calculation.
16046
16047 2011-11-25 Robert Millan <rmh@gnu.org>
16048
16049 * util/getroot.c [HAVE_LIMITS_H]: Include `<limits.h>'.
16050 (find_root_device_from_libzfs): Add zpool output parser to be used
16051 as fallback when libzfs isn't available.
16052
16053 2011-11-25 Seth Goldberg <seth.goldberg@oracle.com>
16054
16055 * po/Makefile.in.in: Add missing escape-continuation.
16056
16057 2011-11-25 Vladimir Serbinenko <phcoder@gmail.com>
16058
16059 * grub-core/fs/cpio.c (grub_cpio_dir): Handle subdirs correctly.
16060
16061 2011-11-16 Vladimir Serbinenko <phcoder@gmail.com>
16062
16063 * grub-core/kern/dl.c (grub_dl_load_segments): Fix alignment handling.
16064
16065 2011-11-16 Vladimir Serbinenko <phcoder@gmail.com>
16066
16067 * grub-core/kern/dl.c (grub_dl_unload): Fix freeing segments.
16068
16069 2011-11-16 Vladimir Serbinenko <phcoder@gmail.com>
16070
16071 * grub-core/kern/x86_64/efi/callwrap.S: Fix the comment.
16072
16073 2011-11-14 Vladimir Serbinenko <phcoder@gmail.com>
16074
16075 * grub-core/lib/adler32.c: Add missing license specification.
16076 * grub-core/lib/crc64.c: Likewise.
16077 * grub-core/loader/i386/pc/plan9.c: Likewise.
16078 * grub-core/partmap/plan.c: Likewise.
16079
16080 2011-11-13 Lubomir Kundrak <lkundrak@redhat.com>
16081
16082 Add facility to debug GRUB with gdb under qemu.
16083
16084 * grub-core/gdb_grub.in: New file.
16085 * grub-core/gmodule.pl.in: Likewise.
16086 * grub-core/Makefile.core.def (gmodule.pl): New script.
16087 (gdb_grub): Likewise.
16088
16089 2011-11-13 Vladimir Serbinenko <phcoder@gmail.com>
16090
16091 * util/grub-mount.c (argp_parser): Accept relative pathes.
16092 * util/grub-fstest.c (argp_parser): Likewise.
16093
16094 2011-11-13 Vladimir Serbinenko <phcoder@gmail.com>
16095
16096 Plan9 support.
16097
16098 * Makefile.util.def (libgrubmods): Add
16099 grub-core/partmap/plan.c.
16100 * docs/grub.texi: Notice Plan9 support.
16101 * grub-core/Makefile.core.def (plan9): New module.
16102 (part_plan): Likewise.
16103 * grub-core/loader/i386/pc/plan9.c: New file.
16104 * grub-core/partmap/plan.c: Likewise.
16105 * include/grub/msdos_partition.h (GRUB_PC_PARTITION_TYPE_PLAN9): New
16106 define.
16107 (GRUB_PC_PARTITION_TYPE_LINUX_SWAP): Likewise.
16108 * include/grub/mm.h (grub_extend_alloc): New inline function.
16109
16110 2011-11-13 Vladimir Serbinenko <phcoder@gmail.com>
16111
16112 Make Reed-Solomon faster by using power of generator representation of
16113 GF(256)*.
16114
16115 * grub-core/lib/reed_solomon.c (grub_uint16_t) [TEST]: Removed.
16116 (gf_double_t): Likewise.
16117 (gf_invert): Removed.
16118 (gf_powx): New array.
16119 (gf_powx_inv): Likewise.
16120 (scratch): Move higher.
16121 (gf_reduce): Removed.
16122 (gf_mul): Use powx.
16123 (gf_invert): Likewise.
16124 (init_inverts): Replaced with ...
16125 (init_powx): ...this. All users updated.
16126 (pol_evaluate): Replace multiplications with additions.
16127 (rs_encode): Likewise.
16128 (gauss_eliminate): Call gf_invert.
16129 (grub_reed_solomon_add_redundancy): Call init_powx.
16130 (grub_reed_solomon_recover): Call init_powx unconditionally.
16131
16132 2011-11-12 Vladimir Serbinenko <phcoder@gmail.com>
16133
16134 * grub-core/partmap/gpt.c (gpt_partition_map_embed): Fix spelling.
16135
16136 2011-11-12 Vladimir Serbinenko <phcoder@gmail.com>
16137
16138 * grub-core/partmap/gpt.c (gpt_partition_map_embed): Restore
16139 disk->partiton for safety.
16140
16141 2011-11-12 Vladimir Serbinenko <phcoder@gmail.com>
16142
16143 * grub-core/kern/emu/hostdisk.c (grub_util_biosdisk_get_grub_dev):
16144 Fix a memory leak.
16145 (grub_util_biosdisk_get_grub_dev): Add a useful debug info.
16146
16147 2011-11-12 Vladimir Serbinenko <phcoder@gmail.com>
16148
16149 * grub-core/kern/emu/hostdisk.c (find_system_device): Fix a memory leak.
16150
16151 2011-11-12 Vladimir Serbinenko <phcoder@gmail.com>
16152
16153 * include/grub/lvm.h (grub_lvm_pv): Correct start type.
16154
16155 2011-11-12 Vladimir Serbinenko <phcoder@gmail.com>
16156
16157 Fix spaces handling in proc/self/mountinfo.
16158
16159 * util/getroot.c (unescape): New function.
16160 (grub_find_root_device_from_mountinfo): Use unescape.
16161
16162 2011-11-12 Vladimir Serbinenko <phcoder@gmail.com>
16163
16164 Support ZFS embedding.
16165
16166 * grub-core/fs/zfs/zfs.c (grub_zfs_embed): New function.
16167 (grub_zfs_fs): Register grub_zfs_embed.
16168
16169 2011-11-12 Vladimir Serbinenko <phcoder@gmail.com>
16170
16171 Fix MIPS compilation.
16172
16173 * grub-core/boot/mips/startup_raw.S: Use GRUB_DECOMPRESSOR_*
16174 * include/grub/offsets.h: Rename decompressor fields from
16175 GRUB_KERNEL_* to GRUB_DECOMPRESSOR_*.
16176 * util/grub-mkimage.c (image_targets): Use new names.
16177
16178 2011-11-12 Vladimir Serbinenko <phcoder@gmail.com>
16179
16180 Defer multiboot device parsing until we're in compressed part.
16181
16182 * grub-core/boot/i386/pc/lnxboot.S: Remove setting dos_part and
16183 bsd_part. setdevice has fallen into disuse.
16184 * grub-core/boot/i386/pc/startup_raw.S (dos_part): Removed.
16185 (bsd_part): Likewise.
16186 (boot_dev): New variable.
16187 (multiboot_trampoline): Don't parse multiboot device.
16188 Pass multiboot device in %edx.
16189 * grub-core/disk/i386/pc/biosdisk.c (GRUB_MOD_INIT): Parse
16190 grub_boot_device.
16191 * grub-core/kern/i386/pc/init.c (grub_machine_get_bootlocation):
16192 Likewise.
16193 * grub-core/kern/i386/pc/startup.S: Save edx.
16194 (grub_boot_drive): Removed.
16195 (grub_install_dos_part): Likewise.
16196 (grub_install_bsd_part): Likewise.
16197 (grub_boot_device): New variable.
16198 * include/grub/i386/pc/kernel.h (grub_install_dos_part): Removed.
16199 (grub_install_bsd_part): Likewise.
16200 (grub_boot_drive): Likewise.
16201 (grub_boot_device): New variable.
16202 * include/grub/offsets.h (GRUB_KERNEL_I386_PC_INSTALL_DOS_PART):
16203 Removed.
16204 (GRUB_KERNEL_I386_PC_INSTALL_BSD_PART): Likewise.
16205 (GRUB_KERNEL_I386_PC_REED_SOLOMON_REDUNDANCY): Moved lower.
16206 (GRUB_KERNEL_MACHINE_INSTALL_BSD_PART): Removed.
16207 (GRUB_KERNEL_MACHINE_INSTALL_DOS_PART): Likewise.
16208 * util/grub-install.in: Remove redundant condition.
16209
16210 2011-11-12 Vladimir Serbinenko <phcoder@gmail.com>
16211
16212 Fix bug introduced by previous commit.
16213
16214 * grub-core/boot/i386/pc/startup_raw.S: Compute RS start correctly.
16215
16216 2011-11-12 Vladimir Serbinenko <phcoder@gmail.com>
16217
16218 Use decompressors framework on i386-pc. It increases core size
16219 by 46 bytes but improves compatibility and maintainability.
16220
16221 * grub-core/Makefile.core.def (lzma_decompress): New image.
16222 (kernel): Add i386_pc_ldflags.
16223 * grub-core/kern/i386/pc/startup.S: Move intial part to ..
16224 * grub-core/boot/i386/pc/startup_raw.S: ... here. Pass pointers
16225 to real_to_prot, prot_to_real and device info.
16226 * include/grub/offsets.h: Renamed decompressor offsets.
16227 * util/grub-mkimage.c (grub_compression_t): New cmpression lzma.
16228 (image_target_desc): Remove raw_size and rename decompressor fields.
16229 (compress_kernel): Handle lzma.
16230 (generate_image): Handle decompressors on i386-pc.
16231
16232 2011-11-12 Vladimir Serbinenko <phcoder@gmail.com>
16233
16234 * configure.ac: Add -fno-asynchronous-unwind-tables.
16235
16236 2011-11-12 Vladimir Serbinenko <phcoder@gmail.com>
16237
16238 Move assembly code to C by using intwrap. It increases core size
16239 by 88 bytes but improves compatibility and maintainability.
16240
16241 * grub-core/kern/i386/pc/startup.S (grub_console_putchar): Moved to ...
16242 * grub-core/term/i386/pc/console.c (grub_console_putchar_real):
16243 ... here. Translated to C.
16244 * grub-core/kern/i386/pc/startup.S (grub_console_getkey): Moved to ...
16245 * grub-core/term/i386/pc/console.c (grub_console_getkey):
16246 ... here. Translated to C.
16247 * grub-core/kern/i386/pc/startup.S (grub_console_getxy): Moved to ...
16248 * grub-core/term/i386/pc/console.c (grub_console_getxy):
16249 ... here. Translated to C.
16250 * grub-core/kern/i386/pc/startup.S (grub_console_gotoxy): Moved to ...
16251 * grub-core/term/i386/pc/console.c (grub_console_gotoxy):
16252 ... here. Translated to C.
16253 * grub-core/kern/i386/pc/startup.S (grub_console_cls): Moved to ...
16254 * grub-core/term/i386/pc/console.c (grub_console_cls):
16255 ... here. Translated to C.
16256 * grub-core/kern/i386/pc/startup.S (grub_console_setcursor): Moved to ..
16257 * grub-core/term/i386/pc/console.c (grub_console_setcursor):
16258 ... here. Translated to C.
16259 * grub-core/kern/i386/pc/startup.S (grub_get_rtc): Moved to ..
16260 * grub-core/kern/i386/pc/init.c (grub_get_rtc): ... here.
16261 Translated to C.
16262 * grub-core/term/i386/pc/console.c (int10_9): New function.
16263 (grub_console_putchar): Likewise.
16264 * include/grub/i386/pc/console.h: Removed the not anymore shared
16265 functions.
16266
16267 2011-11-12 Vladimir Serbinenko <phcoder@gmail.com>
16268
16269 Move grub_chainloader_real_boot out of the kernel.
16270
16271 * grub-core/Makefile.am: Remove machine/loader.h.
16272 * grub-core/kern/i386/pc/startup.S (grub_chainloader_real_boot):
16273 Removed.
16274 * grub-core/lib/i386/relocator.c (grub_relocator16_esi): New extern
16275 variable.
16276 (grub_relocator16_keep_a20_enabled): Likewise.
16277 (grub_relocator16_boot): Fill new variables.
16278 * grub-core/lib/i386/relocator16.S: Add gate a20 handling.
16279 * grub-core/loader/i386/pc/chainloader.c (grub_chainloader_boot): Use
16280 relocator.
16281 (grub_chainloader_unload): Likewise.
16282 (grub_chainloader_cmd): Likewise.
16283 * include/grub/i386/pc/loader.h: Removed.
16284 * include/grub/i386/relocator.h (grub_relocator16_state): Add a20
16285 and esi. All initialisers updated.
16286
16287 2011-11-12 Vladimir Serbinenko <phcoder@gmail.com>
16288 2011-11-12 Colin Watson <cjwatson@ubuntu.com>
16289
16290 * Makefile.util.def (grub-mount): New util.
16291 * .bzrignore: Add grub-mount.
16292 * configure.ac: Check for fuse and enable grub-mount if available.
16293 * docs/man/grub-mount.h2m: New file.
16294 * util/grub-mount.c: Likewise.
16295
16296 2011-11-11 Vladimir Serbinenko <phcoder@gmail.com>
16297
16298 * grub-core/commands/efi/fixvideo.c: Gettextize.
16299 * grub-core/commands/hashsum.c: Likewise.
16300 * grub-core/commands/i386/cmostest.c: Likewise.
16301 * grub-core/commands/i386/pc/drivemap.c: Likewise.
16302 * grub-core/commands/i386/pc/lsapm.c: Likewise.
16303 * grub-core/commands/i386/pc/sendkey.c: Likewise.
16304 * grub-core/commands/lsmmap.c: Likewise.
16305 * grub-core/commands/menuentry.c: Likewise.
16306 * grub-core/commands/mips/loongson/lsspd.c: Likewise.
16307 * grub-core/commands/setpci.c: Likewise.
16308 * grub-core/loader/i386/bsd.c: Likewise.
16309 * grub-core/loader/i386/linux.c: Likewise.
16310 * util/getroot.c: Likewise.
16311 * util/grub-editenv.c: Likewise.
16312 * util/grub-fstest.c: Likewise.
16313 * util/grub-mkfont.c: Likewise.
16314 * util/grub-mkimage.c: Likewise.
16315 * util/grub-mkpasswd-pbkdf2.c: Likewise.
16316 * util/grub-pe2elf.c: Likewise.
16317 * util/grub-probe.c: Likewise.
16318 * util/grub-setup.c: Likewise.
16319 * util/ieee1275/ofpath.c: Likewise.
16320 * util/misc.c: Likewise.
16321 * util/raid.c: Likewise.
16322
16323 2011-11-11 Robert Millan <rmh@gnu.org>
16324
16325 * util/getroot.c (grub_util_get_geom_abstraction): Remove
16326 __attribute__((unused)) from `os_dev', which *is* being used.
16327
16328 2011-11-11 Vladimir Serbinenko <phcoder@gmail.com>
16329
16330 * include/grub/dl.h (GRUB_ARCH_DL_TRAMP_SIZE) [__ia64__]: Add back
16331 forgotten define.
16332 (GRUB_ARCH_DL_GOT_ALIGN) [__ia64__]: Redefine in terms of
16333 GRUB_IA64_DL_GOT_ALIGN.
16334 (GRUB_ARCH_DL_TRAMP_ALIGN) [__ia64__]: Redefine in terms of
16335 GRUB_IA64_DL_TRAMP_ALIGN.
16336
16337 2011-11-11 Vladimir Serbinenko <phcoder@gmail.com>
16338
16339 Replace grub_fatal with normal errors in i386 linux loader.
16340
16341 * grub-core/loader/i386/linux.c (find_efi_mmap_size): Return 0 on error.
16342 (allocate_pages): Check find_efi_mmap_size return value.
16343 (grub_e820_add_region): Return error.
16344 (grub_linux_boot): Check mmap return value.
16345
16346 2011-11-11 Vladimir Serbinenko <phcoder@gmail.com>
16347
16348 * grub-core/commands/acpihalt.c: Gettextized.
16349 * grub-core/commands/cacheinfo.c: Likewise.
16350 * grub-core/commands/cmp.c: Likewise.
16351 * grub-core/commands/efi/loadbios.c: Likewise.
16352 * grub-core/commands/gptsync.c: Likewise.
16353 * grub-core/commands/ieee1275/suspend.c: Likewise.
16354 * grub-core/commands/legacycfg.c: Likewise.
16355 * grub-core/commands/memrw.c: Likewise.
16356 * grub-core/commands/minicmd.c: Likewise.
16357 * grub-core/commands/parttool.c: Likewise.
16358 * grub-core/commands/time.c: Likewise.
16359 * grub-core/commands/videoinfo.c: Likewise.
16360 * grub-core/disk/geli.c: Likewise.
16361 * grub-core/disk/i386/pc/biosdisk.c: Likewise.
16362 * grub-core/disk/luks.c: Likewise.
16363 * grub-core/disk/lvm.c: Likewise.
16364 * grub-core/font/font_cmd.c: Likewise.
16365 * grub-core/fs/zfs/zfscrypt.c: Likewise.
16366 * grub-core/fs/zfs/zfsinfo.c: Likewise.
16367 * grub-core/gfxmenu/view.c: Likewise.
16368 * grub-core/kern/emu/hostdisk.c: Likewise.
16369 * grub-core/kern/emu/main.c: Likewise.
16370 * grub-core/kern/emu/misc.c: Likewise.
16371 * grub-core/kern/emu/mm.c: Likewise.
16372 * grub-core/kern/mips/arc/init.c: Likewise.
16373 * grub-core/kern/mips/loongson/init.c: Likewise.
16374 * grub-core/kern/partition.c: Likewise.
16375 * grub-core/lib/i386/halt.c: Likewise.
16376 * grub-core/lib/mips/arc/reboot.c: Likewise.
16377 * grub-core/lib/mips/loongson/reboot.c: Likewise.
16378 * grub-core/loader/i386/pc/chainloader.c: Likewise.
16379 * grub-core/loader/i386/xnu.c: Likewise.
16380 * grub-core/loader/multiboot.c: Likewise.
16381 * grub-core/net/bootp.c: Likewise.
16382 * grub-core/net/net.c: Likewise.
16383 * grub-core/normal/term.c: Likewise.
16384 * grub-core/partmap/bsdlabel.c: Likewise.
16385 * grub-core/parttool/msdospart.c: Likewise.
16386 * grub-core/term/gfxterm.c: Likewise.
16387 * grub-core/term/terminfo.c: Likewise.
16388 * grub-core/video/i386/pc/vbe.c: Likewise.
16389 * util/grub-menulst2cfg.c: Likewise.
16390 * util/grub-mkdevicemap.c: Likewise.
16391 * util/grub-mklayout.c: Likewise.
16392 * util/grub-mkrelpath.c: Likewise.
16393 * util/grub-script-check.c: Likewise.
16394 * util/ieee1275/grub-ofpathname.c: Likewise.
16395 * util/resolve.c: Likewise.
16396
16397 2011-11-11 Vladimir Serbinenko <phcoder@gmail.com>
16398
16399 Support %1$d syntax.
16400
16401 * tests/printf_unit_test.c: New file.
16402 * Makefile.util.def (printf_test): New test.
16403 * grub-core/kern/misc.c (grub_vsnprintf_real): Support %1$d syntax.
16404
16405 2011-11-11 Vladimir Serbinenko <phcoder@gmail.com>
16406
16407 * grub-core/hook/datehook.c (grub_read_hook_datetime): Small stylistic
16408 fix.
16409
16410 2011-11-11 Vladimir Serbinenko <phcoder@gmail.com>
16411
16412 * grub-core/efiemu/mm.c (grub_efiemu_mmap_fill): Change printf into
16413 dprintf.
16414 * grub-core/font/font.c (grub_font_load): Likewise.
16415
16416 2011-11-11 Vladimir Serbinenko <phcoder@gmail.com>
16417
16418 * util/grub-macho2img.c: Add comment concerning gettext.
16419 * grub-core/lib/legacy_parse.c: Likewise.
16420
16421 2011-11-11 Vladimir Serbinenko <phcoder@gmail.com>
16422
16423 * grub-core/kern/misc.c (grub_vprintf): Add missing va_end.
16424 (grub_xvasprintf): Likewise.
16425
16426 2011-11-11 Vladimir Serbinenko <phcoder@gmail.com>
16427
16428 Add const keyword to grub_env_get and gettextize week days.
16429
16430 * grub-core/hook/datehook.c (grub_datetime_names): Make const.
16431 (grub_read_hook_datetime): Return const char *.
16432 * grub-core/kern/env.c (grub_env_get): Return const char *. All users
16433 updated.
16434 * grub-core/normal/datetime.c (grub_weekday_names): Make const.
16435 Mark for gettext.
16436 (grub_get_weekday_name): Return const char *. Call gettext.
16437 * grub-core/script/argv.c (grub_script_argv_append): Receive const
16438 char * and len as the argument. All users updated.
16439 (grub_script_argv_split_append): Receive const char *.
16440 * include/grub/datetime.h (grub_get_weekday_name): Update proto.
16441 * include/grub/env.h (grub_env_get): Likewise.
16442 (grub_env_read_hook_t): Return const char *.
16443 * include/grub/script_sh.h (grub_script_argv_append): Update proto.
16444 (grub_script_argv_split_append): Likewise.
16445
16446 2011-11-11 Vladimir Serbinenko <phcoder@gmail.com>
16447
16448 * grub-core/normal/main.c (grub_normal_execute): Remove leftover call.
16449
16450 2011-11-11 Vladimir Serbinenko <phcoder@gmail.com>
16451
16452 * grub-core/kern/misc.c (grub_strstr): Moved from here ...
16453 * include/grub/misc.h (grub_strstr): ... here. Make static and inline.
16454
16455 2011-11-11 Vladimir Serbinenko <phcoder@gmail.com>
16456
16457 * include/grub/ieee1275/ieee1275.h (grub_ieee1275_set_property):
16458 Fix prototype.
16459
16460 2011-11-11 Vladimir Serbinenko <phcoder@gmail.com>
16461
16462 Fix mips compilation.
16463
16464 * grub-core/lib/xzembed/xz_dec_stream.c (xz_dec): Restrict hash_id to
16465 normal decoder.
16466 (hashes): Use in embed decoder as well (for sizes).
16467 (dec_stream_header): Fix embed decompressor logic.
16468 (dec_stream_footer): Likewise.
16469
16470 2011-11-11 Vladimir Serbinenko <phcoder@gmail.com>
16471
16472 * grub-core/kern/x86_64/dl.c (grub_arch_dl_relocate_symbols): Issue
16473 an error and not a fatal on unrecognised relocation types.
16474
16475 2011-11-11 Vladimir Serbinenko <phcoder@gmail.com>
16476
16477 * grub-core/kern/ieee1275/openfw.c (grub_ieee1275_parse_args):
16478 Issue error rather than printf on unknown arguments.
16479
16480 2011-11-11 Vladimir Serbinenko <phcoder@gmail.com>
16481
16482 * grub-core/kern/ieee1275/ieee1275.c (grub_ieee1275_set_property):
16483 Make buf a const.
16484
16485 2011-11-11 Vladimir Serbinenko <phcoder@gmail.com>
16486
16487 * grub-core/fs/zfs/zfscrypt.c (GRUB_MOD_INIT), (GRUB_MOD_FINI):
16488 Fix module name.
16489
16490 2011-11-11 Vladimir Serbinenko <phcoder@gmail.com>
16491
16492 * grub-core/fs/ntfs.c (grub_ntfs_read_symlink): Stylistic fix. Remove
16493 leftover debug printf.
16494
16495 2011-11-11 Vladimir Serbinenko <phcoder@gmail.com>
16496
16497 * grub-core/fs/btrfs.c (grub_btrfs_embed): Spelling fix.
16498
16499 2011-11-11 Vladimir Serbinenko <phcoder@gmail.com>
16500
16501 * grub-core/efiemu/main.c (grub_efiemu_register_configuration_table):
16502 A stylistic fix.
16503
16504 2011-11-11 Vladimir Serbinenko <phcoder@gmail.com>
16505
16506 * grub-core/commands/probe.c (grub_cmd_probe): Fix error message.
16507
16508 2011-11-10 Shea Levy <slevy@tieronedesign.com>
16509
16510 Allow all modules to perform serial IO
16511
16512 * grub-core/term-serial.c (grub_serial_find): Remove static qualifier
16513 * include/grub/serial.h (grub_serial_port_configure): New inline
16514 function.
16515 (grub_serial_port_fetch): Likewise.
16516 (grub_serial_port_put): Likewise.
16517 (grub_serial_port_fini): Likewise.
16518 (grub_serial_find): New proto.
16519
16520 2011-11-10 Vladimir Serbinenko <phcoder@gmail.com>
16521
16522 Put symlink at the end of the node and fix a potential
16523 memory corruption.
16524
16525 * grub-core/fs/iso9660.c (grub_fshelp_node): New field have_symlink.
16526 Make symlink into an array.
16527 (set_rockridge): Set have_symlink and alloc_dirents.
16528 (grub_iso9660_read_symlink): Use new layout.
16529 (grub_iso9660_iterate_dir): Fix memory corruption.
16530 Use new layout.
16531 (grub_iso9660_dir): Set have_symlink.
16532 (grub_iso9660_open): Likewise.
16533
16534 2011-11-10 Vladimir Serbinenko <phcoder@gmail.com>
16535
16536 Remove local keyword.
16537
16538 * util/grub-mkconfig_lib.in (version_test_numeric): Remove local.
16539 (version_test_gt): Likewise.
16540 (version_find_latest): Likewise.
16541 (gettext_printf): Likewise.
16542 * util/grub.d/10_windows.in (get_os_name_from_boot_ini): Likewise.
16543
16544 2011-11-10 Vladimir Serbinenko <phcoder@gmail.com>
16545
16546 * grub-core/fs/zfs/zfs.c (zfs_mount): Fix spurious warning.
16547
16548 2011-11-10 Vladimir Serbinenko <phcoder@gmail.com>
16549
16550 Fix ZFS memory and resource leaks.
16551
16552 * grub-core/fs/zfs/zfs.c (fill_vdev_info_real): New paramter inserted.
16553 All users updated.
16554 Free type on exit.
16555 (fill_vdev_info): New parameter inserted. All users updated.
16556 (check_pool_label): Likewise.
16557 (scan_disk): Likewise.
16558 (scan_devices): Close non-inserted disks.
16559 (fzap_iterate): Free l.
16560 (unmount_device): Free children descripto memory.
16561
16562 2011-11-10 Vladimir Serbinenko <phcoder@gmail.com>
16563
16564 * grub-core/fs/iso9660.c (grub_iso9660_iterate_dir): Fix grub_strncat
16565 argument (access out of bounds).
16566
16567 2011-11-10 Vladimir Serbinenko <phcoder@gmail.com>
16568
16569 * grub-core/fs/btrfs.c (grub_btrfs_read_logical): Fix RAID10 logic for
16570 >= 6 drives.
16571
16572 2011-11-10 Vladimir Serbinenko <phcoder@gmail.com>
16573
16574 * include/grub/i386/netbsd_bootinfo.h (grub_netbsd_btinfo_bootwedge):
16575 Fix declaration.
16576
16577 2011-11-09 Vladimir Serbinenko <phcoder@gmail.com>
16578
16579 Fix several memory leaks.
16580
16581 * grub-core/fs/btrfs.c (grub_btrfs_dir): Fix memory leak.
16582 * grub-core/fs/cpio.c (grub_cpio_find_file): Likewise.
16583 (grub_cpio_dir): Likewise.
16584 * grub-core/fs/fat.c (grub_fat_label): Likewise.
16585 * grub-core/fs/jfs.c (grub_jfs_label): Likewise.
16586 * grub-core/fs/romfs.c (grub_romfs_close): Likewise.
16587 (grub_romfs_label): Likewise.
16588 * grub-core/fs/squash4.c (squash_mount): Use zalloc for safety.
16589 (squash_unmount): New function.
16590 (grub_squash_dir): Fix memory leak.
16591 (grub_squash_open): Likewise.
16592 (grub_squash_read): Likewise.
16593 (grub_squash_mtime): Likewise.
16594 * grub-core/fs/xfs.c (grub_xfs_open): Likewise.
16595 * grub-core/fs/zfs/zfs.c (check_pool_label): Likewise.
16596 * util/grub-fstest.c (fstest): Likewise.
16597
16598 2011-11-09 Vladimir Serbinenko <phcoder@gmail.com>
16599
16600 * include/grub/misc.h (grub_strncat): Fix the order of conditionals to
16601 avoid accessing beyond the array.
16602
16603 2011-11-09 Vladimir Serbinenko <phcoder@gmail.com>
16604
16605 * configure.ac: Add missing -mXX to TARGET_CPPFLAGS.
16606
16607 2011-11-09 Vladimir Serbinenko <phcoder@gmail.com>
16608
16609 Several AFFS fixes.
16610
16611 * grub-core/fs/affs.c (grub_affs_bblock): Replace flags with version.
16612 (GRUB_AFFS_FLAG_FFS): Removed.
16613 (GRUB_AFFS_SYMLINK_SIZE): Likewise.
16614 (GRUB_AFFS_FILETYPE_DIR): Make positive and unsigned.
16615 (GRUB_AFFS_FILETYPE_DIR), (GRUB_AFFS_FILETYPE_REG): Fix a mix-up.
16616 (grub_fshelp_node): Make block 32-bit.
16617 Add block_cache and last_block_cache.
16618 (grub_affs_read_block): Fill and use block cache.
16619 (grub_affs_read_file): Removed.
16620 (grub_affs_mount): Zero-fill node. Fix version check. Don't reread
16621 boot block.
16622 (grub_affs_read_symlink): Fix symlink size. Add a \0 at the end for
16623 safety.
16624 (grub_affs_iterate_dir): Use more appropriate types. Zero-fill allocated
16625 space.
16626 (grub_affs_close): Free block cache.
16627 (grub_affs_read): Use grub_fshelp_read_file directly.
16628
16629 2011-11-08 Vladimir Serbinenko <phcoder@gmail.com>
16630
16631 * grub-core/fs/zfs/zfs.c (read_dva): Issue an error if read failed
16632 with no error set.
16633
16634 2011-11-08 Vladimir Serbinenko <phcoder@gmail.com>
16635
16636 * grub-core/lib/LzmaEnc.c (LzmaEnc_CodeOneBlock): Remove set but not
16637 used variable.
16638 * grub-core/kern/ia64/dl_helper.c (grub_ia64_dl_get_tramp_got_size):
16639 Likewise.
16640
16641 2011-11-08 Vladimir Serbinenko <phcoder@gmail.com>
16642
16643 Fix potential problem with calling zfs_to_cpu and cpu_to_be in a row.
16644
16645 * grub-core/fs/zfs/zfscrypt.c (grub_zfs_decrypt_real): Use explicit
16646 byteswap when needed.
16647
16648 2011-11-08 Vladimir Serbinenko <phcoder@gmail.com>
16649
16650 Fix FreeBSD compilation.
16651
16652 * grub-core/disk/geli.c (GRUB_MD_SHA256) [GRUB_UTIL]: Redefine in a way
16653 to avoid circular dependency.
16654 (GRUB_MD_SHA512) [GRUB_UTIL]: Likewise.
16655 * util/getroot.c (grub_util_follow_gpart_up): Move from here...
16656 * grub-core/kern/emu/hostdisk.c (+grub_util_follow_gpart_up): ... here.
16657
16658 2011-11-08 Vladimir Serbinenko <phcoder@gmail.com>
16659
16660 Fix ZFS crypto error types.
16661
16662 * grub-core/fs/zfs/zfscrypt.c (grub_ccm_decrypt): Fix return type.
16663 (grub_gcm_decrypt): Likewise.
16664 (grub_zfs_load_key_real): Fix error code type. Handle possible error
16665 from PBKDF2.
16666
16667 2011-11-08 Vladimir Serbinenko <phcoder@gmail.com>
16668
16669 Illumos support.
16670
16671 * Makefile.util.def (10_illumos): New script.
16672 * configure.ac: Set COND_HOST_ILLUMOS.
16673 * grub-core/kern/emu/hostdisk.c (grub_util_get_fd_sectors) [__sun__]:
16674 Support Illumos calls.
16675 (find_partition_start) [__sun__]: Likewise.
16676 (convert_system_partition_to_system_disk) [__sun__]: Likewise.
16677 (device_is_wholedisk) [__sun__]: Handle Illumos naming scheme.
16678 (grub_util_biosdisk_get_grub_dev) [__sun__]: Handle Illumos.
16679 * util/getroot.c (find_root_device_from_libzfs) [__sun__]: Return raw
16680 device.
16681 * util/grub-probe.c (probe) [__sun__]: Do character check.
16682 * util/grub.d/10_illumos.in: New file.
16683
16684 2011-11-08 Vladimir Serbinenko <phcoder@gmail.com>
16685
16686 Support escaped commas in hostdisk.
16687
16688 * grub-core/kern/emu/hostdisk.c (unescape_cmp): New function.
16689 (find_grub_drive): Use unescape_cmp.
16690 (make_device_name): Escape commas.
16691
16692 2011-11-08 Vladimir Serbinenko <phcoder@gmail.com>
16693
16694 * util/grub.d/10_kfreebsd.in: Use ${grub_mkrelpath} not grub-mkrelpath.
16695
16696 2011-11-08 Vladimir Serbinenko <phcoder@gmail.com>
16697
16698 * grub-core/fs/zfs/zfs.c (zap_iterate): Remove set but not used
16699 variable.
16700
16701 2011-11-08 Vladimir Serbinenko <phcoder@gmail.com>
16702
16703 Support trampoline jumps on powerpc.
16704
16705 * grub-core/kern/dl.c (grub_dl_load_segments) [__powerpc__]: Follow
16706 __ia64__ path.
16707 (grub_dl_load_segments): Set mod->sz.
16708 (grub_dl_flush_cache): Flush whole space occupied by module, not just
16709 segments.
16710 * grub-core/kern/ia64/dl.c (nopm): Make const while on it.
16711 (jump): Likewise.
16712 * grub-core/kern/powerpc/dl.c (grub_arch_dl_get_tramp_got_size): New
16713 function.
16714 (trampoline): New struct.
16715 (trampoline_template): New const.
16716 (grub_arch_dl_relocate_symbols): Create trampolines on overflow.
16717 * include/grub/dl.h (grub_dl): Add sz element.
16718 [__powerpc__]: Follow __ia64__.
16719 (GRUB_ARCH_DL_TRAMP_ALIGN): Define on ppc.
16720 (GRUB_ARCH_DL_GOT_ALIGN): Likewise.
16721 (GRUB_ARCH_DL_TRAMP_SIZE): Likewise.
16722 (grub_arch_dl_get_tramp_got_size) [__powerpc__]: New proto.
16723
16724 2011-11-06 Vladimir Serbinenko <phcoder@gmail.com>
16725
16726 ZFS crypto support.
16727
16728 * Makefile.util.def (libgrubmods): Add grub-core/fs/zfs/zfscrypt.c.
16729 * grub-core/Makefile.core.def (zfscrypt): New module.
16730 * grub-core/fs/zfs/zfs.c (subvolume): New structure.
16731 (grub_zfs_data): Replace mdn with subvol. Put case_insensitivity inside
16732 it. All users updated.
16733 (grub_zfs_decrypt): New var.
16734 (grub_zfs_load_key): Likewise.
16735 (zio_checksum_functions): Add SHA256+MAC.
16736 (zio_checksum_verify): Handle incomplete comparison due to MAC.
16737 (zio_read): Handle encrypted blocks.
16738 (zap_verify): Remove incorrect check.
16739 (fzap_iterate): Handle non-standard fzap.
16740 (zap_iterate): Likewise.
16741 (zap_iterate_u64): New function.
16742 (dnode_get_fullpath): Load keys.
16743 * grub-core/fs/zfs/zfscrypt.c: New file.
16744 * grub-core/lib/crypto.c (grub_crypto_cipher_close): Removed.
16745 (grub_crypto_ecb_encrypt): Make input const.
16746 * include/grub/crypto.h (grub_crypto_cipher_close): Inline.
16747 (grub_crypto_ecb_encrypt): Make input const.
16748 (GRUB_CIPHER_AES): New macro.
16749 * include/grub/zfs/dmu.h (dmu_object_type): Add DMU_OT_DSL_KEYCHAIN.
16750 * include/grub/zfs/dsl_dir.h (dsl_dir_phys): Add keychain.
16751 * include/grub/zfs/spa.h (grub_zfs_endian): Moved from here ...
16752 * include/grub/zfs/zfs.h (grub_zfs_endian): ... here. Added GURB_ZFS_
16753 prefix. All users updated.
16754 (grub_zfs_add_key): New proto.
16755 (grub_zfs_decrypt): Likewise.
16756 (grub_zfs_load_key): Likewise.
16757 * include/grub/zfs/zio.h (zio_checksum): Add SHA256+MAC.
16758 * util/grub-fstest.c (options): Add -K option.
16759 (argp_parser): Likewise.
16760
16761 2011-11-05 Vladimir Serbinenko <phcoder@gmail.com>
16762
16763 Support zle compression on ZFS.
16764
16765 * grub-core/fs/zfs/zfs.c (zle_decompress): New function.
16766 (decomp_table): Add zle.
16767 * include/grub/zfs/zio.h (zio_compress): Add zle.
16768
16769 2011-11-05 Vladimir Serbinenko <phcoder@gmail.com>
16770
16771 Support BtrFS embedding.
16772
16773 * grub-core/fs/btrfs.c (grub_btrfs_embed) [GRUB_UTIL]: New function.
16774 (grub_btrfs_fs) [GRUB_UTIL]: Set embed.
16775 * include/grub/fs.h (grub_fs) [GRUB_UTIL]: New field embed.
16776 * util/grub-setup.c (setup): Use fs embedding if available.
16777 Add additional sanity check.
16778
16779 2011-11-05 Vladimir Serbinenko <phcoder@gmail.com>
16780
16781 * util/grub-install.in: Fix condition for config_opt.
16782
16783 2011-11-04 Vladimir Serbinenko <phcoder@gmail.com>
16784
16785 Support third redundancy strip on raidz3.
16786
16787 * grub-core/fs/zfs/zfs.c (recovery): Add Gauss for general case.
16788 Return error on singularity. All users updated.
16789 (read_device): Don't stop on 3rd failure on raidz3.
16790
16791 2011-11-04 Vladimir Serbinenko <phcoder@gmail.com>
16792
16793 Support case-insensitive ZFS subvolumes.
16794
16795 * grub-core/fs/zfs/zfs.c (mzap_lookup): New parameter case_insensitive.
16796 All users updated.
16797 (zap_hash): Likewise.
16798 (name_cmp): New function.
16799 (zap_leaf_array_equal): New parameter case_insensitive.
16800 All users updated.
16801 (zap_leaf_lookup): Likewise.
16802 (fzap_lookup): Likewise.
16803 (zap_lookup): Likewise.
16804 (dnode_get_path): New parameter case_insensitive. Retrieve case
16805 sensitiviness of a volume. All users updated.
16806 (dnode_get_fullpath): New parameter case_insensitive.
16807 All users updated.
16808 (grub_zfs_dir): Set info.case_insensitiveness.
16809
16810 2011-11-04 Vladimir Serbinenko <phcoder@gmail.com>
16811
16812 Support second redundancy strip on raidz(2,3).
16813
16814 * grub-core/fs/zfs/zfs.c (powx): New array.
16815 (powx_inv): Likewise.
16816 (poly): New const.
16817 (xor_out): New function.
16818 (gf_mul): Likewise.
16819 (recovery): Likewise.
16820 (read_device): Use second redundancy strip.
16821
16822 2011-11-04 Vladimir Serbinenko <phcoder@gmail.com>
16823
16824 Use a power of generator representation of GF(256) multiplication group
16825 to save space time and complexity.
16826
16827 * grub-core/disk/raid6_recover.c (raid6_table1): Removed.
16828 (raid6_table2): Likewise.
16829 (powx): New array.
16830 (powx_inv): Likewise.
16831 (poly): New const.
16832 (grub_raid_block_mul): Replace with ...
16833 (grub_raid_block_mulx): ...this.
16834 (grub_raid6_init_table): Rewritten.
16835 (grub_raid6_recover): Use power of generator representation.
16836
16837 2011-11-04 Vladimir Serbinenko <phcoder@gmail.com>
16838
16839 * grub-core/disk/raid6_recover.c (grub_raid6_recover): Get start_sector
16840 for the right device.
16841
16842 2011-11-04 Vladimir Serbinenko <phcoder@gmail.com>
16843
16844 * include/grub/kernel.h (grub_module_header): Make type into uint32 as
16845 expected by grub-mkimage and it's more clear since there is no implicit
16846 padding.
16847
16848 2011-11-04 Vladimir Serbinenko <phcoder@gmail.com>
16849
16850 * grub-core/disk/raid.c (scan_devices): Don't derference NULL on whole
16851 disk.
16852 * grub-core/disk/lvm.c (do_lvm_scan): Likewise.
16853
16854 2011-11-03 Philipp Matthias Hahn <pmhahn@debian.org>
16855
16856 * util/grub-mkrescue.in: Fix handling xorriso option.
16857
16858 2011-11-03 Vladimir Serbinenko <phcoder@gmail.com>
16859
16860 * grub-core/gettext/gettext.c (grub_gettext_init_ext): Exit if local is
16861 NULL.
16862
16863 2011-11-03 crocket <crockabiscuit@gmail.com>
16864
16865 * util/grub.d/10_linux.in: Add Slackware initrd naming.
16866
16867 2011-11-03 Vladimir Serbinenko <phcoder@gmail.com>
16868
16869 XZ CRC64 and SHA256 support.
16870
16871 * Makefile.util.def (libgrubmods): Add crc64.c.
16872 * grub-core/Makefile.core.def (crc64): New module.
16873 * grub-core/lib/crc64.c: New file.
16874 * grub-core/lib/xzembed/xz_dec_stream.c (xz_dec_hash)
16875 [!GRUB_EMBED_DECOMPRESSOR]: Rename crc32_context to hash_context.
16876 Fix the type.
16877 (MAX_HASH_SIZE): New define.
16878 (xz_dec) [!GRUB_EMBED_DECOMPRESSOR]: Add generic hash fields.
16879 (dec_block) [!GRUB_EMBED_DECOMPRESSOR]: Handle non-crc32 hashes.
16880 (index_update) [!GRUB_EMBED_DECOMPRESSOR]: Likewise.
16881 (dec_index) [!GRUB_EMBED_DECOMPRESSOR]: Likewise.
16882 (crc32_validate) [!GRUB_EMBED_DECOMPRESSOR]: Rename to ...
16883 (hash_validate) [!GRUB_EMBED_DECOMPRESSOR]: ... this.
16884 Handle non-crc32 hashes.
16885 (hashes) [!GRUB_EMBED_DECOMPRESSOR]: New variable.
16886 (dec_stream_header): Handle non-crc32 hashes.
16887 (dec_stream_footer): Likewise.
16888 (dec_block_header): Likewise.
16889 (dec_main): Likewise.
16890 (xz_dec_init): Likewise.
16891 (xz_dec_reset): Likewise.
16892 (xz_dec_end): Likewise.
16893 * util/import_gcry.py: Add CRC64 line.
16894
16895 2011-11-03 Vladimir Serbinenko <phcoder@gmail.com>
16896
16897 * grub-core/fs/ufs.c (grub_ufs_mtime) [MODE_UFS2]: Check mtime field
16898 as well.
16899
16900 2011-11-03 Vladimir Serbinenko <phcoder@gmail.com>
16901
16902 Make reiserfs label retrieval similar to other *_label functions.
16903
16904 * grub-core/fs/reiserfs.c (grub_reiserfs_superblock): New field label.
16905 (REISERFS_MAX_LABEL_LENGTH): Removed.
16906 (REISERFS_LABEL_OFFSET): Likewise.
16907 (grub_reiserfs_label): Rewritten.
16908
16909 2011-11-03 Vladimir Serbinenko <phcoder@gmail.com>
16910
16911 * grub-core/fs/nilfs2.c (grub_nilfs2_mtime): Use correct superblock
16912 field.
16913
16914 2011-11-03 Vladimir Serbinenko <phcoder@gmail.com>
16915
16916 * grub-core/fs/zfs/zfs.c (read_device): Support raidz3.
16917
16918 2011-11-02 Vladimir Serbinenko <phcoder@gmail.com>
16919
16920 * grub-core/fs/zfs/zfs.c (read_device): Add ability to sustain a single
16921 drive failure on both raidz and raidz2.
16922
16923 2011-11-02 Vladimir Serbinenko <phcoder@gmail.com>
16924
16925 Fix RAIDZ(2) for >= 5 devices.
16926
16927 * grub-core/fs/zfs/zfs.c (read_device): Fix length formula. Remove
16928 asize argument. All users updated.
16929
16930 2011-11-01 Vladimir Serbinenko <phcoder@gmail.com>
16931
16932 Fix RAIDZ(2).
16933
16934 * grub-core/fs/zfs/zfs.c (grub_zfs_device_desc): New member ashift.
16935 (fill_vdev_info_real): Set ashift.
16936 (read_device): Rewrite RAIDZ part based on reverse engineering.
16937
16938 2011-10-31 Vladimir Serbinenko <phcoder@gmail.com>
16939
16940 * grub-core/fs/btrfs.c (grub_btrfs_extent_read): Add sanity check and
16941 don't report potentially unavialiable fields in debug output.
16942 (find_path): Fix double-free and memory leak.
16943
16944 2011-10-31 Vladimir Serbinenko <phcoder@gmail.com>
16945
16946 Read label on UFS1.
16947
16948 * grub-core/fs/ufs.c (grub_ufs_label): Remove MODE_UFS2 condition.
16949 (grub_ufs_fs): Always set .label.
16950
16951 2011-10-31 Vladimir Serbinenko <phcoder@gmail.com>
16952
16953 Use shifts in UFS.
16954
16955 * grub-core/fs/ufs.c (UFS_LOG_BLKSZ): New macro.
16956 (grub_ufs_data): New field log2_blksz.
16957 (grub_ufs_read_file): Use shifts.
16958 (grub_ufs_mount): Check block size and logarithm it.
16959
16960 2011-10-31 Vladimir Serbinenko <phcoder@gmail.com>
16961
16962 * grub-core/fs/ufs.c (grub_ufs_lookup_symlink): Fix handling of
16963 long symlinks.
16964
16965 2011-10-30 Vladimir Serbinenko <phcoder@gmail.com>
16966
16967 Handle symlinks and long names on tar and cpio.
16968
16969 * grub-core/fs/cpio.c (ATTR_TYPE): New definition.
16970 (ATTR_FILE): Likewise.
16971 (ATTR_DIR): Likewise.
16972 (ATTR_LNK): Likewise.
16973 (grub_cpio_data) [MODE_USTAR]: New fields linkname and linkname_alloc.
16974 (grub_cpio_find_file): Fill mode, handle linkname field as well as
16975 L and K entries.
16976 (grub_cpio_mount): Zero-fill data.
16977 (handle_symlink): New function.
16978 (grub_cpio_dir): Handle symlinks.
16979 (grub_cpio_open): Likewise.
16980 (grub_cpio_close) [MODE_USTAR]: Free linkname.
16981
16982 2011-10-30 Vladimir Serbinenko <phcoder@gmail.com>
16983
16984 Fix iso9660 filename limitations and fix memory leaks.
16985
16986 * grub-core/fs/iso9660.c (set_rockridge): Free sua at the end.
16987 (grub_iso9660_iterate_dir): Fix slash handling in symlinks.
16988
16989 2011-10-30 Vladimir Serbinenko <phcoder@gmail.com>
16990
16991 Fix JFS file name length limitations.
16992
16993 * grub-core/fs/jfs.c (grub_jfs_inode): Fix in-place symlink length.
16994 (grub_jfs_diropen): Fix maximum filename length.
16995 (grub_jfs_getent): Fix filename length.
16996 (grub_jfs_lookup_symlink): Fix size checks.
16997
16998 2011-10-30 Vladimir Serbinenko <phcoder@gmail.com>
16999
17000 * grub-core/loader/mips/linux.c (loongson_machtypes): Fix fuloong type
17001 string.
17002
17003 2011-10-30 Vladimir Serbinenko <phcoder@gmail.com>
17004
17005 Leverage BFS implementation to read AFS.
17006
17007 * Makefile.util.def (libgrubmods): Add afs.c.
17008 * grub-core/Makefile.core.def (afs): New module
17009 * grub-core/fs/afs.c: New file.
17010 * grub-core/fs/bfs.c [MODE_AFS]: Adapt for AFS.
17011
17012 2011-10-30 Vladimir Serbinenko <phcoder@gmail.com>
17013
17014 * grub-core/fs/bfs.c: Macroify and add some necessary sanity checks.
17015
17016 2011-10-30 Vladimir Serbinenko <phcoder@gmail.com>
17017
17018 * grub-core/fs/bfs.c: Run indent.
17019
17020 2011-10-30 Vladimir Serbinenko <phcoder@gmail.com>
17021
17022 BFS implementation based on the specification.
17023
17024 * grub-core/fs/bfs.c: New file.
17025 * Makefile.util.def (libgrubmods): Add bfs.c.
17026 * grub-core/Makefile.core.def (bfs): New module.
17027
17028 2011-10-30 Vladimir Serbinenko <phcoder@gmail.com>
17029
17030 * util/grub-fstest.c (cmd_cp): Clarify error message.
17031 (cmd_cmp): Likewise.
17032
17033 2011-10-30 Yves Blusseau <blusseau@zetam.org>
17034
17035 * po/POTFILES.in: Regenerate because of the removal of afs, afs_be, befs
17036 and befs_be.
17037
17038 2011-10-29 Vladimir Serbinenko <phcoder@gmail.com>
17039
17040 Remove afs and befs because of copyright problem.
17041
17042 * grub-core/fs/afs.c: Removed.
17043 * grub-core/fs/afs_be.c: Removed.
17044 * grub-core/fs/befs.c: Removed.
17045 * grub-core/fs/befs_be.c: Removed.
17046 * Makefile.util.def (libgrubkern): Remove afs, afs_be, befs and befs_be.
17047 * grub-core/Makefile.core.def (afs): Removed.
17048 (afs_be): Likewise.
17049 (befs): Likewise.
17050 (befs_be): Likewise.
17051
17052 2011-10-28 Vladimir Serbinenko <phcoder@gmail.com>
17053
17054 Prefer rockridge over Joliet.
17055
17056 * grub-core/fs/iso9660.c (grub_iso9660_mount): Move rockridge detection
17057 to ...
17058 (set_rockridge): ... here.
17059 (grub_iso9660_mount): Check rockridge on the primary label when
17060 discovering. Ignore Joliet if Rockridge is present.
17061
17062 2011-10-28 Vladimir Serbinenko <phcoder@gmail.com>
17063
17064 Use shifts in nilfs2.
17065
17066 * grub-core/fs/nilfs2.c (LOG_INODE_SIZE): New definition.
17067 (LOG_NILFS_DAT_ENTRY_SIZE): Likewise.
17068 (grub_nilfs2_palloc_entries_per_group): Replace with ...
17069 (grub_nilfs2_log_palloc_entries_per_group): ... this.
17070 (grub_nilfs2_palloc_group): Use shifts and bitmasks.
17071 (grub_nilfs2_entries_per_block): Replaced with ...
17072 (grub_nilfs2_log_entries_per_block_log): ... this.
17073 (grub_nilfs2_blocks_per_group): Replaced with ...
17074 (grub_nilfs2_blocks_per_group_log): ... this.
17075 (grub_nilfs2_blocks_per_desc_block): Replaced with ...
17076 (grub_nilfs2_blocks_per_desc_block_log): ... this.
17077 (grub_nilfs2_palloc_desc_block_offset): Replaced with ...
17078 (grub_nilfs2_palloc_desc_block_offset_log): ... this.
17079 (grub_nilfs2_palloc_entry_offset): Replaced ...
17080 (grub_nilfs2_palloc_entry_offset_log): ... this. Use shifts.
17081 (grub_nilfs2_dat_translate): Use shifts.
17082 (grub_nilfs2_read_inode): Likewise.
17083 (GRUB_MOD_INIT): Ensure that logs are correct.
17084
17085 2011-10-28 Vladimir Serbinenko <phcoder@gmail.com>
17086
17087 Use shifts in minix filesystem.
17088
17089 * grub-core/fs/minix.c (GRUB_MINIX_ZONESZ): Use log_block_size.
17090 (GRUB_MINIX_ZONE2SECT): Likewise.
17091 (grub_minix_data): Replace block_size with log_block_size.
17092 (grub_minix_read_file): Use shifts.
17093 (grub_minix_mount): Check block size and take a logarithm.
17094
17095 2011-10-28 Vladimir Serbinenko <phcoder@gmail.com>
17096
17097 Use shifts in squash4.
17098
17099 * grub-core/fs/squash4.c (grub_squash_data): New field log2_blksz.
17100 (squash_mount): Check block size and take logarithm.
17101 (direct_read): Use shifts.
17102
17103 2011-10-28 Vladimir Serbinenko <phcoder@gmail.com>
17104
17105 Correct befs block counting logic.
17106
17107 * grub-core/fs/afs.c (GRUB_AFS_BLOCKS_PER_DI_RUN): Replaced with...
17108 (GRUB_AFS_LOG_BLOCKS_PER_DI_RUN): ... this.
17109 (GRUB_AFS_BLOCKRUN_LOG_SIZE): New definition.
17110 (grub_afs_read_inode): Use block_shift.
17111 (RANGE_SHIFT): New definition.
17112 (grub_afs_read_block): Account for RANGE_SHIFT, emit errors on
17113 unexpected conditions, use shifts and appropriate types.
17114 (GRUB_MOD_INIT): Check the value of GRUB_AFS_BLOCKRUN_LOG_SIZE.
17115
17116 2011-10-28 Vladimir Serbinenko <phcoder@gmail.com>
17117
17118 * grub-core/disk/raid.c (scan_devices): Check partition.
17119 * grub-core/disk/lvm.c (do_lvm_scan): Likewise.
17120
17121 2011-10-27 Vladimir Serbinenko <phcoder@gmail.com>
17122
17123 Support BFS (befs) UUID.
17124
17125 * grub-core/fs/afs.c (grub_afs_inode): Make small_data zero-size.
17126 (grub_afs_small_data_element_header): New struct.
17127 (grub_afs_read_inode): Read complete inode. Fix ino type while on it.
17128 (grub_afs_read_attribute) [MODE_BFS]: New function.
17129 (grub_afs_iterate_dir): Allocate for complete inode.
17130 (grub_afs_mount): Likewise.
17131 (grub_afs_uuid) [MODE_BFS]: New function.
17132 (grub_afs_fs) [MODE_BFS]: Add .uuid.
17133
17134 2011-10-27 Vladimir Serbinenko <phcoder@gmail.com>
17135
17136 * grub-core/fs/zfs/zfs.c (read_device): Silence spurious warning.
17137 (zfs_unmount): Fix memory leak.
17138
17139 2011-10-26 Vladimir Serbinenko <phcoder@gmail.com>
17140
17141 Support NTFS reparse points.
17142
17143 * grub-core/fs/ntfs.c (list_file): Set symlink type when appropriate.
17144 (symlink_descriptor): New struct.
17145 (grub_ntfs_read_symlink): New function.
17146 (grub_ntfs_iterate_dir): Use grub_ntfs_read_symlink.
17147 (grub_ntfs_open): Likewise.
17148
17149 2011-10-26 Vladimir Serbinenko <phcoder@gmail.com>
17150
17151 * include/grub/ntfs.h: Add GRUB_NTFS_ prefix. All users updated.
17152
17153 2011-10-26 Vladimir Serbinenko <phcoder@gmail.com>
17154
17155 fstest xnu_uuid subcommand.
17156
17157 * grub-core/commands/xnu_uuid.c (libgrubkrn): Add
17158 grub-core/commands/xnu_uuid.c.
17159 * util/grub-fstest.c (CMD_XNU_UUID): New enum value.
17160 (fstest): Handle xnu_uuid.
17161 (options): Document xnu_uuid.
17162 (argp_parser): Parse xnu_uuid.
17163
17164 2011-10-26 Vladimir Serbinenko <phcoder@gmail.com>
17165
17166 * grub-core/commands/xnu_uuid.c (grub_cmd_xnu_uuid): Support
17167 -l argument. Add newline at the end if printing.
17168 (GRUB_MOD_INIT): Document -l.
17169
17170 2011-10-26 Vladimir Serbinenko <phcoder@gmail.com>
17171
17172 * grub-core/fs/nilfs2.c (grub_nilfs2_uuid): Add missing field length.
17173
17174 2011-10-26 Vladimir Serbinenko <phcoder@gmail.com>
17175
17176 ZFS multi-device and version 33 support.
17177
17178 * Makefile.util.def (libgrubkern): Add grub-core/fs/zfs/zfsinfo.c.
17179 * grub-core/fs/zfs/zfs.c (grub_zfs_device_desc): New struct.
17180 (grub_zfs_data): Add multidev-ice-related fields.
17181 (zio_checksum_verify): Zero-pad printed values. Print checksum name.
17182 (dva_get_offset): Make dva const.
17183 (zfs_fetch_nvlist): New function.
17184 (fill_vdev_info_real): Likewise.
17185 (fill_vdev_info): Likewise.
17186 (check_pool_label): Likewise.
17187 (scan_disk): Likewise.
17188 (scan_devices): Likewise.
17189 (read_device): Likewise.
17190 (read_dva): Likewise.
17191 (zio_read_gang): Use read_dva.
17192 (zio_read_data): Likewise.
17193 (zap_leaf_lookup): Add missing endian conversion.
17194 (zap_verify): Add missing endian conversion. All users updated.
17195 (fzap_lookup): Likewise.
17196 (fzap_iterate): Likewise.
17197 (dnode_get_path): Handle SA bonus.
17198 (nvlist_find_value): Make input const. All users updated.
17199 (unmount_device): New function.
17200 (zfs_unmount): Use unmount_device.
17201 (zfs_mount): Use scan_disk.
17202 (zfs_mtime): New function.
17203 (grub_zfs_open): Handle system attributes.
17204 (fill_fs_info): Likewise.
17205 (grub_zfs_dir): Likewise.
17206 (grub_zfs_fs): Add mtime.
17207 * grub-core/fs/zfs/zfsinfo.c (print_vdev_info): Add missing return.
17208 * include/grub/zfs/sa_impl.h (SA_TYPE_OFFSET): New definition.
17209 (SA_MTIME_OFFSET): Likewise.
17210 (SA_SYMLINK_OFFSET): Likewise.
17211 * include/grub/zfs/zfs.h (SPA_VERSION): Increase to 33.
17212 * util/grub-fstest.c (CMD_ZFSINFO): New enum value.
17213 (fstest): Support zfsinfo.
17214 (argp_parser): Likewise.
17215
17216 2011-10-26 Vladimir Serbinenko <phcoder@gmail.com>
17217
17218 * include/grub/datetime.h (grub_datetime2unixtime): Fix off-by-one
17219 error.
17220
17221 2011-10-26 Vladimir Serbinenko <phcoder@gmail.com>
17222
17223 ZFS fixes.
17224
17225 * grub-core/fs/zfs/zfs.c (fzap_iterate): Fix handling of indexes
17226 sharing the same block. Iterate over correct number of indices.
17227 (dnode_get_path): Handle symlinks correctly.
17228
17229 2011-10-25 Vladimir Serbinenko <phcoder@gmail.com>
17230
17231 * grub-core/fs/jfs.c (grub_jfs_sblock): Fix offset to volname.
17232
17233 2011-10-25 Vladimir Serbinenko <phcoder@gmail.com>
17234
17235 Read label on HFS+.
17236
17237 * grub-core/fs/hfsplus.c (grub_hfsplus_cmp_catkey_id): New function.
17238 (grub_hfsplus_btree_search): Fix types.
17239 (grub_hfsplus_label): Implement.
17240
17241 2011-10-25 Vladimir Serbinenko <phcoder@gmail.com>
17242
17243 * grub-core/fs/ntfs.c (grub_ntfs_uuid): Fix a memory leak.
17244
17245 2011-10-25 Vladimir Serbinenko <phcoder@gmail.com>
17246
17247 * grub-core/fs/fat.c (grub_fat_uuid): Make uppercase to match Linux.
17248
17249 2011-10-25 Vladimir Serbinenko <phcoder@gmail.com>
17250
17251 Fix symlink handling on iso9660.
17252
17253 * grub-core/fs/iso9660.c (grub_fshelp_node): Remove dir_off. Add symlink
17254 All users updated.
17255 (grub_iso9660_susp_iterate): Accept zero-size iterate.
17256 (grub_iso9660_read_symlink): Moved most of code ...
17257 (grub_iso9660_iterate_dir): ... here. Fill node->symlink.
17258
17259 2011-10-25 Vladimir Serbinenko <phcoder@gmail.com>
17260
17261 * grub-core/loader/i386/bsd.c (grub_netbsd_add_boot_disk_and_wedge):
17262 Use union to avoid breaking strict-aliasing rules.
17263
17264 2011-10-25 Vladimir Serbinenko <phcoder@gmail.com>
17265
17266 Support multi-extent iso files.
17267
17268 * grub-core/fs/iso9660.c (grub_iso9660_data): Remove first_sector.
17269 Add node.
17270 (grub_fshelp_node): Revamp. All users updated.
17271 (FLAG_*): New enum.
17272 (read_node): New function.
17273 (grub_iso9660_susp_iterate): Use read_node. Receive a node as argument.
17274 All users updated.
17275 (grub_iso9660_mount): Don't attempt to read sua when there is none.
17276 (get_node_size): New function.
17277 (grub_iso9660_iterate_dir): Use read_node. Agglomerate multi-extent
17278 entries.
17279 Fix memory leak on . and ..
17280 (grub_iso9660_read): Use read_node.
17281 (grub_iso9660_close): Free node.
17282
17283 2011-10-25 Vladimir Serbinenko <phcoder@gmail.com>
17284
17285 Fix tar 4G limit and handle paths containing dot.
17286
17287 * grub-core/fs/cpio.c (grub_cpio_data): Use grub_off_t for offsets.
17288 (canonicalize): New function.
17289 (grub_cpio_find_file): Use canonicalize. Store offs in
17290 grub_disk_addr_t.
17291 (grub_cpio_dir): Use grub_disk_addr_t.
17292 (grub_cpio_open): Likewise.
17293
17294 2011-10-25 Vladimir Serbinenko <phcoder@gmail.com>
17295
17296 Fix handling of uncompressed blocks on squashfs and break 4G limit.
17297
17298 * grub-core/fs/squash4.c (grub_squash_super): Add block_size. Remove
17299 unused flags.
17300 (grub_squash_inode): Add long_file and block_size.
17301 (grub_squash_cache_inode): New struct.
17302 (grub_squash_dirent): Make types into enum.
17303 (SQUASH_TYPE_LONG_REGULAR): New type.
17304 (grub_squash_frag_desc): Add field size.
17305 (SQUASH_BLOCK_FLAGS): New enum.
17306 (grub_squash_data): Use grub_squash_cache_inode.
17307 (grub_fshelp_node): Make ino_chunk 64-bit.
17308 (read_chunk): Minor argument change. All users updated.
17309 (squash_mount): Use correct le_to_cpu.
17310 (grub_squash_open): Handle LONG_REGULAR.
17311 (direct_read): New function.
17312 (grub_squash_read_data): Handle blocks correctly.
17313
17314 2011-10-25 Vladimir Serbinenko <phcoder@gmail.com>
17315
17316 * grub-core/kern/disk.c (grub_disk_read_small): Fix memory leak.
17317
17318 2011-10-25 Vladimir Serbinenko <phcoder@gmail.com>
17319
17320 * grub-core/fs/romfs.c (grub_romfs_open): Add missing return.
17321
17322 2011-10-24 Vladimir Serbinenko <phcoder@gmail.com>
17323
17324 Fix 2G limit on ZFS.
17325
17326 * grub-core/fs/zfs/zfs.c (zio_checksum_verify): Use more appropriate
17327 types.
17328 (uberblock_verify): Likewise.
17329 (dmu_read): Likewise.
17330 (grub_zfs_read): Likewise. Remove invalid cast.
17331
17332 2011-10-24 Vladimir Serbinenko <phcoder@gmail.com>
17333
17334 * grub-core/fs/jfs.c (grub_jfs_blkno): Use more appropriate types.
17335 (grub_jfs_blkno): Fix incorrect shift.
17336 (grub_jfs_read_file): Use more appropriate types.
17337
17338 2011-10-24 Vladimir Serbinenko <phcoder@gmail.com>
17339
17340 Support triple indirect on minix2 and minix3.
17341
17342 * grub-core/fs/minix.c (grub_minix_inode) [MODE_MINIX2 || MODE_MINIX3]:
17343 Declare triple_indir_zone.
17344 (grub_minix_get_file_block) [MODE_MINIX2 || MODE_MINIX3]: Handle triple
17345 indirect.
17346
17347 2011-10-24 Vladimir Serbinenko <phcoder@gmail.com>
17348
17349 Minix FS fixes.
17350
17351 * grub-core/fs/minix.c (GRUB_MINIX_INODE_SIZE): Size is always 32-bit.
17352 (grub_minix_inode) [!MODE_MINIX2 && !MODE_MINIX3]: Make size 32-bit.
17353 Rename ctime to mtime. All users updated.
17354 (grub_minix_get_file_block): Fix types and double indirect computations.
17355
17356 2011-10-23 Vladimir Serbinenko <phcoder@gmail.com>
17357
17358 * grub-core/fs/fat.c (grub_fat_label) [MODE_EXFAT]: Set *label to 0
17359 if no label is found.
17360 (grub_fat_iterate_dir): Fix file size type.
17361 (grub_fat_iterate_dir): Likewise.
17362
17363 2011-10-23 Vladimir Serbinenko <phcoder@gmail.com>
17364
17365 * grub-core/lib/reed_solomon.c (gf_invert): Declare as const and
17366 save some space.
17367 * include/grub/offsets.h (GRUB_KERNEL_I386_PC_RAW_SIZE): Decrease.
17368 (GRUB_KERNEL_I386_PC_NO_REED_SOLOMON_PART): Likewise.
17369
17370 2011-10-23 Vladimir Serbinenko <phcoder@gmail.com>
17371
17372 * util/import_gcry.py: Automatically fix camellia.c and camellia.h.
17373
17374 2011-10-23 Vladimir Serbinenko <phcoder@gmail.com>
17375
17376 * util/import_gcry.py: Accept space between # and include.
17377
17378 2011-10-23 Vladimir Serbinenko <phcoder@gmail.com>
17379
17380 * grub-core/lib/setjmp.S [__ia64__]: Include ./ia64/longjmp.S.
17381
17382 2011-10-23 Vladimir Serbinenko <phcoder@gmail.com>
17383
17384 Fine grainely disable warnings on lexer. Remove Wno-error on it.
17385
17386 * grub-core/Makefile.core.def (normal): Remove -Wno-error.
17387 * grub-core/script/lexer.c: Declare yytext_ptr to avoid having
17388 yylex_strncpy.
17389 * grub-core/script/yylex.l: Add fine-grained #pragma.
17390
17391 2011-10-23 Vladimir Serbinenko <phcoder@gmail.com>
17392
17393 * grub-core/lib/posix_wrap/string.h (memcpy) [GRUB_UTIL]:
17394 New inline function.
17395 * grub-core/lib/libgcrypt_wrap/cipher_wrap.h (memcpy) [GRUB_UTIL]:
17396 Likewise.
17397 (memset) [GRUB_UTIL]: Likewise.
17398 (memcmp) [GRUB_UTIL]: Likewise.
17399
17400 2011-10-23 Vladimir Serbinenko <phcoder@gmail.com>
17401
17402 * include/grub/misc.h (grub_memcpy): Declare grub_memcpy with static
17403 inline function rather than a define.
17404
17405 2011-10-23 Vladimir Serbinenko <phcoder@gmail.com>
17406
17407 * util/grub-setup.c: Add missing include.
17408
17409 2011-10-23 Vladimir Serbinenko <phcoder@gmail.com>
17410
17411 * util/ieee1275/grub-ofpathname.c: Add missing include.
17412
17413 2011-10-23 Vladimir Serbinenko <phcoder@gmail.com>
17414
17415 * grub-core/kern/i386/pc/startup.S (grub_exit): Add missing zeroing-out.
17416 * grub-core/lib/i386/reboot_trampoline.S (grub_reboot_start):
17417 Likewise.
17418
17419 2011-10-23 Vladimir Serbinenko <phcoder@gmail.com>
17420
17421 * grub-core/io/lzopio.c (test_header): Fix incorrect memcmp instead of
17422 grub_memcmp usage.
17423
17424 2011-10-23 Vladimir Serbinenko <phcoder@gmail.com>
17425
17426 * util/grub-install.in: Add datarootdir as per automake manual
17427 suggestion.
17428 * util/grub-mknetdir.in: Likewise.
17429
17430 2011-10-23 Vladimir Serbinenko <phcoder@gmail.com>
17431
17432 * util/grub.d/10_hurd.in: Add datarootdir as per automake manual
17433 suggestion.
17434 * util/grub.d/10_kfreebsd.in: Likewise.
17435 * util/grub.d/10_linux.in: Likewise.
17436 * util/grub.d/10_netbsd.in: Likewise.
17437 * util/grub.d/10_windows.in: Likewise.
17438 * util/grub.d/20_linux_xen.in: Likewise.
17439
17440 2011-10-20 Vladimir Serbinenko <phcoder@gmail.com>
17441
17442 Remove redundant grub_kernel_image_size.
17443
17444 * grub-core/kern/i386/coreboot/init.c (grub_machine_init): Use
17445 _edata and _start.
17446 * grub-core/kern/i386/coreboot/startup.S: Move multiboot header after
17447 the small code. It moves it only by few bytes but simplifies the code.
17448 * grub-core/kern/i386/pc/init.c (grub_machine_init): Use _edata and
17449 _start.
17450 * grub-core/kern/i386/pc/startup.S: Use _edata and _start.
17451 (grub_kernel_image_size): Removed.
17452 * grub-core/kern/i386/qemu/startup.S: Use _edata and _start.
17453 (grub_kernel_image_size): Removed.
17454 [APPLE_CC]: Remove apple compiler support. i386-qemu port can't be
17455 compiled with Apple toolchain.
17456 * grub-core/kern/sparc64/ieee1275/crt0.S: Remove leftover fields.
17457 * include/grub/i386/pc/kernel.h (grub_kernel_image_size): Removed.
17458 * include/grub/i386/qemu/kernel.h (grub_kernel_image_size): Removed.
17459 (grub_total_module_size): Likewise.
17460 * include/grub/offsets.h (GRUB_KERNEL_I386_PC_KERNEL_IMAGE_SIZE):
17461 Removed.
17462 (GRUB_KERNEL_I386_PC_COMPRESSED_SIZE): Put it lower.
17463 (GRUB_KERNEL_I386_PC_INSTALL_DOS_PART): Likewise.
17464 (GRUB_KERNEL_I386_PC_INSTALL_BSD_PART): Likewise.
17465 (GRUB_KERNEL_I386_PC_REED_SOLOMON_REDUNDANCY): Likewise.
17466 (GRUB_KERNEL_I386_QEMU_KERNEL_IMAGE_SIZE): Removed.
17467 (GRUB_KERNEL_SPARC64_IEEE1275_KERNEL_IMAGE_SIZE): Likewise.
17468 (GRUB_KERNEL_SPARC64_IEEE1275_COMPRESSED_SIZE): Likewise.
17469 * include/grub/sparc64/ieee1275/kernel.h (grub_kernel_image_size):
17470 Removed.
17471 (grub_total_module_size): Removed.
17472 * util/grub-mkimage.c (image_target_desc): Remove image_size.
17473 (image_targets): Likewise.
17474 Set .compressed_size to no field on sparc.
17475 (generate_image): Remove kernel_image_size handling.
17476
17477 2011-10-19 Szymon Janc <szymon@janc.net.pl>
17478
17479 * grub-core/bus/usb/uhci.c (grub_uhci_setup_transfer): Fix possible
17480 NULL pointer dereference.
17481
17482 2011-10-19 Vladimir Serbinenko <phcoder@gmail.com>
17483
17484 Removed unused GRUB_BOOT_VERSION. Check for kernel version is better
17485 done with a dedicated section.
17486
17487 * grub-core/boot/sparc64/ieee1275/boot.S: Remove GRUB_BOOT_VERSION.
17488 Ensure the correct position of boot_path.
17489 * grub-core/kern/i386/efi/startup.S: Remove GRUB_BOOT_VERSION.
17490 * grub-core/kern/i386/pc/startup.S: Likewise. Ensure correct position of
17491 other fields.
17492 * grub-core/kern/x86_64/efi/startup.S: Remove GRUB_BOOT_VERSION.
17493 * include/grub/boot.h: Removed. All references removed.
17494 * include/grub/sparc64/ieee1275/boot.h (GRUB_BOOT_MACHINE_VER_MAJ):
17495 Removed.
17496 (GRUB_BOOT_MACHINE_BOOT_DEVPATH): Make it lower.
17497
17498 2011-10-19 Vladimir Serbinenko <phcoder@gmail.com>
17499
17500 * util/grub-install.in: Declare IEEE1275 as able to find out the disk
17501 name.
17502
17503 2011-10-19 Vladimir Serbinenko <phcoder@gmail.com>
17504
17505 * grub-core/kern/main.c (grub_set_prefix_and_root): Init prefix.
17506
17507 2011-10-19 Vladimir Serbinenko <phcoder@gmail.com>
17508
17509 * grub-core/kern/ieee1275/openfw.c (grub_ieee1275_encode_devname):
17510 Don't add the bogus brackets.
17511
17512 2011-10-19 Vladimir Serbinenko <phcoder@gmail.com>
17513
17514 ExFAT support.
17515
17516 * Makefile.util.def (libgrubmods.a): Add grub-core/fs/exfat.c.
17517 * grub-core/Makefile.core.def (exfat): New module.
17518 * grub-core/fs/exfat.c: New file.
17519 * grub-core/fs/fat.c (GRUB_FAT_DIR_ENTRY_SIZE): Removed.
17520 (GRUB_FAT_ATTR_*): Make into an enum.
17521 (GRUB_FAT_ATTR_LONG_NAME) [MODE_EXFAT]: Removed.
17522 (GRUB_FAT_ATTR_VALID) [MODE_EXFAT]: Remove GRUB_FAT_ATTR_VOLUME_ID.
17523 (GRUB_FAT_ATTR_VOLUME_ID) [MODE_EXFAT]: Removed.
17524 (GRUB_FAT_MAXFILE): Removed.
17525 (grub_exfat_bpb) [MODE_EXFAT]: New struct.
17526 (grub_current_fat_bpb_t): New type.
17527 (grub_fat_dir_entry) [MODE_EXFAT]: New struct.
17528 (grub_fat_dir_node) [MODE_EXFAT]: New struct.
17529 (grub_fat_dir_node_t): New type.
17530 (grub_fat_data) [MODE_EXFAT]: Remove root_sector and num_root_sectors.
17531 (fat_log2) [MODE_EXFAT]: Removed.
17532 (grub_fat_mount): Use grub_current_fat_bpb_t. Add some sanity checks.
17533 (grub_fat_mount) [MODE_EXFAT]: Handle ExFAT.
17534 (grub_fat_iterate_dir) [MODE_EXFAT]: New function.
17535 (grub_fat_find_dir) [MODE_EXFAT]: Handle ExFAT.
17536 (grub_fat_label) [MODE_EXFAT]: New function.
17537 (grub_fat_fs) [MODE_EXFAT]: Set name to "exfat" and
17538 reserved_first_sector to 0.
17539
17540 2011-10-19 Vladimir Serbinenko <phcoder@gmail.com>
17541
17542 Move grub_reboot out of the kernel.
17543
17544 * grub-core/Makefile.core.def (reboot): Add platform-specific files.
17545 * grub-core/kern/efi/efi.c (grub_reboot): Moved to ...
17546 * grub-core/lib/efi/reboot.c: ... here.
17547 * grub-core/kern/i386/efi/startup.S: Remove including of realmode.S.
17548 * grub-core/kern/i386/ieee1275/startup.S: Likewise.
17549 * grub-core/kern/i386/pc/startup.S (grub_exit): Inline cold_reboot.
17550 * grub-core/kern/i386/realmode.S (grub_reboot): Moved to...
17551 * grub-core/lib/i386/reboot_trampoline.S: ... here.
17552 * grub-core/kern/ieee1275/openfw.c (grub_reboot): Moved to...
17553 * grub-core/lib/ieee1275/reboot.c: ... here.
17554 * grub-core/kern/mips/arc/init.c (grub_reboot): Moved to...
17555 * grub-core/lib/mips/arc/reboot.c: ... here.
17556 * grub-core/kern/mips/loongson/init.c (grub_reboot): Moved to...
17557 * grub-core/lib/mips/loongson/reboot.c: ...here.
17558 * grub-core/kern/mips/qemu_mips/init.c (grub_reboot): Moved to...
17559 * grub-core/lib/mips/qemu_mips/reboot.c: ... here.
17560 * include/grub/emu/misc.h (grub_reboot): New function declaration.
17561 * include/grub/i386/reboot.h: New file.
17562 * include/grub/mips/loongson/ec.h: Fix includes.
17563 * include/grub/mips/qemu_mips/kernel.h (grub_reboot): Removed.
17564 * include/grub/misc.h (grub_reboot): Don't mark as kernel function.
17565 * grub-core/lib/i386/reboot.c: New file.
17566
17567 2011-10-18 Vladimir Serbinenko <phcoder@gmail.com>
17568
17569 Make grub_prefix into module to fix the arbitrary limit and save
17570 some space.
17571
17572 * grub-core/kern/emu/main.c (grub_prefix): Removed.
17573 * grub-core/kern/i386/coreboot/startup.S (grub_prefix): Likewise.
17574 * grub-core/kern/i386/efi/startup.S (grub_prefix): Likewise.
17575 * grub-core/kern/i386/ieee1275/startup.S (grub_prefix): Likewise.
17576 * grub-core/kern/i386/pc/startup.S (grub_prefix): Likewise.
17577 * grub-core/kern/i386/qemu/startup.S (grub_prefix): Likewise.
17578 * grub-core/kern/ia64/efi/startup.S (grub_prefix): Likewise.
17579 * grub-core/kern/mips/startup.S (grub_prefix): Likewise.
17580 * grub-core/kern/powerpc/ieee1275/startup.S (grub_prefix): Likewise.
17581 * grub-core/kern/sparc64/ieee1275/crt0.S (grub_prefix): Likewise.
17582 * grub-core/kern/x86_64/efi/startup.S (grub_prefix): Likewise.
17583 * include/grub/ia64/efi/kernel.h: Removed.
17584 * include/grub/kernel.h: New module type OBJ_TYPE_PREFIX.
17585 (grub_prefix): Removed.
17586 * include/grub/offsets.h (GRUB_KERNEL_I386_PC_PREFIX): Removed.
17587 (GRUB_KERNEL_I386_PC_PREFIX_END): Likewise.
17588 (GRUB_KERNEL_I386_QEMU_PREFIX): Likewise.
17589 (GRUB_KERNEL_I386_QEMU_PREFIX_END): Likewise.
17590 (GRUB_KERNEL_SPARC64_IEEE1275_PREFIX): Likewise.
17591 (GRUB_KERNEL_SPARC64_IEEE1275_PREFIX_END): Likewise.
17592 (GRUB_KERNEL_POWERPC_IEEE1275_PREFIX): Likewise.
17593 (GRUB_KERNEL_POWERPC_IEEE1275_PREFIX_END): Likewise.
17594 (GRUB_KERNEL_MIPS_LOONGSON_PREFIX): Likewise.
17595 (GRUB_KERNEL_MIPS_LOONGSON_PREFIX_END): Likewise.
17596 (GRUB_KERNEL_MIPS_QEMU_MIPS_PREFIX): Likewise.
17597 (GRUB_KERNEL_MIPS_QEMU_MIPS_PREFIX_END): Likewise.
17598 (GRUB_KERNEL_MIPS_ARC_PREFIX): Likewise.
17599 (GRUB_KERNEL_MIPS_ARC_PREFIX_END): Likewise.
17600 (GRUB_KERNEL_I386_EFI_PREFIX): Likewise.
17601 (GRUB_KERNEL_I386_EFI_PREFIX_END): Likewise.
17602 (GRUB_KERNEL_IA64_EFI_PREFIX): Likewise.
17603 (GRUB_KERNEL_IA64_EFI_PREFIX_END): Likewise.
17604 (GRUB_KERNEL_X86_64_EFI_PREFIX): Likewise.
17605 (GRUB_KERNEL_X86_64_EFI_PREFIX_END): Likewise.
17606 (GRUB_KERNEL_I386_COREBOOT_PREFIX): Likewise.
17607 (GRUB_KERNEL_I386_COREBOOT_PREFIX_END): Likewise.
17608 (GRUB_KERNEL_I386_MULTIBOOT_PREFIX): Likewise.
17609 (GRUB_KERNEL_I386_MULTIBOOT_PREFIX_END): Likewise.
17610 (GRUB_KERNEL_I386_IEEE1275_PREFIX): Likewise.
17611 (GRUB_KERNEL_I386_IEEE1275_PREFIX_END): Likewise.
17612 (GRUB_KERNEL_MACHINE_PREFIX): Likewise.
17613 (GRUB_KERNEL_MACHINE_PREFIX_END): Likewise.
17614 * grub-core/kern/main.c (grub_set_prefix_and_root): Retrieve grub_prefix
17615 from module.
17616 * util/grub-mkimage.c (image_target_desc): Removed prefix and
17617 prefix_end.
17618 (image_targets): Likewise.
17619 (generate_image): Put prefix as a module.
17620
17621 2011-10-16 Vladimir Serbinenko <phcoder@gmail.com>
17622
17623 Replace grub_module_iterate with FOR_MODULES.
17624
17625 * grub-core/disk/memdisk.c (GRUB_MOD_INIT): Switched to new interface.
17626 * grub-core/kern/efi/efi.c (grub_arch_modules_addr): Renamed to...
17627 (grub_efi_modules_addr): ...this.
17628 * grub-core/kern/efi/init.c (grub_modbase): New variable.
17629 (grub_efi_init): Set grub_modbase.
17630 * grub-core/kern/emu/main.c (grub_arch_modules_addr): Removed.
17631 (grub_modbase): New variable.
17632 * grub-core/kern/i386/coreboot/init.c (grub_arch_modules_addr): Removed.
17633 (grub_modbase): New variable.
17634 (grub_machine_init): Set grub_modbase.
17635 * grub-core/kern/i386/pc/init.c (grub_arch_modules_addr): Removed.
17636 (grub_modbase): New variable.
17637 (grub_machine_init): Set grub_modbase.
17638 * grub-core/kern/ieee1275/init.c (grub_arch_modules_addr): Removed.
17639 (grub_modbase): New variable.
17640 (grub_machine_init): Set grub_modbase.
17641 * grub-core/kern/main.c (grub_module_iterate): Remove.
17642 (grub_modules_get_end): Use grub_modbase.
17643 (grub_load_modules): Use FOR_MODULES.
17644 (grub_load_config): Likewise.
17645 * grub-core/kern/mips/arc/init.c (grub_arch_modules_addr): Removed.
17646 (grub_modbase): New variable.
17647 (grub_machine_init): Set grub_modbase.
17648 * grub-core/kern/mips/loongson/init.c (grub_arch_modules_addr): Removed.
17649 (grub_modbase): New variable.
17650 (grub_machine_init): Set grub_modbase.
17651 * grub-core/kern/mips/qemu_mips/init.c (grub_arch_modules_addr):
17652 Removed.
17653 (grub_modbase): New variable.
17654 (grub_machine_init): Set grub_modbase.
17655 * include/grub/efi/efi.h (grub_efi_modules_addr): New declaration.
17656 * include/grub/kernel.h (grub_arch_modules_addr): Removed.
17657 (grub_module_iterate): Likewise.
17658 (grub_modbase): New variable declaration.
17659 (FOR_MODULES): New macro.
17660
17661 2011-10-16 Vladimir Serbinenko <phcoder@gmail.com>
17662
17663 * configure.ac: Check for __ctzdi2 and __ctzsi2.
17664 * include/grub/libgcc.h: Include __ctzdi2 and __ctzsi2 if present.
17665
17666 2011-10-16 Vladimir Serbinenko <phcoder@gmail.com>
17667
17668 Fix few obvious type discrepancies.
17669
17670 * grub-core/fs/affs.c (grub_affs_read_file): Use grub_off_t for offset.
17671 * grub-core/fs/afs.c (grub_afs_read_file): Likewise.
17672 * grub-core/fs/fshelp.c (grub_fshelp_find_file): Remove leftover
17673 variable.
17674 * grub-core/fs/hfs.c (grub_hfs_read_file): Use grub_off_t for offset
17675 and connected types.
17676 * grub-core/fs/nilfs2.c (grub_nilfs2_read_file): Use grub_off_t for
17677 offset.
17678 (grub_nilfs2_iterate_dir): Use grub_off_t for fpos.
17679 * grub-core/fs/sfs.c (grub_sfs_read_file): Use grub_off_t for offset.
17680 * grub-core/fs/ufs.c (grub_ufs_read_file): Use grub_off_t for offset
17681 and connected types.
17682
17683 2011-10-16 Vladimir Serbinenko <phcoder@gmail.com>
17684
17685 Fix python 3.x incompatibilities.
17686
17687 * gentpl.py: Put brackets around print strings.
17688 * util/import_gcry.py: Open explicitly as utf-8.
17689 Use in instead of has_key.
17690
17691 2011-10-16 Vladimir Serbinenko <phcoder@gmail.com>
17692
17693 * grub-core/fs/xfs.c (grub_xfs_inode): New field fork_offset.
17694 (GRUB_XFS_INO_AGBITS): Make into inline function.
17695 (GRUB_XFS_INO_INOINAG): Likewise.
17696 (GRUB_XFS_INO_AG): Likewise.
17697 (GRUB_XFS_FSB_TO_BLOCK): Likewise.
17698 (GRUB_XFS_EXTENT_OFFSET): Likewise.
17699 (GRUB_XFS_EXTENT_BLOCK): Likewise.
17700 (GRUB_XFS_EXTENT_SIZE): Likewise.
17701 (GRUB_XFS_ROUND_TO_DIRENT): Likewise.
17702 (GRUB_XFS_NEXT_DIRENT): Likewise.
17703 (grub_xfs_read_block): Rewrite the btree parsing. Fixes invalid BMAP.
17704 (grub_xfs_read_file): Fix offset type.
17705
17706 2011-10-15 Robert Millan <rmh@gnu.org>
17707
17708 * util/getroot.c (grub_util_get_grub_dev): Fix OS selection #ifdefs.
17709
17710 2011-10-15 Robert Millan <rmh@gnu.org>
17711
17712 Fix build problem on FreeBSD and GNU/kFreeBSD.
17713
17714 * util/getroot.c [__FreeBSD_kernel__]: Include `<sys/mount.h>'.
17715
17716 2011-10-14 Vladimir Serbinenko <phcoder@gmail.com>
17717
17718 Fix overflow with >2GiB file on HFS+. >4GiB wasn't tested.
17719
17720 * grub-core/fs/hfsplus.c (grub_hfsplus_btree): Use more appropriate
17721 types.
17722 (grub_hfsplus_btree_recoffset): Likewise.
17723 (grub_hfsplus_btree_recptr): Likewise.
17724 (grub_hfsplus_find_block): Likewise.
17725 (grub_hfsplus_btree_search): Likewise.
17726 (grub_hfsplus_read_block): Likewise.
17727 (grub_hfsplus_read_file): Likewise.
17728 (grub_hfsplus_mount): Likewise.
17729 (grub_hfsplus_btree_iterate_node): Likewise.
17730 (grub_hfsplus_btree_search): Likewise.
17731 (grub_hfsplus_iterate_dir): Likewise.
17732 (grub_hfsplus_read): A small code simplification.
17733
17734 2011-10-14 Vladimir Serbinenko <phcoder@gmail.com>
17735
17736 * grub-core/kern/emu/hostdisk.c
17737 (convert_system_partition_to_system_disk): Don't assume that children
17738 of mapper nodes are mapper nodes.
17739
17740 2011-10-14 Vladimir Serbinenko <phcoder@gmail.com>
17741
17742 * grub-core/lib/posix_wrap/ctype.h (isxdigit): Use grub_isxdigit.
17743 * include/grub/misc.h (grub_isxdigit): New function.
17744 * grub-core/video/colors.c (my_isxdigit): Removed. All users
17745 switched to grub_isxdigit.
17746 * grub-core/term/serial.c (grub_serial_find): Fix in case of port
17747 number starting with a letter.
17748
17749 2011-10-09 Robert Millan <rmh@gnu.org>
17750
17751 LVM support for FreeBSD and GNU/kFreeBSD.
17752
17753 * util/lvm.c (grub_util_lvm_isvolume): Enable on FreeBSD and
17754 GNU/kFreeBSD.
17755 (LVM_DEV_MAPPER_STRING): Move from here ...
17756 * include/grub/util/lvm.h (LVM_DEV_MAPPER_STRING): ... to here.
17757 * util/getroot.c: Include `<grub/util/lvm.h>'.
17758 (grub_util_get_dev_abstraction): Enable
17759 grub_util_biosdisk_is_present() on FreeBSD and GNU/kFreeBSD.
17760 Check for LVM abstraction on FreeBSD and GNU/kFreeBSD.
17761 (grub_util_get_grub_dev): Replace "/dev/mapper/" with
17762 `LVM_DEV_MAPPER_STRING'. Enable LVM and mdRAID only on platforms that
17763 support it.
17764 * util/grub-setup.c (main): Check for LVM also on FreeBSD and
17765 GNU/kFreeBSD.
17766 * util/grub.d/10_kfreebsd.in: Load `geom_linux_lvm' kernel module
17767 when LVM abstraction is required for ${GRUB_DEVICE}.
17768
17769 2011-10-06 Szymon Janc <szymon@janc.net.pl>
17770
17771 Add support for LZO compression in GRUB:
17772 - import of minilzo library,
17773 - LZO decompression for btrfs,
17774 - lzop files decompression.
17775
17776 * grub-core/io/lzopio.c: New file.
17777 * grub-core/lib/adler32.c: Likewise.
17778 * grub-core/lib/minilzo/lzoconf.h: Likewise.
17779 * grub-core/lib/minilzo/lzodefs.h: Likewise.
17780 * grub-core/lib/minilzo/minilzo.c: Likewise.
17781 * grub-core/lib/minilzo/minilzo.h: Likewise.
17782 * Makefile.util.def (libgrubmods.a): Add grub-core/io/lzopio.c,
17783 grub-core/lib/adler32.c, grub-core/io/lzopio.c,
17784 grub-core/lib/minilzo/minilzo.c to common.
17785 * Makefile.util.def (libgrubmods.a): Add flags required by minilzo to
17786 cflags in cppflags.
17787 * grub-core/Makefile.core.def (btrfs): Likewise.
17788 * grub-core/Makefile.core.def (lzopio): New module.
17789 (adler32): Likewise.
17790 * grub-core/fs/btrfs.c: Include minilzo.h.
17791 (GRUB_BTRFS_COMPRESSION_LZO): New define.
17792 (GRUB_BTRFS_LZO_BLOCK_SIZE): Likewise.
17793 (GRUB_BTRFS_LZO_BLOCK_MAX_CSIZE): Likewise.
17794 (grub_btrfs_lzo_decompress): New function.
17795 (grub_btrfs_extent_read): Add support for LZO compression type.
17796 * include/grub/types.h (GRUB_UCHAR_MAX): New define.
17797 (GRUB_USHRT_MAX): Likewise.
17798 (GRUB_UINT_MAX): Likewise.
17799 * grub-core/lib/posix_wrap/limits.h (USHRT_MAX): Likewise.
17800 (UINT_MAX): Likewise.
17801 (CHAR_BIT): Likewise.
17802 * grub-core/lib/posix_wrap/sys/types.h (ULONG_MAX): Moved to
17803 grub-core/lib/posix_wrap/limits.h
17804 (UCHAR_MAX): Likewise.
17805 * include/grub/file.h (grub_file_filter_id): New compression filter
17806 GRUB_FILE_FILTER_LZOPIO.
17807 * include/grub/file.h (grub_file_filter_id): Set
17808 GRUB_FILE_FILTER_LZOPIO as GRUB_FILE_FILTER_COMPRESSION_LAST.
17809 * include/grub/types.h (grub_get_unaligned16): New function.
17810 (grub_get_unaligned32): Likewise.
17811 (grub_get_unaligned64): Likewise.
17812 * util/import_gcry.py (cryptolist): Add adler32.
17813
17814 2011-10-05 Vladimir Serbinenko <phcoder@gmail.com>
17815
17816 * grub-core/Makefile.core.def: Eliminate rarely used emu_condition. This
17817 in perspective decreases the complexity of build system and fixes
17818 compilation right now.
17819
17820 2011-10-01 Ales Nesrsta <starous@volny.cz>
17821
17822 * grub-core/bus/usb/uhci.c: Changes made by Rock Cui - thanks!
17823 (fixed problem related to using UHCI with coreboot).
17824
17825 2011-08-25 BVK Chaitanya <bvk.groups@gmail.com>
17826
17827 * gentpl.py: Use Autogen macros so that the output template file
17828 (Makefile.tpl) size is reduced.
17829
17830 2011-09-29 Mads Kiilerich <mads@kiilerich.com>
17831
17832 * grub-core/Makefile.core.def (kernel): Add kern/i386/int.S to
17833 extra_dist.
17834
17835 2011-09-29 Mario Limonciello <mario_limonciello@dell.com>
17836
17837 * util/misc.c (grub_util_get_disk_size) [__MINGW32__]: Strip trailing
17838 slashes on PHYSICALDRIVE%d paths when making Windows CreateFile calls.
17839
17840 2011-09-29 Mario Limonciello <mario_limonciello@dell.com>
17841
17842 * grub-core/kern/emu/misc.c (canonicalize_file_name) [__MINGW32__]: Use
17843 _fullpath.
17844
17845 2011-09-29 Mario Limonciello <mario_limonciello@dell.com>
17846
17847 Remove extra declaration of sleep for mingw32.
17848
17849 * util/misc.c (sleep) [__MINGW32__]: Removed.
17850 * include/grub/util/misc.h (sleep) [__MINGW32__]: Likewise.
17851
17852 2011-09-28 Grégoire Sutre <gregoire.sutre@gmail.com>
17853
17854 * include/grub/bsdlabel.h (grub_partition_bsd_disk_label): Add fields
17855 type and packname.
17856 * include/grub/i386/netbsd_bootinfo.h (NETBSD_BTINFO_BOOTDISK):
17857 Resurrected.
17858 (NETBSD_BTINFO_BOOTWEDGE): New definition.
17859 (grub_netbsd_btinfo_bootwedge): New struct.
17860 * grub-core/loader/i386/bsd.c (grub_netbsd_add_boot_disk_and_wedge):
17861 New function.
17862 (grub_cmd_netbsd): Call grub_netbsd_add_boot_disk_and_wedge.
17863
17864 2011-09-28 Thomas Haller <thomas.haller@fen-net.de>
17865
17866 * grub-core/loader/multiboot_elfxx.c (Elf_Shdr): Set according to
17867 loader.
17868
17869 2011-09-28 Andreas Born <futur.andy@googlemail.com>
17870
17871 Fix incorrect identifiers in bash-completion.
17872
17873 * util/bash-completion.d/grub-completion.bash.in
17874 (_grub_mkpasswd-pbkdf2): Rename to ...
17875 (_grub_mkpasswd_pbkdf2): ... this. All users updated.
17876 (_grub_script-check): Rename to ...
17877 (_grub_script_check): ... this. All users updated.
17878
17879 2011-09-28 Vladimir Serbinenko <phcoder@gmail.com>
17880
17881 * grub-core/kern/emu/hostdisk.c (grub_util_biosdisk_is_floppy):
17882 Return 0 if disk isn't biosdisk.
17883
17884 2011-09-17 Grégoire Sutre <gregoire.sutre@gmail.com>
17885
17886 * Makefile.util.def (grub-mkrelpath): Add LIBUTIL for getrawpartition(3)
17887 on NetBSD.
17888 * Makefile.util.def (grub-fstest): Likewise.
17889
17890 2011-09-17 Grégoire Sutre <gregoire.sutre@gmail.com>
17891
17892 * grub-core/kern/emu/hostdisk.c (grub_util_get_fd_sectors) [__NetBSD__]:
17893 Get sector size from disk label.
17894
17895 2011-09-05 Colin Watson <cjwatson@ubuntu.com>
17896
17897 * util/grub-mkconfig_lib.in (grub_file_is_not_garbage): Return 1 for
17898 */README* as well as README*.
17899 Reported by: Axel Beckert.
17900
17901 2011-08-23 Vladimir Serbinenko <phcoder@gmail.com>
17902
17903 * grub-core/kern/mips/loongson/init.c (grub_machine_init): Handle the
17904 case of less than 256 MiB of RAM.
17905
17906 2011-08-23 Vladimir Serbinenko <phcoder@gmail.com>
17907
17908 * grub-core/commands/wildcard.c (make_regex): Handle @.
17909
17910 2011-08-23 Vladimir Serbinenko <phcoder@gmail.com>
17911
17912 * util/grub-install.in: Move cryptodisk logic to appropriate place.
17913
17914 2011-08-21 Szymon Janc <szymon@janc.net.pl>
17915
17916 * acinclude.m4: Use AC_LANG_PROGRAM macro to generate source code for
17917 AC_LANG_CONFTEST macros.
17918
17919 2011-08-20 Szymon Janc <szymon@janc.net.pl>
17920
17921 Add grub-fstest option to uncompress data for commands.
17922
17923 * util/grub-fstest.c (uncompress): New var.
17924 (options): New option -u.
17925
17926 2011-08-20 Szymon Janc <szymon@janc.net.pl>
17927
17928 * grub-core/loader/i386/linux.c (grub_linux_setup_video): Add
17929 GRUB_VIDEO_DRIVER_RADEON_FULOONG2E to switch case statement.
17930
17931 2011-08-20 Szymon Janc <szymon@janc.net.pl>
17932
17933 * grub-core/io/gzio.c (grub_gzio_open): Always return original io if
17934 file type was not recognized correctly (not gzip or corrupted).
17935
17936 2011-08-19 Vladimir Serbinenko <phcoder@gmail.com>
17937
17938 * grub-core/kern/mips/loongson/init.c (grub_reboot): Reboot Fuloong.
17939 * include/grub/cs5536.h (GRUB_CS5536_MSR_DIVIL_RESET): New definition.
17940
17941 2011-08-19 Vladimir Serbinenko <phcoder@gmail.com>
17942
17943 * grub-core/Makefile.core.def (kernel): Add video/radeon_fuloong2e.c on
17944 loongson.
17945 * grub-core/kern/mips/loongson/init.c (grub_machine_init): Init
17946 video_radeon_fuloong2e.
17947 * grub-core/video/radeon_fuloong2e.c: New file.
17948 * include/grub/video.h (grub_video_id_t): Add new ID
17949 GRUB_VIDEO_DRIVER_RADEON_FULOONG2E.
17950
17951 2011-08-19 Vladimir Serbinenko <phcoder@gmail.com>
17952
17953 * include/grub/mips/loongson.h (GRUB_CPU_LOONGSON_COP0_PRID): New
17954 define.
17955 * grub-core/kern/mips/loongson/init.c (grub_machine_init): Check
17956 that PRID matches the detected subplatform and reset the subplatform
17957 if it doesn't.
17958
17959 2011-08-19 Vladimir Serbinenko <phcoder@gmail.com>
17960
17961 * grub-core/kern/misc.c (grub_vprintf): Fix a bug on malloc failure.
17962
17963 2011-08-19 Vladimir Serbinenko <phcoder@gmail.com>
17964
17965 Fix PCI iterating on functions >= 4.
17966
17967 * grub-core/bus/pci.c (grub_pci_iterate): Remove useless ghost skipping.
17968 * include/grub/mips/loongson/pci.h (GRUB_LOONGSON_OHCI_GHOST_FUNCTION):
17969 Removed.
17970 (GRUB_LOONGSON_EHCI_GHOST_FUNCTION): Likewise.
17971 (grub_pci_read): Fix bitmask.
17972 (grub_pci_read_word): Likewise.
17973 (grub_pci_read_byte): Likewise.
17974 (grub_pci_write): Likewise.
17975 (grub_pci_write_word): Likewise.
17976 (grub_pci_write_byte): Likewise.
17977
17978 2011-08-19 Vladimir Serbinenko <phcoder@gmail.com>
17979
17980 * configure.ac: Don't impose march=loongson2f on loongson platform. (It
17981 can still be specified in TARGET_CFLAGS)
17982
17983 2011-08-19 Vladimir Serbinenko <phcoder@gmail.com>
17984
17985 Rename Fuloong into Fuloong 2F. Add new ID for Fuloong2E.
17986
17987 * grub-core/Makefile.core.def (fwstart_fuloong): Rename fwstart_fuloong
17988 into fwstart_fuloong2f. Use boot/mips/loongson/fuloong2f.S.
17989 * grub-core/boot/mips/loongson/fuloong.S: Rename to ...
17990 * grub-core/boot/mips/loongson/fuloong2f.S: ... this.
17991 (FULOONG): Rename to ...
17992 (FULOONG2F): ... this. All users updated.
17993 * grub-core/boot/mips/startup_raw.S (machtype_fuloong_str): Rename to
17994 (machtype_fuloong2f_str): ... this.
17995 (machtype_fuloong2e_str): New string.
17996 Check for machtype_fuloong2e_str.
17997 * grub-core/loader/mips/linux.c (loongson_machtypes)
17998 [GRUB_MACHINE_MIPS_LOONGSON]: Add GRUB_ARCH_MACHINE_FULOONG2E.
17999 * grub-core/term/serial.c (loongson_defserial)
18000 [GRUB_MACHINE_MIPS_LOONGSON]: New array.
18001 (grub_serial_register) [GRUB_MACHINE_MIPS_LOONGSON]: Use
18002 loongson_defserial.
18003 * include/grub/mips/loongson/kernel.h (GRUB_ARCH_MACHINE_FULOONG):
18004 Rename to ...
18005 (GRUB_ARCH_MACHINE_FULOONG2F): ... this.
18006 (GRUB_ARCH_MACHINE_FULOONG2E): New const.
18007 * util/grub-mkimage.c (image_target_desc): Rename IMAGE_FULOONG_FLASH
18008 to IMAGE_FULOONG2F_FLASH. All users updated.
18009 (image_targets): Rename images.
18010 * util/grub-mkstandalone.in: Accept fuloong2f and fuloong2e.
18011
18012 2011-08-19 Szymon Janc <szymon@janc.net.pl>
18013
18014 Make enable of disk cache statistics code configurable.
18015
18016 * configure.ac: --enable-cache-stats added.
18017 * config.h.in (DISK_CACHE_STATS): New define.
18018 * grub-core/Makefile.core.def (cacheinfo): New command.
18019 * include/grub/disk.h(grub_disk_cache_get_performance): New function.
18020 * grub-core/commands/cacheinfo.c: New file.
18021 * grub-core/commands/minicmd.c (grub_rescue_cmd_info): Updated and
18022 moved to cacheinfo.c.
18023 * grub-core/kern/disk.c: Use DISK_CACHE_STATS to disable disk cache
18024 debug code.
18025 * include/grub/disk.h: Likewise.
18026
18027 2011-08-19 Szymon Janc <szymon@janc.net.pl>
18028
18029 * Makefile.am (AUTOMAKE_OPTIONS): = Added -Wno-portability flag.
18030 * grub-core/Makefile.am: Likewise.
18031
18032 2011-08-16 Vladimir Serbinenko <phcoder@gmail.com>
18033
18034 * grub-core/kern/emu/hostdisk.c (grub_util_biosdisk_iterate): Skip with
18035 non-zero pull.
18036
18037 2011-08-16 Vladimir Serbinenko <phcoder@gmail.com>
18038
18039 * grub-core/fs/jfs.c (grub_jfs_read_file): New parameter ino.
18040 All users updated.
18041 (grub_jfs_lookup_symlink): Use correct starting inode.
18042
18043 2011-08-16 Vladimir Serbinenko <phcoder@gmail.com>
18044
18045 * util/grub-setup.c (main): Add missing gcry initialisation.
18046
18047 2011-08-16 Vladimir Serbinenko <phcoder@gmail.com>
18048
18049 Don't accept text modes on EFI when booting Linux.
18050
18051 * grub-core/loader/i386/linux.c (ACCEPTS_PURE_TEXT): New define.
18052 (grub_linux_boot) [!ACCEPTS_PURE_TEXT]: Restrict to graphics modes.
18053
18054 2011-08-15 Mario Limonciello <mario_limonciello@dell.com>
18055 2011-08-15 Colin Watson <cjwatson@ubuntu.com>
18056
18057 * util/grub-probe.c (probe): Canonicalise the path argument, fixing
18058 use of "/path/.." as in grub-install for EFI as well as handling
18059 symlinks correctly.
18060 Fixes Debian bug #637768.
18061
18062 2011-08-15 Colin Watson <cjwatson@ubuntu.com>
18063
18064 * util/grub-probe.c: Remove duplicate #include.
18065
18066 2011-08-10 Robert Millan <rmh@gnu.org>
18067
18068 Detect LSI MegaRAID SAS (`mfi') devices on GNU/kFreeBSD.
18069
18070 * util/deviceiter.c [__FreeBSD_kernel__] (get_mfi_disk_name): New
18071 function.
18072 [__FreeBSD_kernel__] (grub_util_iterate_devices): Scan for mfi
18073 (/dev/mfid[0-9]+) devices using get_mfi_disk_name().
18074
18075 2011-08-03 Robert Millan <rmh@gnu.org>
18076
18077 * include/grub/zfs/zap_leaf.h (typedef union zap_leaf_chunk): Mark
18078 la_array as packed.
18079 Reported by: Zachary Bedell
18080
18081 2011-07-26 Colin Watson <cjwatson@ubuntu.com>
18082
18083 * configure.ac: The Loongson port requires grub-mkfont due to its
18084 use of -DUSE_ASCII_FAILBACK. Raise an error if it is not going to
18085 be built.
18086
18087 2011-07-26 Colin Watson <cjwatson@ubuntu.com>
18088
18089 * util/grub-install.in: Don't source grub-mkconfig_lib until after
18090 processing arguments (otherwise help2man fails when GRUB has not yet
18091 been installed).
18092
18093 2011-07-25 Vladimir Serbinenko <phcoder@gmail.com>
18094
18095 New script grub-mkstandalone.
18096
18097 * Makefile.util.def (grub-mkstandalone): New script.
18098 * docs/man/grub-mkstandalone.h2m: New file.
18099 * util/grub-mkstandalone.in: Likewise.
18100
18101 2011-07-25 Vladimir Serbinenko <phcoder@gmail.com>
18102
18103 Support ATA disks with 4K sectors.
18104
18105 * include/grub/ata.h (grub_ata): New member log_sector_size.
18106 * grub-core/disk/ata.c (grub_ata_dumpinfo): Show sector size.
18107 (grub_ata_identify): Read sector size.
18108 (grub_ata_readwrite): Use log_sector_size rather than hardcoded value.
18109
18110 2011-07-25 Vladimir Serbinenko <phcoder@gmail.com>
18111
18112 * util/grub-install.in: Don't use uhci outside of x86.
18113
18114 2011-07-25 Vladimir Serbinenko <phcoder@gmail.com>
18115
18116 * util/grub-mkrescue.in: Add missing quotes.
18117
18118 2011-07-25 Vladimir Serbinenko <phcoder@gmail.com>
18119
18120 * grub-core/normal/menu.c (grub_menu_execute_entry): Fix NULL
18121 dereference.
18122
18123 2011-07-23 Vladimir Serbinenko <phcoder@gmail.com>
18124
18125 * grub-core/disk/pata.c (grub_pata_readwrite): Add missing wait.
18126
18127 2011-07-23 Vladimir Serbinenko <phcoder@gmail.com>
18128
18129 * include/grub/video.h: add missing EXPORT_FUND on
18130 grub_video_edid_checksum and grub_video_edid_preferred_mode.
18131
18132 2011-07-23 Vladimir Serbinenko <phcoder@gmail.com>
18133
18134 * include/grub/mips/kernel.h: Fix define conflict.
18135
18136 2011-07-23 Vladimir Serbinenko <phcoder@gmail.com>
18137
18138 * grub-core/kern/mips/cache_flush.S [GRUB_MACHINE_MIPS_LOONGSON]: Flush
18139 all four ways.
18140
18141 2011-07-21 Colin Watson <cjwatson@ubuntu.com>
18142
18143 Preferred resolution detection for VBE.
18144
18145 * grub-core/video/video.c (grub_video_edid_checksum): New function.
18146 (grub_video_edid_preferred_mode): Likewise. Try EDID followed by
18147 the Flat Panel extension, in line with the X.org VESA driver.
18148 * grub-core/video/i386/pc/vbe.c (grub_vbe_bios_get_flat_panel_info):
18149 New function.
18150 (grub_vbe_bios_get_ddc_capabilities): Likewise.
18151 (grub_vbe_bios_read_edid): Likewise.
18152 (grub_vbe_get_preferred_mode): Likewise.
18153 (grub_video_vbe_setup): When the mode is "auto", try to get the
18154 preferred mode from VBE, and use the largest mode that is no larger
18155 than the preferred mode (some BIOSes expose a preferred mode that is
18156 not in their mode list!). If this fails, fall back to 640x480 as a
18157 safe conservative choice.
18158 (grub_video_vbe_get_edid): New function.
18159 (grub_video_vbe_adapter): Add get_edid.
18160 * include/grub/video.h (struct grub_vbe_edid_info): New structure.
18161 (struct grub_video_adapter): Add get_edid.
18162 (grub_video_edid_checksum): Add prototype.
18163 (grub_video_edid_preferred_mode): Likewise.
18164 * include/grub/i386/pc/vbe.h (struct grub_vbe_flat_panel_info): New
18165 structure.
18166
18167 * grub-core/commands/videoinfo.c (print_edid): New function.
18168 (grub_cmd_videoinfo): Print EDID if available.
18169
18170 * util/grub.d/00_header.in (GRUB_GFXMODE): Default to "auto". This
18171 is more appropriate on a wider range of platforms than 640x480.
18172 * docs/grub.texi (Simple configuration): Update GRUB_GFXMODE
18173 documentation.
18174
18175 2011-07-10 Vladimir Serbinenko <phcoder@gmail.com>
18176
18177 * util/grub-install.in: Recognize ESP mounted at /boot/EFI.
18178
18179 2011-07-10 Vladimir Serbinenko <phcoder@gmail.com>
18180
18181 * po/POTFILES.in: Regenerate.
18182
18183 2011-07-10 Vladimir Serbinenko <phcoder@gmail.com>
18184
18185 * grub-core/disk/efi/efidisk.c (grub_efidisk_get_device_name): Fix
18186 incorrect memory usage.
18187
18188 2011-07-10 Vladimir Serbinenko <phcoder@gmail.com>
18189
18190 * util/grub-install.in: Source grub-mkconfig_lib.
18191
18192 2011-07-08 Vladimir Serbinenko <phcoder@gmail.com>
18193
18194 Remove getroot.c from core on emu platform.
18195
18196 * grub-core/Makefile.core.def (kernel): Remove kern/emu/getroot.c and
18197 kern/emu/raid.c.
18198 * grub-core/kern/emu/main.c (main): Don't try to guess root device. It's
18199 useless.
18200 * grub-core/kern/emu/misc.c (get_win32_path): Moved from here...
18201 * util/getroot.c (get_win32_path): ... here.
18202 * grub-core/kern/emu/misc.c (fini_libzfs): Moved from here...
18203 * util/getroot.c (fini_libzfs): ... here.
18204 * grub-core/kern/emu/misc.c (grub_get_libzfs_handle): Moved from here...
18205 * util/getroot.c (grub_get_libzfs_handle): ... here.
18206 * grub-core/kern/emu/misc.c (grub_find_zpool_from_dir):
18207 Moved from here...
18208 * util/getroot.c (grub_find_zpool_from_dir): ... here.
18209 * grub-core/kern/emu/misc.c
18210 (grub_make_system_path_relative_to_its_root): Moved from here...
18211 * util/getroot.c (grub_make_system_path_relative_to_its_root): ... here.
18212 * grub-core/kern/emu/getroot.c: Moved from here ...
18213 * util/getroot.c: ... here. All users updated.
18214 * grub-core/kern/emu/raid.c: Moved from here ...
18215 * util/raid.c: ... here. All users updated.
18216
18217 2011-07-08 Vladimir Serbinenko <phcoder@gmail.com>
18218
18219 * po/POTFILES.in: Regenerate.
18220
18221 2011-07-07 Vladimir Serbinenko <phcoder@gmail.com>
18222
18223 Fix compilation on GNU/Linux.
18224
18225 * grub-core/kern/emu/getroot.c (grub_util_pull_device) [!FreeBSD]:
18226 Disable geli.
18227 (grub_util_get_grub_dev) [!FreeBSD]: Likewise.
18228 (grub_util_pull_device) [HAVE_DEVICE_MAPPER]: Fix const and func name.
18229 * grub-core/disk/cryptodisk.c (grub_cryptodisk_open): Fix proto.
18230
18231 2011-07-07 Vladimir Serbinenko <phcoder@gmail.com>
18232 2011-07-07 Michael Gorven <michael@gorven.za.net>
18233 2011-07-07 Clemens Fruhwirth <clemens@endorphin.org>
18234
18235 LUKS and GELI support.
18236
18237 * Makefile.util.def (libgrubkern.a): Add grub-core/lib/crypto.c,
18238 grub-core/disk/luks.c, grub-core/disk/geli.c,
18239 grub-core/disk/cryptodisk.c, grub-core/disk/AFSplitter.c,
18240 grub-core/lib/pbkdf2.c, grub-core/commands/extcmd.c,
18241 grub-core/lib/arg.c.
18242 (libgrubmods.a): Remove gcrypts cflags and cppflags.
18243 Remove grub-core/commands/extcmd.c, grub-core/lib/arg.c,
18244 grub-core/lib/crypto.c, grub-core/lib/libgcrypt-grub/cipher/sha512.c,
18245 grub-core/lib/libgcrypt-grub/cipher/crc.c and grub-core/lib/pbkdf2.c.
18246 (grub-bin2h): Add libgcry.a.
18247 (grub-mkimage): Likewise.
18248 (grub-mkrelpath): Likewise.
18249 (grub-script-check): Likewise.
18250 (grub-editenv): Likewise.
18251 (grub-mkpasswd-pbkdf2): Likewise.
18252 (grub-pe2elf): Likewise.
18253 (grub-fstest): Likewise.
18254 (grub-mkfont): Likewise.
18255 (grub-mkdevicemap): Likewise.
18256 (grub-probe): Likewise.
18257 (grub-ofpath): Likewise.
18258 (grub-mklayout): Likewise.
18259 (example_unit_test): Likewise.
18260 (grub-menulst2cfg): Likewise.
18261 * autogen.sh (UTIL_DEFS): Add Makefile.utilgcry.def.
18262 * grub-core/Makefile.core.def (cryptodisk): New module.
18263 (luks): Likewise.
18264 (geli): Likewise.
18265 * grub-core/disk/AFSplitter.c: New file.
18266 * grub-core/disk/cryptodisk.c: Likewise.
18267 * grub-core/disk/geli.c: Likewise.
18268 * grub-core/disk/luks.c: Likewise.
18269 * grub-core/kern/emu/getroot.c (get_dm_uuid): New function based on
18270 grub_util_is_lvm.
18271 (grub_util_get_dm_abstraction): New function.
18272 (grub_util_follow_gpart_up): Likewise.
18273 (grub_util_get_geom_abstraction): Likewise.
18274 (grub_util_get_dev_abstraction): Use new functions.
18275 (grub_util_pull_device): Pull GELI and LUKS.
18276 (grub_util_get_grub_dev): Handle LUKS and GELI.
18277 * grub-core/kern/emu/hostdisk.c (grub_util_get_fd_sectors): New function.
18278 (grub_util_biosdisk_open): Use grub_util_get_fd_sectors.
18279 (follow_geom_up): Removed.
18280 (grub_util_fd_seek): New function.
18281 (open_device): Use grub_util_fd_seek.
18282 (nread): Rename to ..
18283 (grub_util_fd_read): ... this. All users updated.
18284 * grub-core/lib/crypto.c (grub_crypto_ecb_decrypt): A better prototype.
18285 (grub_crypto_cbc_decrypt): Likewise.
18286 (grub_crypto_hmac_write): Likewise.
18287 (grub_crypto_hmac_buffer): Likewise.
18288 (grub_password_get): Extend to util.
18289 * include/grub/crypto.h (gcry_cipher_spec) [GRUB_UTIL]:
18290 New member modname.
18291 (gcry_md_spec) [GRUB_UTIL]: Likewise.
18292 * include/grub/cryptodisk.h: New file.
18293 * include/grub/disk.h (grub_disk_dev_id): Rename LUKS to CRYPTODISK.
18294 * include/grub/emu/getroot.h (grub_dev_abstraction_types): Add
18295 LUKS and GELI.
18296 (grub_util_follow_gpart_up): New proto.
18297 * include/grub/emu/hostdisk.h (grub_util_fd_seek): Likewise.
18298 (grub_util_fd_read): Likewise.
18299 (grub_cryptodisk_cheat_mount): Likewise.
18300 (grub_util_cryptodisk_print_uuid): Likewise.
18301 (grub_util_get_fd_sectors): Likewise.
18302 * util/grub-fstest.c (mount_crypt): New var.
18303 (fstest): Mount crypto if requested.
18304 (options): New option -C.
18305 (argp_parser): Parse -C.
18306 (main): Init and fini gcry.
18307 * util/grub-install.in: Support cryptodisk install.
18308 * util/grub-mkconfig.in: Export GRUB_ENABLE_CRYPTODISK.
18309 * util/grub-mkconfig_lib.in (is_path_readable_by_grub): Support
18310 cryptodisk.
18311 (prepare_grub_to_access_device): Likewise.
18312 * util/grub-mkpasswd-pbkdf2.c (main): Use grub_password_get.
18313 * util/grub-probe.c (probe_partmap): Support cryptodisk UUID probe.
18314 (probe_cryptodisk_uuid): New function.
18315 (probe_abstraction): Likewise.
18316 (probe): Use new functions.
18317 * util/import_gcry.py: Create Makefile.utilgcry.def.
18318 Add modname member.
18319
18320 2011-07-07 Vladimir Serbinenko <phcoder@gmail.com>
18321
18322 Lazy device scanning.
18323
18324 * Makefile.util.def (libgrubkern.a): Add grub-core/kern/emu/raid.c.
18325 (grub-setup): Remove util/raid.c.
18326 * grub-core/Makefile.core.def (kernel): Add kern/emu/raid.c on emu.
18327 * grub-core/disk/lvm.c (scan_depth): New variable.
18328 (grub_lvm_iterate): Rescan if necessary.
18329 (find_lv): New function based on grub_lvm_open.
18330 (grub_lvm_open): Use find_lv. Rescan on error.
18331 (is_node_readable): New function.
18332 (is_lv_readable): Likewise.
18333 (grub_lvm_scan_device): Skip already found disks.
18334 (do_lvm_scan): New function. Move grub_lvm_scan_device inside of it.
18335 Stop if searched device is found and readable.
18336 * grub-core/disk/raid.c (inscnt): New variable.
18337 (scan_depth): Likewise.
18338 (scan_devices): New function based on grub_raid_register. Abort if
18339 looked for device is found.
18340 (grub_raid_iterate): Rescan if needed.
18341 (find_array): NEw function based on -grub_raid_open.
18342 (grub_raid_open): Use find_array and rescan.
18343 (insert_array): Set became_readable_at.
18344 * grub-core/kern/disk.c (grub_disk_dev_iterate): Iterate though "pull.
18345 * grub-core/kern/emu/getroot.c (grub_util_open_dm) [HAVE_DEVICE_MAPPER]:
18346 New function.
18347 (grub_util_is_lvm) [HAVE_DEVICE_MAPPER]: Use grub_util_open_dm.
18348 (grub_util_pull_device): New function.
18349 (grub_util_get_grub_dev): Call grub_util_pull_device.
18350 * util/raid.c: Moved to ..
18351 * grub-core/kern/emu/raid.c: ... here.
18352 (grub_util_raid_getmembers): New parameter "bootable".
18353 All users updated. Support 1.x.
18354 * include/grub/ata.h (grub_ata_dev): Change iterate prototype.
18355 All users updated.
18356 * include/grub/disk.h (grub_disk_pull_t): New enum.
18357 (grub_disk_dev): Change iterate prototype.
18358 All users updated.
18359 * include/grub/emu/getroot.h (grub_util_raid_getmembers) [__linux__]:
18360 New proto.
18361 * include/grub/emu/hostdisk.h (grub_util_pull_device): Likewise.
18362 * include/grub/lvm.h (grub_lvm_lv): New members fullname and compatname.
18363 * include/grub/raid.h (grub_raid_array): New member became_readable_at.
18364 * include/grub/scsi.h (grub_scsi_dev): Change iterate prototype.
18365 All users updated.
18366 * include/grub/util/raid.h: Removed.
18367
18368 2011-07-06 Vladimir Serbinenko <phcoder@gmail.com>
18369
18370 * po/POTFILES.in: Regenerate.
18371
18372 2011-07-06 Vladimir Serbinenko <phcoder@gmail.com>
18373
18374 Unify sparc init with other ieee1275.
18375
18376 * grub-core/Makefile.core.def (kernel): Use kern/ieee1275/init.c
18377 instead of kern/sparc64/ieee1275/init.c.
18378 * grub-core/kern/ieee1275/cmain.c (grub_ieee1275_find_options)
18379 [__sparc__]: Set GRUB_IEEE1275_FLAG_NO_PARTITION_0.
18380 * grub-core/kern/ieee1275/init.c [__sparc__]: Include
18381 grub/machine/kernel.h.
18382 (grub_ieee1275_original_stack) [__sparc__]: New variable.
18383 (grub_claim_heap) [__sparc__]: Use sparc version.
18384 (grub_machine_init): Moved args parsing to
18385 (grub_parse_cmdline): ...this.
18386 * grub-core/kern/sparc64/ieee1275/init.c: Removed.
18387 * include/grub/offsets.h (GRUB_KERNEL_SPARC64_IEEE1275_MOD_GAP):
18388 New definition.
18389 (GRUB_KERNEL_SPARC64_IEEE1275_MOD_ALIGN): Likewise.
18390
18391 Move BOOTP to separate file.
18392
18393 * grub-core/Makefile.core.def (net): Add net/bootp.c.
18394 * grub-core/net/net.c: Move all BOOTP functions to
18395 * grub-core/net/bootp.c: ... here.
18396
18397 Use frame interface on PXE.
18398
18399 * grub-core/Makefile.core.def (pxecmd): Removed.
18400 (pxe): Use net/drivers/i386/pc/pxe.c rather than net/i386/pc/pxe.c.
18401 * grub-core/commands/i386/pc/pxecmd.c: Removed.
18402 * grub-core/i386/pc/pxe.c: Moved from here ...
18403 * grub-core/net/i386/pc/pxe.c: ... here. Rewritten.
18404 * grub-core/net/net.c (grub_net_open_real): Handle old pxe syntax.
18405 * include/grub/i386/pc/pxe.h (grub_pxe_unload): Removed.
18406
18407 EFI network support.
18408
18409 * grub-core/Makefile.core.def (efinet): New module.
18410 * grub-core/disk/efi/efidisk.c (compare_device_paths): Moved from
18411 here...
18412 * grub-core/kern/efi/efi.c (grub_efi_compare_device_paths): ... here.
18413 All users updated.
18414 * grub-core/kern/efi/init.c (grub_efi_net_config): New variable.
18415 (grub_machine_get_bootlocation): Call grub_efi_net_config if needed.
18416 * grub-core/kern/x86_64/efi/callwrap.S (efi_wrap_7): New function.
18417 * grub-core/net/drivers/efi/efinet.c: New file.
18418 * include/grub/efi/efi.h (grub_efi_compare_device_paths): New proto.
18419 (grub_efi_net_config): New extern var.
18420
18421 Various cleanups and bugfixes.
18422
18423 * grub-core/disk/efi/efidisk.c (grub_efidisk_open): Fix off-by-one
18424 error.
18425 (grub_efidisk_get_device_name): Unify similar codepaths. Accept whole
18426 disk declared as partition.
18427 * grub-core/disk/ieee1275/ofdisk.c (grub_ofdisk_open): Fix memory
18428 leak on failure.
18429 * grub-core/kern/dl.c (grub_dl_load_file): Fix memory leak.
18430 * grub-core/kern/mm.c (grub_debug_malloc): Don't use unsupported %zx.
18431 (grub_debug_zalloc): Likewise.
18432 (grub_debug_realloc): Likewise.
18433 (grub_debug_memalign): Likewise.
18434 * grub-core/net/arp.c (grub_net_arp_receive): IPv4 is 4-byte wide.
18435 Check that target is IPv4.
18436 * grub-core/net/drivers/ieee1275/ofnet.c (grub_ofnet_findcards): Use
18437 local-mac-address as fallback.
18438 * grub-core/net/ethernet.c (grub_net_recv_ethernet_packet): Prevent
18439 memory leak.
18440 * grub-core/net/ip.c (ipchksum): Rename to ...
18441 (grub_net_ip_chksum): ... this. All users updated.
18442 (grub_net_recv_ip_packets): Special handling for DHCP.
18443 * util/grub-mkimage.c (generate_image): Zero-out aout header.
18444
18445 Unify prefix handling
18446
18447 * grub-core/kern/efi/init.c (grub_efi_set_prefix): Revamped into ...
18448 (grub_machine_get_bootlocation): ... this.
18449 * grub-core/kern/emu/main.c (grub_machine_set_prefix): Revamped into ...
18450 (grub_machine_get_bootlocation): ... this.
18451 (grub_prefix): New variable.
18452 (prefix): Removed.
18453 (root_dev): New variable.
18454 (dir): Likewise.
18455 (main): Use new variables.
18456 * grub-core/kern/i386/coreboot/init.c (grub_machine_set_prefix):
18457 Revamped into ...
18458 (grub_machine_get_bootlocation): ... this.
18459 * grub-core/kern/i386/efi/init.c (grub_machine_set_prefix): Removed.
18460 * grub-core/kern/i386/pc/init.c (make_install_device): Revamped into ...
18461 (grub_machine_get_bootlocation): ... this.
18462 (grub_machine_set_prefix): Removed.
18463 * grub-core/kern/ia64/efi/init.c (grub_machine_set_prefix): Removed.
18464 * grub-core/kern/ieee1275/init.c (grub_machine_set_prefix):
18465 Revamped into ...
18466 (grub_machine_get_bootlocation): ... this.
18467 * grub-core/kern/main.c (grub_set_root_dev): Revamped into ...
18468 (grub_set_prefix_and_root): ... this. All users updated.
18469 * grub-core/kern/mips/init.c (grub_machine_set_prefix):
18470 Revamped into ...
18471 (grub_machine_get_bootlocation): ... this.
18472 * include/grub/kernel.h (grub_machine_set_prefix): Removed.
18473 (grub_machine_get_bootlocation): New proto.
18474 * include/grub/i386/pc/kernel.h (grub_pc_net_config): New var.
18475
18476 Less intrusive and more reliable seek on network implementation.
18477
18478 * grub-core/kern/file.c (grub_file_net_seek): Removed.
18479 (grub_file_seek): Don't call grub_file_net_seek.
18480 * grub-core/net/net.c (grub_net_fs_read): Renamed to ...
18481 (grub_net_fs_read_real): .. this.
18482 (grub_net_seek_real): Use net->offset.
18483 (grub_net_fs_read): Seek if necessary.
18484
18485 Unify IEEE1275 netwotk config with the other platforms.
18486
18487 * grub-core/kern/ieee1275/init.c (grub_ieee1275_net_config):
18488 New variable.
18489 (grub_machine_get_bootlocation): Support network.
18490 * grub-core/kern/ieee1275/openfw.c (grub_ieee1275_parse_args):
18491 Support type and device parsing.
18492 (grub_ieee1275_get_device_type): New function.
18493 * grub-core/net/drivers/ieee1275/ofnet.c (grub_getbootp_real): Revamped
18494 into ...
18495 (grub_ieee1275_net_config_real): ... this.
18496 (grub_ofnet_probecards): Removed.
18497 * grub-core/Makefile.am (KERNEL_HEADER_FILES): Remove ofnet.h.
18498 * include/grub/ieee1275/ofnet.h: Removed.
18499 * include/grub/ieee1275/ieee1275.h (grub_ieee1275_net_config): NEw
18500 extern var.
18501 (grub_ieee1275_get_device_type): New function.
18502
18503 Unify network device closing across platforms and make more robust.
18504
18505 * grub-core/kern/ieee1275/init.c (grub_machine_fini): Don't call
18506 grub_grubnet_fini.
18507 * grub-core/net/ethernet.c (send_ethernet_packet): Open card if it isn't
18508 already.
18509 * grub-core/net/net.c (grub_net_network_level_interface_register):
18510 Update num_ifaces.
18511 (grub_net_card_unregister): Close all interfaces.
18512 (receive_packets): Don't poll if no iterfaces are registered.
18513 Open if necessary.
18514 (grub_net_fini_hw): New function.
18515 (grub_net_restore_hw): Likewise.
18516 (fini_hnd): New variable.
18517 (GRUB_MOD_INIT): Register preboot hook.
18518 (GRUB_MOD_FINI): Run and unregister preboot hook.
18519
18520 Poll network cards when idle.
18521
18522 * grub-core/kern/term.c (grub_net_poll_cards_idle): New variable.
18523 (grub_checkkey): Call grub_net_poll_cards_idle if it's not NULL.
18524 * grub-core/net/net.c (receive_packets): Save last poll time.
18525 (grub_net_poll_cards_idle_real): New function.
18526 (GRUB_MOD_INIT): Register grub_net_poll_cards_idle.
18527 (GRUB_MOD_FINI): Unregister grub_net_poll_cards_idle.
18528 * include/grub/kernel.h (grub_poll_cards_idle): New extern variable.
18529
18530 Rename ofnet interfaces.
18531
18532 * grub-core/net/drivers/ieee1275/ofnet.c (find_alias): New function.
18533 (grub_ofnet_findcards): Use ofnet_%s names.
18534
18535 * util/grub-mknetdir.in: Support for EFI and IEEE1275.
18536
18537 Cleanup socket opening.
18538
18539 * grub-core/net/net.c (grub_net_fs_open): Rewritten.
18540 (grub_net_fs_close): Likewise.
18541 (grub_net_fs_read_real): Use eof member.
18542 * include/grub/net/udp.h (+grub_net_udp_open): New proto.
18543 (+grub_net_udp_close): New inline function.
18544
18545 * include/grub/net/tftp.h: Moved to the top of ...
18546 * grub-core/net/tftp.c: ... here.
18547 * include/grub/net/ip.h: Moved mostly to the top of ...
18548 * grub-core/net/ip.c: ... here.
18549 * include/grub/net/ethernet.h: Moved mostly to the top of ...
18550 * grub-core/net/ethernet.c: ... here.
18551
18552 * grub-core/kern/device.c (grub_device_close): Free device->net->server.
18553
18554 * grub-core/commands/probe.c (grub_cmd_probe): Use protocol name for
18555 FS name.
18556
18557 * include/grub/net/ip.h (ipv4_ini): Removed.
18558 (ipv4_fini): Likewise.
18559
18560 * include/grub/net/ip.h (grub_net_recv_ip_packets): New proto.
18561 (grub_net_send_ip_packets): Likewise.
18562
18563 2011-07-05 Vladimir Serbinenko <phcoder@gmail.com>
18564
18565 * grub-core/kern/i386/qemu/mmap.c (grub_machine_mmap_init): Use new
18566 grub_read_cmos prototype.
18567
18568 2011-07-05 Vladimir Serbinenko <phcoder@gmail.com>
18569
18570 VGA text support in qemu-mips
18571
18572 * grub-core/Makefile.core.def (kernel): Add term/i386/pc/vga_text.c,
18573 term/i386/vga_common.c and kern/vga_init.c on qemu-mips.
18574 * grub-core/kern/mips/qemu_mips/init.c (grub_machine_init): Init vga
18575 text.
18576 * grub-core/kern/i386/qemu/init.c: Renamed to ...
18577 * grub-core/kern/vga_init.c: ... this.
18578 * grub-core/kern/vga_init.c (VGA_ADDR) [__mips__]: Adjust.
18579 (grub_qemu_init_cirrus) [__mips__]: Skip PCI and adjust the I/O base.
18580 * grub-core/term/i386/pc/vga_text.c (VGA_TEXT_SCREEN) [__mips__]:
18581 Adjust.
18582 * include/grub/vga.h [GRUB_MACHINE_MIPS_QEMU_MIPS]: Declare
18583 GRUB_MACHINE_PCI_IO_BASE.
18584
18585 2011-07-05 Vladimir Serbinenko <phcoder@gmail.com>
18586
18587 MIPS qemu flash support.
18588
18589 * grub-core/boot/mips/startup_raw.S [GRUB_MACHINE_MIPS_QEMU_MIPS]: Check
18590 magic.
18591 * grub-core/kern/mips/qemu_mips/init.c (probe_mem): New function.
18592 (grub_machine_init): Probe memory if its size isn't known.
18593 * util/grub-mkimage.c (image_targets): Add flash targets.
18594 (generate_image): Handle flash targets.
18595
18596 2011-07-05 Vladimir Serbinenko <phcoder@gmail.com>
18597
18598 MIPS qemu at_keyboard support.
18599
18600 * gentpl.py (videoinkernel): Add qemu-mips.
18601 * grub-core/Makefile.am (KERNEL_HEADER_FILES): Add necessary headers.
18602 * grub-core/Makefile.core.def (kernel): Add at_keyboard and layout.
18603 * grub-core/kern/mips/qemu_mips/init.c (grub_machine_init): Init new
18604 modules.
18605 * grub-core/term/at_keyboard.c (grub_keyboard_controller_init)
18606 [GRUB_MACHINE_MIPS_QEMU_MIPS]: Don't consider original set.
18607 * grub-core/term/serial.c (grub_serial_register)
18608 [GRUB_MACHINE_MIPS_QEMU_MIPS]: Make com0 explicitly active.
18609
18610 2011-07-05 Vladimir Serbinenko <phcoder@gmail.com>
18611
18612 CMOS support on sparc.
18613
18614 * gentpl.py (cmos): Add powerpc and sparc.
18615 * grub-core/Makefile.core.def (datetime): Add lib/ieee1275/cmos.c on
18616 powerpc and sparc.
18617 * grub-core/lib/cmos_datetime.c (grub_get_datetime)
18618 [__powerpc__ || __sparc__]: Rename to grub_get_datetime_cmos.
18619 (grub_set_datetime) [__powerpc__ || __sparc__]: Likewise to
18620 grub_set_datetime_cmos.
18621 * grub-core/lib/ieee1275/cmos.c: New file.
18622 * grub-core/lib/ieee1275/datetime.c (no_ieee1275_rtc): New vaiable.
18623 (find_rtc): Set no_ieee1275_rtc on error.
18624 (grub_get_datetime): Call grub_get_datetime_cmos on error.
18625 (grub_set_datetime): Call grub_set_datetime_cmos on error.
18626 * include/grub/cmos.h (grub_cmos_read): Return grub_err_t since it may
18627 fail. Move value to argument. All users updated
18628 (grub_cmos_write): Likewise.
18629 (grub_cmos_read) [__powerpc__ || __sparc__]: Rewritten.
18630 (grub_cmos_write) [__powerpc__ || __sparc__]: Likewise.
18631 * include/grub/datetime.h [__powerpc__ || __sparc__]: Declare
18632 grub_get_datetime_cmos and grub_set_datetime_cmos.
18633
18634 2011-07-02 Grégoire Sutre <gregoire.sutre@gmail.com>
18635
18636 * util/grub-mkconfig.in: Use @PACKAGE@ instead of hardcoded name when
18637 sourcing grub-mkconfig_lib.
18638 * util/update-grub_lib.in: Likewise.
18639 * util/grub.d/00_header.in: Likewise.
18640 * util/grub.d/10_hurd.in: Likewise.
18641 * util/grub.d/10_kfreebsd.in: Likewise.
18642 * util/grub.d/10_linux.in: Likewise.
18643 * util/grub.d/10_netbsd.in: Likewise.
18644 * util/grub.d/10_windows.in: Likewise.
18645 * util/grub.d/20_linux_xen.in: Likewise.
18646 * util/grub.d/30_os-prober.in: Likewise.
18647
18648 2011-06-28 Colin Watson <cjwatson@ubuntu.com>
18649
18650 * grub-core/term/gfxterm.c (grub_virtual_screen_setup): Use
18651 default_bg_color rather than black.
18652 (grub_gfxterm_fullscreen): Likewise.
18653 (grub_gfxterm_background_color_cmd): Save new background color in
18654 default_bg_color.
18655
18656 2011-06-27 Vladimir Serbinenko <phcoder@gmail.com>
18657
18658 * grub-core/Makefile.core.def (chain): Fix coreboot filename.
18659
18660 2011-06-27 Vladimir Serbinenko <phcoder@gmail.com>
18661
18662 * grub-core/disk/pata.c (grub_pata_initialize) [QEMU_MIPS]: Fix a
18663 mismerge.
18664
18665 2011-06-27 Vladimir Serbinenko <phcoder@gmail.com>
18666
18667 Chainloading on coreboot support.
18668
18669 * grub-core/Makefile.core.def (chain): Add coreboot.
18670 * grub-core/loader/i386/coreboot/chainloader.c: New file.
18671
18672 2011-06-27 Vladimir Serbinenko <phcoder@gmail.com>
18673
18674 * grub-core/loader/i386/bsd.c (grub_bsd_load): Handle relocator failure
18675 if it happens.
18676
18677 2011-06-27 Vladimir Serbinenko <phcoder@gmail.com>
18678
18679 Implement time command.
18680
18681 * grub-core/Makefile.core.def (time): New module.
18682 * grub-core/commands/time.c: New file.
18683 * grub-core/script/parser.y: Remove "time" keyword.
18684 * grub-core/script/yylex.l: Likewise.
18685
18686 2011-06-27 Vladimir Serbinenko <phcoder@gmail.com>
18687
18688 * include/grub/loader.h (grub_loader_unregister_preboot_hook): Export.
18689
18690 2011-06-27 Vladimir Serbinenko <phcoder@gmail.com>
18691
18692 * grub-core/lib/relocator.c (malloc_in_range): Fix a memory corruption
18693 when handling leftovers.
18694
18695 2011-06-27 Vladimir Serbinenko <phcoder@gmail.com>
18696
18697 * util/ieee1275/grub-ofpathname.c (main): Handle --help and --version
18698 so that help2man doesn't fail.
18699
18700 2011-06-27 Vladimir Serbinenko <phcoder@gmail.com>
18701
18702 * grub-core/net/drivers/ieee1275/ofnet.c (send_card_buffer) Use right
18703 type in pointers on sparc64.
18704 (get_card_packet): Likewise.
18705
18706 2011-06-27 Colin Watson <cjwatson@ubuntu.com>
18707
18708 * grub-core/commands/videoinfo.c (hook): Indicate current video mode
18709 with `*'.
18710 (grub_cmd_videoinfo): Fetch current video mode.
18711
18712 2011-06-27 Vladimir Serbinenko <phcoder@gmail.com>
18713
18714 * grub-core/disk/scsi.c (grub_scsi_read): Limit SCSI reads to 32K
18715 because of underlying system restrictions.
18716
18717 2011-06-27 Vladimir Serbinenko <phcoder@gmail.com>
18718
18719 * util/grub-mkrescue.in: Rename "ata" to "pata" and add ahci when
18720 necessary.
18721
18722 2011-06-27 Vladimir Serbinenko <phcoder@gmail.com>
18723
18724 Coreboot video support.
18725
18726 * grub-core/Makefile.core.def (vga): Extend to coreboot and multiboot.
18727 (vbe): Likewise.
18728 * grub-core/kern/i386/coreboot/startup.S: Include int.S.
18729 * grub-core/kern/i386/pc/startup.S (grub_bios_interrupt): Moved from
18730 here ...
18731 * grub-core/kern/i386/int.S: ... here.
18732 * grub-core/video/i386/pc/vbe.c: Updated includes.
18733 * grub-core/video/i386/pc/vga.c: Likewise.
18734 * include/grub/i386/coreboot/memory.h
18735 (GRUB_MEMORY_MACHINE_SCRATCH_ADDR): New definition.
18736 (GRUB_MEMORY_MACHINE_SCRATCH_SEG): Likewise.
18737 (GRUB_MEMORY_MACHINE_SCRATCH_SIZE): Likewise.
18738 * include/grub/i386/pc/int.h (GRUB_CPU_INT_FLAGS_DEFAULT) [!PCBIOS]:
18739 Disable interrupts.
18740 * include/grub/i386/pc/vga.h: Removed. All users updated.
18741
18742 2011-06-27 Vladimir Serbinenko <phcoder@gmail.com>
18743
18744 * grub-core/disk/ahci.c (grub_ahci_readwrite_real): Use proper
18745 definitions for dprintf.
18746 * grub-core/disk/pata.c (grub_pata_readwrite): Likewise.
18747
18748 2011-06-27 Vladimir Serbinenko <phcoder@gmail.com>
18749
18750 * grub-core/net/drivers/ieee1275/ofnet.c (send_card_buffer): Fix
18751 prototype.
18752 (get_card_packet): Likewise.
18753
18754 2011-06-26 Yves Blusseau <blusseau@zetam.org>
18755
18756 Display the path of the file when file is not found
18757
18758 * grub-core/fs/fat.c: Display the filename when file is not found.
18759 * grub-core/fs/fshelp.c: Likewise.
18760 * grub-core/fs/hfs.c: Likewise.
18761 * grub-core/fs/jfs.c: Likewise.
18762 * grub-core/fs/minix.c: Likewise.
18763 * grub-core/fs/ufs.c: Likewise.
18764 * grub-core/fs/btrfs.c: Likewise.
18765 * grub-core/commands/i386/pc/play.c: Likewise.
18766
18767 2011-06-26 Szymon Janc <szymon@janc.net.pl>
18768
18769 * grub-core/commands/cmp.c (grub_cmd_cmp): Remove unnecessary NULL
18770 pointer checks before calling grub_free().
18771 * grub-core/commands/wildcard.c (match_devices): Likewise.
18772 * grub-core/commands/wildcard.c (match_files): Likewise.
18773 * grub-core/fs/cpio.c (grub_cpio_dir): Likewise.
18774 * grub-core/fs/cpio.c (grub_cpio_open): Likewise.
18775 * grub-core/fs/udf.c (grub_udf_read_block): Likewise.
18776 * grub-core/fs/xfs.c (grub_xfs_read_block): Likewise.
18777 * grub-core/loader/efi/chainloader.c (grub_cmd_chainloader): Likewise.
18778 * grub-core/normal/cmdline.c (grub_cmdline_get): Likewise.
18779 * grub-core/script/yylex.l (grub_lexer_unput): Likewise.
18780 * grub-core/video/readers/jpeg.c (grub_video_reader_jpeg): Likewise.
18781 * grub-core/video/readers/png.c (grub_png_output_byte): Likewise.
18782
18783 2011-06-25 Patrick <p55@mailinator.com>
18784
18785 * grub-core/kern/main.c (grub_load_normal_mode): Correct the comment.
18786
18787 2011-06-25 Vladimir Serbinenko <phcoder@gmail.com>
18788
18789 * grub-core/net/i386/pc/pxe.c (grub_pxe_recv): Fix declaration.
18790 (grub_pxe_send): Likewise.
18791 (GRUB_MOD_INIT): Fix types.
18792
18793 2011-06-24 Szymon Janc <szymon@janc.net.pl>
18794
18795 * grub-core/io/xzio.c: Fix code style issues
18796
18797 2011-06-24 Vladimir Serbinenko <phcoder@gmail.com>
18798 2011-06-24 Manoel Rebelo Abranches <mrabran@gmail.com>
18799
18800 Network infrastructure.
18801 The ARP protocol was made by Paulo Pinatti <ppinatti@br.ibm.com>
18802
18803 * include/grub/net/arp.h: New file.
18804 * include/grub/net/device.h: Likewise.
18805 * include/grub/net/ethernet.h: Likewise.
18806 * include/grub/net/ip.h: Likewise.
18807 * include/grub/net/netbuff.h: Likewise.
18808 * include/grub/net/tftp.h: Likewise.
18809 * include/grub/net/udp.h: Likewise.
18810 * include/grub/ieee1275/ofnet.h: Likewise.
18811 * include/grub/emu/export.h: Likewise.
18812 * include/grub/net.h: Likewise.
18813 * grub-core/net/arp.c: Likewise.
18814 * grub-core/net/ethernet.c: Likewise.
18815 * grub-core/net/ip.c: Likewise.
18816 * grub-core/net/udp.c: Likewise.
18817 * grub-core/net/tftp.c: Likewise.
18818 * grub-core/net/netbuff.c: Likewise.
18819 * grub-core/net/net.c: Likewise.
18820 * grub-core/net/drivers/emu/emunet.c: Likewise.
18821 * grub-core/net/drivers/ieee1275/ofnet.c: Likewise.
18822 * grub-core/Makefile.am (KERNEL_HEADER_FILES): Add net.h, ofnet.h and
18823 export.h.
18824 * grub-core/Makefile.core.def (net): New module.
18825 (tftp): Likewise.
18826 (ofnet): Likewise.
18827 (emunet): Likewise.
18828 * grub-core/commands/ls.c (grub_ls_list_devices) [!GRUB_UTIL]: List
18829 network protocols.
18830 * grub-core/kern/device.c (grub_net_open) : New variable.
18831 (grub_device_open): Handle network device.
18832 (grub_device_close): Likewise.
18833 * grub-core/kern/file.c (grub_file_net_seek) : New variable.
18834 (grub_grubnet_fini): Likewise.
18835 (grub_file_seek): Seek in network device.
18836 * grub-core/kern/fs.c (grub_fs_probe): Handle network devices.
18837 * grub-core/kern/ieee1275/init.c (grub_machine_set_prefix): Handle
18838 network root.
18839 (grub_machine_fini): Call grub_grubnet_fini.
18840 * grub-core/kern/ieee1275/openfw.c (grub_ieee1275_parse_args): Handle
18841 network.
18842 (grub_ieee1275_get_aliasdevname): New function.
18843 * grub-core/loader/i386/multiboot_mbi.c (grub_multiboot_get_mbi_size):
18844 Add unofficial Solaris network info.
18845 (grub_multiboot_make_mbi): Likewise.
18846 * grub-core/fs/i386/pc/pxe.c: Moved from here ...
18847 * grub-core/net/i386/pc/pxe.c: ...here. Adapted for new design.
18848 * include/grub/device.h (grub_fs): Removed.
18849 * include/grub/err.h (grub_err_t): Add network-related values.
18850 * include/grub/i386/pc/pxe.h: Removed bootp parts.
18851 * include/grub/ieee1275/ieee1275.h (grub_ofnetcard_data): New struct.
18852 (grub_ieee1275_get_aliasdevname): New proto.
18853 * include/grub/net.h: Rewritten.
18854
18855 2011-06-24 Vladimir Serbinenko <phcoder@gmail.com>
18856
18857 * grub-core/disk/raid.c (insert_array): Ensure uniqueness of readable
18858 names.
18859
18860 2011-06-24 Vladimir Serbinenko <phcoder@gmail.com>
18861
18862 * grub-core/commands/wildcard.c (match_files): Add a useful dprintf.
18863 (wildcard_expand): Don't stop on nonregexp parts after regexp ones since
18864 it truncates the output.
18865 Reported by: Ximin Luo.
18866
18867 2011-06-24 Vladimir Serbinenko <phcoder@gmail.com>
18868
18869 * grub-core/fs/iso9660.c (grub_iso9660_iterate_dir): Skip . and ..
18870
18871 2011-06-24 Vladimir Serbinenko <phcoder@gmail.com>
18872
18873 * util/grub-mkconfig_lib.in (prepare_grub_to_access_device): Load
18874 partmap before abstraction.
18875
18876 2011-06-24 Alexander Kurtz <kurtz.alex@googlemail.com>
18877
18878 * util/grub-mkconfig_lib.in: Add missing quotes.
18879
18880 2011-06-24 Vladimir Serbinenko <phcoder@gmail.com>
18881
18882 * grub-core/kern/emu/getroot.c (grub_guess_root_device): Revert to
18883 old method if mountinfo would return /dev/root and /dev/root doesn't
18884 exist.
18885
18886 2011-06-24 Vladimir Serbinenko <phcoder@gmail.com>
18887
18888 ZFS zlib support
18889
18890 * grub-core/fs/zfs/zfs.c (zlib_decompress): New function.
18891 (decomp_table): Add zlib entries.
18892 (zio_read): USe 8 bits for compression function rather than 3.
18893 * include/grub/zfs/zio.h (zio_compress): Add zlib values.
18894
18895 2011-06-24 Vladimir Serbinenko <phcoder@gmail.com>
18896
18897 * grub-core/disk/ahci.c: Add missing license statements.
18898 * grub-core/fs/romfs.c: Likewise.
18899 * grub-core/lib/ia64/setjmp.S: Likewise.
18900 * grub-core/loader/i386/pc/freedos.c: Likewise.
18901 * grub-core/loader/ia64/efi/linux.c: Likewise.
18902 * grub-core/video/colors.c: Likewise.
18903 * include/grub/dl.h (GRUB_MOD_DEP): New macro.
18904
18905 2011-06-23 Vladimir Serbinenko <phcoder@gmail.com>
18906
18907 AHCI support.
18908
18909 * grub-core/Makefile.core.def (ata_pthru): Removed.
18910 (ahci): New module.
18911 (pata): Likewise.
18912 * grub-core/bus/usb/ohci.c (GRUB_MOD_FINI): Unregister preboot hook
18913 on unload.
18914 * grub-core/commands/hdparm.c (grub_hdparm_do_ata_cmd): Use ATA
18915 readwrite.
18916 (grub_hdparm_do_check_powermode_cmd): Likewise.
18917 (grub_hdparm_do_smart_cmd): Likewise.
18918 (grub_hdparm_set_val_cmd): Likewise.
18919 (grub_cmd_hdparm): Likewise. Check thta we have an ATA device.
18920 * grub-core/disk/ahci.c: New file.
18921 * grub-core/disk/ata.c: Factor out the low-level part into ...
18922 * grub-core/disk/pata.c: ... here.
18923 * grub-core/disk/ata_pthru.c: Contents moved to ...
18924 * grub-core/disk/pata.c: ... here.
18925 * grub-core/disk/scsi.c (grub_scsi_names): New array.
18926 (grub_scsi_iterate): Use grub_scsi_names.
18927 (grub_scsi_open): Likewise.
18928 * grub-core/kern/disk.c (grub_disk_ata_pass_through): Removed.
18929 * include/grub/ata.h (grub_ata_commands): Add DMA commands.
18930 (grub_ata_regs_t): New struct.
18931 (grub_disk_ata_pass_through_parms): Likewise.
18932 (grub_ata_device): Renamed to ...
18933 (grub_ata): ... this.
18934 (grub_ata_dev): New struct.
18935 Removed all low-level inline functions.
18936 * include/grub/scsi.h: Add PATA and AHCI subsystems.
18937 (grub_scsi_dev): Removed 'name' and 'id'. Added 'id' parameter to
18938 iterate hooks and open. All users updated.
18939 * util/grub-install.in: Handle AHCI disk module.
18940
18941 2011-06-23 Szymon Janc <szymon@janc.net.pl>
18942
18943 Add support for DRI and RSTn markers in JPEG files.
18944
18945 * grub-core/video/readers/jpeg.c (JPEG_MARKER_DRI): New define.
18946 (JPEG_MARKER_RST0): Likewise.
18947 (JPEG_MARKER_RST1): Likewise.
18948 (JPEG_MARKER_RST2): Likewise.
18949 (JPEG_MARKER_RST3): Likewise.
18950 (JPEG_MARKER_RST4): Likewise.
18951 (JPEG_MARKER_RST5): Likewise.
18952 (JPEG_MARKER_RST6): Likewise.
18953 (JPEG_MARKER_RST7): Likewise.
18954 (grub_jpeg_data): New fields dri, r1, bitmap_ptr.
18955 (grub_jpeg_decode_dri): New function.
18956 (grub_jpeg_decode_sos): Move image data related part into
18957 grub_jpeg_decode_data function.
18958 (grub_jpeg_decode_data): New function.
18959 (grub_jpeg_reset): New function.
18960 (grub_jpeg_decode_jpeg): Handle new markers.
18961
18962 2011-06-23 Vladimir Serbinenko <phcoder@gmail.com>
18963
18964 * util/ieee1275/ofpath.c (check_sas): Close fd.
18965 (main): Free of_path.
18966 Reported by: David Volgyes <dvolgyes>.
18967
18968 2011-06-23 Vladimir Serbinenko <phcoder@gmail.com>
18969
18970 * util/grub-mkpasswd-pbkdf2.c (main): Don't double-close.
18971 Reported by: David Volgyes <dvolgyes>.
18972
18973 2011-06-23 Vladimir Serbinenko <phcoder@gmail.com>
18974
18975 * grub-core/kern/emu/hostdisk.c (grub_util_biosdisk_is_floppy): Close
18976 file after stat.
18977 Reported by: David Volgyes <dvolgyes>.
18978
18979 2011-06-23 Vladimir Serbinenko <phcoder@gmail.com>
18980
18981 * util/raid.c (grub_util_raid_getmembers): Close fd before returning.
18982
18983 Reported by: David Volgyes <dvolgyes>.
18984
18985 2011-06-23 Vladimir Serbinenko <phcoder@gmail.com>
18986
18987 * grub-core/lib/reed_solomon.c (rs_recover) [STANDALONE]:
18988 Prevent memory leak.
18989
18990 2011-06-23 Vladimir Serbinenko <phcoder@gmail.com>
18991
18992 * grub-core/lib/reed_solomon.c (rs_recover): Prevent memory leak.
18993 (main): Close file.
18994 Reported by: David Volgyes <dvolgyes>.
18995
18996 2011-06-23 Vladimir Serbinenko <phcoder@gmail.com>
18997
18998 * grub-core/loader/i386/xnu.c (grub_cpu_xnu_fill_devprop): Don't attempt
18999 to continue if allocation is failed.
19000
19001 Reported by: David Volgyes <dvolgyes>.
19002
19003 2011-06-23 David Volgyes <dvolgyes>
19004
19005 * grub-core/bus/usb/ohci.c (grub_ohci_pci_iter): Avoid NULL-pointer
19006 dereference.
19007
19008 2011-06-23 Vladimir Serbinenko <phcoder@gmail.com>
19009
19010 Fix spurious warning.
19011
19012 * grub-core/partmap/acorn.c (grub_acorn_boot_block): Make a union.
19013 (acorn_partition_map_find): Use .bin member.
19014
19015 2011-06-23 Vladimir Serbinenko <phcoder@gmail.com>
19016
19017 * grub-core/kern/emu/getroot.c (grub_guess_root_device): Don't accept
19018 /dev/root as a valid device.
19019
19020 2011-06-23 Jim Meyering <meyering@redhat.com>
19021
19022 Avoid NULL deref in grub_device_open.
19023
19024 * grub-core/kern/device.c (grub_device_open): Don't dereference
19025 a NULL pointer upon failed grub_env_get.
19026
19027 2011-06-23 Vladimir Serbinenko <phcoder@gmail.com>
19028
19029 Support non-512B sectors and agglomerate reads.
19030
19031 * Makefile.util.def (libgrubmods.a): Add grub-core/commands/testload.c.
19032 * grub-core/disk/efi/efidisk.c (grub_efidisk_data): Remove disk_io.
19033 (disk_io_guid): Removed.
19034 (make_devices): Locate solely by BlockIO.
19035 (grub_efidisk_open): Fill log_sector_size and total_sectors.
19036 (grub_efidisk_read): Use read_blocks.
19037 (grub_efidisk_write): Use write_blocks.
19038 * grub-core/disk/i386/pc/biosdisk.c (grub_biosdisk_open): Fill
19039 log_sector_size.
19040 (get_safe_sectors): Handle non-512B sectors.
19041 (grub_biosdisk_read): Remove special CDROM handling. Handle non-512B
19042 sectors.
19043 (grub_biosdisk_write): Handle non-512B sectors.
19044 * grub-core/disk/scsi.c (grub_scsi_open): Fill log_sector_size.
19045 (grub_scsi_read): Remove special non-512B block handling (now handled
19046 one level up).
19047 * grub-core/kern/disk.c (grub_disk_open): Fill default log_sector_size
19048 and do sanity checks.
19049 (grub_disk_adjust_range): Handle non-512B sectors.
19050 (transform_sector): New function.
19051 (grub_disk_read_small): Likewise.
19052 (grub_disk_read): Rewritten.
19053 (grub_disk_write): Handle non-512B sectors.
19054 * grub-core/kern/emu/hostdisk.c (grub_util_biosdisk_open): Fill
19055 log_sector_size.
19056 (open_device): Use log_sector_size.
19057 (grub_util_biosdisk_read): Likewise.
19058 (grub_util_biosdisk_write): Likewise.
19059 * grub-core/partmap/msdos.c (grub_partition_msdos_iterate): Handle
19060 non-512B sectors.
19061 (pc_partition_map_embed): Likewise.
19062 * include/grub/disk.h (grub_disk): New field log_sector_size.
19063 (GRUB_DISK_CACHE_SIZE): Redefined from GRUB_DISK_CACHE_BITS.
19064 (GRUB_DISK_CACHE_BITS): Increased to 6.
19065 * util/grub-fstest.c (fstest): New command testload.
19066 (argp_parser): Likewise.
19067
19068 2011-06-16 Robert Millan <rmh@gnu.org>
19069
19070 Detect `ataraid' devices on GNU/kFreeBSD. Fix for ATA devices using
19071 `ata' driver on kernel of FreeBSD 9.
19072
19073 * util/deviceiter.c [__FreeBSD_kernel__] (get_ada_disk_name)
19074 (get_ataraid_disk_name): New functions.
19075 [__FreeBSD_kernel__] (grub_util_iterate_devices): Scan for ataraid
19076 (/dev/ar[0-9]+) and ada (/dev/ada[0-9]+) devices using
19077 get_ataraid_disk_name() and get_ada_disk_name().
19078
19079 2011-06-13 Colin Watson <cjwatson@ubuntu.com>
19080
19081 * docs/man/grub-mklayout.h2m (DESCRIPTION): Add a reference to the
19082 input format.
19083
19084 2011-05-29 Colin Watson <cjwatson@ubuntu.com>
19085
19086 * docs/grub.texi (Obtaining and Building GRUB): Substitute
19087 `ftp.gnu.org' for `alpha.gnu.org'.
19088
19089 2011-05-27 Colin Watson <cjwatson@ubuntu.com>
19090
19091 * grub-core/kern/emu/hostdisk.c (linux_find_partition): Handle
19092 partitions under /dev/disk/by-id/.
19093
19094 2011-05-27 Colin Watson <cjwatson@ubuntu.com>
19095
19096 * grub-core/kern/emu/hostdisk.c (linux_find_partition): Give up
19097 after ten consecutive open failures. Scanning all the way up to
19098 10000 is excessive and can cause serious performance problems in
19099 some configurations.
19100 Fixes Ubuntu bug #787461.
19101
19102 2011-05-21 Vladimir Serbinenko <phcoder@gmail.com>
19103
19104 * grub-core/disk/arc/arcdisk.c (reopen): Close old handle before
19105 opening new one.
19106
19107 2011-05-21 Colin Watson <cjwatson@ubuntu.com>
19108 2011-05-21 Vladimir Serbinenko <phcoder@gmail.com>
19109
19110 Don't stat devices unless we have to.
19111
19112 * grub-core/kern/emu/getroot.c (grub_find_device): Recognize
19113 dir == /dev/mapper.
19114 (grub_guess_root_device): Use already known os_dev if possible.
19115 * grub-core/kern/emu/hostdisk.c
19116 (convert_system_partition_to_system_disk): Scan only in /dev/mapper
19117 if device is known to be a dm one.
19118
19119 2011-05-20 Colin Watson <cjwatson@ubuntu.com>
19120
19121 * util/grub-mkconfig.in: Export GRUB_CMDLINE_LINUX_XEN_REPLACE and
19122 GRUB_CMDLINE_LINUX_XEN_REPLACE_DEFAULT.
19123 Reported by: Pawel Tecza.
19124
19125 2011-05-19 Vladimir Serbinenko <phcoder@gmail.com>
19126
19127 * grub-core/Makefile.core.def (lsacpi): Fix ia64 mismerge.
19128 (lsefisystab): Likewise.
19129 (lssal): Likewise.
19130 (lsefimmap): Likewise.
19131 (hdparm): Enable on qemu-mips.
19132 (setjmp): Add ia64 nodist.
19133 (serial): Simplify tags.
19134
19135 2011-05-18 Colin Watson <cjwatson@ubuntu.com>
19136
19137 * Makefile.util.def (grub-ofpathname): Install manual page.
19138
19139 2011-05-18 Colin Watson <cjwatson@ubuntu.com>
19140
19141 * grub-core/fs/squash4.c: Add missing GRUB_MOD_LICENSE.
19142
19143 2011-05-18 Colin Watson <cjwatson@ubuntu.com>
19144
19145 * .bzrignore: Add grub-core/modinfo.sh and a number of test files.
19146
19147 2011-05-18 Vladimir Serbinenko <phcoder@gmail.com>
19148
19149 * grub-core/bus/usb/usbhub.c (poll_nonroot_hub): Downgrade a printf
19150 into dprintf.
19151
19152 2011-05-18 Vladimir Serbinenko <phcoder@gmail.com>
19153
19154 Use full 64-bit division.
19155
19156 * grub-core/kern/misc.c (grub_divmod64_full): Renamed to ...
19157 (grub_divmod64): ... this.
19158 * include/grub/misc.h (grub_divmod64): Removed. All users switch to full
19159 version.
19160
19161 2011-05-18 Colin Watson <cjwatson@ubuntu.com>
19162
19163 * util/grub-mkrescue.in: Use portable `.' rather than non-portable
19164 `source'.
19165
19166 2011-05-18 Colin Watson <cjwatson@ubuntu.com>
19167
19168 * grub-core/genmod.sh.in: Use 'set -e' rather than '#! /bin/sh -e',
19169 to avoid accidents when debugging with 'sh -x'.
19170 * grub-core/gensyminfo.sh.in: Likewise.
19171 * tests/example_scripted_test.in: Likewise.
19172 * tests/grub_cmd_regexp.in: Likewise.
19173 * tests/grub_script_blanklines.in: Likewise.
19174 * tests/grub_script_dollar.in: Likewise.
19175 * tests/grub_script_expansion.in: Likewise.
19176 * tests/grub_script_final_semicolon.in: Likewise.
19177 * tests/partmap_test.in: Likewise.
19178 * tests/util/grub-shell-tester.in: Likewise.
19179 * tests/util/grub-shell.in: Likewise.
19180
19181 2011-05-18 Colin Watson <cjwatson@ubuntu.com>
19182
19183 Move gfxmenu color handling to video, so that gfxterm can use it
19184 too.
19185
19186 * grub-core/gfxmenu/named_colors.c: Move to ...
19187 * grub-core/video/colors.c: ... here. Rename
19188 grub_gui_get_named_color to grub_video_get_named_color.
19189 * grub-core/gfxmenu/gui_string_util.c (my_isxdigit): Move to ...
19190 * grub-core/video/colors.c (my_isxdigit): ... here.
19191 * grub-core/gfxmenu/gui_string_util.c (parse_hex_color_component):
19192 Move to ...
19193 * grub-core/video/colors.c (parse_hex_color_component): ... here.
19194 * grub-core/gfxmenu/gui_string_util.c (grub_gui_parse_color): Move
19195 to ...
19196 * grub-core/video/colors.c (grub_video_parse_color): ... here.
19197
19198 * include/grub/gui.h (grub_gui_color_t): Move to ...
19199 * include/grub/video.h (grub_video_rgba_color_t): ... here.
19200 * include/grub/gui.h (grub_gui_color_rgb): Move to ...
19201 * include/grub/video.h (grub_video_rgba_color_rgb): ... here.
19202 * include/grub/gui.h (grub_gui_map_color): Move to ...
19203 * include/grub/video.h (grub_video_map_rgba_color): ... here.
19204 * include/grub/gui_string_util.h (grub_gui_get_named_color): Move
19205 to ...
19206 * include/grub/video.h (grub_video_get_named_color): ... here.
19207 * include/grub/gui_string_util.h (grub_gui_parse_color): Move to ...
19208 * include/grub/video.h (grub_video_parse_color): ... here.
19209
19210 * grub-core/Makefile.core.def (kernel) [videoinkernel]: Add
19211 video/colors.c.
19212 (gfxmenu): Remove gfxmenu/named_colors.c.
19213 (video) [videomodules]: Add video/colors.c.
19214
19215 Add a background_color command.
19216
19217 * grub-core/term/gfxterm.c (grub_gfxterm_background_color_cmd): New
19218 function.
19219 (GRUB_MOD_INIT): Register background_color command.
19220 (GRUB_MOD_FINI): Unregister background_color command.
19221 (redraw_screen_rect): Allow blend/replace of text layer to be
19222 controlled independently from whether there is a background bitmap.
19223 (grub_gfxterm_background_image_cmd): Change blend_text_bg when
19224 changing bitmap.
19225
19226 2011-05-18 Vladimir Serbinenko <phcoder@gmail.com>
19227
19228 Patch BPB in ntldr and chainloader --bpb.
19229
19230 * grub-core/fs/fat.c: Include grub/fat.h.
19231 (grub_fat_bpb): Moved to ...
19232 * include/grub/fat.h (grub_fat_bpb): ... here. New file.
19233 * grub-core/loader/i386/pc/chainloader.c: Include grub/fat.h and
19234 grub/ntfs.h.
19235 * include/grub/i386/pc/chainloader.h (grub_chainloader_flags_t):
19236 Moved from here...
19237 * grub-core/loader/i386/pc/chainloader.c (grub_chainloader_flags_t): ...
19238 here.
19239 * grub-core/loader/i386/pc/chainloader.c (grub_chainloader_patch_bpb):
19240 New function.
19241 (grub_chainloader_cmd): Patch BPB if --bpb is given.
19242 (GRUB_MOD_INIT): Show --bpb.
19243 * grub-core/loader/i386/pc/ntldr.c (grub_cmd_ntldr): Patch BPB.
19244 * grub-core/normal/main.c (features): New variable.
19245 (GRUB_MOD_INIT): Set feature_* variables.
19246 * include/grub/i386/pc/chainloader.h (grub_chainloader_patch_bpb): New
19247 proto.
19248 * include/grub/ntfs.h (grub_ntfs_bpb): New field bios_drive.
19249
19250 2011-05-18 Vladimir Serbinenko <phcoder@gmail.com>
19251
19252 * grub-core/Makefile.core.def (ieee1275_fb): Use enable=powerpc_ieee1275
19253 for cleanness.
19254
19255 2011-05-18 Vladimir Serbinenko <phcoder@gmail.com>
19256
19257 FreeDOS direct loading support.
19258
19259 * docs/grub.texi (Supported OS): Add FreeDOS.
19260 * grub-core/Makefile.core.def (freedos): New module.
19261 * grub-core/lib/i386/relocator.c (grub_relocator16_ebx): New extern
19262 variable.
19263 (grub_relocator16_boot): Handle %ebx.
19264 * grub-core/lib/i386/relocator16.S: Likewise.
19265 * grub-core/loader/i386/pc/freedos.c: New file.
19266
19267 2011-05-18 Vladimir Serbinenko <phcoder@gmail.com>
19268
19269 Long Linux command line support.
19270
19271 * grub-core/loader/i386/linux.c (GRUB_LINUX_CL_END_OFFSET): Removed.
19272 (maximal_cmdline_size): New variable.
19273 (allocate_pages): Use maximal_cmdline_size.
19274 (grub_cmd_linux): Set and use maximal_cmdline_size.
19275 * grub-core/loader/i386/pc/linux.c (GRUB_LINUX_CL_END_OFFSET): Removed.
19276 (allocate_pages): Use maximal_cmdline_size.
19277 (grub_cmd_linux): Set and use maximal_cmdline_size.
19278 * include/grub/i386/linux.h (GRUB_LINUX_SETUP_MOVE_SIZE): Removed.
19279 (linux_kernel_header): Add fields kernel_alignment, relocatable, pad
19280 and cmdline_size.
19281
19282 2011-05-18 Vladimir Serbinenko <phcoder@gmail.com>
19283 2011-05-18 Colin Watson <cjwatson@ubuntu.com>
19284
19285 Improve devmapper support
19286
19287 * grub-core/kern/emu/getroot.c (grub_util_is_dmraid): Removed.
19288 (grub_util_is_lvm): New function.
19289 (grub_util_get_dev_abstraction): Assume dmraid if not lvm rather
19290 than lvm if not dmraid.
19291 Handle mapped md nodes.
19292 * grub-core/kern/emu/hostdisk.c (device_is_mapped): Rename to ...
19293 (grub_util_device_is_mapped): ... this. Make always available. All users
19294 updated.
19295 (grub_util_get_dm_node_linear_info) [HAVE_DEVICE_MAPPER]: New function.
19296 (convert_system_partition_to_system_disk): Handle lvm, mpath and
19297 dmraid nodes.
19298 * include/grub/emu/misc.h (grub_util_device_is_mapped): New proto.
19299
19300 2011-05-18 Vladimir Serbinenko <phcoder@gmail.com>
19301
19302 Unify grub-mkrescue (except powerpc) and grrub-mknetdir across platforms
19303
19304 * grub-core/Makefile.am (platform_DATA): Add modinfo.sh.
19305 * grub-core/modinfo.sh.in: New file.
19306 * grub-core/Makefile.core.def (modinfo.sh): New script.
19307 * util/grub-mknetdir.in: Use modinfo.sh.
19308 * util/grub-mkrescue.in: Likewise.
19309
19310 2011-05-17 Vladimir Serbinenko <phcoder@gmail.com>
19311
19312 * grub-core/kern/ia64/dl_helper.c (grub_ia64_dl_get_tramp_got_size):
19313 Fix potential usage of Elf32 instead of Elf64 when compiling on
19314 32-bit architecture. Add endianness macros while on it.
19315
19316 2011-05-17 Vladimir Serbinenko <phcoder@gmail.com>
19317
19318 Use mipsel- rather than mips- in directories involving mipsel ports to
19319 allow both endiannesses coexist.
19320
19321 * configure.ac: proparate target_cpu=mipsel rather than resetting to
19322 mips. All conditions adjusted.
19323 * tests/util/grub-shell-tester.in: Remove gratuitious target_cpu
19324 variable.
19325 * util/grub-install.in: Adjust conditions to take renaming into account.
19326 * util/grub-mkimage.c (image_targets): Likewise. New target
19327 mips-qemu_mips-elf for bigendian mips.
19328
19329 2011-05-17 Vladimir Serbinenko <phcoder@gmail.com>
19330
19331 Avoid unnecessary copying on MIPS.
19332
19333 * grub-core/boot/decompressor/none.c (grub_decompress_core): Exit
19334 early if src == dest.
19335 * util/grub-mkimage.c (generate_image): Arange for src == dest if
19336 compression is none.
19337
19338 2011-05-17 Vladimir Serbinenko <phcoder@gmail.com>
19339
19340 Reduce memory footprint on SGI by putting modules before the kernel
19341 as opposed to after.
19342
19343 * grub-core/Makefile.core.def (kernel): Increase linking address.
19344 (none_decompress): Likewise.
19345 (xz_decompress): Likewise.
19346 * grub-core/boot/mips/startup_raw.S: Use prewritten uncompression
19347 address.
19348 * grub-core/kern/mips/arc/init.c (grub_machine_init): Handle memory
19349 layout change.
19350 (grub_arch_modules_addr): New function.
19351 * grub-core/kern/mips/init.c (grub_arch_modules_addr): Moved from here...
19352 * grub-core/kern/mips/loongson/init.c (grub_arch_modules_addr): .. here
19353 * grub-core/kern/mips/qemu_mips/init.c (grub_arch_modules_addr): ... and
19354 here.
19355 * grub-core/kern/mips/startup.S (total_size): Rename to ...
19356 (grub_total_modules_size): ... this. Make global.
19357 [GRUB_MACHINE_ARC]: Don't attempt to move modules out of the bss.
19358 * include/grub/offsets.h (GRUB_KERNEL_MIPS_LOONGSON_UNCOMPRESSED_ADDR):
19359 New definition.
19360 (GRUB_KERNEL_MIPS_QEMU_MIPS_UNCOMPRESSED_ADDR): Likewise.
19361 (GRUB_KERNEL_MIPS_ARC_UNCOMPRESSED_ADDR): Likewise.
19362 (GRUB_KERNEL_MACHINE_UNCOMPRESSED_ADDR): Likewise.
19363 (GRUB_KERNEL_MIPS_ARC_LINK_ADDR): Increased.
19364 * util/grub-mkimage.c (image_target_desc): New flag
19365 PLATFORM_FLAGS_MODULES_BEFORE_KERNEL.
19366 (image_targets): Set PLATFORM_FLAGS_MODULES_BEFORE_KERNEL on mips-arc.
19367 (generate_image): Handle images with modules before kernel.
19368
19369 2011-05-17 Vladimir Serbinenko <phcoder@gmail.com>
19370
19371 Prevent potential loss of memory map by overwrite on qemu-mips.
19372
19373 * grub-core/boot/mips/startup_raw.S [GRUB_MACHINE_MIPS_QEMU_MIPS]:
19374 Save ram size in $s4.
19375 * grub-core/kern/mips/qemu_mips/init.c (RAMSIZE): Removed.
19376 All users changed to grub_arch_memsize.
19377 * grub-core/kern/mips/startup.S (grub_arch_machine): Restrict to
19378 Loongson.
19379 [GRUB_MACHINE_MIPS_QEMU_MIPS]: Save grub_arch_memsize.
19380 * grub-core/loader/mips/linux.c (grub_linux_boot): Pass memory size.
19381 * include/grub/mips/qemu_mips/memory.h (grub_arch_memsize): New
19382 external variable.
19383
19384 2011-05-17 Colin Watson <cjwatson@ubuntu.com>
19385
19386 * .bzrignore: Remove grub-dumpbios.
19387
19388 2011-05-17 Colin Watson <cjwatson@ubuntu.com>
19389
19390 * util/grub.d/20_linux_xen.in: Honour GRUB_CMDLINE_LINUX_XEN_REPLACE
19391 and GRUB_CMDLINE_LINUX_XEN_REPLACE_DEFAULT, which replace
19392 GRUB_CMDLINE_LINUX and GRUB_CMDLINE_LINUX_DEFAULT (complementing the
19393 existing options which append).
19394 * docs/grub.texi (Simple configuration): Document new options.
19395 Reported by: Ian Jackson. Fixes Debian bug #617538.
19396
19397 2011-05-17 Colin Watson <cjwatson@ubuntu.com>
19398
19399 * util/grub-fstest.c (cmd_cat): New function.
19400 (fstest): Handle CMD_CAT.
19401 (options): Add cat.
19402 (argp_parser): Handle cat.
19403
19404 2011-05-17 Colin Watson <cjwatson@ubuntu.com>
19405
19406 * Makefile.util.def (grub-bin2h): Don't install.
19407 * docs/man/grub-bin2h.h2m: Remove.
19408
19409 2011-05-17 Vladimir Serbinenko <phcoder@gmail.com>
19410
19411 * grub-core/kern/mips/startup.S (grub_arch_cpuclock): Move to the right
19412 place.
19413
19414 2011-05-17 Vladimir Serbinenko <phcoder@gmail.com>
19415
19416 Reenable qemu-mips port.
19417
19418 * configure.ac: Handle --target=qemu-mips and --target=qemu_mips.
19419 Fix small arc bug while on it.
19420 * gentpl.py: Handle qemu_mips.
19421 * grub-core/Makefile.am: Likewise.
19422 * grub-core/Makefile.core.def: Likewise.
19423 * grub-core/disk/ata.c [GRUB_MACHINE_MIPS_QEMU_MIPS]: Remove
19424 inappropriate includes.
19425 (grub_ata_pciinit) [GRUB_MACHINE_MIPS_QEMU_MIPS]: Removed.
19426 (grub_ata_initialize): [GRUB_MACHINE_MIPS_QEMU_MIPS]: Rewritten.
19427 * grub-core/kern/main.c (grub_modules_get_end)
19428 [GRUB_MACHINE_MIPS_QEMU_MIPS]: Enable.
19429 * grub-core/kern/mips/qemu-mips: Moved to ..
19430 * grub-core/kern/mips/qemu_mips: ... this.
19431 * grub-core/kern/mips/qemu_mips/init.c (grub_get_rtc): Removed.
19432 (grub_machine_init): Call terminfo_init and serial_init.
19433 * grub-core/kern/mips/startup.S: Change MIPS_LOONGSON to MACHINE.
19434 * grub-core/loader/mips/linux.c (params) [GRUB_MACHINE_MIPS_QEMU_MIPS]:
19435 New variable.
19436 (grub_linux_boot) [GRUB_MACHINE_MIPS_QEMU_MIPS]: Handle the qemu-mips
19437 parameter passing.
19438 (grub_linux_unload) [GRUB_MACHINE_MIPS_QEMU_MIPS]: Free params.
19439 (grub_cmd_linux) [GRUB_MACHINE_MIPS_QEMU_MIPS]: Handle params.
19440 (grub_cmd_initrd) [GRUB_MACHINE_MIPS_QEMU_MIPS]: Likewise.
19441 * include/grub/mips/qemu_mips/cmos.h: New file.
19442 * include/grub/mips/qemu-mips/kernel.h: Don't include cpu/kernel.h.
19443 * include/grub/mips/qemu-mips/memory.h (grub_machine_mmap_iterate):
19444 Removed.
19445 * include/grub/mips/qemu-mips/serial.h (GRUB_MACHINE_SERIAL_PORTS):
19446 Use correct mips-style address.
19447 * include/grub/mips/qemu-mips/time.h: Include cpu/time.h.
19448 (GRUB_TICKS_PER_SECOND): Removed.
19449 (grub_get_rtc): Likewise.
19450 (grub_cpu_idle): Likewise.
19451 * include/grub/offsets.h (GRUB_KERNEL_MIPS_QEMU_MIPS_LINK_ADDR):
19452 New definition.
19453 (GRUB_KERNEL_MIPS_QEMU_MIPS_LINK_ALIGN): Likewise.
19454 (GRUB_KERNEL_MIPS_QEMU_MIPS_COMPRESSED_SIZE): Likewise.
19455 (GRUB_KERNEL_MIPS_QEMU_MIPS_UNCOMPRESSED_SIZE): Likewise.
19456 (GRUB_KERNEL_MIPS_QEMU_MIPS_TOTAL_MODULE_SIZE): Likewise.
19457 (GRUB_KERNEL_MIPS_QEMU_MIPS_PREFIX): Likewise.
19458 (GRUB_KERNEL_MIPS_QEMU_MIPS_PREFIX_END): Likewise.
19459 (GRUB_KERNEL_MIPS_QEMU_MIPS_MOD_ALIGN): Likewise.
19460 * util/grub-mkimage.c (image_targets): Add mipsel-qemu_mips-elf.
19461
19462 2011-05-17 Vladimir Serbinenko <phcoder@gmail.com>
19463
19464 SGI ARCS port.
19465
19466 * Makefile.util.def (libgrubmods.a): Add dvh.c.
19467 * conf/Makefile.common (CCASFLAGS_PLATFORM): Add -mips3 on all mips
19468 platforms.
19469 * configure.ac: New target mips-arc.
19470 * gentpl.py: Likewise.
19471 * grub-core/Makefile.am: Likewise.
19472 * grub-core/Makefile.core.def: Likewise.
19473 (xz_decompress): Remove -D GRUB_MACHINE_LINK_ADDR.
19474 (none_decompress): Likewise.
19475 (lsdev): New module.
19476 (datetime): Use lib/arc/datetime.c on ARC.
19477 (part_dvh): New module.
19478 * grub-core/commands/arc/lsdev.c: New file.
19479 * grub-core/disk/arc/arcdisk.c: Likewise.
19480 * grub-core/kern/mips/arc/init.c: Likewise.
19481 * grub-core/kern/mips/cache_flush.S: Don't flush non 4-byte
19482 aligned addresses.
19483 * grub-core/kern/mips/dl.c (grub_arch_dl_check_header): Fix bigendian
19484 support.
19485 (grub_arch_dl_relocate_symbols): Likewise.
19486 * grub-core/kern/mips/loongson/init.c (grub_get_rtc): Moved from here...
19487 * grub-core/kern/mips/init.c (grub_get_rtc): ... here.
19488 * grub-core/kern/mips/startup.S (grub_arch_cpuclock): Have on all
19489 platforms.
19490 * grub-core/lib/arc/datetime.c: New file.
19491 * grub-core/loader/mips/linux.c: Always include time.h. Don't include
19492 pci.h on non-loongson.
19493 (envp_off) [!GRUB_MACHINE_MIPS_LOONGSON]: Remove.
19494 (grub_linux_boot): Set unused registers to 0.
19495 (grub_cmd_linux) [!GRUB_MACHINE_MIPS_LOONGSON]: Remove envp.
19496 * grub-core/mmap/mips/loongson/uppermem.c: Moved from here ...
19497 * grub-core/mmap/mips/uppermem.c: ...here.
19498 * grub-core/partmap/dvh.c: New file.
19499 * grub-core/term/arc/console.c: Likewise.
19500 * grub-core/term/terminfo.c (ANSI_C0_STR): New const.
19501 (grub_terminfo_set_current): Add terminal "arc".
19502 (grub_terminfo_readkey): Support ARC sequences.
19503 * include/grub/arc/arc.h: New file.
19504 * include/grub/arc/console.h: Likewise.
19505 * include/grub/disk.h (grub_disk_dev_id): Add
19506 GRUB_DISK_DEVICE_ARCDISK_ID.
19507 * include/grub/mips/arc/kernel.h: New file.
19508 * include/grub/mips/arc/memory.h: Likewise.
19509 * include/grub/mips/arc/time.h: Likewise.
19510 * include/grub/mips/loongson/kernel.h (grub_halt): Moved from here ...
19511 * include/grub/mips/kernel.h (grub_halt): ... here.
19512 * include/grub/mips/loongson.h (GRUB_CPU_REGISTER_WRAP): Moved from
19513 here...
19514 * include/grub/mips/mips.h (GRUB_CPU_REGISTER_WRAP): ... here.
19515 (GRUB_CPU_LOONGSON_COP0_TIMER_COUNT): Moved from here ...
19516 * include/grub/mips/mips.h (GRUB_CPU_LOONGSON_COP0_TIMER_COUNT): .. here
19517 * include/grub/mips/loongson/kernel.h (grub_reboot): Removed redundant
19518 proto.
19519 * include/grub/mips/loongson/memory.h (GRUB_ARCH_LOWMEMVSTART): Moved
19520 from here ...
19521 * include/grub/mips/memory.h (GRUB_ARCH_LOWMEMVSTART): ... here.
19522 (GRUB_ARCH_LOWMEMPSTART): Moved from here ...
19523 * include/grub/mips/memory.h (GRUB_ARCH_LOWMEMPSTART): ... here.
19524 (GRUB_ARCH_LOWMEMMAXSIZE): Moved from here ...
19525 * include/grub/mips/memory.h (GRUB_ARCH_LOWMEMMAXSIZE): ... here.
19526 (GRUB_ARCH_HIGHMEMPSTART): Moved from here ...
19527 * include/grub/mips/memory.h (GRUB_ARCH_HIGHMEMPSTART): ... here.
19528 (grub_phys_addr_t): Moved from here ...
19529 * include/grub/mips/memory.h (grub_phys_addr_t): ... here.
19530 (grub_vtop): Moved from here ...
19531 * include/grub/mips/memory.h (grub_vtop): ... here.
19532 (grub_map_memory): Moved from here ...
19533 * include/grub/mips/memory.h (grub_map_memory): ... here.
19534 (grub_unmap_memory): Moved from here ...
19535 * include/grub/mips/memory.h (grub_unmap_memory): ... here.
19536 (grub_machine_mmap_iterate): Moved from here ...
19537 * include/grub/mips/memory.h (grub_machine_mmap_iterate): ... here.
19538 (grub_mmap_get_lower): Moved from here ...
19539 * include/grub/mips/memory.h (grub_mmap_get_lower): ... here.
19540 (grub_mmap_get_upper): Moved from here ...
19541 * include/grub/mips/memory.h (grub_mmap_get_upper): ... here.
19542 * include/grub/mips/loongson/time.h (grub_arch_cpuclock): Moved from
19543 here ...
19544 * include/grub/mips/time.h (grub_arch_cpuclock): ... here.
19545 * include/grub/mips/loongson/time.h (grub_get_rtc): Moved from
19546 here ...
19547 * include/grub/mips/time.h (grub_get_rtc): ... here.
19548 * include/grub/mips/loongson/time.h (grub_arch_cpuclock): Moved from
19549 here ...
19550 * include/grub/mips/time.h (grub_arch_cpuclock): ... here.
19551 * include/grub/mips/loongson/time.h (grub_cpu_idle): Moved from
19552 here ...
19553 * include/grub/mips/time.h (grub_cpu_idle): ... here.
19554 * include/grub/offsets.h (GRUB_KERNEL_MIPS_ARC_LINK_ADDR): New
19555 definition.
19556 (GRUB_KERNEL_MIPS_ARC_LINK_ALIGN): Likewise.
19557 (GRUB_KERNEL_MIPS_ARC_COMPRESSED_SIZE): Likewise.
19558 (GRUB_KERNEL_MIPS_ARC_UNCOMPRESSED_SIZE): Likewise.
19559 (GRUB_KERNEL_MIPS_ARC_TOTAL_MODULE_SIZE): Likewise.
19560 (GRUB_KERNEL_MIPS_ARC_PREFIX): Likewise.
19561 (GRUB_KERNEL_MIPS_ARC_PREFIX_END): Likewise.
19562 (GRUB_KERNEL_MIPS_ARC_MOD_ALIGN): Likewise.
19563 (GRUB_MACHINE_LINK_ADDR): Likewise.
19564 * include/grub/terminfo.h (GRUB_TERMINFO_READKEY_MAX_LEN): Increased
19565 to 6.
19566 * util/grub-install.in: Run dvhtool on ARC.
19567 * util/grub-mkimage.c (image_targets): Add mips-arc.
19568 (generate_image): Handle ECOFF output for mips-arc.
19569
19570 2011-05-16 Vladimir Serbinenko <phcoder@gmail.com>
19571
19572 * grub-core/bus/pci.c (grub_memalign_dma32): Always allocate in 64-byte
19573 blocks.
19574
19575 2011-05-16 Vladimir Serbinenko <phcoder@gmail.com>
19576
19577 * grub-core/bus/usb/usbhub.c (attach_root_port): Wait 10ms
19578 after enabling port.
19579
19580 2011-05-16 Vladimir Serbinenko <phcoder@gmail.com>
19581
19582 Skip incorrect USB devices.
19583
19584 * grub-core/bus/usb/usb.c (grub_usb_device_initialize): Fail if
19585 configcnt == 0.
19586 * include/grub/usb.h (grub_usb_err_t): New enum value
19587 GRUB_USB_ERR_BADDEVICE.
19588
19589 2011-05-16 Vladimir Serbinenko <phcoder@gmail.com>
19590
19591 Fuloong video init support.
19592
19593 * include/grub/vga.h (grub_vga_write_arx): inb monochrome address as
19594 well.
19595 (grub_vga_read_arx): New function.
19596 * grub-core/video/sis315pro.c (GRUB_SIS315PRO_MMIO_SPACE): New
19597 definition.
19598 (framebuffer): New members io, mmioptr and mmiobase.
19599 (read_sis_cmd): New function.
19600 (write_sis_cmd): Likewise.
19601 (grub_video_sis315pro_setup): Do the initialisation. Use 640x480
19602 rather than 640x400.
19603 * grub-core/video/sis315_init.c: New file.
19604
19605 2011-05-15 Vladimir Serbinenko <phcoder@gmail.com>
19606
19607 * grub-core/bus/cs5536.c: Don't include grub/machine/kernel.h on
19608 non-loongson.
19609 * grub-core/kern/mips/dl.c (grub_arch_dl_init_linker): Fix argument
19610 to grub_dl_register_symbol.
19611
19612 2011-05-15 Vladimir Serbinenko <phcoder@gmail.com>
19613
19614 Fix compilation errors.
19615
19616 * grub-core/term/ns8250.c (serial_get_divisor): Declare 'port' as
19617 potentially unused.
19618 * grub-core/loader/i386/linux.c (grub_linux_setup_video):
19619 Handle GRUB_VIDEO_DRIVER_SIS315PRO.
19620 * grub-core/bus/cs5536.c (grub_cs5536_init_geode): Restrict DIVIL init
19621 to loongson machines.
19622
19623 2011-05-15 Vladimir Serbinenko <phcoder@gmail.com>
19624
19625 Several FS mtime support.
19626
19627 * grub-core/fs/affs.c (grub_affs_time): New struct.
19628 (grub_affs_file): New field mtime.
19629 (grub_fshelp_node): Changed 'block' and 'parent' to more appropriate
19630 type. Removed 'size'. New field 'di'. All users updated.
19631 (grub_affs_mount): Simplify checsum checking.
19632 (grub_affs_iterate_dir): New helper grub_affs_create_node.
19633 (grub_affs_dir): Handle mtime.
19634 * grub-core/fs/cpio.c (grub_cpio_find_file): Handle mtime.
19635 (grub_cpio_dir): Likewise.
19636 * grub-core/fs/hfs.c (grub_hfs_dirrec): New fields 'ctime' and 'mtime'.
19637 (grub_hfs_filerec): New field mtime.
19638 (grub_hfs_dir): Handle mtime.
19639 (grub_hfs_mtime): New function.
19640 (grub_hfs_fs): Register grub_hfs_mtime.
19641 * grub-core/fs/iso9660.c (grub_iso9660_date2): New struct.
19642 (grub_iso9660_dir): New field mtime.
19643 (grub_fshelp_node): New field dirent.
19644 (iso9660_to_unixtime): New function.
19645 (iso9660_to_unixtime2): Likewise.
19646 (grub_iso9660_read_symlink): Use node->dirent.
19647 (grub_iso9660_iterate_dir): Likewise.
19648 (grub_iso9660_dir): Set mtime.
19649 (grub_iso9660_mtime): New function.
19650 (grub_iso9660_fs): Register grub_iso9660_mtime.
19651 * grub-core/fs/jfs.c (grub_jfs_time): New struct.
19652 (grub_jfs_inode): New fields atime, ctime and mtime.
19653 (grub_jfs_dir): Set mtime.
19654 * grub-core/fs/minix.c (grub_minix_dir): Likewise.
19655 * grub-core/fs/ntfs.c (list_file): Set mtime.
19656 (grub_ntfs_dir): Likewise.
19657 * grub-core/fs/reiserfs.c (grub_fshelp_node): New field 'mtime'.
19658 (grub_reiserfs_iterate_dir): Set mtime.
19659 (grub_reiserfs_dir): Likewise.
19660 * grub-core/fs/sfs.c (grub_sfs_obj): New field mtime.
19661 (grub_fshelp_node): Likewise.
19662 (grub_sfs_iterate_dir): Set mtime.
19663 (grub_sfs_dir): Likewise.
19664 * grub-core/fs/udf.c (grub_udf_dir): Set mtime.
19665 * grub-core/fs/xfs.c (grub_xfs_time): New struct.
19666 (grub_xfs_inode): New fields atime, mtime, ctime.
19667 (grub_xfs_dir): Set mtime.
19668 * include/grub/datetime.h (grub_datetime2unixtime): New function.
19669 * include/grub/hfs.h (grub_hfs_sblock): New fields ctime and mtime.
19670 * include/grub/ntfs.h (grub_fshelp_node): New field mtime.
19671
19672 Support UDF symlinks.
19673
19674 * grub-core/fs/udf.c (grub_udf_iterate_dir): Handle symlinks.
19675 (grub_ufs_read_symlink): New function. All users updated.
19676
19677 Check amiga partmap checksum.
19678
19679 * grub-core/partmap/amiga.c (grub_amiga_rdsk): Pad to 128 bytes.
19680 (grub_amiga_partition): Likewise.
19681 (amiga_partition_map_checksum): New function.
19682 (amiga_partition_map_iterate): Check checksum.
19683
19684 2011-05-15 Vladimir Serbinenko <phcoder@gmail.com>
19685
19686 ROMFS support.
19687
19688 * Makefile.util.def (libgrubmods.a): Add romfs.
19689 * grub-core/Makefile.core.def (romfs): New module.
19690 * grub-core/fs/romfs.c: New file.
19691
19692 2011-05-15 Vladimir Serbinenko <phcoder@gmail.com>
19693
19694 Squashfs v4 support.
19695
19696 * Makefile.util.def (libgrubmods.a): Add squash4.
19697 * grub-core/Makefile.core.def (squash4): New module.
19698 * grub-core/fs/squash4.c: New file.
19699 * grub-core/io/gzio.c (grub_gzio): New members disk_input_off,
19700 disk_input_start, disk_input.
19701 (get_byte): Handle disk_input.
19702 (grub_zlib_disk_read): New function.
19703 * include/grub/deflate.h (grub_zlib_disk_read): New proto.
19704
19705 2011-05-15 Vladimir Serbinenko <phcoder@gmail.com>
19706 2011-05-15 Feiran Zheng <famcool@gmail.com>
19707
19708 * Makefile.util.def (libgrubmods.a): Add minix3.
19709 * grub-core/Makefile.core.def (minix3): New module.
19710 * grub-core/fs/minix.c (GRUB_MINIX_MAGIC) [MODE_MINIX3]: New value.
19711 (GRUB_MINIX_BSIZE): Removed.
19712 (GRUB_MINIX_INODE_DIR_BLOCKS): New definition. All users updated.
19713 (grub_minix_ino_t): New type.
19714 (grub_minix_le_to_cpu_ino): New macro.
19715 (GRUB_MINIX_ZONE2SECT): New definition. All users updated.
19716 (grub_minix_sblock) [MODE_MINIX3]: Change for minix3.
19717 (grub_minix_data): New field block_size.
19718 (grub_minix_read_file): Handle 64-bit correctly.
19719 * grub-core/fs/minix3.c: New file.
19720
19721 2011-05-15 Tristan Gingold <gingold@free.fr>
19722 2011-05-15 Robert Millan <rmh.grub@aybabtu.com>
19723 2011-05-15 Vladimir Serbinenko <phcoder@gmail.com>
19724
19725 IA64 support.
19726
19727 * Makefile.util.def (libgrubmods.a): Add grub-core/kern/ia64/dl_helper.c
19728 * configure.ac: Add ia64-efi target.
19729 Probe for __ia64_trampoline, __udivsi3, __umoddi3, __udivdi3,
19730 __divsi3, __modsi3, __umodsi3, __moddi3 and __divdi3 symbols.
19731 * gentpl.py: Add ia64_efi platform.
19732 Rename x86_efi to efi and Add ia64-efi. All users updated.
19733 * grub-core/Makefile.am: Set KERNEL_HEADER_FILES for ia64-efi.
19734 * grub-core/Makefile.core.def (kernel.img): Add compile flags for ia64.
19735 Remove kern/generic/rtc_get_time_ms.c on EFI.
19736 Add kern/ia64/efi/startup.S, kern/ia64/efi/init.c, kern/ia64/dl.c,
19737 kern/ia64/dl_helper.c on ia64-efi.
19738 Add kern/emu/cache.c on emu.
19739 (linux): Use on loader/ia64/efi/linux.c on ia64.
19740 * grub-core/gensymlist.sh (grub_register_exported_symbols): Check
19741 whether symbol is a function.
19742 * grub-core/kern/dl.c [GRUB_MACHINE_EMU]: Include sys/mman.h.
19743 (grub_symbol): New field 'isfunc'.
19744 (grub_dl_resolve_symbol): Return whole symbol rather than just address.
19745 (grub_dl_register_symbol): New argument 'isfunc'. All users updated.
19746 (grub_dl_load_segments): Place all sections into the same region.
19747 [__ia64__]: Create trampolines and got.
19748 [GRUB_MACHINE_EMU]: Call mprotect.
19749 (grub_dl_resolve_symbols): Resolve symbol type as well.
19750 [__ia64__]: Create function descriptors.
19751 * grub-core/kern/efi/efi.c (grub_get_rtc): Renamed to ...
19752 (grub_rtc_get_time_ms): ... this. Expressions simplified.
19753 (grub_get_rtc): New function.
19754 * grub-core/kern/emu/cache.c [__ia64__]: New file.
19755 * grub-core/kern/emu/cache.S: Renamed to ...
19756 * grub-core/kern/emu/cache_s.S: ... this.
19757 [__ia64__]: Add a nop.
19758 * grub-core/kern/emu/full.c (grub_arch_dl_get_tramp_got_size)
19759 [__ia64__]: New function.
19760 * grub-core/kern/emu/lite.c [__ia64__]: Include ../ia64/dl.c.
19761 * grub-core/kern/ia64/dl.c: New file.
19762 * grub-core/kern/ia64/dl_helper.c: Likewise.
19763 * grub-core/kern/ia64/efi/init.c: New file.
19764 * grub-core/kern/ia64/efi/startup.S: Likewise.
19765 * grub-core/lib/efi/halt.c [__ia64__]: Don't try acpi.
19766 * grub-core/lib/ia64/longjmp.S: New file (from glibc).
19767 * grub-core/lib/ia64/setjmp.S: Likewise (from glibc).
19768 * grub-core/lib/setjmp.S [__ia64__]: Include ./ia64/setjmp.S.
19769 * grub-core/loader/ia64/efi/linux.c: New file.
19770 * include/grub/dl.h (GRUB_MOD_NAME): Redefined using C rather than asm.
19771 (GRUB_MOD_DEP): Likewise.
19772 (grub_dl) [__ia64__]: New fields got and tramp.
19773 (grub_dl): New field 'base'.
19774 (grub_dl_register_symbol): New argument isfunc. All users updated.
19775 (GRUB_IA64_DL_TRAMP_ALIGN): New definition.
19776 (GRUB_IA64_DL_TRAMP_SIZE): Likewise.
19777 (GRUB_IA64_DL_GOT_ALIGN): Likewise.
19778 (grub_ia64_dl_get_tramp_got_size): New proto.
19779 (GRUB_ARCH_DL_TRAMP_ALIGN) [__ia64__]: Likewise
19780 (GRUB_ARCH_DL_GOT_ALIGN) [__ia64__]: Likewise
19781 (grub_arch_dl_get_tramp_got_size) [__ia64__]: Likewise
19782 * include/grub/efi/api.h: Skip call wrappers on ia64.
19783 * include/grub/efi/pe32.h (GRUB_PE32_MACHINE_IA64): New definition.
19784 * include/grub/efi/time.h (GRUB_TICKS_PER_SECOND): Change to 1000.
19785 * include/grub/elf.h (ELF_ST_INFO): New definition.
19786 * include/grub/ia64/efi/kernel.h: New file.
19787 * include/grub/ia64/efi/memory.h: Likewise.
19788 * include/grub/ia64/efi/time.h: Likewise.
19789 * include/grub/ia64/kernel.h: Likewise.
19790 * include/grub/ia64/setjmp.h: Likewise (from glibc).
19791 * include/grub/ia64/time.h: New file.
19792 * include/grub/ia64/types.h: Likewise.
19793 * include/grub/libgcc.h (__udivsi3, __umodsi3, __umoddi3, __udivdi3,
19794 __moddi3, __divdi3, __divsi3, __modsi3, __ia64_trampoline):
19795 New protos.
19796 * include/grub/offsets.h (GRUB_KERNEL_IA64_EFI_PREFIX): New definition.
19797 (GRUB_KERNEL_IA64_EFI_PREFIX_END): Likewise.
19798 * include/grub/types.h (PRIxGRUB_ADDR): Likewise.
19799 * util/grub-mkimage.c (image_target_desc): New field pe_target.
19800 All users updated.
19801 (EFI64_HEADER_SIZE): New definition. All users updated.
19802 (image_targets): Add ia64-efi.
19803 * util/grub-mkimagexx.c (relocate_symbols): New arguments jumpers and
19804 jumpers_addr. All users updated.
19805 Create function descriptors.
19806 (count_funcs): New function.
19807 (unaligned_uint32): New struct.
19808 (MASK20): New definition.
19809 (MASK19): Likewise.
19810 (MASKF21): Likewise.
19811 (add_value_to_slot_20b): New function.
19812 (add_value_to_slot_21_real): Likewise.
19813 (add_value_to_slot_21): Likewise.
19814 (ia64_kernel_trampoline): New struct.
19815 (nopm): New variable.
19816 (jump): Likewise.
19817 (make_trampoline): New function.
19818 (relocate_addresses): Handle ia64.
19819 (make_reloc_section): Likewise.
19820 (load_image): Likewise.
19821
19822 2011-05-15 Vladimir Serbinenko <phcoder@gmail.com>
19823
19824 * grub-core/fs/btrfs.c (grub_btrfs_read_logical): Silence spurious
19825 warning. Move variables before code while on it.
19826
19827 2011-05-15 Vladimir Serbinenko <phcoder@gmail.com>
19828
19829 Fuloong support.
19830
19831 * configure.ac: Rename yeeloong platform to loongson. All users updated.
19832 * grub-core/Makefile.core.def (fwstart_fuloong): New image.
19833 * grub-core/boot/mips/loongson/fuloong.S: New file.
19834 * grub-core/boot/mips/loongson/fwstart.S: Wait for CS5536 to come up.
19835 Explicitly init CS5536.
19836 [FULOONG]: Don't use serial until CS5536 is available.
19837 Set GPIO based on dumps.
19838 (serial_hw_init) [FULOONG]: Handle CS5536 parts.
19839 [FULOONG]: Handle GPIO and memory controller differences.
19840 Parse machine type in $a2.
19841 * grub-core/boot/mips/startup_raw.S: Determine and save the
19842 architecture.
19843 * grub-core/bus/cs5536.c (gpiodump): Move to fwstart.S.
19844 (grub_cs5536_init_geode): Remove gpio part. Conditionalise DIVIL
19845 init on architecture type.
19846 * grub-core/kern/mips/loongson/init.c (grub_machine_init): Init
19847 SIS315E. Don't init at_keyboard on fuloong.
19848 (grub_halt): Support Fuloong.
19849 * grub-core/kern/mips/startup.S [LOONGSON]: Save $s7.
19850 * grub-core/loader/mips/linux.c (LOONGSON_MACHTYPE): Removed.
19851 (loongson_machtypes): New array.
19852 (grub_cmd_linux) [GRUB_MACHINE_MIPS_LOONGSON]: Pass the right machine
19853 type.
19854 * grub-core/term/ns8250.c (serial_get_divisor): New parameter port and
19855 config. All users updated. Handle CS5536 serial.
19856 * grub-core/term/serial.c (grub_serial_register): Conditionalise
19857 default port on machine type. Register serial as inactive.
19858 * grub-core/video/sis315pro.c: New file.
19859 * include/grub/cs5536.h (GRUB_CS5536_MSR_MAILBOX_CONFIG_ENABLED): New
19860 definition.
19861 (GRUB_CS5536_MSR_MAILBOX_CONFIG): Likewise.
19862 (GRUB_CS5536_MSR_DIVIL_LEG_IO_UART1_COM1): Likewise.
19863 (GRUB_CS5536_MSR_DIVIL_LEG_IO_UART2_COM3): Likewise.
19864 (GRUB_CS5536_MSR_DIVIL_UART1_CONF): Likewise.
19865 (GRUB_CS5536_MSR_DIVIL_UART2_CONF): Likewise.
19866 * include/grub/mips/loongson.h (GRUB_CPU_LOONGSON_SHUTDOWN_GPIO): Rename
19867 to ...
19868 (GRUB_CPU_YEELOONG_SHUTDOWN_GPIO): ... this.
19869 * include/grub/mips/loongson/kernel.h (GRUB_ARCH_MACHINE_YEELOONG): New
19870 definition.
19871 (GRUB_ARCH_MACHINE_FULOONG): Likewise.
19872 (grub_arch_machine): New extern var.
19873 * include/grub/mips/loongson/serial.h
19874 (GRUB_MACHINE_SERIAL_DIVISOR_115200): Renamed to ...
19875 (GRUB_MACHINE_SERIAL_PORT0_DIVISOR_115200): ... this.
19876 (GRUB_MACHINE_SERIAL_PORT): Renamed to ...
19877 (GRUB_MACHINE_SERIAL_PORT0): ... this.
19878 (GRUB_MACHINE_SERIAL_PORT2_DIVISOR_115200): New definition.
19879 (GRUB_MACHINE_SERIAL_PORT1): Likewise.
19880 (GRUB_MACHINE_SERIAL_PORT2): Likewise.
19881 (GRUB_MACHINE_SERIAL_PORTS): Include ports 1 and 2.
19882 * include/grub/term.h (grub_term_register_input_inactive): New inline
19883 function.
19884 (grub_term_register_output_inactive): Likewise.
19885 * include/grub/video.h (grub_video_driver_id): New value
19886 GRUB_VIDEO_DRIVER_SIS315PRO.
19887 * util/grub-mkimage.c (image_target_desc): Rename name to dirname.
19888 New field "names". All users updated.
19889 New field value IMAGE_FULOONG_FLASH.
19890 (generate_image): USe separate fwstart hashes for yeeloong and fuloong.
19891
19892 2011-05-14 Jordan Uggla <jordan.uggla@gmail.com>
19893
19894 * docs/grub.texi (Invoking grub-install): Fix additional outdated claims
19895 and add some clarification.
19896
19897 2011-05-14 Vladimir Serbinenko <phcoder@gmail.com>
19898
19899 * util/grub.d/10_linux.in: Autoload gzio since it's needed on some
19900 platforms if kernel is compressed.
19901
19902 2011-05-14 Vladimir Serbinenko <phcoder@gmail.com>
19903
19904 * grub-core/kern/mm.c (grub_memalign): Disable auto-unloadding of
19905 unused modules since currently referrence counter isn't reliable and
19906 there isn't much memory to recover there anyway.
19907
19908 2011-05-14 Vladimir Serbinenko <phcoder@gmail.com>
19909
19910 * grub-core/kern/dl.c (grub_dl_load_file): Decrease ref counter
19911 rather than resetting it to allow modules to reference themselves
19912 in init.
19913
19914 2011-05-14 Vladimir Serbinenko <phcoder@gmail.com>
19915
19916 * grub-core/kern/dl.c (grub_dl_unload): Don't decrease reference
19917 counter on dependencies since grub_dl_unref already handles this.
19918
19919 2011-05-14 Vladimir Serbinenko <phcoder@gmail.com>
19920
19921 * grub-core/font/font_cmd.c (loadfont_command): Set grub_errno
19922 on error if not already done.
19923
19924 2011-05-14 Vladimir Serbinenko <phcoder@gmail.com>
19925
19926 Fix few potential memory misusage.
19927
19928 * grub-core/font/font.c (load_font_index): Don't free char_index to
19929 avoid double free.
19930 (grub_font_load): Zero-fill font at alloc for safety.
19931 Close file on error.
19932 (free_font): Free bmp_idx.
19933
19934 2011-05-14 Vladimir Serbinenko <phcoder@gmail.com>
19935
19936 * docs/grub.texi (Installation): Fix several outdated claims.
19937
19938 2011-05-14 Vladimir Serbinenko <phcoder@gmail.com>
19939
19940 Handle module_license on windows.
19941
19942 * util/grub-pe2elf.c (MODLICENSE_SECTION): New definition. All following
19943 sections shifted.
19944 (insert_string): Make argument const char * instead of char *.
19945 (write_section_data): Handle long section names.
19946 Handle module_license.
19947
19948 2011-05-14 Vladimir Serbinenko <phcoder@gmail.com>
19949
19950 * grub-core/commands/menuentry.c (grub_cmd_menuentry): Correctly
19951 handle class-free menuentries.
19952 (grub_normal_add_menu_entry): Add a check to be sure.
19953
19954 2011-05-14 Vladimir Serbinenko <phcoder@gmail.com>
19955
19956 * grub-core/term/at_keyboard.c (set1_e0_mapping): Fix swap between
19957 PgUp and PgDown.
19958
19959 2011-05-13 Vladimir Serbinenko <phcoder@gmail.com>
19960
19961 * configure.ac: Bump version to 1.99.
19962
19963 2011-05-13 Vladimir Serbinenko <phcoder@gmail.com>
19964
19965 Give ATA device a bit more time on first try in order to allow disks
19966 to spin up.
19967
19968 * grub-core/disk/ata.c (grub_atapi_identify): Use GRUB_ATA_TOUT_DEV_INIT
19969 if dev->present is 1. Reset dev->present on failure.
19970 (grub_ata_device_initialize): Set dev->present to 1.
19971 * include/grub/ata.h (GRUB_ATA_TOUT_DEV_INIT): New value.
19972 (grub_ata_device): New member 'present'.
19973
19974 2011-05-13 Vladimir Serbinenko <phcoder@gmail.com>
19975
19976 * util/grub-mkimage.c (generate_image): Update hash.
19977
19978 2011-05-13 Vladimir Serbinenko <phcoder@gmail.com>
19979
19980 Flush caches on DMA memory.
19981
19982 * grub-core/kern/mips/cache.S (grub_arch_sync_dma_caches): New function.
19983 * grub-core/bus/pci.c (grub_memalign_dma32): Flush caches.
19984 (grub_dma_free): Likewise.
19985 * include/grub/cache.h (grub_arch_sync_dma_caches): New declaration.
19986
19987 2011-05-13 Vladimir Serbinenko <phcoder@gmail.com>
19988
19989 * grub-core/boot/mips/yeeloong/fwstart.S: Add explicit set mips3
19990 to avoid asm treating ld and sd as macros.
19991
19992 2011-05-13 Vladimir Serbinenko <phcoder@gmail.com>
19993
19994 * grub-core/boot/mips/startup_raw.S: Flush cache after loading
19995 decompressor.
19996
19997 2011-05-13 Vladimir Serbinenko <phcoder@gmail.com>
19998
19999 * grub-core/boot/mips/startup_raw.S: Use jalr rather than bal to call
20000 grub_decompress_core since later would fail if grub_decompress_core
20001 is too far.
20002
20003 2011-05-13 Vladimir Serbinenko <phcoder@gmail.com>
20004
20005 * grub-core/kern/mips/dl.c (grub_arch_dl_relocate_symbols): Handle
20006 R_MIPS_JALR since it's used by newer compiler.
20007
20008 2011-05-10 Vladimir Serbinenko <phcoder@gmail.com>
20009
20010 * util/grub.d/10_linux.in: Correctly handle the Linux in root.
20011
20012 2011-05-09 Vladimir Serbinenko <phcoder@gmail.com>
20013
20014 * grub-core/loader/efi/chainloader.c (grub_chainloader_unload): Set
20015 file_path to 0 for surety.
20016 (grub_chainloader_boot): Set exit_data to NULL.
20017 Unset the loader once done.
20018 (grub_cmd_chainloader): Fix confusing error message if file is empty.
20019
20020 2011-05-09 Vladimir Serbinenko <phcoder@gmail.com>
20021
20022 * grub-core/term/at_keyboard.c (fetch_key): Make a printf on
20023 unknown key into a dprintf.
20024
20025 2011-05-09 Vladimir Serbinenko <phcoder@gmail.com>
20026
20027 * grub-core/kern/emu/hostdisk.c (linux_find_partition): Don't abort
20028 on first non-existant partition.
20029
20030 2011-05-09 Vladimir Serbinenko <phcoder@gmail.com>
20031
20032 * grub-core/kern/emu/hostdisk.c (open_device): Set data->fd to -1 if
20033 openning fails.
20034 Reported by: Mark Korenberg.
20035
20036 2011-05-09 Vladimir Serbinenko <phcoder@gmail.com>
20037
20038 * grub-core/kern/emu/hostdisk.c (linux_find_partition): Prevent possible
20039 overflow.
20040
20041 2011-05-09 Vladimir Serbinenko <phcoder@gmail.com>
20042
20043 * util/grub-mkimage.c (main): Explicitely flush and sync the output
20044 before closing to ensure that it will be readable by grub-setup.
20045
20046 2011-05-05 Vladimir Serbinenko <phcoder@gmail.com>
20047
20048 * grub-core/loader/efi/appleloader.c (MAKE_PIWG_PATH): New macro.
20049 (devpath_1): Use MAKE_PIWG_PATH.
20050 (devpath_2): Likewise.
20051 (devpath_3): Likewise.
20052 (devpath_4): Likewise.
20053 (devpath_5): Likewise.
20054 (devpath_6): Likewise.
20055
20056 The appleldr.mod was checked that to be binary identical to previous
20057 version.
20058
20059 2011-05-05 Zach <mikezackles>
20060
20061 Support 2010 Macbooks.
20062
20063 * grub-core/loader/efi/appleloader.c (devpath_6): New variable.
20064 (devs): Add devpath_6.
20065
20066 2011-05-05 Vladimir Serbinenko <phcoder@gmail.com>
20067
20068 * util/grub-mkpasswd-pbkdf2.c (main): Use /dev/urandom and not
20069 /dev/random. /dev/urandom is good enough for our purposes (salting).
20070
20071 2011-05-05 Vladimir Serbinenko <phcoder@gmail.com>
20072
20073 * util/grub-mkrescue.in (process_input_dir): Include efiemu??.o.
20074
20075 2011-05-05 Vladimir Serbinenko <phcoder@gmail.com>
20076
20077 * grub-core/lib/legacy_parse.c (grub_legacy_parse): Correctly handle
20078 hexadecimal.
20079
20080 2011-05-05 Vladimir Serbinenko <phcoder@gmail.com>
20081
20082 * grub-core/efiemu/main.c (grub_efiemu_load_file): Return grub_errno
20083 and not 0 on failure.
20084
20085 2011-05-03 Colin Watson <cjwatson@ubuntu.com>
20086
20087 * grub-core/fs/i386/pc/pxe.c (grub_pxefs_dir): Return
20088 GRUB_ERR_BAD_FS rather than GRUB_ERR_IO if the disk is not a pxe
20089 disk; otherwise grub_fs_probe will not fall back to the next
20090 filesystem.
20091 (grub_pxefs_open): Likewise, for consistency.
20092 Reported and tested by: Ezekiel Grave.
20093
20094 2011-05-03 Colin Watson <cjwatson@ubuntu.com>
20095
20096 * tests/partmap_test.in: Don't hardcode path to parted.
20097 Reported by: Peter Hjalmarsson. Fixes Savannah bug #33150.
20098
20099 2011-05-01 Colin Watson <cjwatson@ubuntu.com>
20100
20101 * docs/grub.texi (GRUB only offers a rescue shell): Suggest the use
20102 of `ls' to find out which devices are available.
20103
20104 2011-04-25 Vladimir Serbinenko <phcoder@gmail.com>
20105
20106 * grub-core/loader/i386/linux.c (grub_linux_boot): Supply target rather
20107 than source address for efi mmap buffer.
20108
20109 2011-04-25 Vladimir Serbinenko <phcoder@gmail.com>
20110
20111 * grub-core/partmap/amiga.c (amiga_partition_map_iterate): Fix a
20112 wrong action on non-detecting the magic.
20113
20114 2011-04-25 Vladimir Serbinenko <phcoder@gmail.com>
20115
20116 * grub-core/gnulib/regex.c: Remove GRUB_MOD_LICENSE since it's
20117 already supplied by another part of the module (fixes compilation on
20118 FreeBSD).
20119
20120 2011-04-25 Vladimir Serbinenko <phcoder@gmail.com>
20121
20122 * grub-core/disk/mdraid_linux.c (grub_mdraid_detect): Make mdraid UUID
20123 match the one used by mdadm.
20124
20125 2011-04-21 Colin Watson <cjwatson@ubuntu.com>
20126
20127 * po/README: Add instructions for creating po/LINGUAS.
20128
20129 2011-04-21 Colin Watson <cjwatson@ubuntu.com>
20130
20131 Add "SEE ALSO" sections to most man pages. Fixes Debian bug
20132 #551428.
20133
20134 * docs/man/grub-editenv.h2m (SEE ALSO): New section.
20135 * docs/man/grub-emu.h2m (SEE ALSO): Likewise.
20136 * docs/man/grub-fstest.h2m (SEE ALSO): Likewise.
20137 * docs/man/grub-install.h2m (SEE ALSO): Likewise.
20138 * docs/man/grub-macho2img.h2m (SEE ALSO): Likewise.
20139 * docs/man/grub-menulst2cfg.h2m (SEE ALSO): Likewise.
20140 * docs/man/grub-mkconfig.h2m (SEE ALSO): Likewise.
20141 * docs/man/grub-mkdevicemap.h2m (SEE ALSO): Likewise.
20142 * docs/man/grub-mkfont.h2m (SEE ALSO): Likewise.
20143 * docs/man/grub-mkimage.h2m (SEE ALSO): Likewise.
20144 * docs/man/grub-mklayout.h2m (SEE ALSO): Likewise.
20145 * docs/man/grub-mknetdir.h2m (SEE ALSO): Likewise.
20146 * docs/man/grub-mkpasswd-pbkdf2.h2m (SEE ALSO): Likewise.
20147 * docs/man/grub-mkrelpath.h2m (SEE ALSO): Likewise.
20148 * docs/man/grub-mkrescue.h2m (SEE ALSO): Likewise.
20149 * docs/man/grub-ofpathname.h2m (SEE ALSO): Likewise.
20150 * docs/man/grub-pe2elf.h2m (SEE ALSO): Likewise.
20151 * docs/man/grub-probe.h2m (SEE ALSO): Likewise.
20152 * docs/man/grub-reboot.h2m (SEE ALSO): Likewise.
20153 * docs/man/grub-script-check.h2m (SEE ALSO): Likewise.
20154 * docs/man/grub-set-default.h2m (SEE ALSO): Likewise.
20155 * docs/man/grub-setup.h2m (SEE ALSO): Likewise.
20156
20157 2011-04-21 Colin Watson <cjwatson@ubuntu.com>
20158
20159 * grub-core/kern/emu/getroot.c
20160 (grub_find_root_device_from_mountinfo): Remove non-virtual-device
20161 test that was incorrectly reintroduced in r3214.
20162 Reported by: Ian Dall. Fixes Savannah bug #33133.
20163
20164 2011-04-21 Colin Watson <cjwatson@ubuntu.com>
20165
20166 Fix stack pointer handling in 16-bit relocator.
20167
20168 * grub-core/lib/i386/relocator16.S (grub_relocator16_start): Move
20169 grub_relocator16_sp to %esp rather than %ss, and zero-extend it.
20170 Fixes Ubuntu bug #683904.
20171
20172 2011-04-20 Vladimir Serbinenko <phcoder@gmail.com>
20173
20174 * configure.ac: Bump version to 1.99~rc2.
20175
20176 2011-04-20 Vladimir Serbinenko <phcoder@gmail.com>
20177
20178 * include/grub/dl.h [ASM_FILE]: Adapt for assembly.
20179 * grub-core/lib/i386/setjmp.S: Add missing GRUB_MOD_LICENSE.
20180 * grub-core/lib/x86_64/setjmp.S: Likewise.
20181 * grub-core/lib/mips/setjmp.S: Likewise.
20182 * grub-core/lib/powerpc/setjmp.S: Likewise.
20183 * grub-core/lib/sparc64/setjmp.S: Likewise.
20184
20185 2011-04-20 Vladimir Serbinenko <phcoder@gmail.com>
20186
20187 * grub-core/lib/efi/datetime.c: Add missing GRUB_MOD_LICENSE.
20188 * grub-core/lib/efi/datetime.c: Likewise.
20189
20190 2011-04-19 Vladimir Serbinenko <phcoder@gmail.com>
20191
20192 * grub-core/kern/emu/hostdisk.c (grub_util_biosdisk_flush):
20193 New function.
20194 (grub_util_biosdisk_close): Use grub_util_biosdisk_flush.
20195 * include/grub/emu/hostdisk.h (grub_util_biosdisk_flush): New proto.
20196 * util/grub-setup.c (setup): Use grub_util_biosdisk_flush.
20197
20198 2011-04-19 Vladimir Serbinenko <phcoder@gmail.com>
20199
20200 * grub-core/term/gfxterm.c (grub_gfxterm_fullscreen): Preserve previous
20201 bitmap.
20202 (grub_gfxterm_term_init): Likewise.
20203
20204 2011-04-19 Vladimir Serbinenko <phcoder@gmail.com>
20205
20206 Take into account the decorations the computing menu entry width.
20207
20208 * grub-core/gfxmenu/widget-box.c (get_border_width): New function.
20209 (grub_gfxmenu_create_box): Register get_border_width.
20210 * grub-core/gfxmenu/gui_list.c (draw_menu): Use get_border_width
20211 if available.
20212 * include/grub/gfxwidgets.h (grub_gfxmenu_box): New member
20213 get_border_width.
20214
20215 2011-04-18 Endres Puschner <code@e7p.de>
20216
20217 * grub-core/gfxmenu/icon_manager.c (grub_gfxmenu_icon_manager_get_icon):
20218 Don't skip first class.
20219
20220 2011-04-18 Vladimir Serbinenko <phcoder@gmail.com>
20221
20222 * grub-core/fs/btrfs.c (grub_btrfs_read_logical): Support huge
20223 chunks.
20224 * include/grub/err.h (grub_err_t): New enum value GRUB_ERR_BUG.
20225
20226 2011-04-18 Vladimir Serbinenko <phcoder@gmail.com>
20227
20228 Complete 64-bit division support.
20229
20230 * grub-core/kern/misc.c (grub_divmod64): Rename to ...
20231 (grub_divmod64_full): ... this. Support 64-bit divisor and reminder.
20232 * include/grub/misc.h (grub_divmod64): Rename to ...
20233 (grub_divmod64_full): ... this.
20234 (grub_divmod64): New inline function.
20235
20236 2011-04-18 Vladimir Serbinenko <phcoder@gmail.com>
20237
20238 * util/grub-mkimage.c (generate_image): Add forgotten comma.
20239
20240 2011-04-18 Vladimir Serbinenko <phcoder@gmail.com>
20241
20242 * util/grub-mkimage.c (generate_image): Update fwstart.img hash after
20243 performing the necessary test.
20244
20245 2011-04-17 Vladimir Serbinenko <phcoder@gmail.com>
20246
20247 * Makefile.am (multiboot.elf): Add -Wl,--build-id=none.
20248 (kfreebsd.elf): Likewise.
20249 (pc-chainloader.elf): Likewise.
20250 (ntldr.elf): Likewise.
20251
20252 2011-04-17 Vladimir Serbinenko <phcoder@gmail.com>
20253
20254 Identify RAID by its UUID rather than (guessed) name.
20255
20256 * grub-core/disk/raid.c (ascii2hex): New function.
20257 (grub_raid_open): Accept mduuid/%s specification.
20258 * grub-core/kern/emu/getroot.c (get_mdadm_name): Revamped into ...
20259 (get_mdadm_uuid): ... this.
20260 (grub_util_get_grub_dev): Use mduuid/%s if UUID is available.
20261
20262 2011-04-16 Vladimir Serbinenko <phcoder@gmail.com>
20263
20264 * grub-core/gfxmenu/gui_image.c (rescale_image): Don't attempt to scale
20265 to negative size.
20266
20267 2011-04-13 Colin Watson <cjwatson@ubuntu.com>
20268
20269 * util/grub.d/10_linux.in: Add rootflags=subvol=<name> if / is on a
20270 btrfs subvolume.
20271 * util/grub.d/20_linux_xen.in: Likewise.
20272
20273 2011-04-13 Colin Watson <cjwatson@ubuntu.com>
20274
20275 Rewrite /proc/self/mountinfo handling to cope with bind-mounts and
20276 move-mounts appearing out of order. Fixes Ubuntu bug #738345.
20277
20278 * grub-core/kern/emu/getroot.c (find_root_device_from_mountinfo):
20279 Build a list of relevant visible mounts using the mnt_id and
20280 parent_mnt_id fields, and then scan that list at the end.
20281
20282 2011-04-12 Colin Watson <cjwatson@ubuntu.com>
20283
20284 * docs/grub.texi (normal): New section.
20285 (normal_exit): New section.
20286 (Embedded configuration): Add reference to normal.
20287 (GRUB only offers a rescue shell): Likewise.
20288 * docs/grub-dev.texi (Error Handling): Fix typo.
20289
20290 2011-04-12 Colin Watson <cjwatson@ubuntu.com>
20291
20292 * NEWS: Drop obsolete entry about probe-only btrfs support.
20293
20294 2011-04-12 Colin Watson <cjwatson@ubuntu.com>
20295
20296 * util/import_gcry.py: Fix typo.
20297
20298 2011-04-11 Vladimir Serbinenko <phcoder@gmail.com>
20299
20300 * NEWS: Add btrfs support.
20301
20302 2011-04-11 Vladimir Serbinenko <phcoder@gmail.com>
20303 2011-04-11 Colin Watson <cjwatson@ubuntu.com>
20304
20305 BtrFS support. Written by me (Vladimir) with important bugfixes and
20306 even more important testing by Colin.
20307
20308 * Makefile.util.def (libgrubmods.a): Add crc.c and gzio.c
20309 * grub-core/Makefile.core.def (btrfs): Add crc.c.
20310 * grub-core/fs/btrfs.c: Stub replaced with real implementation.
20311 * grub-core/io/gzio.c (grub_gzio): New fields mem_input_size,
20312 mem_input_off and mem_input. All users updated to accept in-RAM input.
20313 (gzio_seek): New function.
20314 (test_zlib_header): Likewise.
20315 (grub_gzio_read): Likewise.
20316 (grub_zlib_decompress): Likewise.
20317 * grub-core/kern/emu/getroot.c (grub_find_root_device_from_mountinfo):
20318 Accept partial and non-virtual mounts.
20319 (grub_guess_root_device): Do rescanning after device_from_mountinfo to
20320 avoid receiving /dev/dm-X as device.
20321 * grub-core/kern/emu/misc.c (grub_make_system_path_relative_to_its_root):
20322 Handle bind and partial mounts.
20323 * grub-core/lib/crc.c: New file.
20324 * include/grub/deflate.h: Likewise.
20325 * include/grub/emu/misc.h (grub_find_root_device_from_mountinfo): New
20326 proto.
20327 * include/grub/lib/crc.h: New file.
20328
20329 2011-04-11 Vladimir Serbinenko <phcoder@gmail.com>
20330
20331 Implement automatic module license checking according to new GNU
20332 guidelines.
20333
20334 * grub-core/kern/dl.c (grub_dl_check_license): New function.
20335 (grub_dl_load_core): Use grub_dl_check_license.
20336 * include/grub/dl.h (GRUB_MOD_SECTION): New macro.
20337 (GRUB_MOD_LICENSE): Likewise.
20338 (GRUB_MOD_DUAL_LICENSE): Likewise.
20339 All modules updated.
20340
20341 2011-04-11 Colin Watson <cjwatson@ubuntu.com>
20342
20343 * grub-core/fs/btrfs.c (grub_btrfs_fs) [GRUB_UTIL]: Set
20344 reserved_first_sector to 1. btrfs reserves plenty of space for boot
20345 loaders.
20346 Reported by: Gene Cumm. Fixes Ubuntu bug #757446.
20347
20348 2011-04-11 Vladimir Serbinenko <phcoder@gmail.com>
20349
20350 * util/grub-fstest.c (cmd_cmp): Check that sizes match.
20351
20352 2011-04-11 Vladimir Serbinenko <phcoder@gmail.com>
20353
20354 * util/grub-fstest.c (read_file): Report GRUB error if file opening
20355 failed.
20356
20357 2011-04-11 Vladimir Serbinenko <phcoder@gmail.com>
20358
20359 * grub-core/kern/file.c (grub_file_open): Don't take into account the
20360 parenthesis in the middle of the filename.
20361
20362 2011-04-10 Vladimir Serbinenko <phcoder@gmail.com>
20363
20364 * grub-core/loader/mips/linux.c (grub_cmd_initrd): Use correct limits
20365 rather than trying to put initrd way too high.
20366 Reported by: Ryan Lortie <desrt@desrt.ca>
20367
20368 2011-04-10 Vladimir Serbinenko <phcoder@gmail.com>
20369
20370 * grub-core/boot/mips/yeeloong/fwstart.S (no_cs5536): Put back
20371 improperly removed string.
20372
20373 2011-04-10 Vladimir Serbinenko <phcoder@gmail.com>
20374
20375 * grub-core/kern/emu/hostdisk.c (grub_util_biosdisk_data): New member
20376 is_disk.
20377 (grub_util_biosdisk_open): Don't apply ioctl on non-disk devices.
20378 (open_device) Likewise.
20379 (grub_util_biosdisk_close): Likewise.
20380 Reported by: Mark Korenberg.
20381
20382 2011-04-10 Alexander Kurtz <kurtz.alex@googlemail.com>
20383
20384 * util/grub-mkconfig_lib.in: Add missing quotes.
20385
20386 2011-04-10 Colin Watson <cjwatson@ubuntu.com>
20387
20388 * grub-core/gnulib/argp-parse.c (__argp_input): Don't crash if pstate
20389 is NULL.
20390
20391 2011-04-10 Vladimir Serbinenko <phcoder@gmail.com>
20392
20393 Dynamically count the number of lines for the lower banner.
20394
20395 * grub-core/normal/menu_entry.c (per_term_screen): New member
20396 num_entries.
20397 (print_down): Use num_entries.
20398 (update_screen): Likewise.
20399 (grub_menu_entry_run): Set num_entries.
20400 * grub-core/normal/menu_text.c (menu_viewer_data): New member
20401 num_entries.
20402 (grub_print_message_indented): Move real part to ...
20403 (grub_print_message_indented_real): ... here. Additional argument
20404 dry_run.
20405 (draw_border): Additional argument num_entries.
20406 (print_message): Additional argument dry_run.
20407 (print_entries): Receive menu viewer data.
20408 (grub_menu_init_page): New argment num_entries.
20409 (menu_text_set_chosen_entry): Use num_entries.
20410 (grub_menu_try_text): Likewise.
20411 * grub-core/normal/term.c (print_ucs4_terminal): New argument dry_run.
20412 All users updated.
20413 (grub_ucs4_count_lines): New function.
20414 * include/grub/term.h (grub_term_cursor_x): Moved from here ..
20415 * grub-core/normal/menu_text.c (grub_term_cursor_x): ... to here.
20416 * include/grub/term.h (GRUB_TERM_MESSAGE_HEIGHT): Removed.
20417 (grub_term_border_height): Likewise.
20418 (grub_term_num_entries): Likewise.
20419
20420 2011-04-10 Vladimir Serbinenko <phcoder@gmail.com>
20421
20422 * grub-core/boot/mips/yeeloong/fwstart.S: Fix address to error message.
20423 Remove now unused string.
20424
20425 2011-04-09 Colin Watson <cjwatson@ubuntu.com>
20426
20427 * docs/grub-dev.texi (Finding your way around): Update for 1.99
20428 build system.
20429 (Getting started): GRUB is developed in Bazaar now, not Subversion.
20430
20431 (Comment): Fix typo.
20432 (Getting started): General copy-editing.
20433 (Typical Development Experience): Likewise.
20434 (Error Handling): Likewise.
20435 (Video API): Likewise.
20436
20437 2011-04-09 Colin Watson <cjwatson@ubuntu.com>
20438
20439 * docs/grub-dev.texi: Replace MoinMoin syntax with Texinfo syntax
20440 throughout.
20441
20442 2011-04-08 Vladimir Serbinenko <phcoder@gmail.com>
20443
20444 * util/grub-mkimage.c (main): Handle special naming of yeeloong
20445 directory.
20446
20447 2011-04-08 Colin Watson <cjwatson@ubuntu.com>
20448
20449 * docs/grub-dev.texi: Fix spelling of "developer" throughout.
20450 * grub-core/fs/i386/pc/pxe.c (parse_dhcp_vendor): Fix spelling of
20451 "development".
20452
20453 2011-04-08 Vladimir Serbinenko <phcoder@gmail.com>
20454
20455 * grub-core/normal/menu_entry.c (run): Use grub_memcpy rather than
20456 grub_strcpy since the lines aren't necessarily 0-terminated.
20457
20458 2011-04-08 Vladimir Serbinenko <phcoder@gmail.com>
20459
20460 * grub-core/lib/legacy_parse.c (legacy_commands): Find doesn't set
20461 root on legacy.
20462
20463 2011-04-08 Vladimir Serbinenko <phcoder@gmail.com>
20464
20465 * grub-core/commands/probe.c (options): Argument to set isn't optional.
20466 (GRUB_MOD_INIT): DEVICE isn't optional.
20467
20468 2011-04-08 Vladimir Serbinenko <phcoder@gmail.com>
20469
20470 * grub-core/normal/term.c (print_ucs4_terminal): Don't try to put the
20471 word on new line if it's too long anyway. Fixes a hang.
20472
20473 2011-04-08 Vladimir Serbinenko <phcoder@gmail.com>
20474
20475 * include/grub/util/raid.h (grub_util_raid_getmembers): Make argument
20476 const.
20477 * util/grub-setup.c (main): Reuse md device name if available.
20478 * util/raid.c (grub_util_raid_getmembers): Receive device name and
20479 not GRUB name as argument.
20480 Based on patch by: Florian Wagner <fwagner>.
20481
20482 2011-04-08 Vladimir Serbinenko <phcoder@gmail.com>
20483
20484 * grub-core/loader/i386/multiboot_mbi.c (grub_multiboot_make_mbi):
20485 Place mbi on low memory for better compatibility.
20486
20487 2011-04-08 Vladimir Serbinenko <phcoder@gmail.com>
20488
20489 * include/grub/efiemu/efiemu.h: Use grub_memory_hook_t type.
20490
20491 2011-04-08 Vladimir Serbinenko <phcoder@gmail.com>
20492 2011-04-08 Colin Watson <cjwatson@ubuntu.com>
20493
20494 * autogen.sh: Ensure that collate and ctype locale is C.
20495 * conf/Makefile.common: Likewise.
20496
20497 2011-04-08 Vladimir Serbinenko <phcoder@gmail.com>
20498
20499 * grub-core/normal/menu.c: Add missing include.
20500
20501 2011-04-08 Vladimir Serbinenko <phcoder@gmail.com>
20502
20503 * grub-core/disk/raid.c [GRUB_UTIL]: Add missing include.
20504
20505 2011-04-08 Martin Zuther <mzuther@mzuther.de>
20506
20507 * util/grub-mkconfig.in: Ignore emacsen backup.
20508
20509 2011-04-08 Vladimir Serbinenko <phcoder@gmail.com>
20510
20511 * grub-core/kern/emu/hostdisk.c (open_device): Sync on close and not
20512 on open.
20513 (grub_util_biosdisk_close): Likewise.
20514
20515 2011-04-08 Vladimir Serbinenko <phcoder@gmail.com>
20516
20517 * grub-core/kern/emu/getroot.c (grub_util_get_grub_dev): Add missing
20518 const attribute and use grub_isdigit.
20519
20520 2011-04-06 Andrey <dev_null@ukr.net>
20521
20522 * grub-core/video/fb/video_fb.c (grub_video_fb_setup): Silence older
20523 gcc warning.
20524
20525 2011-04-06 Vladimir Serbinenko <phcoder@gmail.com>
20526
20527 * grub-core/lib/relocator.c (grub_relocator_alloc_chunk_align): Add few
20528 useful grub_dprintf's.
20529
20530 2011-04-06 Vladimir Serbinenko <phcoder@gmail.com>
20531
20532 * include/grub/fs.h (grub_dirhook_info): Use unsigned for 1-bit fields.
20533
20534 2011-04-06 Vladimir Serbinenko <phcoder@gmail.com>
20535
20536 * util/grub.d/00_header.in: Don't use LANG unless unifont is available.
20537
20538 2011-04-06 Vladimir Serbinenko <phcoder@gmail.com>
20539
20540 Output errors if theme loading failed.
20541
20542 * grub-core/gfxmenu/gfxmenu.c (grub_gfxmenu_try): Move the call to
20543 grub_gfxterm_fullscreen on error paths to ...
20544 * grub-core/normal/menu.c (menu_init): ...here. Wait after showing
20545 theme loading error.
20546
20547 2011-04-06 Vladimir Serbinenko <phcoder@gmail.com>
20548
20549 * include/grub/offsets.h (GRUB_KERNEL_I386_PC_RAW_SIZE): Let a bit more
20550 space for older compilers.
20551 (GRUB_KERNEL_I386_PC_NO_REED_SOLOMON_PART): Likewise.
20552
20553 2011-04-06 Vladimir Serbinenko <phcoder@gmail.com>
20554
20555 * grub-core/disk/mdraid1x_linux.c (grub_mdraid_detect): Detect spares
20556 and report them as not RAID members since they are useless for GRUB.
20557 * grub-core/disk/mdraid_linux.c (grub_mdraid_detect): Likewise.
20558
20559 2011-04-02 Vladimir Serbinenko <phcoder@gmail.com>
20560
20561 Increase LVM implementation robustness in order not to crash on
20562 configurations like pvmove. Previously code assumed that in some places
20563 only lvs or only pvs are used whereas it seems that they are used
20564 interchangeably.
20565
20566 * grub-core/disk/lvm.c (read_node): New function.
20567 (read_lv): Use read_node.
20568 (grub_lvm_scan_device): Use only first mirror on pvmove'd lvs.
20569 Match volumes only at the end when all lvs are found. Take both
20570 pvs (first) and lvs (second) into account.
20571 * include/grub/lvm.h (grub_lvm_segment): Merge fields stripe_* and
20572 mirror_* into node_*. All users updated.
20573 (grub_lvm_stripe): Merge this ...
20574 (grub_lvm_mirror): ... and this ...
20575 (grub_lvm_node): ... into this. All users updated.
20576
20577 2011-04-02 Vladimir Serbinenko <phcoder@gmail.com>
20578
20579 * grub-core/disk/lvm.c (grub_lvm_scan_device): Print errors on the end
20580 of function to allow further scanning for LVMs.
20581
20582 2011-04-02 Vladimir Serbinenko <phcoder@gmail.com>
20583
20584 * grub-core/kern/emu/hostdisk.c (grub_util_biosdisk_read): Don't close
20585 on failed seek as it breaks open fd reusage.
20586
20587 2011-04-02 Vladimir Serbinenko <phcoder@gmail.com>
20588
20589 * util/grub-install.in: Add a recommendation to use --recheck before
20590 reporting bugs.
20591
20592 2011-04-02 Vladimir Serbinenko <phcoder@gmail.com>
20593
20594 * docs/grub.texi (Vendor power-on buttons): Explain how the numbers
20595 are obtained.
20596
20597 2011-04-02 Vladimir Serbinenko <phcoder@gmail.com>
20598
20599 GRUB developper manual based on existing Internals section and
20600 contributions by the various authors with active copyright assignment.
20601
20602 * docs/Makefile.am (info_TEXINFOS): Add grub-dev.texi.
20603 * docs/font_char_metrics.png: New file.
20604 * docs/font_char_metrics.txt: Likewise.
20605 * docs/grub-dev.texi: Likewise.
20606 * docs/grub.texi (Internals): Move from here ...
20607 * docs/grub-dev.texi: ... here.
20608
20609 2011-04-01 Colin Watson <cjwatson@ubuntu.com>
20610
20611 Store the loopback device as data on loopback grub_disk structures,
20612 rather than the file it points to. This fixes use of freed memory
20613 if an existing loopback device is replaced.
20614
20615 * grub-core/disk/loopback.c (grub_loopback_open): Store dev in
20616 disk->data, not dev->file.
20617 (grub_loopback_read): Adjust file assignment to match.
20618 Fixes Ubuntu bug #742967.
20619
20620 2011-04-01 Colin Watson <cjwatson@ubuntu.com>
20621
20622 * grub-core/disk/loopback.c (grub_cmd_loopback): Fix a memory leak
20623 when replacing an existing device.
20624
20625 2011-04-01 Vladimir Serbinenko <phcoder@gmail.com>
20626
20627 Fix incorrect types in jfs.c. This enables >2TiB disks and fixes some
20628 memory corruptions.
20629
20630 * grub-core/fs/jfs.c (struct grub_jfs_diropen): Interpret bytes as
20631 unsigned.
20632 (grub_jfs_lookup_symlink): Make ino a grub_uint32_t rather than int.
20633 (grub_jfs_blkno): Use 64-bit quantities for block sectors.
20634 (grub_jfs_read_inode): Likewise.
20635 (grub_jfs_opendir): Likewise. Remove now useless casts.
20636 (grub_jfs_getent): Likewise.
20637 Make ino a grub_uint32_t rather than int.
20638 (grub_jfs_mount): Ensure that blksize and log2_blksize are consistent.
20639 (grub_jfs_read_file): Use 64-bit quantities when necessary. Replace
20640 division and module with bit operations.
20641 (grub_jfs_find_file): Make ino a grub_uint32_t.
20642 (grub_jfs_lookup_symlink): Likewise. Use 64-bit quantities
20643
20644 2011-04-01 Colin Watson <cjwatson@ubuntu.com>
20645
20646 * grub-core/normal/menu_entry.c (run): Quieten uninitialised
20647 warning. (This was in fact always initialised before use, but GCC
20648 wasn't smart enough to prove that.)
20649 * grub-core/script/lexer.c (grub_script_lexer_yywrap): Likewise.
20650
20651 2011-03-31 Vladimir Serbinenko <phcoder@gmail.com>
20652
20653 * grub-core/kern/x86_64/efi/callwrap.S (efi_wrap_0): Preserve 16-byte
20654 stack alignment.
20655 (efi_wrap_1): Likewise.
20656 (efi_wrap_2): Likewise.
20657 (efi_wrap_3): Likewise.
20658 (efi_wrap_4): Likewise.
20659 (efi_wrap_5): Likewise.
20660 (efi_wrap_6): Likewise.
20661 (efi_wrap_10): Likewise.
20662 Based on information by: Red Hat/Peter Jones.
20663
20664 2011-03-31 Colin Watson <cjwatson@ubuntu.com>
20665
20666 * grub-core/mmap/efi/mmap.c (grub_mmap_unregister): Remove
20667 set-but-not-used variable.
20668
20669 2011-03-31 Colin Watson <cjwatson@ubuntu.com>
20670
20671 * docs/grub.texi (Simple configuration): Be more explicit about
20672 GRUB_DEFAULT, and add an example.
20673 Reported by: Leslie Rhorer.
20674
20675 2011-03-30 Colin Watson <cjwatson@ubuntu.com>
20676
20677 * docs/grub.texi (Commands): Link to "GRUB only offers a rescue
20678 shell".
20679
20680 2011-03-30 Alexey Shvetsov <alexxy@gentoo.org>
20681
20682 * util/grub.d/10_linux.in: Add gentoo-specific config filename.
20683 * util/grub.d/20_linux_xen.in: Likewise.
20684
20685 2011-03-30 Vladimir Serbinenko <phcoder@gmail.com>
20686
20687 * util/grub.d/10_linux.in: Try alternative config filenames where
20688 we parse config file.
20689 * util/grub.d/20_linux_xen.in: Likewise.
20690
20691 2011-03-30 Alexey Shvetsov <alexxy@gentoo.org>
20692
20693 * util/grub.d/10_linux.in: Add gentoo-specific Linux and initrd names.
20694 * util/grub.d/20_linux_xen.in: Likewise.
20695
20696 2011-03-30 Vladimir Serbinenko <phcoder@gmail.com>
20697
20698 * grub-core/disk/raid.c (insert_array): Add few potentially
20699 useful grub_util_info.
20700 (grub_raid_register): Likewise.
20701
20702 2011-03-30 Vladimir Serbinenko <phcoder@gmail.com>
20703
20704 * grub-core/kern/emu/getroot.c (grub_util_get_grub_dev) [__linux__]:
20705 Preserve partition number in mdadm code path.
20706
20707 2011-03-30 Vladimir Serbinenko <phcoder@gmail.com>
20708
20709 * grub-core/kern/emu/hostdisk.c (grub_util_biosdisk_get_grub_dev): Add
20710 few potentially useful grub_util_info.
20711
20712 2011-03-30 Vladimir Serbinenko <phcoder@gmail.com>
20713
20714 * grub-core/disk/lvm.c (grub_lvm_scan_device): Remove spurious \n.
20715
20716 2011-03-30 Colin Watson <cjwatson@ubuntu.com>
20717
20718 * docs/grub.texi (default): Use @example rather than nested
20719 itemized lists to avoid breaking gendocs.
20720
20721 2011-03-30 Colin Watson <cjwatson@ubuntu.com>
20722
20723 * docs/grub.texi (Future): Update.
20724
20725 2011-03-30 Colin Watson <cjwatson@ubuntu.com>
20726
20727 * docs/grub.texi (Environment): New chapter.
20728 (Changes from GRUB Legacy): Link to "Environment block" section for
20729 details of limitations.
20730 (Simple configuration): Likewise. Link to documentation of gfxmode
20731 and gfxpayload variables from GRUB_GFXMODE and GRUB_GFXPAYLOAD
20732 respectively.
20733 (Shell-like scripting): Note that normal variables are stored in the
20734 environment.
20735 (gettext): Link to documentation of lang and locale_dir.
20736 (list_env): New section.
20737 (load_env): New section.
20738 (save_env): New section.
20739
20740 (Reporting bugs): Fix typo.
20741
20742 2011-03-30 Vladimir Serbinenko <phcoder@gmail.com>
20743
20744 * docs/grub.texi: Correctly use "terminal_input" and not "terminal" in
20745 the example.
20746
20747 2011-03-30 Vladimir Serbinenko <phcoder@gmail.com>
20748
20749 * grub-core/term/at_keyboard.c (set_scancodes)
20750 [!GRUB_MACHINE_MIPS_YEELOONG && !GRUB_MACHINE_QEMU]: Use scancode set 1.
20751
20752 2011-03-30 Colin Watson <cjwatson@ubuntu.com>
20753
20754 * docs/grub.texi (Menu-specific commands): Remove some semantics
20755 that were true in GRUB Legacy but not in GRUB 2.
20756 (submenu): New section.
20757 (false): New section.
20758 (read): New section.
20759 (true): New section.
20760
20761 2011-03-30 Colin Watson <cjwatson@ubuntu.com>
20762
20763 * docs/grub.texi (Changes from GRUB Legacy): Minor proofreading.
20764
20765 2011-03-30 Colin Watson <cjwatson@ubuntu.com>
20766
20767 * docs/grub.texi (Simple configuration): Explain some of the
20768 current limitations of grub-mkconfig.
20769 Reported by: Leslie Rhorer.
20770
20771 2011-03-29 Vladimir Serbinenko <phcoder@gmail.com>
20772
20773 Old macs search for boot.efi rather than for bootia32.efi.
20774
20775 * util/grub-install.in: Copy bootia32.efi to boot.efi.
20776 * util/grub-mkrescue.in: Likewise.
20777 Suggested by: Peter Jones.
20778
20779 2011-03-29 Vladimir Serbinenko <phcoder@gmail.com>
20780
20781 * util/grub.d/20_linux_xen.in: Accept old-style xen kernels.
20782
20783 2011-03-29 Vladimir Serbinenko <phcoder@gmail.com>
20784
20785 * include/grub/lvm.h (grub_lvm_lv): New field 'visible'.
20786 (grub_lvm_segment): New fields 'type', 'mirror_count' and 'mirrors'.
20787 (grub_lvm_mirror): New struct.
20788 * grub-core/disk/lvm.c (grub_lvm_checkvalue): Commented out.
20789 (grub_lvm_iterate): Iterate only visible volumes.
20790 (grub_lvm_read): Factor out to ..
20791 (read_lv): ... this. Support mirrors.
20792 (grub_lvm_read): New wrapper function.
20793 (grub_lvm_scan_device): Parse mirrors. Skip everything that isn't
20794 stripped or mirrored.
20795
20796 2011-03-29 Vladimir Serbinenko <phcoder@gmail.com>
20797
20798 * util/grub.d/10_linux.in: Skip vmlinux-* on x86 platforms.
20799
20800 2011-03-29 Colin Watson <cjwatson@ubuntu.com>
20801
20802 * docs/grub.texi (loopback): New section.
20803
20804 2011-03-29 Colin Watson <cjwatson@ubuntu.com>
20805
20806 * grub-core/disk/loopback.c (GRUB_MOD_INIT): Stop documenting
20807 removed -p option.
20808
20809 2011-03-29 Colin Watson <cjwatson@ubuntu.com>
20810
20811 * docs/grub.texi (BIOS installation): New section, partly based on
20812 previous text in other sections.
20813 (Installing GRUB using grub-install): Replace BIOS discussion with a
20814 cross-reference.
20815 (Images): Likewise.
20816
20817 2011-03-29 Vladimir Serbinenko <phcoder@gmail.com>
20818
20819 * grub-core/kern/emu/hostdisk.c (find_partition_start)
20820 [HAVE_DIOCGDINFO]: Add safety checks.
20821
20822 2011-03-29 Vladimir Serbinenko <phcoder@gmail.com>
20823
20824 * util/grub.d/10_kfreebsd.in: Allow ufs.ko to be missing as it's
20825 per default compiled in kernel and prior to 8.0 isn't shipped at all.
20826
20827 2011-03-29 Colin Watson <cjwatson@ubuntu.com>
20828
20829 * grub-core/disk/mdraid1x_linux.c (grub_mdraid_detect): If
20830 real_sb->size is zero (e.g. RAID-0), get the disk size from
20831 real_sb->data_size instead.
20832 Fixes Ubuntu bug #743136.
20833
20834 2011-03-29 Vladimir Serbinenko <phcoder@gmail.com>
20835
20836 * grub-core/normal/misc.c (grub_normal_print_device_info): Use correct
20837 printf clauses for printing size and start.
20838
20839 2011-03-29 Vladimir Serbinenko <phcoder@gmail.com>
20840
20841 * grub-core/fs/ext2.c (grub_ext2_read_inode): Fix an overflow.
20842 Reported and tested by: Timothy Nikkel.
20843
20844 2011-03-29 Vladimir Serbinenko <phcoder@gmail.com>
20845
20846 * grub-core/term/gfxterm.c (dirty_region_add): Move core part to ...
20847 (dirty_region_add_real): ... this.
20848 (dirty_region_add): Don't discard margin refresh when performing
20849 scheduled repaint.
20850
20851 2011-03-29 Vladimir Serbinenko <phcoder@gmail.com>
20852
20853 * grub-core/lib/relocator.c (allocate_regstart)
20854 [!DEBUG_RELOCATOR_NOMEM_DPRINTF]: Avoid grub_dprintf since not all
20855 terminals are capabple of malloc-free operation.
20856 (allocate_inreg) [!DEBUG_RELOCATOR_NOMEM_DPRINTF]: Likewise.
20857 (malloc_in_range) [!DEBUG_RELOCATOR_NOMEM_DPRINTF]: Likewise.
20858
20859 2011-03-29 Mario Limonciello <Mario_Limonciello@Dell.com>
20860
20861 * util/grub-setup.c: Copy the partition table zone if floppy support
20862 is disabled, even if no partition table is found.
20863
20864 Otherwise, the BIOS on Dell Latitude E series laptops will freeze
20865 during POST if an invalid partition table is contained in the PBR
20866 of the active partition when GRUB is installed to a partition.
20867
20868 2011-03-28 Colin Watson <cjwatson@debian.org>
20869
20870 * grub-core/disk/mdraid1x_linux.c (grub_mdraid_detect): Remove stale
20871 comment.
20872
20873 2011-03-28 Colin Watson <cjwatson@debian.org>
20874
20875 * grub-core/disk/raid.c (grub_raid_register): Adjust debug message
20876 to be specific about what kind of RAID device we're scanning for.
20877
20878 2011-03-26 Seth Goldberg <seth.goldberg@oracle.com>
20879
20880 * grub-core/kern/emu/getroot.c (find_root_device_from_libzfs): Don't
20881 return freed string.
20882
20883 2011-03-26 Vladimir Serbinenko <phcoder@gmail.com>
20884
20885 * grub-core/fs/iso9660.c (grub_iso9660_label): Rtrim the label.
20886
20887 2011-03-26 Vladimir Serbinenko <phcoder@gmail.com>
20888
20889 Use libgeom on FreeBSD to detect partitions.
20890
20891 * Makefile.util.def (grub-mkimage): Add LIBGEOM to ldadd.
20892 (grub-mkrelpath): Likewise.
20893 (grub-script-check): Likewise.
20894 (grub-editenv): Likewise.
20895 (grub-mkpasswd-pbkdf2): Likewise.
20896 (grub-fstest): Likewise.
20897 (grub-mkfont): Likewise.
20898 (grub-mkdevicemap): Likewise.
20899 (grub-probe): Likewise.
20900 (grub-setup): Likewise.
20901 (grub-ofpathname): Likewise.
20902 (grub-mklayout): Likewise.
20903 (example_unit_test): Likewise.
20904 (grub-menulst2cfg): Likewise.
20905 * grub-core/Makefile.core.def (grub-emu): Likewise.
20906 (grub-emu-lite): Likewise.
20907 * configure.ac: Check for -lgeom on FreeBSD and set LIBGEOM.
20908 * grub-core/kern/emu/hostdisk.c [FreeBSD]: Include libgeom.h. Don't
20909 define HAVE_DIOCGDINFO.
20910 (follow_geom_up) [FreeBSD]: New function.
20911 (find_partition_start) [FreeBSD]: Rewritten using follow_geom_up.
20912 (convert_system_partition_to_system_disk) [FreeBSD]: Likewise.
20913 (grub_util_biosdisk_get_grub_dev) [FreeBSD]: Use FreeBSD path
20914 unconditionally of HAVE_DIOCGDINFO.
20915
20916 2011-03-26 Vladimir Serbinenko <phcoder@gmail.com>
20917
20918 Fix FreeBSD compilation problem.
20919
20920 * grub-core/kern/emu/hostdisk.c (MAJOR) [FreeBSD]: New definition.
20921 (FLOPPY_MAJOR) [FreeBSD]: Likewise.
20922
20923 2011-03-24 Colin Watson <cjwatson@ubuntu.com>
20924
20925 * grub-core/video/fb/video_fb.c (grub_video_fb_get_info_and_fini):
20926 Switch back to page zero before loading a kernel, since some kernel
20927 drivers expect that.
20928 Thanks to: Felix Kuehling.
20929
20930 2011-03-24 Vladimir Serbinenko <phcoder@gmail.com>
20931
20932 * grub-core/lib/relocator.c (grub_relocator_alloc_chunk_addr)
20933 [DEBUG_RELOCATOR]: Reuse grub_mm_check.
20934 (grub_relocator_alloc_chunk_align) [DEBUG_RELOCATOR]: Likewise.
20935
20936 2011-03-24 Vladimir Serbinenko <phcoder@gmail.com>
20937
20938 * include/grub/mm.h (GRUB_MM_CHECK): Rename to ...
20939 (grub_mm_check): ... this. MAke a function-like macro and use GRUB_FILE.
20940
20941 2011-03-24 Vladimir Serbinenko <phcoder@gmail.com>
20942
20943 * grub-core/lib/relocator.c (allocate_inreg): Avoid dprintf unless
20944 DEBUG_RELOCATOR is defined since gfxterm can't cope with output when
20945 malloc is disabled.
20946
20947 2011-03-24 Vladimir Serbinenko <phcoder@gmail.com>
20948
20949 * grub-core/loader/i386/bsdXX.c (grub_freebsd_load_elfmodule): Account
20950 for modules headers when counting the needed allocation size.
20951
20952 2011-03-23 Vladimir Serbinenko <phcoder@gmail.com>
20953
20954 * grub-core/term/gfxterm.c (calculate_normal_character_width): Return 8
20955 if no ASCII character is found to prevent crash.
20956
20957 2011-03-23 Alexander Kurtz <kurtz.alex@googlemail.com>
20958
20959 * grub-core/video/bitmap.c (match_extension): Ignore case.
20960
20961 2011-03-23 Vladimir Serbinenko <phcoder@gmail.com>
20962
20963 * grub-core/normal/menu_entry.c (init_line): Fix off-by-one error.
20964
20965 2011-03-23 Vladimir Serbinenko <phcoder@gmail.com>
20966
20967 * grub-core/script/parser.y: Declare "time" as valid argument.
20968
20969 2011-03-23 Peter Jones <pjones@redhat.com>
20970
20971 Fix incorrect assert failure reporting.
20972
20973 * grub-core/tests/example_functional_test.c (example_test): Add
20974 a failure comment.
20975 * grub-core/tests/lib/test.c (add_failure): Renamed to ...
20976 (failure_start): ...this. Check that malloc succeeded.
20977 Don't call xvasprintf. Return failure struct.
20978 (failure_append_vtext): New function.
20979 (failure_append_text): Likewise.
20980 (add_failure): Likewise.
20981 (grub_test_assert_helper): Likewise.
20982 * include/grub/test.h (grub_test_assert_helper): New declaration.
20983 (grub_test_assert): Macro rewritten.
20984
20985 2011-03-23 Vladimir Serbinenko <phcoder@gmail.com>
20986
20987 * grub-core/normal/main.c (GRUB_MOD_INIT): Export pager variable.
20988
20989 2011-03-23 Vladimir Serbinenko <phcoder@gmail.com>
20990
20991 * grub-core/lib/i386/pc/biosnum.c: Add missing include.
20992
20993 2011-03-23 Vladimir Serbinenko <phcoder@gmail.com>
20994
20995 * grub-core/disk/usbms.c (grub_usbms_reset): Transform USB-style error
20996 into GRUB-style one.
20997
20998 2011-03-23 Vladimir Serbinenko <phcoder@gmail.com>
20999
21000 * grub-core/bus/usb/usbtrans.c (grub_usb_control_msg): Return usb-style
21001 error and not grub_errno.
21002 * grub-core/bus/usb/usbhub.c (grub_usb_add_hub): Likewise.
21003
21004 2011-03-23 Vladimir Serbinenko <phcoder@gmail.com>
21005
21006 * grub-core/bus/usb/uhci.c (grub_uhci_detect_dev): Return
21007 GRUB_USB_SPEED_NONE in case of failure and not the error code.
21008
21009 2011-03-23 Vladimir Serbinenko <phcoder@gmail.com>
21010
21011 * grub-core/efiemu/i386/pc/cfgtables.c
21012 (grub_machine_efiemu_init_tables): Make declaration a prototype.
21013 * grub-core/loader/xnu.c (grub_xnu_lock): Likewise.
21014 (grub_xnu_unlock): Likewise.
21015 * grub-core/normal/cmdline.c (grub_cmdline_get/cl_set_pos_all): Likewise.
21016
21017 2011-03-23 Vladimir Serbinenko <phcoder@gmail.com>
21018
21019 * grub-core/bus/usb/usb.c (attach_hooks): Make static.
21020 * grub-core/bus/usb/usbhub.c (hubs): Likewise.
21021 * grub-core/commands/hashsum.c (aliases): Likewise.
21022 * grub-core/commands/setpci.c (pci_registers): Likewise.
21023 * grub-core/disk/usbms.c (attach_hook): Likewise.
21024 * grub-core/fs/zfs/zfs.c (decomp_table): Likewise.
21025 (zio_checksum_table): Likewise.
21026 * grub-core/gettext/gettext.c (grub_gettext_msg_list): Likewise.
21027 * grub-core/gfxmenu/gfxmenu.c (cached_view): Likewise.
21028 * grub-core/lib/legacy_parse.c (legacy_commands): Likewise.
21029 * grub-core/lib/relocator.c (leftovers): Likewise.
21030 (extra_blocks): Likewise.
21031 * grub-core/loader/i386/bsd.c (relocator): Likewise.
21032 * grub-core/loader/i386/multiboot_mbi.c (modules): Likewise.
21033 (modules_last): Likewise.
21034 * grub-core/loader/i386/xnu.c (table_aliases): Likewise.
21035 (devices): Likewise.
21036 * grub-core/loader/multiboot_mbi2.c (modules): Likewise.
21037 (modules_last): Likewise.
21038 * grub-core/normal/auth.c (users): Likewise.
21039 * grub-core/normal/context.c (initial_menu): Likewise.
21040 (current_menu): Likewise.
21041 * grub-core/normal/crypto.c (crypto_specs): Likewise.
21042 * grub-core/term/serial.c (grub_serial_ports): Likewise.
21043 (grub_serial_terminfo_input_template): Likewise.
21044 (grub_serial_terminfo_output_template): Likewise.
21045 (grub_serial_terminfo_input): Likewise.
21046 (grub_serial_terminfo_output): Likewise.
21047 (registered): Likewise.
21048 * grub-core/term/usb_keyboard.c (attach_hook): Likewise.
21049
21050 2011-03-23 Vladimir Serbinenko <phcoder@gmail.com>
21051
21052 * grub-core/video/bochs.c (grub_video_bochs_setup): Use
21053 grub_video_mode_type_t.
21054 * grub-core/video/cirrus.c (grub_video_cirrus_setup): Likewise.
21055 * grub-core/video/i386/pc/vbe.c (grub_video_vbe_setup): Likewise.
21056 * grub-core/video/i386/pc/vga.c (grub_video_vga_setup): Likewise.
21057
21058 2011-03-23 Vladimir Serbinenko <phcoder@gmail.com>
21059
21060 * util/grub-install.in: Correct the x86-64 name as x86_64.
21061
21062 2011-03-11 Colin Watson <cjwatson@ubuntu.com>
21063
21064 * grub-core/boot/i386/pc/lnxboot.S (real_code_2): Ensure that the
21065 initial chunk read from the kernel always includes GRUB's multiboot
21066 header, which is now outside the first sector.
21067
21068 2011-03-09 Colin Watson <cjwatson@ubuntu.com>
21069
21070 * grub-core/loader/i386/linux.c (find_efi_mmap_size): Page-align
21071 cached mmap_size, so that this works correctly when called multiple
21072 times.
21073 Reported by: Daniel Kahn Gillmor. Should fix Debian bug #616638.
21074
21075 2011-03-09 Colin Watson <cjwatson@ubuntu.com>
21076
21077 * docs/grub.texi (Simple configuration): Tidy up formatting.
21078
21079 2011-03-07 Szymon Janc <szymon@janc.net.pl>
21080
21081 * grub-core/fs/zfs/zfs.c (zap_leaf_lookup):
21082 Set-but-not-used variable removed.
21083
21084 2011-02-12 Vladimir Serbinenko <phcoder@gmail.com>
21085
21086 Workaround yet another IEEE1275 bug.
21087
21088 * include/grub/ieee1275/ieee1275.h (grub_ieee1275_flag): New enum value
21089 GRUB_IEEE1275_FLAG_BROKEN_ADDRESS_CELLS.
21090 * grub-core/kern/ieee1275/mmap.c (grub_machine_mmap_iterate): Ignore
21091 adress_cells and size:cells if GRUB_IEEE1275_FLAG_BROKEN_ADDRESS_CELLS
21092 is set.
21093 * grub-core/kern/ieee1275/cmain.c (grub_ieee1275_find_options): Set
21094 GRUB_IEEE1275_FLAG_BROKEN_ADDRESS_CELLS on powermacs.
21095
21096 2011-02-12 Vladimir Serbinenko <phcoder@gmail.com>
21097
21098 * grub-core/partmap/msdos.c (pc_partition_map_embed): Fix off by one
21099 error.
21100
21101 2011-02-11 Colin Watson <cjwatson@ubuntu.com>
21102
21103 * util/grub.d/20_linux_xen.in: Bail out early if linux_list is
21104 empty, since in that case we can only generate either nothing or a
21105 syntactically invalid configuration file.
21106 Reported by: Michal Suchanek. Fixes Debian bug #612898.
21107
21108 2011-02-09 Colin Watson <cjwatson@ubuntu.com>
21109
21110 * docs/grub.texi (Kernel): Add reference to grub-mkrescue.
21111 (Making a GRUB bootable CD-ROM): Likewise.
21112 (Invoking grub-mkrescue): New section.
21113 Reported by: Yann Dirson. Fixes Debian bug #612585.
21114
21115 2011-02-09 Colin Watson <cjwatson@ubuntu.com>
21116
21117 * util/grub-install.in: Remove unnecessary brackets from tr
21118 arguments.
21119 * util/grub.d/10_hurd.in: Likewise.
21120 * util/grub.d/10_kfreebsd.in: Likewise.
21121 * util/grub.d/10_linux.in: Likewise.
21122 * util/grub.d/20_linux_xen.in: Likewise.
21123 Reported by: Jamie Heilman. Fixes Debian bug #612564.
21124
21125 2011-02-08 Colin Watson <cjwatson@ubuntu.com>
21126
21127 * include/grub/file.h (not_easly_seekable): Rename to ...
21128 (not_easily_seekable): ... this. Update all users.
21129
21130 2011-01-28 Colin Watson <cjwatson@ubuntu.com>
21131
21132 * docs/grub.texi (Making a GRUB bootable CD-ROM): Update to describe
21133 grub-mkrescue.
21134
21135 2011-01-24 Vladimir Serbinenko <phcoder@gmail.com>
21136
21137 * util/grub-mkimage.c (generate_image): Refuse to create the images
21138 bigger than the actual flash (512K) in Loongson machines. 512K is also
21139 the biggest chip supported by them.
21140
21141 2011-01-22 Vladimir Serbinenko <phcoder@gmail.com>
21142
21143 * grub-core/kern/emu/getroot.c: Include config-util.h explicitly.
21144
21145 2011-01-22 Anthony DeRobertis <anthony@derobert.net>
21146
21147 * grub-core/disk/mdraid1x_linux.c (grub_mdraid_detect): Check
21148 super_offset field.
21149
21150 2011-01-22 Vladimir Serbinenko <phcoder@gmail.com>
21151
21152 * util/grub-install.in: Ignore install device on platforms
21153 where it doesn't make sense. Always use UUIDs except on pc, efi and
21154 sparc64.
21155 Reported by: Daniel Kahn Gillmor.
21156
21157 2011-01-22 Vladimir Serbinenko <phcoder@gmail.com>
21158
21159 * grub-core/bus/bonito.c (write_bases): Fix direction of the shift.
21160
21161 2011-01-22 Vladimir Serbinenko <phcoder@gmail.com>
21162
21163 * grub-core/partmap/bsdlabel.c: Include grub/emu/misc.h and not grub/util/misc.h.
21164 (iterate_real): Don't rely on partition being non-NULL.
21165
21166 2011-01-22 Vladimir Serbinenko <phcoder@gmail.com>
21167
21168 * grub-core/script/argv.c (round_up_exp): unsigned is 32-bit on all
21169 supported platforms. Put a compile time assert for this rather than
21170 generate a warning with 32-bit shift.
21171
21172 2011-01-22 Vladimir Serbinenko <phcoder@gmail.com>
21173
21174 * grub-core/disk/scsi.c (grub_scsi_read): Fix binary and check and make
21175 logical expression more readable.
21176
21177 2011-01-22 Vladimir Serbinenko <phcoder@gmail.com>
21178
21179 * grub-core/disk/raid.c (insert_array): Ensure uniqueness of p->number
21180 even if some elements have a name.
21181 Reported by: Alexander GQ Gerasiov.
21182
21183 2011-01-22 Colin Watson <cjwatson@ubuntu.com>
21184
21185 * util/grub-mkconfig_lib.in (is_path_readable_by_grub): Consider a
21186 path unreadable if `grub-probe -t abstraction' fails, for example if
21187 memberlist fails on an LVM volume group.
21188 Reported by: Darius Jahandarie.
21189
21190 2011-01-22 Colin Watson <cjwatson@ubuntu.com>
21191
21192 * docs/grub.texi (Simple configuration): Document
21193 GRUB_PRELOAD_MODULES.
21194
21195 2011-01-17 Colin Watson <cjwatson@ubuntu.com>
21196
21197 * .bzrignore: Remove nonexistent grub-pbkdf2.
21198
21199 2011-01-16 Vladimir Serbinenko <phcoder@gmail.com>
21200
21201 * configure.ac: Bump version to 1.99~rc1.
21202
21203 2011-01-15 Vladimir Serbinenko <phcoder@gmail.com>
21204
21205 * util/grub-mkimage.c (generate_image): Check fwstart.img checksum
21206 for safety.
21207
21208 2011-01-14 Vladimir Serbinenko <phcoder@gmail.com>
21209
21210 * grub-core/kern/mips/yeeloong/init.c (grub_machine_init): Init boot
21211 module.
21212
21213 2011-01-14 Vladimir Serbinenko <phcoder@gmail.com>
21214
21215 * grub-core/Makefile.core.def (fwstart): Add lost LDFLAGS.
21216
21217 2011-01-13 Vladimir Serbinenko <phcoder@gmail.com>
21218
21219 * grub-core/fs/zfs/zfsinfo.c (grub_cmd_zfs_bootfs): Quote bootpath and
21220 diskdevid.
21221
21222 2011-01-13 Vladimir Serbinenko <phcoder@gmail.com>
21223
21224 Fix compilation on cygwin.
21225
21226 * conf/Makefile.common (STRIPFLAGS_KERNEL): Add -F elf32-i386 and
21227 -R .drectve on cygwin.
21228 * conf/i386-pc-cygwin-img-ld.sc: Merge rdata and pdata into data.
21229 * configure.ac: Use $(top_builddir) in TARGET_OBJ2ELF.
21230 (COND_CYGWIN): New condition.
21231 * grub-core/Makefile.am (%.mod): Set TARGET_OBJ2ELF.
21232 * grub-core/genmod.sh.in: Use ${TARGET_OBJ2ELF} and
21233 not @TARGET_OBJ2ELF@.
21234 * util/grub-pe2elf.c (write_symbol_table): Use pe_symtab->type and not
21235 type to determine whether aux is to be used.
21236
21237 2011-01-12 Vladimir Serbinenko <phcoder@gmail.com>
21238
21239 * util/ieee1275/ofpath.c (grub_util_devname_to_ofpath): Use the
21240 realpath'ed device string.
21241 Handle floppy (somewhat).
21242 Issue error in unknown case rather than garbage.
21243 Reported by: Axel Beckert.
21244
21245 2011-01-12 Vladimir Serbinenko <phcoder@gmail.com>
21246
21247 * util/grub.d/00_header.in (load_video): Handle the case when no video
21248 drivers available.
21249 Thanks to: Axel Beckert.
21250
21251 2011-01-12 Vladimir Serbinenko <phcoder@gmail.com>
21252
21253 * util/grub-mkfont.c (write_font_pf2): Use appropriate type for data
21254 variable. Fixes problem on big endian platforms.
21255
21256 2011-01-12 Vladimir Serbinenko <phcoder@gmail.com>
21257
21258 * grub-core/Makefile.core.def (ieee1275_fb): Disable on sparc.
21259 It doesn't work well there.
21260
21261 2011-01-12 Vladimir Serbinenko <phcoder@gmail.com>
21262
21263 * grub-core/normal/context.c (grub_env_context_close): Silence spurious
21264 warning.
21265 * grub-core/normal/menu.c (grub_menu_execute_entry): Likewise.
21266 * grub-core/partmap/msdos.c (pc_partition_map_embed): Use unsigned
21267 counter.
21268
21269 2011-01-12 Vladimir Serbinenko <phcoder@gmail.com>
21270
21271 Use alias->path rather than buggy "canon".
21272
21273 * grub-core/disk/ieee1275/ofdisk.c (ofdisk_hash_add_real): New function.
21274 (ofdisk_hash_add): New argument curcan. All users updated.
21275
21276 2011-01-11 Colin Watson <cjwatson@ubuntu.com>
21277
21278 * configure.ac: Fall back to `true' if `makeinfo' does not exist.
21279
21280 2011-01-11 Vladimir Serbinenko <phcoder@gmail.com>
21281
21282 * grub-core/loader/powerpc/ieee1275/linux.c (grub_linux_load32): Apply
21283 loadmask before doing any calculations. Use correct type for offset.
21284 (grub_linux_load64): Likewise.
21285
21286 2011-01-11 Colin Watson <cjwatson@ubuntu.com>
21287
21288 * util/grub-mklayout.c (console_grub_equivalences_shift): Terminate
21289 with NULL.
21290 (console_grub_equivalences_unshift): Likewise.
21291 Reported by: Daniel Dehennin.
21292
21293 2011-01-11 Vladimir Serbinenko <phcoder@gmail.com>
21294
21295 * grub-core/fs/i386/pc/pxe.c (set_mac_env): Export variable.
21296 (set_env_limn_ro): Likewise.
21297 (GRUB_MOD_INIT): Likewise.
21298 * grub-core/hook/datehook.c (GRUB_MOD_INIT): Likewise. Change to
21299 ARRAY_SIZE while on it.
21300 (GRUB_MOD_FINI): Change to ARRAY_SIZE.
21301 * grub-core/normal/context.c (grub_env_export): Move from here ...
21302 * grub-core/kern/env.c (grub_env_export): ... here.
21303 * grub-core/normal/context.c (grub_cmd_export): Skip exporting root and
21304 prefix.
21305 * grub-core/kern/main.c (grub_main): Export root and prefix.
21306 * include/grub/env.h (grub_env_export): Export.
21307 Reported by: Seth Goldberg.
21308
21309 2011-01-11 Vladimir Serbinenko <phcoder@gmail.com>
21310
21311 * grub-core/loader/i386/multiboot_mbi.c (grub_multiboot_make_mbi):
21312 Take into account space used by ELF sections and multiboot palette.
21313 Reported by: Grégoire Sutre.
21314
21315 2011-01-11 Vladimir Serbinenko <phcoder@gmail.com>
21316
21317 * BUGS: New file.
21318
21319 2011-01-10 Vladimir Serbinenko <phcoder@gmail.com>
21320
21321 Pass more appropriate video id to Linux.
21322
21323 * grub-core/loader/i386/linux.c (grub_linux_setup_video): Use
21324 grub_video_get_driver_id and variable gfxpayloadforcelfb to
21325 fill have_vga.
21326 (grub_linux_boot): Rely on grub_linux_setup_video to fill have_vga and
21327 shift params->lfb_size.
21328 * include/grub/i386/linux.h: Make an enume out of have_vga values.
21329
21330 2011-01-10 Vladimir Serbinenko <phcoder@gmail.com>
21331
21332 * util/grub-menulst2cfg.c: Add missing include of misc.h.
21333
21334 2011-01-10 Vladimir Serbinenko <phcoder@gmail.com>
21335
21336 * grub-core/fs/zfs/zfsinfo.c (grub_cmd_zfs_bootfs): Use comma as
21337 separator and pass bootpath/devid even if only one of them is available.
21338 Reported by: Seth Goldberg.
21339
21340 2011-01-10 Vladimir Serbinenko <phcoder@gmail.com>
21341
21342 Don't use post-4G memory on EFI even if 64-bit since some non-compliant
21343 implementations bug on them.
21344
21345 * grub-core/kern/efi/mm.c (grub_efi_allocate_pages): Skip post-4G
21346 memory.
21347 (filter_memory_map): Likewise.
21348
21349 2011-01-10 Vladimir Serbinenko <phcoder@gmail.com>
21350
21351 * util/grub-kbdcomp.in: Add missing prefix and exec_prefix variables.
21352 Reported by: nebuchadnezzar.
21353
21354 2011-01-10 Vladimir Serbinenko <phcoder@gmail.com>
21355
21356 * util/grub-kbdcomp.in: Add missing transform and bindir variables.
21357 Reported by: nebuchadnezzar.
21358
21359 2011-01-10 Vladimir Serbinenko <phcoder@gmail.com>
21360
21361 Submenu default support.
21362
21363 * grub-core/normal/menu.c (grub_menu_execute_entry): New parameter
21364 auto_boot. All users updated.
21365 Declared static.
21366 Handle chosen and default with submenus.
21367 (grub_menu_execute_with_fallback): Declared static.
21368 Don't notify failure if autobooted. Upper level does it.
21369 (menuentry_eq): New function.
21370 (get_entry_number): Use menuentry_eq.
21371 (show_menu): New parameter "autobooted". All users updated.
21372 (grub_show_menu): Likewise.
21373 * include/grub/normal.h (grub_show_menu): Likewise.
21374 * include/grub/menu.h (grub_menu_execute_entry): Removed.
21375 (grub_menu_execute_with_fallback): Likewise.
21376
21377 2011-01-10 Vladimir Serbinenko <phcoder@gmail.com>
21378
21379 * util/grub-mklayout.c (usage): Update help text.
21380
21381 2011-01-10 Vladimir Serbinenko <phcoder@gmail.com>
21382
21383 * grub-core/commands/legacycfg.c (legacy_file): Trim the line.
21384
21385 2011-01-10 Vladimir Serbinenko <phcoder@gmail.com>
21386
21387 * util/grub-menulst2cfg.c (main): Trim the line.
21388
21389 2011-01-10 Vladimir Serbinenko <phcoder@gmail.com>
21390
21391 * grub-core/kern/i386/pc/init.c (grub_get_conv_memsize): Removed.
21392 (grub_machine_init): Don't check amount of low memory as reportedly
21393 INT 12h can be broken and if low memory is too low we wouldn't have
21394 gotten into grub_machine_init anyway.
21395
21396 2011-01-10 Vladimir Serbinenko <phcoder@gmail.com>
21397
21398 * grub-core/kern/i386/pc/mmap.c (grub_get_conv_memsize): New function.
21399 (grub_machine_mmap_iterate): Take low memory into account
21400
21401 2011-01-10 Vladimir Serbinenko <phcoder@gmail.com>
21402
21403 * grub-core/fs/btrfs.c (grub_btrfs_mount): Transform out of range into
21404 badfs.
21405 Reported by: TiCPU.
21406
21407 2011-01-10 Vladimir Serbinenko <phcoder@gmail.com>
21408
21409 * grub-core/disk/raid.c (insert_array): Display RAID name in duplicate
21410 members errors.
21411
21412 2011-01-09 Grégoire Sutre <gregoire.sutre@gmail.com>
21413
21414 * util/grub.d/10_netbsd.in (netbsd_load_fs_module): New function.
21415 (netbsd_entry): Use netbsd_load_fs_module() to load filesystem module.
21416
21417 2011-01-09 Grégoire Sutre <gregoire.sutre@gmail.com>
21418
21419 * util/grub-mkconfig_lib.in (prepare_grub_to_access_device): Handle
21420 openbsd and netbsd types being in part_bsd module.
21421
21422 2011-01-08 Vladimir Serbinenko <phcoder@gmail.com>
21423
21424 * config.h.in (_LARGEFILE_SOURCE): Add missing define.
21425 (_FILE_OFFSET_BITS): Likewise.
21426 Reported by: Seth Goldberg.
21427
21428 2011-01-08 Grégoire Sutre <gregoire.sutre@gmail.com>
21429
21430 * configure.ac: Check for libdevmapper header.
21431
21432 2011-01-08 Vladimir Serbinenko <phcoder@gmail.com>
21433
21434 * grub-core/fs/zfs/zfs.c (dmu_read): Use void * for some pointers to
21435 avoid aliasing.
21436 (fzap_lookup): Likewise.
21437 (dnode_get): Likewise.
21438 (make_mdn): Likewise.
21439 (zfs_mount): Likewise.
21440 (fzap_iterate): Use temporary pointer to avoid aliasing.
21441 (grub_zfs_read): Likewise.
21442 * grub-core/loader/i386/xnu.c (grub_xnu_boot): Likewise.
21443 * grub-core/loader/xnu.c (grub_cmd_xnu_kernel): Use void * for some
21444 pointers to avoid aliasing.
21445 (grub_cmd_xnu_kernel64): Likewise.
21446 (grub_xnu_load_driver): Likewise.
21447
21448 2011-01-08 Vladimir Serbinenko <phcoder@gmail.com>
21449
21450 * grub-core/commands/terminal.c (grub_cmd_terminal_input): Silence
21451 aliasing warning.
21452 (grub_cmd_terminal_output): Likewise.
21453 Reported and tested by: Grégoire Sutre.
21454
21455 2011-01-08 Vladimir Serbinenko <phcoder@gmail.com>
21456
21457 * grub-core/term/at_keyboard.c (grub_keyboard_getkey): Silence spurious
21458 warning.
21459 Reported and tested by: Grégoire Sutre.
21460
21461 2011-01-08 Vladimir Serbinenko <phcoder@gmail.com>
21462
21463 * configure.ac: Do CPU substitution even if it's specified explicitly.
21464 Reported and tested by: Alain Greppin.
21465
21466 2011-01-08 Vladimir Serbinenko <phcoder@gmail.com>
21467
21468 * grub-core/Makefile.am (rs_decoder.S): Force compilation with -Os.
21469 Reported and tested by: Alain Greppin.
21470
21471 2011-01-08 Vladimir Serbinenko <phcoder@gmail.com>
21472
21473 Satisfy some bison versions need for inttypes.h.
21474
21475 * grub-core/lib/posix_wrap/inttypes.h: New file.
21476 * grub-core/lib/posix_wrap/sys/types.h (int8_t): New type.
21477 (int16_t): Likewise.
21478 (int32_t): Likewise.
21479 (int64_t): Likewise.
21480 Reported and tested by: Alain Greppin.
21481
21482 2011-01-08 Vladimir Serbinenko <phcoder@gmail.com>
21483
21484 * grub-core/loader/i386/bsdXX.c (grub_netbsd_load_elf_meta):
21485 Silence spurious warning.
21486 Reported and tested by: Alain Greppin.
21487
21488 2011-01-07 Szymon Janc <szymon@janc.net.pl>
21489
21490 * docs/grub.texi (Support automatic decompression): Update with xz
21491 decompression support.
21492
21493 2011-01-07 Szymon Janc <szymon@janc.net.pl>
21494
21495 Improve loaders' kernel command line handling.
21496
21497 * grub-core/lib/cmdline.c: New file.
21498 * include/grub/lib/cmdline.h: Likewise.
21499 * grub-core/loader/i386/linux.c (grub_cmd_linux): Use
21500 grub_create_loader_cmdline to create kernel command line.
21501 * grub-core/loader/i386/pc/linux.c (grub_cmd_linux): Likewise.
21502 * grub-core/loader/powerpc/ieee1275/linux.c (grub_cmd_linux): Likewise.
21503 * grub-core/loader/sparc64/ieee1275/linux.c (grub_cmd_linux): Likewise.
21504 * grub-core/Makefile.core.def (linux16): Add lib/cmdline.c on i386_pc.
21505 (linux): Add lib/cmdline.c on common.
21506
21507 2011-01-07 Vladimir Serbinenko <phcoder@gmail.com>
21508
21509 * grub-core/fs/xfs.c (grub_xfs_iterate_dir): Take into account that
21510 inopos might be unaligned.
21511
21512 2011-01-07 Vladimir Serbinenko <phcoder@gmail.com>
21513
21514 * grub-core/disk/mdraid1x_linux.c (grub_mdraid_detect): Add missing
21515 endian transformations.
21516 * grub-core/disk/mdraid_linux.c (grub_mdraid_detect): Likewise.
21517 Based on report by: Doug Nazar.
21518
21519 2011-01-07 Doug Nazar <nazard.michi@gmail.com>
21520
21521 * grub-core/disk/raid5_recover.c (grub_raid5_recover): Add missing
21522 array->members[i].start_sector.
21523 * grub-core/disk/raid6_recover.c (grub_raid6_recover): Likewise.
21524
21525 2011-01-07 Vladimir Serbinenko <phcoder@gmail.com>
21526
21527 * util/grub-setup.c (setup): Handle NetBSD and OpenBSD disklabels.
21528 Reported and tested by: Grégoire Sutre.
21529
21530 2011-01-06 Colin Watson <cjwatson@ubuntu.com>
21531
21532 * tests/util/grub-shell.in: Set serial terminfo type to `dumb', to
21533 avoid causing test failures by clearing the screen.
21534
21535 2011-01-06 Colin Watson <cjwatson@ubuntu.com>
21536
21537 * grub-core/kern/emu/getroot.c (find_root_device_from_mountinfo):
21538 Fix prefix check to handle the case where dir ends with a slash
21539 (most significantly, "/" itself).
21540 Reported by: Michael Vogt.
21541
21542 2011-01-05 Vladimir Serbinenko <phcoder@gmail.com>
21543
21544 Run terminfo_cls on initing terminfo output to clear the screen and
21545 move the cursor to (0,0).
21546
21547 * grub-core/term/ieee1275/ofconsole.c (grub_ofconsole_init_output):
21548 Call grub_terminfo_output_init.
21549 * grub-core/term/serial.c (grub_serial_term_output): Set .init.
21550 * grub-core/term/terminfo.c (grub_terminfo_output_init): New function.
21551 * include/grub/terminfo.h (grub_terminfo_output_init): New declaration.
21552
21553 2011-01-05 Vladimir Serbinenko <phcoder@gmail.com>
21554
21555 * util/grub-install.in: Determine ofpathname, nvsetenv and efibootmgr
21556 only when needed.
21557
21558 2011-01-05 Vladimir Serbinenko <phcoder@gmail.com>
21559
21560 * grub-core/term/terminfo.c (grub_terminfo_readkey): Handle keys with
21561 CTRL.
21562
21563 2011-01-05 Vladimir Serbinenko <phcoder@gmail.com>
21564
21565 The E820 type 5 is BADRAM, not EXEC_CODE.
21566
21567 * grub-core/loader/i386/bsd.c (GRUB_E820_EXEC_CODE): Removed.
21568 (GRUB_E820_BADRAM): New define.
21569 * grub-core/loader/i386/linux.c (grub_linux_boot): Translate code
21570 into reserved. Propagate BADRAM.
21571 * grub-core/loader/i386/bsd.c (GRUB_E820_EXEC_CODE): Removed.
21572 (GRUB_E820_BADRAM): New define.
21573
21574 2011-01-04 Vladimir Serbinenko <phcoder@gmail.com>
21575
21576 * grub-core/lib/efi/relocator.c (grub_relocator_firmware_fill_events):
21577 Ignore the memory post-4G.
21578 (grub_relocator_firmware_alloc_region): Additional debug statement.
21579
21580 2011-01-04 Vladimir Serbinenko <phcoder@gmail.com>
21581
21582 * grub-core/kern/emu/getroot.c (grub_util_get_grub_dev): Check md/%s
21583 names.
21584 Reported by: David Pravec.
21585
21586 2011-01-04 Vladimir Serbinenko <phcoder@gmail.com>
21587
21588 * grub-core/disk/i386/pc/biosdisk.c (GRUB_MOD_INIT): Workaround buggy
21589 BIOSes.
21590
21591 2011-01-04 Vladimir Serbinenko <phcoder@gmail.com>
21592
21593 * grub-core/lib/reed_solomon.c (grub_reed_solomon_add_redundancy):
21594 Prevent overflow.
21595 (grub_reed_solomon_recover): Likewise.
21596
21597 2011-01-04 Vladimir Serbinenko <phcoder@gmail.com>
21598
21599 * grub-core/lib/reed_solomon.c (main) [TEST]: Reactivate normal test.
21600
21601 2011-01-04 Vladimir Serbinenko <phcoder@gmail.com>
21602
21603 * grub-core/lib/reed_solomon.c (scratch) [! STANDALONE]: Remove leftover
21604 variable.
21605
21606 2011-01-04 Colin Watson <cjwatson@ubuntu.com>
21607
21608 * grub-core/commands/legacycfg.c (GRUB_MOD_INIT): Fix typo in
21609 descriptions of extract_legacy_entries_source and
21610 extract_legacy_entries_configfile.
21611 Reported by: Seung Soo, Ha.
21612
21613 2011-01-03 Colin Watson <cjwatson@ubuntu.com>
21614
21615 * grub-core/bus/pci.c (grub_pci_iterate): Skip remaining functions
21616 on devices that do not implement function 0.
21617
21618 2011-01-03 Dave Vasilevsky <dave@vasilevsky.ca>
21619
21620 * grub-core/fs/hfsplus.c: Make parent unsigned.
21621 (grub_hfsplus_cmp_catkey): Don't compare using subtraction, it
21622 overflows.
21623 (grub_hfsplus_cmp_extkey): Likewise
21624
21625 2011-01-03 Vladimir Serbinenko <phcoder@gmail.com>
21626
21627 * util/grub-install.in: Correctly use bootloader_id and not
21628 GRUB_DISTRIBUTOR on efibootmgr line.
21629
21630 2011-01-03 Vladimir Serbinenko <phcoder@gmail.com>
21631
21632 * util/grub-mkfont.c (main): Report errors in FT_New_Face.
21633
21634 2010-12-31 Ian Campbell <ijc@hellion.org.uk>
21635
21636 * util/grub.d/20_linux_xen.in (linux_entry): Correctly capitalize
21637 Xen and reorder menu item wording to make it clearer that this entry
21638 will launch Xen. Print separate messages when loading Xen and
21639 Linux.
21640
21641 2010-12-31 Vladimir Serbinenko <phcoder@gmail.com>
21642
21643 * grub-core/partmap/amiga.c (GRUB_AMIGA_PART_MAGIC): New define.
21644 (amiga_partition_map_iterate): Check "PART" magic to avoid a very long
21645 loop in case of incorrect amiga partmap.
21646
21647 2010-12-31 Vladimir Serbinenko <phcoder@gmail.com>
21648
21649 * grub-core/partmap/amiga.c (GRUB_AMIGA_RDSK_MAGIC): New define.
21650 (amiga_partition_map_iterate): Use grub_memcmp instead of grub_strcmp.
21651 Reported by:EHeM.
21652
21653 2010-12-31 Vladimir Serbinenko <phcoder@gmail.com>
21654
21655 * grub-core/loader/i386/bsdXX.c (grub_openbsd_find_ramdisk): Silence
21656 spurious warning.
21657 Reported by: crocket
21658
21659 2010-12-27 Vladimir Serbinenko <phcoder@gmail.com>
21660
21661 * grub-core/loader/xnu.c (grub_cmd_xnu_kernel) [! GRUB_MACHINE_EFI]:
21662 Preload EFIemu.
21663 (grub_cmd_xnu_kernel64) [! GRUB_MACHINE_EFI]: Likewise.
21664
21665 2010-12-27 Vladimir Serbinenko <phcoder@gmail.com>
21666
21667 * grub-core/loader/xnu.c (grub_cmd_xnu_kext): Abort if no kernel
21668 is loaded
21669 (grub_cmd_xnu_kextdir): Likewise.
21670 (grub_cmd_xnu_splash): Likewise.
21671
21672 2010-12-27 Vladimir Serbinenko <phcoder@gmail.com>
21673
21674 Avoid using Reed-Solomon with 0 redundancy.
21675
21676 * grub-core/kern/i386/pc/startup.S: Remove 0-data check.
21677 * grub-core/lib/reed_solomon.c (decode_block): Do not proceed on 0 data
21678 or 0 redundancy.
21679 (grub_reed_solomon_add_redundancy): Do not proceed with 0 redundancy.
21680 (grub_reed_solomon_recover): Likewise.
21681
21682 2010-12-27 Vladimir Serbinenko <phcoder@gmail.com>
21683
21684 Don't use disk subsystem in freebsd_boot.
21685
21686 * grub-core/loader/i386/bsd.c (freebsd_bootdev): New variable.
21687 (freebsd_biosdev): Likewise.
21688 (grub_freebsd_boot): Use freebsd_bootdev and freebsd_biosdev.
21689 (grub_cmd_freebsd): Set freebsd_bootdev and freebsd_biosdev.
21690
21691 2010-12-26 Vladimir Serbinenko <phcoder@gmail.com>
21692
21693 Handling of files of unknown size is currently limited. They can't be
21694 used e.g. for initrd or modules. Moreover gzip handling of not
21695 easily seekable files is buggy. Disable unknown file size for now. May
21696 be inefficient but works.
21697
21698 * grub-core/io/gzio.c (test_header): Always retrieve the file size.
21699 * grub-core/io/xzio.c (grub_xzio_open): Likewise.
21700
21701 2010-12-25 Mirko Parthey <mirko.parthey@informatik.tu-chemnitz.de>
21702
21703 * grub-core/boot/i386/pc/boot.S: Fix %es:%bx pointing to nowhere on
21704 floppy probe.
21705
21706 2010-12-25 Jeroen Dekkers <jeroen@dekkers.ch>
21707
21708 * grub-core/disk/raid.c (insert_array): Don't add spurious members.
21709
21710 2010-12-25 Shea Levy <shlevy>
21711
21712 * grub-core/genmod.sh.in: Use @OBJCOPY@ rather than objcopy.
21713
21714 2010-12-25 Vladimir Serbinenko <phcoder@gmail.com>
21715
21716 * util/grub.d/30_os-prober.in: Don't emit drivemap directive for
21717 Windows Server 2008.
21718 Reported by: Devin Giddings.
21719
21720 2010-12-25 Vladimir Serbinenko <phcoder@gmail.com>
21721
21722 * grub-core/commands/acpihalt.c (grub_acpi_halt): Sleep for 1.5 before
21723 writing an error message because of async power management.
21724 * grub-core/kern/mips/yeeloong/init.c (grub_halt): Likewise.
21725 (grub_reboot): Likewise.
21726
21727 2010-12-23 Jordan Uggla <jordan.uggla@gmail.com>
21728
21729 * tests/util/grub-shell.in: Suppress "ACPI shutdown failed" error to
21730 keep unit tests from failing when they shouldn't.
21731
21732 2010-12-21 Colin Watson <cjwatson@ubuntu.com>
21733
21734 * include/grub/offsets.h (GRUB_KERNEL_I386_PC_RAW_SIZE): The
21735 previous patch increased the size of the RS code by 20 bytes (at
21736 least with gcc-4.4), so increase this by 20 bytes to match.
21737 (GRUB_KERNEL_I386_PC_NO_REED_SOLOMON_PART): Likewise.
21738
21739 2010-12-21 Colin Watson <cjwatson@ubuntu.com>
21740
21741 * grub-core/lib/reed_solomon.c (gauss_solve): Fix size of standalone
21742 scratch area. Make sure to initialise chosen in standalone mode as
21743 well as non-standalone.
21744 Reported by: Robert Hooker and Andy Whitcroft.
21745 Tested by: Andy Whitcroft.
21746
21747 2010-12-21 Colin Watson <cjwatson@ubuntu.com>
21748
21749 * grub-core/commands/echo.c (grub_cmd_echo): Make UTF-8-clean by
21750 constructing a new unescaped string and passing it to grub_xputs in
21751 one go, rather than passing characters to grub_printf one at a time.
21752
21753 2010-12-21 Colin Watson <cjwatson@ubuntu.com>
21754
21755 * grub-core/fs/udf.c (read_string): Pacify GCC warning by
21756 initialising utf16.
21757
21758 2010-12-21 Colin Watson <cjwatson@ubuntu.com>
21759
21760 * util/grub-mkconfig_lib.in (gettext_quoted): Add clarifying
21761 comment. Add an extra layer of quotation, requiring the output of
21762 this function to be used in a printf format string.
21763 (gettext_printf): New function.
21764 * util/grub.d/10_hurd.in: Use gettext_printf where appropriate.
21765 Extract translatable strings from here-documents and use a temporary
21766 variable instead, so that xgettext can find them.
21767 * util/grub.d/10_kfreebsd.in: Likewise.
21768 * util/grub.d/10_linux.in: Likewise.
21769 * util/grub.d/20_linux_xen.in: Likewise.
21770
21771 * po/grub.d.sed: New file.
21772 * po/Makefile.in.in ($(DOMAIN).pot-update): Extract gettext_printf
21773 arguments. Set c-format flags on all strings extracted from
21774 util/grub.d/ (xgettext refuses to include these itself for strings
21775 it extracted from a shell file, but these really are c-format).
21776
21777 2010-12-20 Vladimir Serbinenko <phcoder@gmail.com>
21778
21779 * grub-core/loader/i386/multiboot_mbi.c (grub_multiboot_add_module):
21780 Avoid next pointing to nowhere.
21781
21782 2010-12-19 Vladimir Serbinenko <phcoder@gmail.com>
21783
21784 * grub-core/fs/affs.c (grub_affs_mount): Read data->bblock.rootblock
21785 rather than assuming than rootblock is exactly in the middle.
21786 (grub_affs_label): Likewise.
21787
21788 2010-12-19 Vladimir Serbinenko <phcoder@gmail.com>
21789
21790 * grub-core/fs/affs.c (grub_affs_fs) [GRUB_UTIL]: Explicitly set
21791 reserved_first_sector to 0.
21792 * grub-core/fs/cpio.c (grub_cpio_fs) [GRUB_UTIL]: Likewise.
21793 * grub-core/fs/sfs.c (grub_sfs_fs) [GRUB_UTIL]: Likewise.
21794 * grub-core/fs/xfs.c (grub_xfs_fs) [GRUB_UTIL]: Likewise.
21795
21796 2010-12-19 Vladimir Serbinenko <phcoder@gmail.com>
21797
21798 Fix handling of UTF-16 UDF labels.
21799
21800 * grub-core/fs/udf.c (grub_udf_iterate_dir): Move string-parsing part
21801 (read_string): .. here.
21802 (grub_udf_label): Use read_string.
21803
21804 2010-12-19 BVK Chaitanya <bvk.groups@gmail.com>
21805
21806 * grub-core/normal/menu_entry.c (run): Execute commands from menu
21807 editor under argument scope.
21808 Reported by: Jordan Uggla
21809
21810 2010-12-18 Vladimir Serbinenko <phcoder@gmail.com>
21811
21812 * util/grub-mkfont.c (main): Handle errors from FT_Set_Pixel_Sizes.
21813
21814 2010-12-18 Colin Watson <cjwatson@ubuntu.com>
21815
21816 * grub-core/normal/term.c (print_more): Make \r or \n scroll one
21817 line, and other keys scroll an entire page (previous handling was
21818 for \r and \n to scroll a page and other keys to scroll two lines).
21819
21820 2010-12-18 Vladimir Serbinenko <phcoder@gmail.com>
21821
21822 * grub-core/loader/i386/multiboot_mbi.c (grub_multiboot_make_mbi):
21823 Set ptrdest to correct get_physical_target_address rather than
21824 incorrect get_virtual_current_address.
21825
21826 2010-12-18 kashyap garimella <garimella.kashyap@gmail.com>
21827
21828 * grub-core/loader/i386/multiboot_mbi.c (grub_multiboot_load): Use
21829 correct cat to grub_uint8_t * rather than grub_uint32_t *.
21830
21831 2010-12-10 Colin Watson <cjwatson@ubuntu.com>
21832
21833 * .bzrignore: Ignore grub-core/rs_decoder.S.
21834
21835 2010-12-10 Colin Watson <cjwatson@ubuntu.com>
21836
21837 * grub-core/gettext/gettext.c (grub_gettext_init_ext): Factor out
21838 .mo/.mo.gz opening sequence to ...
21839 (grub_mofile_open_lang): ... here.
21840 (grub_gettext_init_ext): If opening ll_CC fails, try ll.
21841 * util/grub.d/00_header.in (grub_lang): Include country part of
21842 locale.
21843 Reported by: Mario Limonciello.
21844
21845 2010-12-09 Robert Millan <rmh@gnu.org>
21846
21847 * NEWS: Document addition of ZFS support.
21848
21849 2010-12-04 Colin Watson <cjwatson@ubuntu.com>
21850
21851 * grub-core/kern/i386/pc/startup.S (grub_console_getkey): Use `>> 1'
21852 rather than `/ 2', as the latter requires -Wa,--divide which would
21853 require bumping our minimum binutils version.
21854
21855 2010-12-03 BVK Chaitanya <bvk.groups@gmail.com>
21856
21857 * util/grub-script-check.c (main): Print script line number on
21858 error.
21859
21860 2010-12-01 Robert Millan <rmh@gnu.org>
21861
21862 * grub-core/fs/zfs/zfs.c: New file.
21863 * grub-core/fs/zfs/zfs_fletcher.c: Likewise.
21864 * grub-core/fs/zfs/zfs_lzjb.c: Likewise.
21865 * grub-core/fs/zfs/zfs_sha256.c: Likewise.
21866 * grub-core/fs/zfs/zfsinfo.c: Likewise.
21867
21868 * include/grub/zfs/dmu.h: Likewise.
21869 * include/grub/zfs/dmu_objset.h: Likewise.
21870 * include/grub/zfs/dnode.h: Likewise.
21871 * include/grub/zfs/dsl_dataset.h: Likewise.
21872 * include/grub/zfs/dsl_dir.h: Likewise.
21873 * include/grub/zfs/sa_impl.h: Likewise.
21874 * include/grub/zfs/spa.h: Likewise.
21875 * include/grub/zfs/uberblock_impl.h: Likewise.
21876 * include/grub/zfs/vdev_impl.h: Likewise.
21877 * include/grub/zfs/zap_impl.h: Likewise.
21878 * include/grub/zfs/zap_leaf.h: Likewise.
21879 * include/grub/zfs/zfs.h: Likewise.
21880 * include/grub/zfs/zfs_acl.h: Likewise.
21881 * include/grub/zfs/zfs_znode.h: Likewise.
21882 * include/grub/zfs/zil.h: Likewise.
21883 * include/grub/zfs/zio.h: Likewise.
21884 * include/grub/zfs/zio_checksum.h: Likewise.
21885
21886 * Makefile.util.def: Build ZFS into libgrubmods.
21887 * grub-core/Makefile.core.def: Build zfs.mod.
21888
21889 2010-11-30 Szymon Janc <szymon@janc.net.pl>
21890
21891 * grub-core/commands/regexp.c (grub_cmd_regexp): Remove unused
21892 variable.
21893 * grub-core/commands/wildcard.c (match_files): Likewise.
21894
21895 2010-11-30 Robert Millan <rmh@gnu.org>
21896
21897 * grub-core/loader/i386/bsd.c
21898 (grub_cmd_freebsd_loadenv, grub_cmd_freebsd_module_elf): Check
21899 whether kernel is loaded using grub_loader_is_loaded(), rather
21900 than `kernel_type', which may still be `KERNEL_TYPE_NONE' under
21901 certain error conditions.
21902
21903 2010-11-30 Robert Millan <rmh@gnu.org>
21904
21905 * grub-core/commands/echo.c: Include `<grub/term.h>'.
21906 (grub_cmd_echo): Call grub_refresh() after printing a message.
21907
21908 2010-11-26 Vladimir Serbinenko <phcoder@gmail.com>
21909
21910 Avoid using tricks for initialising endian variables.
21911
21912 * grub-core/partmap/gpt.c (grub_gpt_partition_type_bios_boot):
21913 Make const.
21914 (GRUB_MOD_INIT): Don't byte-swap.
21915 * include/grub/gpt_partition.h (GRUB_GPT_PARTITION_TYPE_BIOS_BOOT):
21916 Use grub_cpu_to_le16_compile_time and grub_cpu_to_le32_compile_time.
21917 * include/grub/types.h (grub_swap_bytes16_compile_time): New macro.
21918 (grub_swap_bytes32_compile_time): Likewise.
21919 (grub_cpu_to_le32_compile_time): Likewise.
21920 (grub_cpu_to_le16_compile_time): Likewise.
21921
21922 2010-11-26 Vladimir Serbinenko <phcoder@gmail.com>
21923
21924 * util/grub-setup.c (setup): Stop recommending --force. People who
21925 understand the dangers of blocklists are able to find this option
21926 anyway and the ones who don't shouldn't use it anyway.
21927
21928 2010-11-26 Robert Millan <rmh@gnu.org>
21929
21930 * grub-core/term/i386/pc/vga_text.c (VGA_TEXT_SCREEN): Beautify.
21931 Update all users.
21932
21933 2010-11-26 Colin Watson <cjwatson@ubuntu.com>
21934
21935 Fix LVM-on-RAID probing.
21936
21937 * util/grub-probe.c (probe): Remember which disk was detected as
21938 RAID (perhaps an LVM physical volume). Use that disk's raidname
21939 rather than that of the top-level disk.
21940
21941 2010-11-25 BVK Chaitanya <bvk.groups@gmail.com>
21942
21943 Fix cmdline argument quotes for setparams command of menuentry
21944 definitions.
21945
21946 * grub-core/commands/menuentry.c (setparams_prefix): Use single
21947 quotes for arguments.
21948 * grub-core/lib/legacy_parse.c (grub_legacy_escape): Use
21949 grub_strchrsub function instead.
21950
21951 * include/grub/misc.h (grub_strchrsub): New function.
21952
21953 2010-11-24 Colin Watson <cjwatson@ubuntu.com>
21954
21955 * util/deviceiter.c (grub_util_iterate_devices): Save a bit of
21956 effort by skipping "." and ".." entries up-front.
21957 Suggested by: Michael Lazarev.
21958
21959 2010-11-24 Colin Watson <cjwatson@ubuntu.com>
21960
21961 * grub-core/Makefile.core.def (xz_decompress): Move -lgcc from
21962 ldflags to ldadd, to fix link line ordering.
21963 (none_decompress): Likewise.
21964
21965 2010-11-24 Colin Watson <cjwatson@ubuntu.com>
21966
21967 * grub-core/Makefile.core.def (kernel): Add kern/emu/cache.S for emu
21968 platforms.
21969 (grub-emu-lite): Remove kern/emu/cache.S.
21970
21971 2010-11-23 Colin Watson <cjwatson@ubuntu.com>
21972
21973 * util/deviceiter.c (compare_devices): If the by-id link for a
21974 device couldn't be resolved, fall back to sorting by the by-id link
21975 rather than segfaulting.
21976 Reported and tested by: Daniel Mierswa.
21977
21978 2010-11-23 Colin Watson <cjwatson@ubuntu.com>
21979
21980 * Makefile.util.def (grub-menulst2cfg): List libraries in ldadd, not
21981 ldflags, to fix link line ordering.
21982
21983 2010-11-23 Colin Watson <cjwatson@ubuntu.com>
21984
21985 * grub-core/Makefile.am (gentrigtables): Put -lm after $<; some
21986 linkers are picky about this.
21987
21988 2010-11-23 Colin Watson <cjwatson@ubuntu.com>
21989
21990 * grub-core/Makefile.am (command.lst): Adjust sed expression
21991 ordering so that extended and priority commands aren't treated as
21992 ordinary commands.
21993
21994 2010-11-23 Colin Watson <cjwatson@ubuntu.com>
21995
21996 * include/grub/gpt_partition.h (GRUB_GPT_PARTITION_TYPE_BIOS_BOOT):
21997 Remove byte-swapping function calls, which are not valid in
21998 structure initialisers.
21999 * grub-core/partmap/gpt.c (grub_gpt_partition_type_bios_boot): Make
22000 non-const.
22001 (GRUB_MOD_INIT): Byte-swap data1, data2, and data3 fields of
22002 grub_gpt_partition_type_bios_boot.
22003
22004 2010-11-22 Colin Watson <cjwatson@ubuntu.com>
22005
22006 Fix test program build on GNU/kFreeBSD.
22007
22008 * Makefile.util.def (example_unit_test): Add `$(LIBZFS)
22009 $(LIBNVPAIR)' library dependencies.
22010
22011 2010-11-22 Colin Watson <cjwatson@ubuntu.com>
22012
22013 * util/grub-install.in: Fix parsing of --grub-mkrelpath= option.
22014
22015 2010-11-22 Colin Watson <cjwatson@ubuntu.com>
22016
22017 * util/grub-install.in: Remove excessive quoting that broke
22018 installations to RAID devices.
22019
22020 2010-11-19 Vladimir Serbinenko <phcoder@gmail.com>
22021
22022 * grub-core/loader/i386/linux.c (grub_cmd_linux): Pass correctly the
22023 bootloader version instead of 0.
22024
22025 2010-11-19 Vladimir Serbinenko <phcoder@gmail.com>
22026
22027 * grub-core/disk/mdraid1x_linux.c (grub_mdraid_detect): Fix spurious
22028 warning.
22029
22030 2010-11-19 Vladimir Serbinenko <phcoder@gmail.com>
22031
22032 * grub-core/disk/mdraid1x_linux.c (grub_mdraid_detect): Don't try to
22033 retrieve the metadat sector if size isn't known.
22034 * grub-core/disk/mdraid_linux.c (grub_mdraid_detect): Likewise.
22035
22036 2010-11-18 Robert Millan <rmh@gnu.org>
22037
22038 * grub-core/fs/btrfs.c (grub_btrfs_mount): Replace grub_strncmp()
22039 with grub_memcmp().
22040
22041 2010-11-18 Vladimir Serbinenko <phcoder@gmail.com>
22042
22043 * grub-core/normal/menu_entry.c (print_up): Fix displacement of up
22044 arrow.
22045 Reported by: Jordan Uggla.
22046
22047 2010-11-16 Vladimir Serbinenko <phcoder@gmail.com>
22048
22049 Make better UTF compliant.
22050
22051 * grub-core/normal/charset.c (grub_utf8_to_utf16): Handle 6- and 7-byte
22052 sequences as incorrect.
22053 (grub_is_valid_utf8): Likewise.
22054 (grub_utf8_to_ucs4): Likewise.
22055 (grub_ucs4_to_utf8): Handle codepoints outside of BMP.
22056 (grub_ucs4_to_utf8_alloc): Likewise.
22057 * include/grub/charset.h (grub_utf16_to_utf8): Likewise.
22058
22059 2010-11-16 Vladimir Serbinenko <phcoder@gmail.com>
22060
22061 Make legacy_source behave like source.
22062
22063 * grub-core/commands/legacycfg.c (legacy_file): Don't call
22064 grub_show_menu.
22065 (grub_cmd_legacy_source): Call grub_show_menu if needed.
22066
22067 2010-11-16 Colin Watson <cjwatson@debian.org>
22068
22069 * conf/Makefile.common (CFLAGS_GNULIB): Add -Wno-unused-parameter.
22070 (-Wunused implies -Wunused-parameter, but not vice versa).
22071
22072 2010-11-16 Colin Watson <cjwatson@ubuntu.com>
22073
22074 * configure.ac: Make error messages less confusing by testing for
22075 -Wtrampolines rather than -Wno-trampolines (since -Wno-* is always
22076 accepted, but produces a diagnostic if something else is wrong).
22077
22078 2010-11-15 Vladimir Serbinenko <phcoder@gmail.com>
22079
22080 * grub-core/term/at_keyboard.c (grub_keyboard_controller_read)
22081 [GRUB_MACHINE_MIPS_YEELOONG || GRUB_MACHINE_QEMU]: ifdef-ed out
22082 (now unused).
22083 (grub_keyboard_controller_init)
22084 [GRUB_MACHINE_MIPS_YEELOONG || GRUB_MACHINE_QEMU]: Don't attempt to
22085 read the initial state since controller isn't inited yet.
22086
22087 2010-11-15 Vladimir Serbinenko <phcoder@gmail.com>
22088
22089 * grub-core/lib/relocator.c (malloc_in_range): Take into account that
22090 allocate_regbeg may need to create new chunk header.
22091
22092 2010-11-14 Vladimir Serbinenko <phcoder@gmail.com>
22093
22094 Fix quoting in legacy parser.
22095
22096 * grub-core/lib/legacy_parse.c (grub_legacy_escape): Correctly handle
22097 single quotes.
22098 (grub_legacy_parse): Likewise.
22099 Reported by: Jordan Uggla.
22100 Tested by: Jordan Uggla.
22101
22102 2010-11-14 Vladimir Serbinenko <phcoder@gmail.com>
22103
22104 Don't add -lgcc on i386 and x86_64.
22105
22106 * configure.ac (LIBS): Don't add -lgcc on i386 and x86_64.
22107 * conf/Makefile.common (LDADD_KERNEL): Likewise.
22108 * grub-core/Makefile.core.def (kernel): Use LDADD_KERNEL.
22109
22110 2010-11-14 Vladimir Serbinenko <phcoder@gmail.com>
22111
22112 * configure.ac: Add -Wno-trampolines when supported.
22113
22114 2010-11-14 Modestas Vainius <modax@debian.org>
22115
22116 * grub-core/kern/emu/getroot.c (grub_util_is_dmraid): Recognise ddf1_
22117 fakeraid.
22118
22119 2010-11-14 Giuseppe Caizzone <acaizzo@gmail.com>
22120
22121 Add generic logical block size support for UDF.
22122
22123 * grub-core/fs/udf.c (GRUB_UDF_LOG2_BLKSIZE): Removed.
22124 (GRUB_UDF_BLKSZ): Removed.
22125 (struct grub_udf_data): New field "lbshift" to hold the logical block
22126 size of the file system in log2 format. All users updated.
22127 (sblocklist): Change type to unsigned.
22128 (grub_udf_mount): Change type of "sblklist" to unsigned.
22129 Move AVDP search before VRS recognition, because the latter requires
22130 knowledge of the logical block size, which is detected during the
22131 former.
22132 Detect and validate logical block size during AVDP search, adding
22133 support for block sizes 512, 1024 and 4096.
22134 Make VRS recognition independent of block size.
22135
22136 2010-11-14 Giuseppe Caizzone <acaizzo@gmail.com>
22137
22138 Properly handle deleted files on UDF.
22139
22140 * grub-core/fs/udf.c (grub_udf_iterate_dir): Skip directory entries
22141 whose "characteristics" field has the bit GRUB_UDF_FID_CHAR_DELETED
22142 set.
22143
22144 2010-11-14 Giuseppe Caizzone <acaizzo@gmail.com>
22145
22146 Support reading files larger than 2 GiB.
22147
22148 * grub-core/fs/udf.c (grub_udf_iterate_dir): Change type of variable
22149 "offset" to grub_off_t.
22150 (grub_udf_read_file): Likewise for parameter "pos".
22151
22152 2010-11-14 Vladimir Serbinenko <phcoder@gmail.com>
22153
22154 * docs/grub.texi (Changes from GRUB Legacy): Note when save_env is
22155 unavailable.
22156 (Simple configuration): Refer to Changes from GRUB Legacy about
22157 save_env availability.
22158
22159 2010-11-14 Vladimir Serbinenko <phcoder@gmail.com>
22160
22161 * util/grub-install.in: Ignore empty partition table detection
22162 instead of trying to include part_ module.
22163
22164 2010-11-14 Vladimir Serbinenko <phcoder@gmail.com>
22165
22166 * grub-core/disk/lvm.c (GRUB_MOD_FINI): Reset the vg_list. Fixes
22167 LVM on RAID support.
22168
22169 2010-11-14 Vladimir Serbinenko <phcoder@gmail.com>
22170
22171 Properly define WORDS_BIGENDIAN in wrapped environments.
22172
22173 * grub-core/lib/libgcrypt_wrap/cipher_wrap.h (WORDS_BIGENDIAN): New
22174 definition.
22175 * grub-core/lib/posix_wrap/sys/types.h (WORDS_BIGENDIAN): Likewise.
22176
22177 Reported by: Manoel Rebelo Abranches.
22178 Tested by: Manoel Rebelo Abranches.
22179
22180 2010-11-13 Vladimir Serbinenko <phcoder@gmail.com>
22181
22182 * util/grub-mkconfig.in: Fix quoting.
22183
22184 2010-11-13 Vladimir Serbinenko <phcoder@gmail.com>
22185
22186 Support big ext2 files.
22187
22188 * grub-core/fs/ext2.c (grub_ext2_inode): Rename dir_acl to size_high.
22189 (grub_ext2_read_block): Support triple indirect blocks.
22190 (grub_ext2_read_file): Use 64-bit types and read size_high.
22191 (grub_ext2_open): Read size_high.
22192 Reported by: Ximin Luo.
22193 Tested by: Manoel Rebelo Abranches.
22194
22195 2010-11-13 Vladimir Serbinenko <phcoder@gmail.com>
22196
22197 * util/grub-install.in: Handle filenames containing spaces.
22198 Reported by: Jordan Uggla.
22199 Tested by: Jordan Uggla.
22200
22201 2010-11-13 Vladimir Serbinenko <phcoder@gmail.com>
22202
22203 * util/grub-mkconfig.in (grub_script_check): New variable.
22204 Use grub_script_check instead of grub-script-check.
22205 Reported by: Barry Jackson.
22206
22207 2010-11-13 Vladimir Serbinenko <phcoder@gmail.com>
22208
22209 * docs/grub.texi (menu): Correct the order.
22210 Reported by: D. Hugh Redelmeier.
22211
22212 2010-11-12 Vladimir Serbinenko <phcoder@gmail.com>
22213
22214 * grub-core/kern/i386/pc/startup.S (multiboot_trampoline): Add missing
22215 jump.
22216
22217 2010-11-08 Manoel Rebelo Abranches <mrabran@br.ibm.com>
22218
22219 * include/grub/elfload.h (grub_elf32_size): New parameter.
22220 All users updated.
22221 Return maximum segments alignment.
22222 (grub_elf64_size): Likewise.
22223 * kern/elf.c (grub_elf32_size): New parameter. All users updated.
22224 Return maximum segments alignment.
22225 (grub_elf64_size): Likewise.
22226 * grub-core/loader/powerpc/ieee1275/linux.c:
22227 (grub_linux_claimmap_iterate): New function. Uses the
22228 "available" property in the "memory" node for memory allocation
22229 for kernel in the PowerPC loader.
22230 (grub_linux_load32): Correctly find linux entry point offset.
22231 (grub_linux_load64): Likewise.
22232
22233 2010-11-07 Robert Millan <rmh@gnu.org>
22234
22235 On mips-yeeloong, build with -march=loongson2f when this flag is
22236 available (GCC >= 4.4).
22237 * conf/Makefile.common [COND_mips_yeeloong] (CFLAGS_PLATFORM): Remove
22238 `-march=mips3'.
22239 * configure.ac: For mips-yeeloong, add -march=loongson2f if available,
22240 or otherwise add -march=mips3.
22241
22242 2010-11-07 BVK Chaitanya <bvk.groups@gmail.com>
22243
22244 Suppress shell expansion on echo '*' and echo "*" like cases.
22245 Reported by: Jordan Uggla.
22246
22247 * grub-core/script/execute.c (grub_script_arglist_to_argv): Escape
22248 string arguments before shell expansion.
22249 * tests/grub_cmd_echo.in: New testcases.
22250
22251 2010-11-07 Robert Millan <rmh@gnu.org>
22252
22253 * conf/mips-qemu-mips.rmk: Remove stale file from previous
22254 transition.
22255
22256 2010-11-07 Vladimir Serbinenko <phcoder@gmail.com>
22257
22258 * grub-core/kern/emu/hostdisk.c
22259 (convert_system_partition_to_system_disk): Handle devices like "sdaa1".
22260
22261 2010-11-06 Vladimir Serbinenko <phcoder@gmail.com>
22262
22263 * include/grub/emu/misc.h: Don't include grub/util/libzfs.h.
22264 * include/grub/emu/misc.h (grub_get_libzfs_handle): Move from here ...
22265 * include/grub/util/libzfs.h (grub_get_libzfs_handle): ... here.
22266
22267 2010-11-06 Vladimir Serbinenko <phcoder@gmail.com>
22268
22269 * grub-core/fs/ntfs.c (grub_ntfs_uuid): Make uppercase.
22270
22271 2010-11-06 Vladimir Serbinenko <phcoder@gmail.com>
22272
22273 * util/grub-install.in: Replace useless recomendation to pass
22274 --modules with a recomendation to report a bug.
22275
22276 2010-11-06 Vladimir Serbinenko <phcoder@gmail.com>
22277
22278 Properly register serial terminfo.
22279 Reported by: Jordan Uggla
22280
22281 * grub-core/term/serial.c (grub_serial_terminfo_input_template): New
22282 const.
22283 (grub_serial_terminfo_output_template): Likewise.
22284 (grub_cmd_serial): Register "serial" with terminfo.
22285 (GRUB_MOD_INIT(serial)): Fill grub_serial_terminfo_input and
22286 grub_serial_terminfo_output.
22287
22288 2010-11-05 Robert Millan <rmh@gnu.org>
22289
22290 * util/grub-mkconfig.in: Remove gfxterm.mod probe (no longer
22291 needed).
22292
22293 2010-11-05 Robert Millan <rmh@gnu.org>
22294
22295 On Yeeloong, pass machine type information to Linux.
22296
22297 * grub-core/loader/mips/linux.c [GRUB_MACHINE_MIPS_YEELOONG]
22298 (LOONGSON_MACHTYPE): New macro, set to
22299 "machtype=lemote-yeeloong-2f-8.9inches".
22300 [LOONGSON_MACHTYPE] (grub_cmd_linux): Pass LOONGSON_MACHTYPE as
22301 additional argument to Linux.
22302
22303 2010-11-04 Robert Millan <rmh@gnu.org>
22304
22305 * util/deviceiter.c (grub_util_iterate_devices): Increase SCSI
22306 limit to 48 (to cope with Sun Fire X4500), and IDE limit to 96
22307 (its SATA disks are detected as slaveless IDE master drives on
22308 kFreeBSD).
22309 Reported by Carsten Aulbert.
22310
22311 2010-11-02 Colin Watson <cjwatson@ubuntu.com>
22312
22313 * util/bin2h.c (main): Fix spelling error in generated output.
22314
22315 2010-11-01 Grégoire Sutre <gregoire.sutre@gmail.com>
22316
22317 * grub-core/partmap/bsdlabel.c (iterate_real): Fix an integer overflow.
22318
22319 2010-11-01 Vladimir Serbinenko <phcoder@gmail.com>
22320
22321 * grub-core/loader/i386/linux.c (grub_cmd_linux): Autoload vbe.mod if
22322 vga= option is supplied.
22323
22324 2010-11-01 Vladimir Serbinenko <phcoder@gmail.com>
22325
22326 * util/grub.d/10_hurd.in: Don't call savedefault on recovery entries.
22327 * util/grub.d/10_kfreebsd.in: Likewise.
22328 * util/grub.d/10_linux.in: Likewise.
22329 * util/grub.d/20_linux_xen.in: Likewise.
22330
22331 2010-11-01 Vladimir Serbinenko <phcoder@gmail.com>
22332
22333 * grub-core/lib/arg.c (grub_arg_parse): Avoid interpreting direct
22334 argument as an argument to no-argument option.
22335
22336 2010-11-01 Vladimir Serbinenko <phcoder@gmail.com>
22337
22338 * util/grub.d/10_linux.in: Add missing load_video with explicit
22339 GRUB_GFXPAYLOAD_LINUX.
22340
22341 2010-11-01 Vladimir Serbinenko <phcoder@gmail.com>
22342
22343 * Makefile.am (libgrub.pp): Propagate the libgrub.a split.
22344
22345 2010-11-01 Vladimir Serbinenko <phcoder@gmail.com>
22346
22347 * grub-core/disk/mdraid1x_linux.c (grub_mdraid_detect): Do not put
22348 elements with invlid index.
22349 * grub-core/disk/mdraid_linux.c (grub_mdraid_detect): Likewise.
22350 * grub-core/disk/raid.c (insert_array): Automatically reallocate
22351 members.
22352 * include/grub/raid.h (grub_raid_member): New struct.
22353 (grub_raid_array): Transform devices and start_sector into usage of
22354 grub_raid_member. All users updated
22355 (allocated_devs): New member.
22356
22357 2010-11-01 Vladimir Serbinenko <phcoder@gmail.com>
22358
22359 * docs/man/grub-set-default.h2m: Clarify that only saved default entry
22360 is modified
22361
22362 2010-10-29 BVK Chaitanya <bvk.groups@gmail.com>
22363
22364 NetBSD build fix for getline function conflict from gnulib.
22365
22366 * Makefile.util.def (libgrubkern.a): New library for grub kernel
22367 components that depend on gnulib headers.
22368 (libgrubmods.a): Renamed from earlier libgrub.a.
22369 * conf/Makefile.common: Remove gnulib from *_LIBRARY flags.
22370
22371 2010-10-26 Vladimir Serbinenko <phcoder@gmail.com>
22372
22373 * util/grub-setup.c (setup): Refuse to do a cross-disk embeddingless
22374 install rather than creating a broken install.
22375
22376 2010-10-26 Vladimir Serbinenko <phcoder@gmail.com>
22377
22378 * util/grub-setup.c (argp): Remove misleading example of installing to
22379 a partition.
22380
22381 2010-10-26 Vladimir Serbinenko <phcoder@gmail.com>
22382
22383 * util/grub-setup.c (setup): Clarify the error message.
22384
22385 2010-10-26 Vladimir Serbinenko <phcoder@gmail.com>
22386
22387 * include/grub/types.h (grub_target_off_t): Removed no longer used type.
22388
22389 2010-10-23 Vladimir Serbinenko <phcoder@gmail.com>
22390
22391 * grub-core/kern/emu/misc.c
22392 (grub_make_system_path_relative_to_its_root)
22393 [HAVE_LIBZFS && HAVE_LIBNVPAIR]: Fix mountpoint return on ZFS.
22394
22395 2010-10-23 Vladimir Serbinenko <phcoder@gmail.com>
22396
22397 * grub-core/kern/emu/misc.c
22398 (grub_make_system_path_relative_to_its_root): Revert r2882.
22399
22400 2010-10-22 Vladimir Serbinenko <phcoder@gmail.com>
22401
22402 * grub-core/lib/relocator.c (grub_relocator_subchunk): Remove now
22403 useless field head. All users updated.
22404 (free_subchunk): Correct handling of IN_REGION subchunk.
22405
22406 2010-10-22 Colin Watson <cjwatson@ubuntu.com>
22407
22408 * docs/grub.texi (Installing GRUB using grub-install): Proofread.
22409 (Supported kernels): Likewise.
22410
22411 2010-10-18 Grégoire Sutre <gregoire.sutre@gmail.com>
22412
22413 Make mktemp invocations portable.
22414
22415 * grub-core/genmod.sh.in: Use mktemp with an explicit template, and
22416 exit if mktemp fails.
22417 * tests/grub_script_blockarg.in: Likewise.
22418 * tests/partmap_test.in: Likewise.
22419 * tests/util/grub-shell-tester.in: Likewise.
22420 * tests/util/grub-shell.in: Likewise.
22421 * util/powerpc/ieee1275/grub-mkrescue.in: Likewise.
22422 * Makefile.am: Likewise, and chain shell commands with `&&'
22423 instead of ';'.
22424 * util/grub-mkrescue.in: Use the same explicit template as above, and
22425 exit if mktemp fails.
22426
22427 2010-10-18 BVK Chaitanya <bvk.groups@gmail.com>
22428
22429 * util/grub.d/10_linux.in: Fix built-in initramfs image mode for
22430 Linux kernel, reported by Dennis Schridde.
22431
22432 2010-10-17 Szymon Janc <szymon@janc.net.pl>
22433
22434 * grub-core/normal/auth.c (grub_auth_check_authentication):
22435 Set-but-not-used variable removed.
22436
22437 2010-10-17 Vladimir Serbinenko <phcoder@gmail.com>
22438
22439 * docs/grub.texi (GNU/Linux): Document APM unavailability with
22440 32-bit linux protocol.
22441
22442 2010-10-17 Vladimir Serbinenko <phcoder@gmail.com>
22443
22444 * grub-core/kern/i386/pc/startup.S (grub_console_setcursor): Check
22445 cursor shape for sanity.
22446
22447 2010-10-17 Vladimir Serbinenko <phcoder@gmail.com>
22448
22449 * docs/grub.texi (Installation): Document buggy BIOS install.
22450
22451 2010-10-17 Vladimir Serbinenko <phcoder@gmail.com>
22452
22453 * docs/grub.texi (Installation): Indent.
22454
22455 2010-10-17 Vladimir Serbinenko <phcoder@gmail.com>
22456
22457 * util/grub-setup.c (setup): New parameter allow_floppy.
22458 (arguments): New member allow_floppy.
22459 (argp_parser): Handle --allow-floppy.
22460 (main): Pass allow_floppy.
22461 * util/grub-install.in: New option --allow-floppy passed though to
22462 grub-setup.
22463
22464 2010-10-17 Vladimir Serbinenko <phcoder@gmail.com>
22465
22466 * util/grub-install.in: Handle partitionless disks.
22467
22468 2010-10-17 Vladimir Serbinenko <phcoder@gmail.com>
22469
22470 * util/grub-setup.c (setup): Don't clean blocklists before readability
22471 verfification.
22472
22473 2010-10-16 Vladimir Serbinenko <phcoder@gmail.com>
22474
22475 * docs/grub.texi (Installation): Document embedding zone. Remove
22476 obsolete grub-install example.
22477
22478 2010-10-16 Szymon Janc <szymon@janc.net.pl>
22479
22480 * grub-core/commands/legacycfg.c (grub_cmd_legacy_kernel):
22481 Set-but-not-used variable ifdef'ed.
22482 * grub-core/lib/legacy_parse.c (grub_legacy_parse): Likewise.
22483 * grub-core/bus/usb/ohci.c (grub_ohci_pci_iter): Set-but-not-used
22484 variable removed.
22485 * grub-core/disk/lvm.c (grub_lvm_scan_device): Likewise.
22486 * grub-core/fs/jfs.c (grub_jfs_find_file): Likewise.
22487 * grub-core/fs/minix.c (grub_minix_dir): Likewise.
22488 * grub-core/fs/sfs.c (grub_sfs_read_extent): Likewise.
22489 * grub-core/fs/ufs.c (grub_ufs_dir): Likewise.
22490 * grub-core/gfxmenu/gui_list.c (grub_gui_list_new): Likewise.
22491 * grub-core/gfxmenu/view.c (redraw_menu_visit): Likewise.
22492 * grub-core/gfxmenu/widget-box.c (draw): Likewise.
22493 * grub-core/lib/relocator.c (malloc_in_range): Likewise.
22494 * grub-core/loader/i386/bsdXX.c (grub_netbsd_load_elf_meta): Likewise.
22495 * grub-core/loader/i386/bsd_pagetable.c (fill_bsd64_pagetable):
22496 Likewise.
22497
22498 2010-10-16 Vladimir Serbinenko <phcoder@gmail.com>
22499
22500 * grub-core/commands/acpihalt.c (skip_ext_op): Skip index field op.
22501 * include/grub/acpi.h (GRUB_ACPI_EXTOPCODE_INDEX_FIELD_OP): New
22502 enum value.
22503
22504 2010-10-16 Vladimir Serbinenko <phcoder@gmail.com>
22505
22506 * grub-core/commands/acpihalt.c (get_sleep_type): Accept \_S5_ as
22507 synonym to _S5_. Needed for some DSDTs.
22508
22509 2010-10-16 Vladimir Serbinenko <phcoder@gmail.com>
22510
22511 Userspace ACPI parser debugging.
22512
22513 * grub-core/commands/acpihalt.c [GRUB_DSDT_TEST]: Include userspace
22514 headers and add relevant defines. Don't include standard headers.
22515 (main) [GRUB_DSDT_TEST]: New function.
22516 * include/grub/acpi.h [GRUB_DSDT_TEST]: Don't include standard headers.
22517 Don't declare functions.
22518
22519 2010-10-16 Vladimir Serbinenko <phcoder@gmail.com>
22520
22521 Remove dead grub_efi_mm_fini.
22522
22523 * grub-core/kern/efi/mm.c (allocated_page): Removed.
22524 (ALLOCATED_PAGES_SIZE): Likewise.
22525 (MAX_ALLOCATED_PAGES): Likewise.
22526 (allocated_pages): Likewise.
22527 (grub_efi_allocate_pages): Don't record allocated pages.
22528 (grub_efi_free_pages): Likewise.
22529 (grub_efi_mm_init): Likewise.
22530 (grub_efi_mm_fini): Removed.
22531
22532 2010-10-16 Vladimir Serbinenko <phcoder@gmail.com>
22533
22534 * grub-core/kern/efi/mm.c (BYTES_TO_PAGES): Round up instead of down.
22535 (grub_efi_mm_init): Take into account the memory map size increase.
22536
22537 2010-10-16 Vladimir Serbinenko <phcoder@gmail.com>
22538
22539 * grub-core/term/ns8250.c (do_real_config): Set port->broken to 0.
22540 (serial_hw_put): Wait based on real time rather than port reads. Don't
22541 roken ports.
22542 * include/grub/serial.h (grub_serial_port): New field broken.
22543
22544 2010-10-16 Robert Millan <rmh@gnu.org>
22545
22546 * grub-core/kern/emu/misc.c
22547 (grub_make_system_path_relative_to_its_root): Fix premature return
22548 when processing non-root ZFS filesystems.
22549 Reported by Sergio Talens-Oliag.
22550
22551 2010-10-15 Robert Millan <rmh@gnu.org>
22552
22553 * util/grub.d/10_linux.in (list): Expand "vmlinu[zx]" instances to
22554 guarantee compressed ones are processed first.
22555
22556 2010-10-14 Vladimir Serbinenko <phcoder@gmail.com>
22557
22558 * grub-core/efiemu/main.c (grub_efiemu_prepare): Handle errors from
22559 grub_efiemu_autocore.
22560
22561 2010-10-14 Vladimir Serbinenko <phcoder@gmail.com>
22562
22563 * grub-core/kern/i386/pc/startup.S (bypass_table): Use 0x1b explicitly
22564 rather than 0x1b.
22565 (grub_console_getkey): Use correct jae opcode rather than ja.
22566
22567 2010-10-12 Robert Millan <rmh@gnu.org>
22568
22569 * util/grub-mkconfig.in: Merge `GRUB_DISABLE_LINUX_RECOVERY' and
22570 `GRUB_DISABLE_NETBSD_RECOVERY' into a single `GRUB_DISABLE_RECOVERY'
22571 variable. All references updated.
22572
22573 * util/grub.d/10_kfreebsd.in: Support recovery boot entries.
22574
22575 2010-10-08 Vladimir Serbinenko <phcoder@gmail.com>
22576
22577 Correctly distinguish mdraid flavours.
22578
22579 * grub-core/disk/raid.c (grub_raid_getname) [GRUB_UTIL]: New function.
22580 (insert_array): New argument raid.
22581 * include/grub/disk.h (grub_disk_dev) [GRUB_UTIL]: New member raidname.
22582 * include/grub/raid.h (grub_raid_array) [GRUB_UTIL]: New member driver.
22583 * util/grub-probe.c (probe): PRint raidname instead of plainly "mdraid".
22584
22585 2010-10-09 Vladimir Serbinenko <phcoder@gmail.com>
22586
22587 * grub-core/kern/i386/pc/startup.S (grub_console_getkey): Fix incorrect
22588 handling of special keys.
22589
22590 2010-10-02 Aleš Nesrsta <starous@volny.cz>
22591
22592 * include/grub/scsi.h (grub_make_scsi_id): Fix incorrect usgae of
22593 GRUB_SCSI_ID_BUS_SHIFT instead of GRUB_SCSI_ID_LUN_SHIFT.
22594
22595 2010-10-02 Aleš Nesrsta <starous@volny.cz>
22596
22597 * grub-core/bus/usb/ohci.c (GRUB_OHCI_TDS): Increase.
22598 * grub-core/bus/usb/uhci.c (N_TD): New definition. All previous implicit
22599 users updated.
22600 * grub-core/bus/usb/usbtrans.c (grub_usb_bulk_setup_readwrite):
22601 Use right endpoint when querying descriptor.
22602
22603 2010-10-01 Vladimir Serbinenko <phcoder@gmail.com>
22604
22605 Clear out 0x80 color bit on EFI.
22606 Tested by: decoder
22607 Reported by: decoder and meta tech.
22608
22609 * grub-core/term/efi/console.c (grub_console_standard_color): Removed.
22610 (grub_console_setcolorstate): Clear out 0x80 bit.
22611 Use GRUB_TERM_DEFAULT_STANDARD_COLOR.
22612 (grub_console_output): Use GRUB_TERM_DEFAULT_NORMAL_COLOR.
22613 Use GRUB_TERM_DEFAULT_HIGHLIGHT_COLOR.
22614
22615 2010-10-01 Vladimir Serbinenko <phcoder@gmail.com>
22616
22617 * grub-core/loader/i386/linux.c (DEFAULT_VIDEO_MODE) [GRUB_MACHINE_EFI]:
22618 Set to "auto".
22619
22620 2010-09-30 Vladimir Serbinenko <phcoder@gmail.com>
22621
22622 * grub-core/gettext/gettext.c (grub_gettext_init_ext): Avoid using
22623 mo_file after freeing.
22624
22625 2010-09-30 Vladimir Serbinenko <phcoder@gmail.com>
22626
22627 * grub-core/normal/term.c (read_terminal_list): Free in a right order.
22628
22629 2010-09-30 Vladimir Serbinenko <phcoder@gmail.com>
22630
22631 * grub-core/script/execute.c (grub_script_execute_sourcecode): Set
22632 flags.
22633
22634 2010-09-30 Vladimir Serbinenko <phcoder@gmail.com>
22635
22636 * util/grub-setup.c (main) [GRUB_MACHINE_IEEE1275]: Propagate argp
22637 usage.
22638
22639 2010-09-30 Vladimir Serbinenko <phcoder@gmail.com>
22640
22641 Put terminfo into core on ieee1275 and yeeloong (needed for console).
22642
22643 * gentpl.py: New groups terminfoinkernel and terminfomodule.
22644 * grub-core/Makefile.am (KERNEL_HEADER_FILES): Include extcmd.h, arg.h
22645 and terminfo.h when needed.
22646 * grub-core/Makefile.core.def (kernel): Include term/terminfo.c,
22647 term/tparm.c, commands/extcmd.c, lib/arg.c on terminfokernel.
22648 (terminfo): Enable only on terminfokernel.
22649 (extcmd): Likewise.
22650 * include/grub/extcmd.h: Add missing EXPORT_FUNC.
22651 * include/grub/lib/arg.h: Likewise.
22652 * grub-core/term/ieee1275/ofconsole.c (grub_ofconsole_dimensions): Fix
22653 incorrect usage of ->.
22654
22655 2010-09-29 Vladimir Serbinenko <phcoder@gmail.com>
22656
22657 * grub-core/loader/multiboot_mbi2.c (grub_multiboot_make_mbi]
22658 [GRUB_MACHINE_EFI && __i386__]: Fix typo.
22659
22660 2010-09-29 Vladimir Serbinenko <phcoder@gmail.com>
22661
22662 Fix coreboot compilation.
22663
22664 * grub-core/loader/i386/multiboot_mbi.c (grub_multiboot_get_mbi_size):
22665 Take VBE info into account even if only text is supported.
22666 (fill_vbe_info): Take into account the case when only VGA text
22667 is supported.
22668 * include/grub/multiboot.h (GRUB_MACHINE_HAS_VBE): Set to zero
22669 on coreboot, multiboot and qemu.
22670
22671 2010-09-29 Vladimir Serbinenko <phcoder@gmail.com>
22672
22673 * grub-core/lib/relocator.c (malloc_in_range): Trim too verbose
22674 debug messages.
22675 (grub_relocator_prepare_relocs): Set movers_chunk.srcv.
22676
22677 2010-09-29 Vladimir Serbinenko <phcoder@gmail.com>
22678
22679 * grub-core/loader/i386/bsd.c (grub_cmd_netbsd): Provide default serial
22680 parameters.
22681
22682 2010-09-29 Vladimir Serbinenko <phcoder@gmail.com>
22683
22684 * grub-core/lib/arg.c (grub_arg_parse): Fix treating of all commands as
22685 if they were BSD-style.
22686
22687 2010-09-29 Vladimir Serbinenko <phcoder@gmail.com>
22688
22689 * grub-core/boot/i386/pc/lnxboot.S: Replace
22690 GRUB_KERNEL_I386_PC_MULTIBOOT_SIGNATURE with
22691 GRUB_KERNEL_I386_PC_NO_REED_SOLOMON_PART.
22692
22693 2010-09-29 Vladimir Serbinenko <phcoder@gmail.com>
22694
22695 Write embedding zone using Reed-Solomon.
22696
22697 * Makefile.util.def (grub-setup): Add grub-core/lib/reed_solomon.c.
22698 * grub-core/Makefile.am (rs_decoder.S): New target.
22699 (kern/i386/pc/startup.S): Depend on rs_decoder.S.
22700 * grub-core/kern/i386/pc/startup.S (reed_solomon_redundancy): New field.
22701 (multiboot): Move to RS part.
22702 (post_reed_solomon): New label.
22703 (grub_boot_drive): Move to non-RS part since it's modified in memory
22704 on boot.
22705 Include rs_decoder.S.
22706 * grub-core/lib/reed_solomon.c: New file.
22707 * include/grub/offsets.h (GRUB_KERNEL_I386_PC_REED_SOLOMON_REDUNDANCY):
22708 New definition.
22709 (GRUB_KERNEL_I386_PC_MULTIBOOT_SIGNATURE): Removed.
22710 (GRUB_KERNEL_I386_PC_RAW_SIZE): Updated.
22711 (GRUB_KERNEL_I386_PC_NO_REED_SOLOMON_PART): New definition.
22712 * include/grub/partition.h (grub_partition_map): Change prototype of
22713 embed to allow returning additional sectors.
22714 * include/grub/reed_solomon.h: New file.
22715 * util/grub-setup.c (setup): Handle Reed-Solomon.
22716
22717 2010-09-28 Colin Watson <cjwatson@ubuntu.com>
22718
22719 * grub-core/loader/multiboot_mbi2.c (grub_multiboot_make_mbi): Fix
22720 i386 and x86-64 definedness tests.
22721
22722 2010-09-27 Yves Blusseau <blusseau@zetam.org>
22723
22724 Fix generation of kernel_syms.lst
22725
22726 * grub-core/Makefile.am (kernel_syms.lst): Fix value and position of
22727 ASM_PREFIX
22728
22729 2010-09-26 Robert Millan <rmh@gnu.org>
22730
22731 Support degraded ZFS arrays in "grub-probe -t device" resolution.
22732
22733 * grub-core/kern/emu/getroot.c (find_root_device_from_libzfs): When
22734 the pool is an array of devices, iterate through it and return the
22735 first device that passes a stat() test (instead of blindly returning
22736 the first one).
22737
22738 2010-09-26 Robert Millan <rmh@gnu.org>
22739
22740 Build fixes for GNU/kFreeBSD.
22741
22742 * Makefile.util.def: Add `$(LIBZFS) $(LIBNVPAIR)' library dependencies
22743 to programs that require ZFS conversion.
22744 * grub-core/kern/emu/hostdisk.c (grub_util_biosdisk_is_floppy): Support
22745 kernels that don't have FLOPPY_MAJOR.
22746
22747 2010-09-25 BVK Chaitanya <bvk.groups@gmail.com>
22748
22749 * grub-core/kern/emu/full.c (grub_emu_post_init): Fix typo.
22750
22751 2010-09-25 BVK Chaitanya <bvk.groups@gmail.com>
22752
22753 Fix grub-emu build.
22754
22755 * grub-core/kern/emu/main.c: Remove #include <getopt.h>.
22756 * grub-core/kern/emu/full.c: Split grub_mdraid_{init,fini} into
22757 mdraid09 and mdraid1x.
22758
22759 2010-09-24 Colin Watson <cjwatson@ubuntu.com>
22760
22761 Re-enable grub-extras.
22762
22763 * autogen.sh: Create symlinks to ${GRUB_CONTRIB} if necessary to
22764 avoid confusing Automake. Run autogen only twice, once for the top
22765 level and once for grub-core. Add Makefile.util.def and
22766 Makefile.core.def from extra modules to the appropriate autogen
22767 invocations. If Makefile.common exists in an extra module, include
22768 it in both Makefile.util.am and grub-core/Makefile.core.am;
22769 similarly, include any Makefile.util.common file in Makefile.util.am
22770 and any Makefile.core.common file in grub-core/Makefile.core.am.
22771 * conf/Makefile.common ($(top_srcdir)/grub-core/Makefile.core.am):
22772 Depend on $(top_srcdir)/grub-core/Makefile.gcry.def.
22773 ($(top_srcdir)/grub-core/Makefile.gcry.def): Remove.
22774 * grub-core/Makefile.am: Remove inclusion of Makefile.gcry.am.
22775
22776 * gentpl.py (gvar_add): Turn GVARS into a set.
22777 (global_variable_initializers): Sort global variables on output.
22778 (vars_init): New function.
22779 (first_time): Likewise.
22780 (library): Ensure that non-global variable initialisations are
22781 emitted before the first time we emit code for a library block.
22782 Append to variables rather than setting them. Only emit
22783 noinst_LIBRARIES, BUILT_SOURCES, and CLEANFILES the first time for
22784 each conditional path.
22785 (program): installdir() emits an Autogen macro, so must be passed to
22786 var_add rather than gvar_add.
22787 (data): Likewise.
22788 (script): Likewise.
22789 (rules): New function, centralising handling for different target
22790 types. Set up Guile association lists for first_time and vars_init,
22791 and send most output to a diversion so that variable initialisations
22792 can be emitted first.
22793 (module_rules): Use new rules function.
22794 (kernel_rules): Likewise.
22795 (image_rules): Likewise.
22796 (library_rules): Likewise.
22797 (program_rules): Likewise.
22798 (script_rules): Likewise.
22799 (data_rules): Likewise.
22800
22801 * configure.ac: Add AC_PROG_LN_S, for the benefit of ntldr-img.
22802
22803 * .bzrignore: Add contrib and grub-core/contrib. Remove
22804 grub-core/Makefile.gcry.am.
22805
22806 2010-09-24 Yves Blusseau <blusseau@zetam.org>
22807
22808 * grub-core/lib/LzFind.c: Add missing include.
22809 * grub-core/lib/LzmaEnc.c: Likewise.
22810 * grub-core/script/lexer.c: Likewise.
22811 * grub-core/script/yylex.l: Likewise.
22812 * util/grub-macho2img.c: Likewise.
22813 * util/grub-menulst2cfg.c: Likewise.
22814 * util/grub-mklayout.c: Likewise.
22815 * util/grub-mkpasswd-pbkdf2.c
22816 * util/grub-mkrelpath.c: Likewise.
22817 * util/resolve.c: Likewise.
22818
22819 2010-09-24 BVK Chaitanya <bvk.groups@gmail.com>
22820
22821 * Makefile.util.def (example_unit_test): Add
22822 grub-core/gnulib/libgnu.a.
22823
22824 2010-09-23 Grégoire Sutre <gregoire.sutre@gmail.com>
22825
22826 * grub-core/commands/acpihalt.c (get_sleep_type): Initialize prev.
22827
22828 2010-09-23 Vladimir Serbinenko <phcoder@gmail.com>
22829
22830 Support xz compression on yeeloong.
22831
22832 * Makefile.util.def (grub-mkimage): Add $(LIBLZMA).
22833 * configure.ac: Check for LZMA.
22834 * grub-core/Makefile.core.def (xz_decompress): New target.
22835 (none_decompress): Likewise.
22836 * grub-core/boot/decompressor/minilib.c: New file.
22837 * grub-core/boot/decompressor/none.c: Likewise.
22838 * grub-core/boot/decompressor/xz.c: Likewise.
22839 * grub-core/kern/mips/cache.S: Change to noreorder nomacro.
22840 * grub-core/kern/mips/cache_flush.S: Likewise.
22841 * grub-core/kern/i386/pc/lzma_decode.S: Remove dead code.
22842 * grub-core/kern/mips/startup.S: Move first stage to ...
22843 * grub-core/boot/mips/startup_raw.S: ...here. Change to noreorder
22844 nomacro.
22845 * grub-core/kern/mips/startup.S: Change to noreorder nomacro.
22846 * grub-core/lib/mips/relocator_asm.S: Change to noreorder nomacro.
22847 * grub-core/lib/xzembed/xz_dec_bcj.c [GRUB_EMBED_DECOMPRESSOR]:
22848 Allocate statically.
22849 * grub-core/lib/xzembed/xz_dec_lzma2.c [GRUB_EMBED_DECOMPRESSOR]:
22850 Allocate statically or use scratch. Don't check CRC32.
22851 * grub-core/lib/xzembed/xz_dec_stream.c [GRUB_EMBED_DECOMPRESSOR]:
22852 Allocate statically. Don't check CRC32.
22853 * include/grub/decompressor.h: New file.
22854 * include/grub/offsets.h (GRUB_KERNEL_MIPS_YEELOONG_RAW_SIZE):
22855 Removed.
22856 (GRUB_KERNEL_MIPS_YEELOONG_UNCOMPRESSED_SIZE): New field.
22857 (GRUB_KERNEL_MIPS_YEELOONG_TOTAL_MODULE_SIZE): Adjusted.
22858 (GRUB_KERNEL_MIPS_YEELOONG_PREFIX): Likewise.
22859 (GRUB_KERNEL_MIPS_YEELOONG_PREFIX_END): Likewise.
22860 (GRUB_KERNEL_MACHINE_UNCOMPRESSED_SIZE): New define.
22861 * util/grub-mkimage.c (grub_compression_t): New type.
22862 (PLATFORM_FLAGS_DECOMPRESSORS): New flag.
22863 (image_target_desc): New field default_compression.
22864 (image_targets): Adjust yeeloong targets.
22865 (compress_kernel_xz) [HAVE_LIBLZMA]: New function.
22866 (compress_kernel): New parameter comp.
22867 (generate_image): Likewise. Handle new compression case.
22868 (options): New option --compression
22869 (help): Likewise.
22870 (main): Handle new option.
22871
22872 2010-09-22 Grégoire Sutre <gregoire.sutre@gmail.com>
22873
22874 * grub-core/kern/emu/hostdisk.c [__NetBSD__]: Define FLOPPY_MAJOR.
22875
22876 2010-09-22 Colin Watson <cjwatson@ubuntu.com>
22877
22878 * grub-core/loader/multiboot_mbi2.c (grub_multiboot_make_mbi): Fix
22879 typo in __i386__ conditional.
22880
22881 2010-09-22 Vladimir Serbinenko <phcoder@gmail.com>
22882
22883 * grub-core/loader/multiboot_mbi2.c (GRUB_MACHINE_EFI): Add missing
22884 include.
22885
22886 2010-09-22 Vladimir Serbinenko <phcoder@gmail.com>
22887
22888 Implement EFI and ACPI multiboot2 extensions.
22889
22890 * grub-core/loader/multiboot_mbi2.c (grub_multiboot_load): Declare
22891 new tags as supported.
22892 (acpiv2_size): New function.
22893 (grub_multiboot_get_mbi_size): Take new tags into account.
22894 (grub_multiboot_make_mbi): Add new tags.
22895 * include/grub/multiboot.h (GRUB_MACHINE_HAS_ACPI): New definition.
22896
22897 2010-09-21 Aleš Nesrsta <starous@volny.cz>
22898
22899 * grub-core/bus/usb/serial/common.c (grub_usbserial_attach):
22900 Added missing configuration of USB device.
22901
22902 2010-09-21 Colin Watson <cjwatson@ubuntu.com>
22903
22904 * grub-core/normal/menu_entry.c (run): Make sure we always return
22905 a value.
22906
22907 2010-09-21 Colin Watson <cjwatson@ubuntu.com>
22908
22909 * grub-core/commands/efi/lsefimmap.c (grub_cmd_lsefimmap):
22910 NumberOfPages is UINT64 according to the UEFI specification, not
22911 UINTN. Fix printf format.
22912
22913 2010-09-21 Colin Watson <cjwatson@ubuntu.com>
22914
22915 * grub-core/bus/usb/usbhub.c (poll_nonroot_hub): Change type of
22916 `err' to grub_usb_err_t.
22917 Reported and tested by: KESHAV P.R.
22918
22919 2010-09-21 Colin Watson <cjwatson@ubuntu.com>
22920
22921 * grub-core/disk/efi/efidisk.c (grub_efidisk_get_device_name): Make
22922 tpart non-const, so that we can assign to it. (Since this is a
22923 typedef, the constness refers to the pointer rather than what it
22924 points to.)
22925
22926 2010-09-21 Colin Watson <cjwatson@ubuntu.com>
22927
22928 * conf/Makefile.common (CPPFLAGS_GNULIB): Add
22929 $(top_srcdir)/grub-core/gnulib as well as
22930 $(top_builddir)/grub-core/gnulib.
22931 Reported by: KESHAV P.R.
22932
22933 2010-09-21 Colin Watson <cjwatson@ubuntu.com>
22934
22935 * util/grub-install.in: Fix the bootloader ID option to be
22936 consistently --bootloader-id, not --bootloader_id.
22937 Reported by: KESHAV P.R.
22938
22939 2010-09-21 Colin Watson <cjwatson@ubuntu.com>
22940
22941 * grub-core/commands/hashsum.c (GRUB_MOD_INIT): Make "Compute or
22942 check hash checksum." consistently translatable.
22943
22944 2010-09-21 Yves Blusseau <blusseau@zetam.org>
22945
22946 * conf/Makefile.common (CPPFLAGS_GNULIB): Replace $(top_srcdir) with
22947 $(top_builddir).
22948
22949 2010-09-21 Colin Watson <cjwatson@ubuntu.com>
22950
22951 * grub-core/commands/hashsum.c (aliases): Add sha1sum alias.
22952 (GRUB_MOD_INIT): Register sha1sum command.
22953 (GRUB_MOD_FINI): Unregister sha1sum command.
22954
22955 2010-09-21 Yves Blusseau <blusseau@zetam.org>
22956
22957 Keep boot and grub directory names in sync with utils scripts
22958
22959 * configure.ac: Define GRUB_BOOT_DIR_NAME and GRUB_DIR_NAME macros.
22960 * config.h.in: Add previous macros.
22961 * include/grub/emu/misc.h (DEFAULT_DIRECTORY): Use previous macros.
22962 * util/grub-install.in: Use $bootdir and $grubdir variables.
22963
22964 2010-09-21 Colin Watson <cjwatson@ubuntu.com>
22965
22966 * grub-core/kern/emu/hostdisk.c (find_system_device): Only try to
22967 convert partition names to disk names if the new `convert' parameter
22968 is set.
22969 (grub_util_biosdisk_get_grub_dev): If opening the disk device
22970 returns GRUB_ERR_UNKNOWN_DEVICE, treat the partition device as a
22971 disk in its own right. This can happen with Xen disk images.
22972
22973 2010-09-21 Yves Blusseau <blusseau@zetam.org>
22974
22975 * util/grub-editenv.c: Update strings to avoid warnings when generating
22976 grub.pot file.
22977 * util/grub-setup.c: Likewise.
22978
22979 2010-09-21 Vladimir Serbinenko <phcoder@gmail.com>
22980
22981 * configure.ac: Change version to 1.99~beta0.
22982
22983 2010-09-21 Vladimir Serbinenko <phcoder@gmail.com>
22984
22985 * grub-core/loader/i386/multiboot_mbi.c (grub_fill_multiboot_mmap):
22986 Add BADRAM.
22987 * grub-core/loader/multiboot_mbi2.c (grub_fill_multiboot_mmap):
22988 Likewise.
22989 * include/multiboot.h: Resynced with specification.
22990 * include/multiboot2.h: Likewise.
22991
22992 2010-09-21 Colin Watson <cjwatson@ubuntu.com>
22993
22994 Fix po directory handling.
22995
22996 * configure.ac: Create po/Makefile.in rather than po/Makefile.
22997 * grub-core/gnulib/Makefile.am: Import gettext module.
22998 * m4/gnulib-cache.m4: Likewise.
22999 * m4/gnulib-comp.m4: Likewise.
23000 * m4/gettext.m4: New file, from gnulib.
23001 * m4/glibc2.m4: Likewise.
23002 * m4/iconv.m4: Likewise.
23003 * m4/intdiv0.m4: Likewise.
23004 * m4/intl.m4: Likewise.
23005 * m4/intldir.m4: Likewise.
23006 * m4/intlmacosx.m4: Likewise.
23007 * m4/intmax.m4: Likewise.
23008 * m4/inttypes-pri.m4: Likewise.
23009 * m4/lcmessage.m4: Likewise.
23010 * m4/lib-ld.m4: Likewise.
23011 * m4/lib-link.m4: Likewise.
23012 * m4/lib-prefix.m4: Likewise.
23013 * m4/lock.m4: Likewise.
23014 * m4/nls.m4: Likewise.
23015 * m4/po.m4: Likewise.
23016 * m4/printf-posix.m4: Likewise.
23017 * m4/progtest.m4: Likewise.
23018 * m4/threadlib.m4: Likewise.
23019 * m4/uintmax_t.m4: Likewise.
23020 * m4/visibility.m4: Likewise.
23021 * po/Makefile.am: Remove.
23022 * po/Makefile.in.in: New file, from gettext.
23023 ($(DOMAIN).pot-update): Support POTFILES-shell.
23024 * po/Makevars: New file.
23025 * po/POTFILES-shell: Rename to ...
23026 * po/POTFILES-shell.in: ... this. Update.
23027 * po/POTFILES: Rename to ...
23028 * po/POTFILES.in: ... this. Update.
23029 * po/Rules-quot: New file, from gettext.
23030 * po/boldquot.sed: Likewise.
23031 * po/en@boldquot.header: Likewise.
23032 * po/en@quot.header: Likewise.
23033 * po/insert-header.sin: Likewise.
23034 * po/quot.sed: Likewise.
23035 * po/remove-potcdate.sin: Likewise.
23036
23037 2010-09-20 Vladimir Serbinenko <phcoder@gmail.com>
23038
23039 * util/grub.d/10_kfreebsd.in (kfreebsd_entry): Use UUID when possible.
23040
23041 2010-09-20 Vladimir Serbinenko <phcoder@gmail.com>
23042
23043 * util/grub.d/20_linux_xen.in: Use submenus.
23044
23045 2010-09-20 Vladimir Serbinenko <phcoder@gmail.com>
23046
23047 Support submenus.
23048
23049 * grub-core/commands/menuentry.c (grub_normal_add_menu_entry): New
23050 parameter submenu. All users updated.
23051 * grub-core/normal/main.c (free_menu): Rename to ...
23052 (grub_normal_free_menu): ... this. Made global.
23053 * grub-core/normal/menu.c (grub_menu_execute_entry): Open new context
23054 if requested.
23055 * grub-core/normal/menu_entry.c (screen): New field submenu.
23056 (make_screen): Set submenu.
23057 (run): Open new context if requested.
23058 * include/grub/menu.h (grub_menu_entry): New field submenu.
23059 * include/grub/normal.h (grub_normal_free_menu): New proto.
23060
23061 2010-09-20 Vladimir Serbinenko <phcoder@gmail.com>
23062
23063 Menu entries extractor.
23064
23065 * grub-core/commands/configfile.c (grub_cmd_source): Implement extractor
23066 variants.
23067 (GRUB_MOD_INIT): Register new variants.
23068 (GRUB_MOD_FINI): Unregister new variants.
23069 * grub-core/commands/legacycfg.c (grub_cmd_legacy_configfile): Merge
23070 into grub_cmd_legacy_source.
23071 (grub_cmd_legacy_source): Implement extractor variants.
23072 (GRUB_MOD_INIT): Register new variants.
23073 (GRUB_MOD_FINI): Unregister new variants.
23074 * grub-core/commands/menuentry.c (grub_menu_init): Declare menuentry
23075 as an extractor.
23076 * grub-core/commands/search_wrap.c (GRUB_MOD_INIT): Declare
23077 search as an extractor.
23078 * grub-core/commands/test.c (GRUB_MOD_INIT): Declare
23079 test as an extractor.
23080 * grub-core/kern/corecmd.c (grub_register_core_commands): Declare set
23081 as an extractor.
23082 * grub-core/normal/context.c (grub_env_context_open): Reorganised.
23083 (grub_env_new_context): New function.
23084 (grub_env_context_open): Likewise.
23085 (grub_env_extractor_open): Likewise.
23086 (grub_env_extractor_close): Likewise.
23087 * grub-core/script/execute.c (grub_script_execute_cmdline): Handle
23088 grub_extractor_level.
23089 * include/grub/command.h (GRUB_COMMAND_FLAG_EXTRACTOR): New flag.
23090 * include/grub/env.h (grub_env_extractor_open): New proto.
23091 (grub_env_extractor_close): Likewise.
23092 * include/grub/normal.h (grub_extractor_level): New external variable.
23093
23094 2010-09-20 Vladimir Serbinenko <phcoder@gmail.com>
23095
23096 Make cutmem accept a region specification.
23097 Suggested by: Samuel Thibault
23098
23099 * grub-core/mmap/mmap.c (parsemem): New function.
23100 (grub_cmd_cutmem): Handle new arguments.
23101
23102 2010-09-20 Vladimir Serbinenko <phcoder@gmail.com>
23103
23104 New command cutmem.
23105
23106 * grub-core/mmap/mmap.c (grub_cmd_cutmem): New function.
23107 (GRUB_MOD_INIT): Register new command.
23108 (GRUB_MOD_FINI): Unregister new command.
23109
23110 2010-09-20 Vladimir Serbinenko <phcoder@gmail.com>
23111
23112 Support some annoying BSD and Minix subpartitions.
23113
23114 * Makefile.util.def (libgrub.a): Add grub-core/partmap/bsdlabel.c.
23115 * grub-core/disk/efi/efidisk.c (grub_efidisk_get_device_name):
23116 Properly handle concatenation.
23117 * grub-core/kern/device.c (grub_device_iterate): Likewise.
23118 * grub-core/normal/completion.c (iterate_partition): Likewise.
23119 * grub-core/kern/disk.c (grub_disk_open): Make disk->name not
23120 contain partition. All users updated.
23121 * grub-core/partmap/bsdlabel.c (grub_netbsdlabel_partition_map): New
23122 struct.
23123 (grub_openbsdlabel_partition_map): Likewise.
23124 (bsdlabel_partition_map_iterate): Rename to ..
23125 (iterate_real): ... this. New arguments sector, freebsd and pmap.
23126 (bsdlabel_partition_map_iterate): New function.
23127 (netopenbsdlabel_partition_map_iterate): Likewise.
23128 (netbsdlabel_partition_map_iterate): Likewise.
23129 (openbsdlabel_partition_map_iterate): Likewise.
23130 (GRUB_MOD_INIT): Register new partmaps.
23131 (GRUB_MOD_FINI): Unregister new partmaps.
23132 * grub-core/partmap/msdos.c (pc_partition_map_iterate): Rename to ...
23133 (grub_partition_msdos_iterate): ... this. All users updated.
23134 Don't support embedding other than in a minix partition.
23135 * include/grub/msdos_partition.h (grub_partition_msdos_iterate): New
23136 proto.
23137 * include/grub/partition.h (grub_partition): New field msdostype.
23138 * util/grub-install.in: Handle openbsd and netbsd types being in
23139 part_bsd module.
23140
23141 2010-09-20 Vladimir Serbinenko <phcoder@gmail.com>
23142
23143 Split mdraid.mod into mdraid09.mod and mdraid1x.mod.
23144
23145 * Makefile.util.def (libgrub.a): Add grub-core/disk/mdraid1x_linux.c.
23146 * grub-core/Makefile.core.def (mdraid): Renamed to ...
23147 (mdraid09): ... this.
23148 (mdraid1x): New module.
23149 * grub-core/disk/mdraid_linux.c: Move 1.x parts ...
23150 * grub-core/disk/mdraid1x_linux.c: ...here. All users updated.
23151
23152 2010-09-20 Vladimir Serbinenko <phcoder@gmail.com>
23153
23154 * grub-core/kern/emu/misc.c (asprintf): Use vsnprintf instead of
23155 vsprintf.
23156
23157 2010-09-20 Colin Watson <cjwatson@ubuntu.com>
23158
23159 * grub-core/commands/efi/lsefimmap.c: Correct header.
23160 * NEWS: Update.
23161
23162 2010-09-20 Colin Watson <cjwatson@ubuntu.com>
23163
23164 * util/grub-editenv.c (argp_parser): Don't pass translated strings
23165 as printf format strings; the translations might contain '%' which
23166 could cause a crash.
23167 (main): Likewise.
23168 * util/grub-fstest.c (argp_parser): Likewise.
23169 * util/grub-setup.c (argp_parser): Likewise.
23170 (main): Likewise.
23171
23172 2010-09-20 Vladimir Serbinenko <phcoder@gmail.com>
23173
23174 Use argp in grub-fstest.
23175
23176 * util/grub-fstest.c: Don't include getopt.h.
23177 Include argp.h.
23178 (root): New variable.
23179 (args_count): Likewise.
23180 (nparm): Likewise.
23181 (num_disks): Likewise.
23182 (images): Likewise.
23183 (cmd): Likewise.
23184 (debug_str): Likewise.
23185 (args): Likewise.
23186 (options): Transformed to argp.
23187 (usage): Removed.
23188 (main): Split argument parsing into ...
23189 (argp_parser): ... this. Changed to argp format.
23190 (argp): New variable.
23191 (main): Use argp_parse.
23192
23193 2010-09-20 Tristan Gingold <gingold@free.fr>
23194 2010-09-20 Robert Millan <rmh.grub@aybabtu.com>
23195 2010-09-20 Vladimir Serbinenko <phcoder@gmail.com>
23196
23197 * grub-core/commands/efi/lsefimmap.c: New file.
23198 * grub-core/Makefile.core.def (lsefimmap): New module.
23199 * include/grub/efi/api.h (PRIxGRUB_EFI_UINTN_T): New definition.
23200
23201 2010-09-20 Vladimir Serbinenko <phcoder@gmail.com>
23202
23203 Pause the execution (10s max) if any errors are displayed so the user
23204 has a chance to see them.
23205
23206 * grub-core/kern/err.c (grub_err_printed_errors): New variable.
23207 (grub_print_error): Increment grub_err_printed_errors.
23208 * grub-core/normal/menu.c (grub_menu_execute_entry): Pause the
23209 execution if any errors were displayed.
23210 (show_menu): Remove old code for pause.
23211 * grub-core/normal/menu_entry.c (run): Likewise.
23212 * grub-core/normal/term.c (grub_normal_char_counter): Removed. All
23213 users updated.
23214 (grub_normal_get_char_counter): Likewise.
23215 * include/grub/err.h (grub_err_printed_errors): New external variable.
23216 * include/grub/normal.h (grub_normal_get_char_counter): Removed.
23217
23218 2010-09-20 Vladimir Serbinenko <phcoder@gmail.com>
23219
23220 Support multiboot VBE info.
23221
23222 * grub-core/loader/i386/multiboot_mbi.c (grub_multiboot_get_mbi_size):
23223 Take VBE info into account.
23224 (fill_vbe_info) [GRUB_MACHINE_HAS_VBE]: New function.
23225 (retrieve_video_parameters) [GRUB_MACHINE_HAS_VBE]:
23226 Call fill_vbe_info when appropriate.
23227 (grub_multiboot_make_mbi): Account for the size occupied by VBE info.
23228 * grub-core/loader/multiboot_mbi2.c (grub_multiboot_load): Declare tags
23229 as supported.
23230 (grub_multiboot_get_mbi_size): Take new tags into account.
23231 (fill_vbe_tag) [GRUB_MACHINE_HAS_VBE]: New function.
23232 (retrieve_video_parameters) [GRUB_MACHINE_HAS_VBE]:
23233 Call fill_vbe_tag when appropriate.
23234 (grub_multiboot_make_mbi): Properly align tags.
23235 * grub-core/video/i386/pc/vbe.c (grub_vbe_bios_get_pm_interface): New
23236 function.
23237 * include/grub/i386/pc/vbe.h (grub_vbe_bios_get_pm_interface): New
23238 proto.
23239 * include/grub/multiboot.h (GRUB_MACHINE_HAS_VBE): New definition.
23240
23241 2010-09-20 Vladimir Serbinenko <phcoder@gmail.com>
23242
23243 Suport manual terminal geometry specification.
23244
23245 * grub-core/term/ieee1275/ofconsole.c (grub_ofconsole_dimensions):
23246 Save state in grub_ofconsole_terminfo_output.
23247 (grub_ofconsole_term): Use grub_terminfo_getwh.
23248 (grub_ofconsole_getwh): Removed.
23249 * grub-core/term/serial.c (grub_serial_getwh): Removed.
23250 (grub_serial_term): Use grub_terminfo_getwh.
23251 * grub-core/term/terminfo.c (grub_terminfo_getwh): New function.
23252 (options): New struct.
23253 (OPTION_*): New enum.
23254 (grub_cmd_terminfo): Transform into extcmd and handle new parameters.
23255 * include/grub/terminfo.h (grub_terminfo_output_state): New fields
23256 width and height.
23257 (grub_terminfo_getwh): New proto.
23258 * grub-core/lib/legacy_parse.c (grub_legacy_parse): Handle --lines.
23259
23260 2010-09-20 Vladimir Serbinenko <phcoder@gmail.com>
23261
23262 Handle legacy "terminal" command.
23263
23264 * grub-core/lib/legacy_parse.c (legacy_command): New flags FLAG_TITLE
23265 and FLAG_TERMINAL.
23266 (legacy_commands): Add terminal and title.
23267 (grub_legacy_parse): Handle terminal. Simplify title handling.
23268
23269 2010-09-20 Vladimir Serbinenko <phcoder@gmail.com>
23270
23271 * grub-core/lib/arg.c (grub_arg_show_help): Correctly handle
23272 parameters overflow.
23273
23274 2010-09-20 Colin Watson <cjwatson@ubuntu.com>
23275
23276 * .bzrignore: Add grub-core/gnulib/sys, widthspec.bin, and
23277 widthspec.h.
23278
23279 * docs/grub.texi (Shell-like scripting): Document `!'.
23280 (Network): Simplify using new i386-pc-pxe format. Mention
23281 grub-mknetdir.
23282
23283 * NEWS: Update.
23284
23285 2010-09-20 Colin Watson <cjwatson@ubuntu.com>
23286
23287 * Makefile.am (SUBDIRS): Restore "."; it's important to force
23288 ordering, so that e.g. ascii.h is built before grub-core/font/font.c
23289 when needed.
23290
23291 2010-09-20 Colin Watson <cjwatson@ubuntu.com>
23292
23293 * grub-core/commands/efi/lsefisystab.c: Correct header.
23294 * grub-core/commands/efi/lssal.c: Likewise.
23295 * grub-core/commands/testload.c: Likewise.
23296
23297 2010-09-20 Colin Watson <cjwatson@ubuntu.com>
23298
23299 * util/grub-mkrescue.in: Add explicit root argument to --set to
23300 prevent the UUID being interpreted as an argument to --set (matches
23301 previous change to prepare_grub_to_access_device).
23302
23303 2010-09-20 Colin Watson <cjwatson@ubuntu.com>
23304
23305 * kern/emu/hostdisk.c: Include <sys/ioctl.h> and <sys/disklabel.h>
23306 on FreeBSD. Define HAVE_DIOCGDINFO on NetBSD and FreeBSD to reduce
23307 the verbosity of later #ifs.
23308 (find_partition_start): Define this function on FreeBSD too.
23309 (device_is_wholedisk) [__FreeBSD__ || __FreeBSD_kernel__]: New
23310 function.
23311 (grub_util_biosdisk_get_grub_dev): Use partition-start-sector logic
23312 on FreeBSD.
23313
23314 2010-09-20 Yves Blusseau <blusseau@zetam.org>
23315
23316 * util/grub-editenv.c: Use argp instead of getopt.
23317
23318 2010-09-20 Yves Blusseau <blusseau@zetam.org>
23319
23320 * util/grub-setup.c: Use argp instead of getopt.
23321
23322 2010-09-20 Yves Blusseau <blusseau@zetam.org>
23323
23324 Use gnulib-tool to create gnulib source files.
23325
23326 * Add gnulib files generated by gnulib-tool in build-aux, m4 and
23327 grub-core/gnulib directories
23328 * .bzignore: Add **/.deps and autogenerated gnulib files
23329 * configure.ac: Assign auxiliary directory to build-aux, add invocation
23330 of gnulib macros, add grub-core/gnulib/Makefile
23331 * Makefile.am: Add gnulib directory in SUBDIRS (removing unnecessary .),
23332 include m4 directory to aclocal.
23333 * Makefile.util.def: Remove direct compilation of gnulib source files
23334 and use the new grub-core/gnulib/libgnu.a.
23335 * build-aux/config.rpath: move config.rpath from top directory to
23336 build-aux
23337 * conf/Makefile.common: Remove the macro _GL_UNUSED already defined
23338 in gnulib headers
23339 * conf/Makefile.extra-dist: Add m4/gnulib-cache.m4
23340 * grub-core/Makefile.core.def: Remove unnecessary extra_dist
23341 * grub-core/lib/posix_wrap/localcharset.h (locale_charset): Update
23342 header.
23343 * grub-core/lib/posix_wrap/langinfo.h (nl_langinfo): Return static
23344 string.
23345
23346 2010-09-20 Yves Blusseau <blusseau@zetam.org>
23347
23348 * .bzrignore: Add grub-kbdcomp, grub-menulst2cfg, *.marker,
23349 grub-core/genmod.sh and grub-core/gensyminfo.sh
23350
23351 2010-09-20 BVK Chaitanya <bvk.groups@gmail.com>
23352
23353 Add a test for echo command options.
23354
23355 * tests/grub_cmd_echo.in: New test.
23356 * Makefile.util.def: Rules for new test.
23357
23358 2010-09-20 Szymon Janc <szymon@janc.net.pl>
23359
23360 Remove crc.mod and move crc command to hashsum.mod.
23361 Remove lib/crc.c - users updated to use gcrypt implementation.
23362
23363 * grub-core/commands/crc.c: Removed.
23364 * grub-core/Makefile.core.def (crc): Module removed.
23365 * grub-core/commands/hashsum.c (aliases[]): Add crc alias.
23366 * grub-core/commands/hashsum.c (GRUB_MOD_INIT): Register crc command.
23367 * grub-core/commands/hashsum.c (GRUB_MOD_FINI): Unregister crc command.
23368 * grub-core/lib/crc.c: Removed.
23369 * include/grub/lib/crc.h: Removed.
23370 * Makefile.util.def (crc): Remove lib/crc.c
23371 * grub-core/Makefile.core.def (libgrub.a): Remove grub-core/lib/crc.c.
23372 * util/grub-fstest.c (cmd_crd): Use libgcrypt crc implementation.
23373 * Makefile.util.def (libgrub.a): Add grub-core/lib/libgcrypt-grub/cipher/crc.c.
23374 * Makefile.util.def (grub-fstest): Add CFLAGS_GCRY to cflags.
23375 * Makefile.util.def (grub-fstest): Add CPPFLAGS_GCRY to cppflags.
23376 * grub-core/efiemu/prepare.c (grub_efiemu_crc): Use libgcrypt crc implementation.
23377
23378 2010-09-20 Vladimir Serbinenko <phcoder@gmail.com>
23379
23380 * grub-core/boot/i386/pc/boot.S: Ignore %dl if it's not in a sane range.
23381
23382 2010-09-19 Vladimir Serbinenko <phcoder@gmail.com>
23383
23384 Split config.h for util and core.
23385
23386 * acinclude.m4 (HAVE_ASM_USCORE): Transformed into a variable.
23387 (ADDR32): Likewise.
23388 (DATA32): Likewise.
23389 (BSS_START_SYMBOL): Likewise.
23390 (END_SYMBOL): Likewise.
23391 (NEED_ENABLE_EXECUTE_STACK): Likewise. All users updated.
23392 (grub_I386_ASM_ABSOLUTE_WITHOUT_ASTERISK): Removed.
23393 * config.h.in: New file.
23394 * configure.ac: Use config-util.h as config define file.
23395 Rename MACHINE into GRUB_MACHINE. All users updated.
23396 (NEED_REGISTER_FRAME_INFO): Transformed into a variable. All users
23397 updated.
23398 (NESTED_FUNC_ATTR): Likewise.
23399 Substitue new variables.
23400 (COND_HAVE_ASM_USCORE): New conditional.
23401 * grub-core/Makefile.am (ASM_PREFIX): New variable.
23402 (kernel_syms.lst): Use ASM_PREFIX.
23403 * grub-core/kern/emu/console.c: Include config-util.h.
23404 * grub-core/kern/emu/misc.c: Likewise.
23405 * grub-core/kern/emu/mm.c: Likewise.
23406 * include/grub/emu/misc.h: Likewise.
23407 * include/grub/libgcc.h: Likewise.
23408
23409 2010-09-19 Vladimir Serbinenko <phcoder@gmail.com>
23410
23411 * grub-core/term/efi/console.c (efi_codes): Fix GRUB_TERM_KEY_*
23412 constants usage.
23413 * grub-core/kern/emu/console.c (grub_ncurses_getkey):
23414 Fix GRUB_TERM_KEY_* constants usage.
23415 * grub-core/kern/emu/misc.c (asprintf): Fix vasprintf usage.
23416
23417 2010-09-19 Vladimir Serbinenko <phcoder@gmail.com>
23418
23419 * grub-core/bus/usb/ohci.c (grub_ohci_cancel_transfer): Use %p to
23420 print pointer.
23421 * grub-core/bus/usb/uhci.c: Remove empty define.
23422 (grub_uhci_check_transfer): Add missing cast.
23423 * grub-core/bus/usb/usbhub.c (poll_nonroot_hub): Use %p to
23424 print pointer.
23425 * grub-core/term/usb_keyboard.c (grub_usb_keyboard_getkey): Use
23426 PRIuGRUB_SIZE.
23427 * include/grub/types.h (PRIuGRUB_SIZE): New definition.
23428
23429 2010-09-19 Vladimir Serbinenko <phcoder@gmail.com>
23430
23431 * grub-core/Makefile.core.def (legacycfg): Add
23432 lib/i386/pc/vesa_modes_table.c on emu.
23433
23434 2010-09-19 BVK Chaitanya <bvk.groups@gmail.com>
23435
23436 Reduce number of temporary files generated by build system.
23437
23438 * grub-core/gencmdlist.sh: Removed.
23439 * grub-core/genfslist.sh: Removed.
23440 * grub-core/genhandlerlist.sh: Removed.
23441 * grub-core/genmodsrc.sh: Removed.
23442 * grub-core/genpartmaplist.sh: Removed.
23443 * grub-core/genparttoollist.sh: Removed.
23444 * grub-core/gentermiinallist.sh: Removed.
23445 * grub-core/genvideolist.sh: Removed.
23446
23447 * grub-core/genmod.sh.in: New file.
23448 * grub-core/gensyminfo.sh.in: New file.
23449
23450 * conf/Makefile.common (CPPFLAGS_*_LIST): New marker flags.
23451 * conf/Makefile.extra-dist: Update with new files.
23452 * gentpl.py: Remove rules related to unnecessary temporary files.
23453 * grub-core/Makefile.am (syminfo.lst): New replacement for def-*
23454 and und-* files.
23455 * grub-core/Makefile.core.def: New rules for gensyminfo.sh and
23456 genmod.sh scripts.
23457 * grub-core/bus/usb/uhci.c: Remove empty #define.
23458 * grub-core/genmoddep.awk: Updated with new syminfo format.
23459 * util/bash-completion.d/Makefile.am: Add config.log to
23460 CLEANFILES.
23461
23462 2010-09-19 Yves Blusseau <blusseau@zetam.org>
23463
23464 * Makefile.util.def: Add forgotten $(LIBINTL) library.
23465
23466 2010-09-19 BVK Chaitanya <bvk.groups@gmail.com>
23467
23468 * util/grub-mkconfig.in: Check the config script for syntax errors
23469 before saving.
23470
23471 2010-09-19 Colin Watson <cjwatson@ubuntu.com>
23472 2010-09-19 Vladimir Serbinenko <phcoder@gmail.com>
23473
23474 * Makefile.util.def (grub-install): Use util/grub-install.in on all
23475 platforms.
23476 * util/grub-install.in: Add EFI and IEEE1275 support.
23477 * util/i386/efi/grub-install.in: Removed.
23478 * util/ieee1275/grub-install.in: Likewise.
23479
23480 2010-09-19 Vladimir Serbinenko <phcoder@gmail.com>
23481
23482 * grub-core/commands/i386/cmostest.c (+parse_args): New function.
23483 (grub_cmd_cmosclean): Likewise.
23484 (GRUB_MOD_INIT): Register command cmosclean.
23485 * util/grub-mkconfig.in: Export GRUB_BUTTON_CMOS_CLEAN.
23486 * util/grub.d/00_header.in: Handle GRUB_BUTTON_CMOS_CLEAN.
23487
23488 2010-09-18 Carles Pina i Estany <carles@pina.cat>
23489 2010-09-18 Aleš Nesrsta <starous@volny.cz>
23490 2010-09-18 Vladimir Serbinenko <phcoder@gmail.com>
23491
23492 Add keyboard layouts support.
23493
23494 * Makefile.util.def (grub-mklayout): New file.
23495 (grub-kbdcomp): New script.
23496 * grub-core/Makefile.am (KERNEL_HEADER_FILES) [COND_mips_yeeloong]:
23497 Add keyboard_layouts.h.
23498 * grub-core/Makefile.core.def (kernel): Add commands/keylayouts.c and
23499 commands/boot.c on yeeloong.
23500 (keylayouts): New module.
23501 * grub-core/bus/usb/ohci.c
23502 * grub-core/bus/usb/uhci.c
23503 * grub-core/bus/usb/usbhub.c (rescan): New variable.
23504 (grub_usb_add_hub): Poll interrupt pipe for device handling.
23505 (attach_root_port): Likewise.
23506 (poll_nonroot_hub): Likewise.
23507 (grub_usb_poll_devices): Likewise.
23508 (detach_device): Close transfer.
23509 * grub-core/bus/usb/usbtrans.c (grub_usb_execute_and_wait_transfer): New
23510 function.
23511 (grub_usb_bulk_setup_readwrite): Likewise.
23512 (grub_usb_bulk_finish_readwrite): Likewise.
23513 * grub-core/commands/keylayouts.c: New file.
23514 * grub-core/commands/keystatus.c (grub_getkeystatus): New function.
23515 * grub-core/commands/menuentry.c (hotkey_aliases): All several new
23516 aliases.
23517 * grub-core/term/at_keyboard.c: Restructured to use keylayouts and
23518 support scancode 2.
23519 * grub-core/term/usb_keyboard.c: Restructured to use keylayouts.
23520 * include/grub/keyboard_layouts.h: New file.
23521 * util/grub-mklayout.c: New file.
23522 * util/grub-kbdcomp.in: Likewise.
23523
23524 2010-09-18 Vladimir Serbinenko <phcoder@gmail.com>
23525
23526 Unify memory types.
23527
23528 * grub-core/Makefile.am (KERNEL_HEADER_FILES): Include memory.h.
23529 * grub-core/commands/lsmmap.c (grub_cmd_lsmmap): Output user-readable
23530 types.
23531 * grub-core/kern/i386/multiboot_mmap.c (grub_lower_mem): Removed.
23532 (grub_upper_mem): Likewise.
23533 * grub-core/kern/ieee1275/init.c (grub_upper_mem): Likewise.
23534 * include/grub/memory.h (grub_memory_type_t): New enum.
23535 All users updated.
23536
23537 2010-09-18 Vladimir Serbinenko <phcoder@gmail.com>
23538
23539 * grub-core/Makefile.core.def (lsapm): New module.
23540 * grub-core/commands/i386/pc/lsapm.c: New file.
23541 * grub-core/loader/i386/multiboot_mbi.c (make_mbi) [GRUB_MACHINE_PCBIOS]: Pass APM info.
23542 * grub-core/loader/multiboot_mbi2.c (make_mbi) [GRUB_MACHINE_PCBIOS]:
23543 Likewise.
23544 * include/grub/i386/pc/apm.h: New file.
23545 * include/multiboot.h (multiboot_apm_info): New struct.
23546
23547 2010-09-18 Vladimir Serbinenko <phcoder@gmail.com>
23548
23549 GRUB-legacy configuration file support.
23550
23551 * Makefile.util.def (grub-menulst2cfg): New util.
23552 * docs/man/grub-menulst2cfg.h2m: New file.
23553 * grub-core/Makefile.core.def (legacycfg): New module.
23554 * grub-core/commands/legacycfg.c: New file.
23555 * grub-core/commands/menuentry.c (append_menu_entry): Rename to ...
23556 (grub_normal_add_menu_entry): ... this.
23557 * grub-core/commands/password.c (grub_cmd_password): Split main part to ...
23558 (grub_normal_set_password): ...this.
23559 * grub-core/commands/videoinfo.c (grub_cmd_videoinfo): Support MODE.
23560 * grub-core/loader/i386/linux.c (linux_vesafb_res): Move to ..,
23561 * grub-core/lib/i386/pc/vesa_modes_table.c: ... here.
23562 * grub-core/lib/legacy_parse.c: New file.
23563 * grub-core/normal/auth.c (grub_cmd_authenticate): New command.
23564 * include/grub/i386/pc/vesa_modes_table.h: New file.
23565 * include/grub/legacy_parse.h: Likewise.
23566 * include/grub/normal.h (grub_normal_add_menu_entry): New proto.
23567 * util/grub-menulst2cfg.c: New file.
23568
23569 2010-09-17 Colin Watson <cjwatson@ubuntu.com>
23570
23571 * grub-core/kern/emu/hostdisk.c
23572 (convert_system_partition_to_system_disk): Initialise node.
23573
23574 2010-09-17 Colin Watson <cjwatson@ubuntu.com>
23575
23576 * grub-core/kern/emu/hostdisk.c
23577 (convert_system_partition_to_system_disk): Fix devmapper memory pool
23578 leak.
23579 Reported and based on patch by: Modestas Vainius.
23580
23581 2010-09-17 Colin Watson <cjwatson@ubuntu.com>
23582
23583 Fix DM-RAID probing with recent versions of device-mapper udev
23584 rules.
23585
23586 * grub-core/kern/emu/hostdisk.c (read_device_map): Don't
23587 canonicalise device paths under /dev/mapper/.
23588 (convert_system_partition_to_system_disk): Compare the
23589 uncanonicalised path to /dev/mapper/ rather than the canonicalised
23590 path, since device nodes under /dev/mapper/ are often symlinks.
23591
23592 2010-09-17 Yves Blusseau <blusseau@zetam.org>
23593
23594 * .bzrignore: *.d removed (old rule), add *.image and symlist.h.
23595
23596 2010-09-16 Yves Blusseau <blusseau@zetam.org>
23597
23598 * configure.ac: Avoid some annoying error messages if freetype-config
23599 program is not found.
23600
23601 2010-09-16 Colin Watson <cjwatson@ubuntu.com>
23602
23603 Support RAID on virtio devices, and others.
23604
23605 * grub-core/kern/emu/getroot.c [__MINGW32__] (find_root_device):
23606 Rename to ...
23607 [__MINGW32__] (grub_find_device): ... this.
23608 [! __MINGW32__ && ! __CYGWIN__] (find_root_device): Rename to ...
23609 [! __MINGW32__ && ! __CYGWIN__] (grub_find_device): ... this. Use a
23610 reasonable default if dir is NULL.
23611 [! __MINGW32__ && __CYGWIN__] (find_cygwin_root_device): Rename to
23612 ...
23613 [! __MINGW32__ && __CYGWIN__] (grub_find_device): ... this.
23614 (grub_guess_root_device): Update callers.
23615 * include/grub/emu/getroot.h (grub_find_device): Add prototype.
23616
23617 * util/raid.c (grub_util_getdiskname): Remove.
23618 (grub_util_raid_getmembers): Use grub_find_device rather than
23619 grub_util_getdiskname.
23620
23621 2010-09-16 Colin Watson <cjwatson@ubuntu.com>
23622
23623 * docs/grub.texi (serial): Remove obsolete comment about GRUB
23624 needing to be compiled with serial support.
23625 (ls): Indicate that multiple files are accepted.
23626 * grub-core/commands/ls.c (GRUB_MOD_INIT): Update help text to
23627 indicate that multiple files are accepted.
23628
23629 2010-09-16 Colin Watson <cjwatson@ubuntu.com>
23630
23631 * .bzrignore: Add *.1, *.8, grub-shell, grub-shell-tester,
23632 libgrub_a_init.c, and util/bash-completion.d/grub.
23633
23634 2010-09-15 Vladimir Serbinenko <phcoder@gmail.com>
23635
23636 * util/grub-setup.c (setup): Fix incorrect container semantics.
23637
23638 2010-09-15 Vladimir Serbinenko <phcoder@gmail.com>
23639
23640 * grub-core/commands/parttool.c (grub_cmd_parttool): Fix a variable
23641 misusage.
23642 Reported by: J. Nick Terry
23643
23644 2010-09-15 Vladimir Serbinenko <phcoder@gmail.com>
23645
23646 Move embedding routines to partmap sources files.
23647
23648 * grub-core/partmap/gpt.c (grub_gpt_partition_type_bios_boot)
23649 [GRUB_UTIL]: New variable.
23650 (gpt_partition_map_iterate): Set part.parent.
23651 (gpt_partition_map_embed) [GRUB_UTIL]: New function.
23652 (grub_gpt_partition_map) [GRUB_UTIL]: Set .embed.
23653 * grub-core/partmap/msdos.c (pc_partition_map_embed) [GRUB_UTIL]:
23654 New function.
23655 (grub_msdos_partition_map) [GRUB_UTIL]: Set .embed.
23656 * include/grub/partition.h (grub_embed_type_t) [GRUB_UTIL]: New type.
23657 (grub_partition_map) [GRUB_UTIL]: New field embed.
23658 * util/grub-setup.c (grub_gpt_partition_type_bios_boot): Removed.
23659 (setup): Use ->embed.
23660
23661 2010-09-15 Vladimir Serbinenko <phcoder@gmail.com>
23662
23663 * grub-core/kern/emu/hostdisk.c (grub_util_biosdisk_is_floppy): New
23664 function.
23665 * include/grub/emu/hostdisk.h (grub_util_biosdisk_is_floppy): New proto.
23666 * util/grub-setup.c (setup): Use grub_util_biosdisk_is_floppy.
23667
23668 2010-09-15 Yves Blusseau <blusseau@zetam.org>
23669
23670 Add function to get completions from usage.
23671
23672 * util/bash-completion.d/grub-completion.bash.in: Add function to get
23673 completions from usage. Use LC_ALL=C to get options properly.
23674
23675 2010-09-15 Vladimir Serbinenko <phcoder@gmail.com>
23676
23677 * grub-core/gnulib/basename-lgpl.c: Imported.
23678 * grub-core/gnulib/basename.c: Likewise.
23679 * grub-core/gnulib/dirname-lgpl.c: Likewise.
23680 * grub-core/gnulib/dirname.c: Likewise.
23681 * grub-core/gnulib/dirname.h: Likewise.
23682 * grub-core/gnulib/stripslash.c: Likewise.
23683
23684 2010-09-15 Vladimir Serbinenko <phcoder@gmail.com>
23685
23686 * grub-core/gnulib/error.c: Resynced.
23687 * grub-core/gnulib/getopt.c: Likewise.
23688 * grub-core/gnulib/getopt_int.h: Likewise.
23689 * grub-core/gnulib/regex.h: Likewise.
23690 * grub-core/gnulib/regex_internal.c: Likewise.
23691 * grub-core/gnulib/regex_internal.h: Likewise.
23692
23693 2010-09-15 Szymon Janc <szymon@janc.net.pl>
23694
23695 * grub-core/lib/xzembed/xz_dec_stream.c (dec_main): Fix index and block
23696 CRC calculations and validity checks.
23697 * grub-core/lib/xzembed/xz_dec_stream.c (dec_index): Fix index CRC
23698 calculations.
23699
23700 2010-09-15 Szymon Janc <szymon@janc.net.pl>
23701
23702 * grub-core/lib/xzembed/xz_dec_stream.c (xz_dec_end): Fix memory leak.
23703
23704 2010-09-14 Vladimir Serbinenko <phcoder@gmail.com>
23705
23706 Fix incorrect echo options handling.
23707 Reported by: Yves Blusseau.
23708
23709 * include/grub/command.h (grub_command_flags_t): New flags
23710 GRUB_COMMAND_ACCEPT_DASH and GRUB_COMMAND_OPTIONS_AT_START.
23711 * grub-core/lib/arg.c (grub_arg_parse): Handle new flags.
23712 * grub-core/commands/echo.c (GRUB_MOD_INIT): Use new flags.
23713
23714 2010-09-14 Vladimir Serbinenko <phcoder@gmail.com>
23715
23716 * include/grub/command.h (GRUB_COMMAND_FLAG_CMDLINE): Removed. All
23717 users updated.
23718 (GRUB_COMMAND_FLAG_MENU): Likewise.
23719 (GRUB_COMMAND_FLAG_BOTH): Likewise.
23720 (GRUB_COMMAND_FLAG_TITLE): Removed.
23721 (GRUB_COMMAND_FLAG_NO_ECHO): Likewise.
23722 (GRUB_COMMAND_FLAG_EXTCMD): Moved into enum.
23723 (GRUB_COMMAND_FLAG_DYNCMD): Likewise.
23724 (GRUB_COMMAND_FLAG_BLOCKS): Likewise.
23725 (grub_command_flags_t): New enum. All users updated.
23726
23727 2010-09-14 Seth Goldberg <seth.goldberg@oracle.com>
23728
23729 Fix solaris compilation.
23730
23731 * grub-core/Makefile.core.def (kernel): Include gnulib/error.c on emu.
23732 (grub-emu): Add LIBZFS and LIBNVPAIR to ldadd.
23733 (grub-emu-list): Likewise.
23734
23735 2010-09-14 Vladimir Serbinenko <phcoder@gmail.com>
23736
23737 Remove deprecated root command.
23738
23739 * grub-core/commands/minicmd.c (grub_mini_cmd_root): Removed. All users
23740 updated.
23741
23742 2010-09-14 Vladimir Serbinenko <phcoder@gmail.com>
23743
23744 * util/i386/pc/grub-setup.c: Merge this ...
23745 * util/sparc64/ieee1275/grub-setup.c: ... and this ...
23746 * util/grub-setup.c: ... into this.
23747 * include/grub/sparc64/ieee1275/boot.h (grub_boot_blocklist) [ASM_FILE]:
23748 New struct.
23749
23750 2010-09-14 Vladimir Serbinenko <phcoder@gmail.com>
23751
23752 * grub-core/fs/ext2.c (grub_ext2_open): Use return error value when
23753 possible.
23754
23755 2010-09-14 Vladimir Serbinenko <phcoder@gmail.com>
23756
23757 * grub-core/partmap/sun.c (sun_partition_map_iterate): Don't needlesly
23758 allocate p.
23759
23760 2010-09-14 Vladimir Serbinenko <phcoder@gmail.com>
23761
23762 * util/grub-mkconfig_lib.in (prepare_grub_to_access_device): Add
23763 explicit root argument to set to prevent UUID to be interpreted as
23764 argument to set.
23765
23766 2010-09-14 Vladimir Serbinenko <phcoder@gmail.com>
23767
23768 * grub-core/kern/sparc64/ieee1275/crt0.S: Align stack.
23769
23770 2010-09-14 Vladimir Serbinenko <phcoder@gmail.com>
23771
23772 Don't export grub_gate_a20.
23773
23774 * grub-core/kern/i386/pc/init.c: Remove leftovers.
23775 * grub-core/kern/i386/pc/startup.S (FUNCTION(grub_gate_a20)): Rename
23776 to ...
23777 (grub_gate_a20): ... this. All users updated.
23778 * include/grub/i386/pc/init.h: Removed. All users updated.
23779
23780 2010-09-14 Vladimir Serbinenko <phcoder@gmail.com>
23781
23782 Create euro.pf2 which supports most European languages.
23783
23784 * Makefile.am (grubdata_DATA): Add euro.pf2.
23785 (euro.pf2): New target.
23786 (CLEANFILES): Add euro.pf2.
23787
23788 2010-09-14 Vladimir Serbinenko <phcoder@gmail.com>
23789
23790 * configure.ac: Disable emu-usb by default to prevent inadvertent
23791 device takeover.
23792
23793 2010-09-13 Vladimir Serbinenko <phcoder@gmail.com>
23794
23795 Disable usbserial on grub-emu since our libusb code isn't good enough
23796 yet.
23797
23798 * grub-core/Makefile.core.def (usbserial_common): Disable on emu.
23799 (usbserial_pl2303): Likewise.
23800 (usbserial_ftdi): Likewise.
23801
23802 2010-09-13 Vladimir Serbinenko <phcoder@gmail.com>
23803
23804 * include/grub/disk.h (grub_disk): Remove has_partitions.
23805 All users updated.
23806 * disk/loopback.c (grub_loopback): Remove has_partitions.
23807 All users updated.
23808 (options): Remove partitions. All users updated.
23809 * util/grub-fstest.c (fstest): Don't pass "-p" to loopback.
23810 * util/i386/pc/grub-setup.c (setup): copy partition table only when
23811 actual partition table is found.
23812
23813 2010-09-13 Vladimir Serbinenko <phcoder@gmail.com>
23814
23815 Remove readability checks (too many false negatives).
23816
23817 * util/grub-install.in: Remove readability checks.
23818 * util/grub-mkconfig.in: Likewise.
23819 * util/grub.d/10_hurd.in: Likewise.
23820 * util/grub.d/10_kfreebsd.in: Likewise.
23821 * util/grub.d/10_linux.in: Likewise.
23822 * util/grub-mkconfig_lib.in (is_path_readable_by_grub): Revert to old
23823 way.
23824
23825 2010-09-13 Vladimir Serbinenko <phcoder@gmail.com>
23826
23827 Enable acpi shutdown on all ACPI platforms.
23828
23829 * grub-core/Makefile.core.def (halt): Inlude commands/acpihalt.c
23830 on coreboo, multiboot and EFI.
23831 * grub-core/commands/acpihalt.c (get_sleep_type): Add missing casts.
23832 (grub_acpi_halt): Likewise.
23833 * grub-core/commands/i386/pc/halt.c (grub_halt): Call grub_acpi_halt.
23834 (grub_cmd_halt): Don't call grub_acpi_halt directly.
23835 * grub-core/lib/efi/halt.c (grub_halt): Call grub_acpi_halt.
23836 * grub-core/lib/i386/halt.c (grub_halt)
23837 [GRUB_MACHINE_COREBOOT || GRUB_MACHINE_MULTIBOOT]: Likewise.
23838
23839 2010-09-13 Vladimir Serbinenko <phcoder@gmail.com>
23840
23841 * grub-core/commands/iorw.c (grub_cmd_read): Declare buf in smallest
23842 context.
23843
23844 2010-09-13 Vladimir Serbinenko <phcoder@gmail.com>
23845
23846 * grub-core/video/efi_gop.c: Fix over-80-chars line.
23847 * grub-core/video/efi_uga.c: Likewise.
23848
23849 2010-09-13 Vladimir Serbinenko <phcoder@gmail.com>
23850
23851 Filter devaliases and never open same device twice.
23852
23853 * grub-core/disk/ieee1275/ofdisk.c (last_devpath): New variable.
23854 (last_ihandle): Likewise.
23855 (ofdisk_hash_ent): New member shortest.
23856 (ofdisk_hash_add): Add canonical path too.
23857 (scan): New function.
23858 (grub_ofdisk_iterate): Iterate over hashed entries.
23859 (compute_dev_path): Don't add :0.
23860 (grub_ofdisk_open): Don't really open the disk.
23861 (grub_ofdisk_close): Avoid closing unrelated disk.
23862 (grub_ofdisk_read): Implement reopen logic.
23863 * grub-core/kern/ieee1275/openfw.c (grub_ieee1275_canonicalise_devname):
23864 New function.
23865 * include/grub/ieee1275/ieee1275.h (grub_ieee1275_canonicalise_devname):
23866 New proto.
23867
23868 2010-09-13 Vladimir Serbinenko <phcoder@gmail.com>
23869
23870 Fix sparc64.
23871
23872 * configure.ac (GRUB_KERNEL_MACHINE_LINK_ADDR): Removed.
23873 * grub-core/Makefile.core.def (kernel): Make ldflags just use the
23874 right address. Add sparc64_ieee1275_ldflags.
23875 * grub-core/loader/sparc64/ieee1275/linux.c: Remove leftover include.
23876 * util/grub-mkimagexx.c (locate_sections): Correct grub_host_to_target32
23877 to grub_host_to_target_addr
23878 (load_image): Likewise.
23879
23880 2010-09-13 Vladimir Serbinenko <phcoder@gmail.com>
23881
23882 * grub-core/normal/completion.c (complete_file): Handle device
23883 containing slash.
23884 Fix based on patch by Doug Nazar.
23885
23886 2010-09-13 Vladimir Serbinenko <phcoder@gmail.com>
23887
23888 grub-mknetdir script.
23889
23890 * Makefile.util.def (grub-mknetdir): New module.
23891 * tests/util/grub-shell.in: Support boot=net
23892 * util/grub-mknetdir.in: New file.
23893
23894 2010-09-13 Vladimir Serbinenko <phcoder@gmail.com>
23895
23896 videoinfo on non-vbe.
23897
23898 * grub-core/Makefile.core.def (vbeinfo): Removed.
23899 (vbetest): Removed.
23900 (videoinfo): New module.
23901 * grub-core/commands/i386/pc/vbeinfo.c: Removed.
23902 * grub-core/commands/i386/pc/vbetest.c: Removed.
23903 * grub-core/commands/videoinfo.c: New file.
23904 * grub-core/commands/videotest.c (grub_cmd_videotest): Support mode
23905 specification.
23906 (grub_cmd_videotest) [GRUB_MACHINE_PCBIOS]: Load vbe.mod when invoked
23907 as vbetest.
23908 (GRUB_MOD_INIT) [GRUB_MACHINE_PCBIOS]: New command vbetest.
23909 (GRUB_MOD_FINI) [GRUB_MACHINE_PCBIOS]: Unregister vbetest.
23910 * grub-core/video/efi_gop.c (grub_video_gop_fill_mode_info): Fill
23911 mode_number. New parameter mode. All users updated.
23912 (grub_video_gop_iterate): New function.
23913 (grub_video_efi_gop): New member iterate.
23914 * grub-core/video/i386/pc/vbe.c (framebuffer): Removed leftover fields.
23915 (grub_vbe_set_video_mode): Remove setting useless fields.
23916 (vbe2videoinfo): New function.
23917 (grub_video_vbe_iterate): Likewise.
23918 (grub_video_vbe_setup): Use vbe2videoinfo.
23919 (grub_video_vbe_print_adapter_specific_info): New function.
23920 (grub_video_vbe_adapter): New fields iterate and
23921 print_adapter_specific_info.
23922 * include/grub/video.h (GRUB_VIDEO_MODE_*): Transform into enum.
23923 All users updated.
23924 (grub_video_mode_info): New field mode_number.
23925 (grub_video_adapter): New fields iterate and
23926 print_adapter_specific_info.
23927
23928 2010-09-13 Tristan Gingold <gingold@free.fr>
23929 2010-09-13 Robert Millan <rmh.grub@aybabtu.com>
23930 2010-09-13 Vladimir Serbinenko <phcoder@gmail.com>
23931
23932 * grub-core/commands/efi/lsefisystab.c: New file.
23933 * grub-core/commands/efi/lssal.c: Likewise.
23934 * grub-core/Makefile.core.def (lsacpi): New module.
23935 (lsefisystab): Likewise.
23936 * include/grub/efi/api.h (GRUB_EFI_SAL_TABLE_GUID): New definition.
23937 (GRUB_EFI_HCDP_TABLE_GUID): Likewise.
23938 (grub_efi_sal_system_table): New struct.
23939 (grub_efi_sal_system_table_entrypoint_descriptor): Likewise.
23940 (grub_efi_sal_system_table_memory_descriptor): Likewise.
23941 (grub_efi_sal_system_table_platform_features): Likewise.
23942 (grub_efi_sal_system_table_translation_register_descriptor): Likewise.
23943 (grub_efi_sal_system_table_purge_translation_coherence): Likewise.
23944 (grub_efi_sal_system_table_ap_wakeup): Likewise.
23945 * include/grub/types.h (PRIuGRUB_UINT64_T): New definition.
23946
23947 2010-09-13 Vladimir Serbinenko <phcoder@gmail.com>
23948
23949 Support explicit user claim that a device is BIOS-visible.
23950
23951 * grub-core/kern/emu/getroot.c (grub_util_get_dev_abstraction):
23952 Return GRUB_DEV_ABSTRACTION_NONE if device is in device.map.
23953 * grub-core/kern/emu/hostdisk.c
23954 (convert_system_partition_to_system_disk): Support mdX.
23955 (find_system_device): New parameter add. All users updated.
23956 (grub_util_biosdisk_is_present): New function.
23957 * include/grub/emu/hostdisk.h (grub_util_biosdisk_is_present): New
23958 proto.
23959
23960 2010-09-13 Vladimir Serbinenko <phcoder@gmail.com>
23961
23962 Search hints support.
23963
23964 * commands/search.c (FUNC_NAME): New arguments hints and nhints.
23965 All users updated.
23966
23967 2010-09-13 Yves Blusseau <blusseau@zetam.org>
23968
23969 Bash completion script for util commands
23970
23971 * Makefile.am: Add util/bash-completion.d directory
23972 * configure.ac: Likewise.
23973 * util/bash-completion.d/Makefile.am: New file.
23974 * util/bash-completion.d/grub-completion.bash.in: Likewise.
23975
23976 2010-09-12 Vladimir Serbinenko <phcoder@gmail.com>
23977
23978 * grub-core/normal/term.c (put_glyphs_terminal): Correct sign.
23979 (print_backlog): set backlog_ucs4 and backlog_glyphs.
23980 Reported by: Yves Blusseau.
23981
23982 2010-09-12 Vladimir Serbinenko <phcoder@gmail.com>
23983
23984 * grub-core/normal/misc.c (grub_normal_print_device_info): Show
23985 partition size and offset.
23986
23987 2010-09-12 Vladimir Serbinenko <phcoder@gmail.com>
23988
23989 * grub-core/commands/wildcard.c (make_regex): Escape brackets.
23990
23991 2010-09-12 Vladimir Serbinenko <phcoder@gmail.com>
23992
23993 * grub-core/commands/ls.c (grub_cmd_ls): Accept multiple files.
23994
23995 2010-09-12 Vladimir Serbinenko <phcoder@gmail.com>
23996
23997 * grub-core/kern/misc.c (grub_vprintf): Use va_copy when necessary.
23998 (grub_xvasprintf): Likewise.
23999
24000 2010-09-12 Vladimir Serbinenko <phcoder@gmail.com>
24001
24002 * grub-core/kern/emu/main.c (main): Call hostfs_init only after init_all.
24003
24004 2010-09-12 Vladimir Serbinenko <phcoder@gmail.com>
24005
24006 * grub-core/commands/menuentry.c (append_menu_entry): Don't rely on
24007 args ending with NULL.
24008
24009 2010-09-12 Vladimir Serbinenko <phcoder@gmail.com>
24010
24011 * grub-core/lib/xzembed/xz_dec_stream.c (xz_dec_reset): Preserve context
24012 pointer.
24013
24014 2010-09-11 Szymon Janc <szymon@janc.net.pl>
24015
24016 * grub-core/commands/lsacpi.c (grub_cmd_lsacpi): Fix prototype.
24017
24018 2010-09-11 Vladimir Serbinenko <phcoder@gmail.com>
24019
24020 Shutdown using ACPI.
24021
24022 * grub-core/Makefile.core.def (halt): Add commands/acpihalt.c on i386-pc.
24023 * grub-core/commands/acpihalt.c: New file.
24024 * grub-core/commands/i386/pc/halt.c (grub_cmd_halt): Call grub_acpi_halt.
24025 * include/grub/acpi.h (grub_acpi_fadt): New member pm1a.
24026 (grub_acpi_halt): New proto.
24027 (GRUB_ACPI_SLP_EN): New const.
24028 (GRUB_ACPI_SLP_TYP_OFFSET): Likewise.
24029 (GRUB_ACPI_OPCODE_*): New enum.
24030 (GRUB_ACPI_EXTOPCODE_*): Likewise.
24031
24032 2010-09-11 Tristan Gingold <gingold@free.fr>
24033 2010-09-11 Robert Millan <rmh.grub@aybabtu.com>
24034 2010-09-11 Vladimir Serbinenko <phcoder@gmail.com>
24035
24036 * commands/lsacpi.c: New file.
24037 * grub-core/Makefile.core.def (lsacpi): New module.
24038 * include/grub/acpi.h (GRUB_ACPI_FADT_SIGNATURE): New definition.
24039 (GRUB_ACPI_MADT_SIGNATURE): Likewise.
24040 (grub_acpi_madt_entry_header): New struct.
24041 (grub_acpi_madt): Likewise.
24042 (grub_acpi_madt_entry_interrupt_override): Likewise.
24043 (grub_acpi_madt_entry_sapic): Likewise.
24044 (grub_acpi_madt_entry_lsapic): Likewise.
24045 (grub_acpi_madt_entry_platform_int_source): Likewise.
24046 * include/grub/types.h (PRIxGRUB_UINT32_T): New definition.
24047 (PRIuGRUB_UINT32_T): Likewise.
24048 (PRIxGRUB_UINT64_T): Likewise.
24049
24050 2010-09-11 Vladimir Serbinenko <phcoder@gmail.com>
24051
24052 Implement loading palette on ieee1275_fb.
24053
24054 * grub-core/video/ieee1275.c (stdout_ihandle): New variable.
24055 (have_setcolors): Likewise.
24056 (grub_video_ieee1275_init): Fill stdout_ihandle and have_setcolors.
24057 (grub_video_ieee1275_setup): Use grub_video_ieee1275_set_palette.
24058 (grub_video_ieee1275_set_palette): Implement.
24059
24060 2010-09-11 Vladimir Serbinenko <phcoder@gmail.com>
24061 2010-09-11 Colin Watson <cjwatson@ubuntu.com>
24062
24063 * util/grub-install.in (grub_partition): New variable.
24064 Set prefix_drive on EFI and PC to (,$grub_partition) as last resort.
24065 * util/i386/pc/grub-setup.c (setup): Don't touch prefix.
24066 Fixes a bug reported by Yves Blusseau.
24067
24068 2010-09-11 Vladimir Serbinenko <phcoder@gmail.com>
24069
24070 Fix emu on mipsel.
24071
24072 * conf/Makefile.common (CFLAGS_PLATFORM): Add -mflush-func
24073 =grub_cpu_flush_cache on all mips and not only yeeloong.
24074 * configure.ac (COND_mips): New conditional.
24075 * grub-core/Makefile.am (KERNEL_HEADER_FILES): Add libgcc on all
24076 platforms.
24077 * grub-core/kern/emu/cache.S (__mips__): Use _flush_cache.
24078 * grub-core/kern/emu/full.c (grub_arch_dl_init_linker)
24079 [GRUB_LINKER_HAVE_INIT]: New function.
24080 (grub_emu_post_init): Likewise.
24081 * grub-core/kern/emu/lite.c (grub_emu_post_init): Likewise.
24082 * grub-core/kern/emu/main.c: Use grub_emu_post_init.
24083 * include/grub/cache.h (_mips): Include mips/cache.h.
24084 * include/grub/disk.h [GRUB_UTIL || GRUB_MACHINE_EMU]: Add missing
24085 LVM and RAID prototypes.
24086 * include/grub/emu/misc.h (grub_emu_post_init): New proto.
24087 * include/grub/mips/time.h (grub_cpu_idle) [GRUB_MACHINE_EMU]: New
24088 function.
24089
24090 2010-09-10 Colin Watson <cjwatson@ubuntu.com>
24091
24092 * util/grub-install.in: Don't try to verify core.img until after
24093 running grub-mkimage to create it.
24094
24095 2010-09-10 Robert Millan <rmh@gnu.org>
24096
24097 * util/grub.d/10_hurd.in: Add misc readability checks.
24098 * util/grub.d/10_kfreebsd.in: Likewise.
24099 * util/grub.d/10_linux.in: Likewise.
24100
24101 2010-09-10 Colin Watson <cjwatson@ubuntu.com>
24102
24103 * util/grub-install.in: ${imgext} won't be defined here until the
24104 install branch is merged. For the meantime, only verify core.img on
24105 i386-pc and sparc64-ieee1275 platforms.
24106
24107 2010-09-10 Robert Millan <rmh@gnu.org>
24108
24109 Solaris support in grub_find_zpool_from_dir(). Thanks
24110 Seth Goldberg for referring to getextmntent() facility.
24111
24112 * configure.ac: Check for getextmntent(), `sys/mnttab.h' and
24113 `sys/mkdev.h'.
24114 * grub-core/kern/emu/misc.c [HAVE_SYS_MNTTAB_H]: Include
24115 `<sys/mnttab.h>'.
24116 [HAVE_SYS_MKDEV_H]: Include `<sys/mkdev.h>'.
24117 [HAVE_GETEXTMNTENT] (grub_find_zpool_from_dir): Add getextmntent()
24118 method for finding zpool name.
24119
24120 2010-09-10 Colin Watson <cjwatson@ubuntu.com>
24121
24122 grub-fstest needs the host and hostfs modules while other utilities
24123 actively require those modules to be absent, so grub-fstest needs
24124 its own initialisation and finalisation code.
24125
24126 * Makefile.am (grub_fstest.pp): New target.
24127 (grub_fstest_init.lst): Likewise.
24128 (grub_fstest_init.c): Likewise.
24129 * Makefile.util.def (grub-fstest): Add grub_fstest_init.c.
24130
24131 2010-09-10 Robert Millan <rmh@gnu.org>
24132
24133 * configure.ac: Check for `struct statfs.f_fstypename' and
24134 `struct statfs.f_mntfromname'.
24135
24136 * grub-core/kern/emu/misc.c (grub_find_zpool_from_dir): Conditionalize
24137 kFreeBSD-specific code.
24138
24139 2010-09-10 Robert Millan <rmh@gnu.org>
24140
24141 * util/grub.d/10_kfreebsd.in: Fix ${kfreebsd_device} initialization
24142 on ZFS. Now non-main filesystems are supported as / too.
24143
24144 2010-09-09 Colin Watson <cjwatson@ubuntu.com>
24145
24146 * Makefile.util.def (libgrub.a): Move grub-core/kern/emu/hostfs.c
24147 and grub-core/disk/host.c to ...
24148 (grub-fstest): ... here. Having the host disk implementation
24149 present confuses grub-probe and other utility programs.
24150
24151 * util/grub-mkconfig.in: Only verify readability of grub.cfg.new
24152 when writing to a file, not when writing to stdout.
24153
24154 2010-09-09 BVK Chaitanya <bvk.groups@gmail.com>
24155
24156 * tests/partmap_test.in: New test for partitions.
24157 * Makefile.util.def: Rules for new test.
24158
24159 2010-09-09 Robert Millan <rmh@gnu.org>
24160
24161 * util/grub-probe.c (probe): Fix a pair of unhandled error
24162 conditions.
24163
24164 2010-09-09 Robert Millan <rmh@gnu.org>
24165
24166 Basic Btrfs support (detection and UUID).
24167
24168 * grub-core/fs/btrfs.c: New file.
24169 * Makefile.util.def (library): Register btrfs.c.
24170 * grub-core/Makefile.core.def: Likewise.
24171
24172 2010-09-08 Robert Millan <rmh@gnu.org>
24173
24174 * util/grub-mkconfig_lib.in (is_path_readable_by_grub): Improve
24175 with (optional) parameters to specify device and relative path.
24176 * util/grub-install.in: Use is_path_readable_by_grub() to
24177 verify readability of a few critical files.
24178 * util/grub-mkconfig.in: Use is_path_readable_by_grub() to
24179 verify readability of grub.cfg.new.
24180
24181 2010-09-08 Vladimir Serbinenko <phcoder@gmail.com>
24182
24183 Split minix.mod into minix.mod and minix2.mod.
24184
24185 * Makefile.util.def (libgrub.a): Add grub-core/fs/minix2.c.
24186 * grub-core/Makefile.core.def (minix2): New module.
24187 * grub-core/fs/minix.c: Use definitions instead of runtime version
24188 checking.
24189 * grub-core/fs/minix2.c: New file.
24190
24191 2010-09-08 Yves Blusseau <blusseau@zetam.org>
24192
24193 Add new --boot-directory option to replace --root-directory
24194
24195 * util/grub-install.in: Add new --boot-directory option
24196 * util/grub-reboot.in: Likewise.
24197 * util/grub-set-default.in: Likewise.
24198
24199 2010-09-08 Yves Blusseau <blusseau@zetam.org>
24200
24201 * util/grub-mkconfig.in: Use new variable.
24202
24203 2010-09-08 Yves Blusseau <blusseau@zetam.org>
24204
24205 * configure.ac: Define some useful variables.
24206
24207 2010-09-08 Vladimir Serbinenko <phcoder@gmail.com>
24208
24209 * grub-core/kern/ieee1275/cmain.c (grub_ieee1275_find_options): Set
24210 GRUB_IEEE1275_FLAG_HAS_CURSORONOFF when appropriate.
24211 * grub-core/term/ieee1275/ofconsole.c (grub_ofconsole_setcursor):
24212 Use terminfo and don't use cursor-on/cursor-off unless it's known
24213 to work.
24214 * include/grub/ieee1275/ieee1275.h (grub_ieee1275_flag): New element
24215 GRUB_IEEE1275_FLAG_HAS_CURSORONOFF.
24216
24217 2010-09-08 Colin Watson <cjwatson@ubuntu.com>
24218
24219 * grub-core/kern/efi/init.c (grub_efi_set_prefix): If the prefix
24220 starts with "(,", fill the drive containing the loaded image in
24221 between those two characters, but expect that a full partition
24222 specification including partition map names will follow.
24223
24224 2010-09-08 Robert Millan <rmh@gnu.org>
24225
24226 * configure.ac: Remove `--enable-grub-fstest' option.
24227 * Makefile.util.def (grub-fstest): Remove COND_GRUB_FSTEST condition.
24228
24229 * util/grub-mkconfig_lib.in (is_path_readable_by_grub): Use
24230 `grub-fstest' instead of `grub-probe' for readability verification.
24231 * util/grub-probe.c (probe): Remove readability verification kludge.
24232
24233 2010-09-08 Robert Millan <rmh@gnu.org>
24234
24235 * util/grub-mkconfig.in: Pass `--device ${GRUB_DEVICE}' when
24236 initializing `GRUB_FS'.
24237
24238 2010-09-08 BVK Chaitanya <bvk.groups@gmail.com>
24239
24240 Not command (!) support to GRUB script.
24241
24242 * tests/grub_script_not.in: New test.
24243 * Makefile.util.def: Rules for new test.
24244
24245 * grub-core/script/execute.c (grub_script_execute_cmdline): Handle
24246 ! command as a special case.
24247 * grub-core/script/yylex.l (GRUB_PARSER_TOKEN_NOT): Removed.
24248
24249 2010-09-07 BVK Chaitanya <bvk.groups@gmail.com>
24250
24251 * grub-core/commands/wildcard.c (wildcard_expand): Fix wrong
24252 grub_free.
24253
24254 2010-09-07 BVK Chaitanya <bvk.groups@gmail.com>
24255
24256 * docs/grub.texi (Shell-like scripting): Fix @dots to @dots{}.
24257
24258 2010-09-07 BVK Chaitanya <bvk.groups@gmail.com>
24259
24260 * docs/grub.texi (Shell-like scripting): Documentation for break,
24261 continue, shift and return commands.
24262
24263 2010-09-06 Vladimir Serbinenko <phcoder@gmail.com>
24264
24265 Rename CD-ROM to cd on BIOS.
24266
24267 * grub-core/disk/i386/pc/biosdisk.c (grub_biosdisk_get_drive): Recognise
24268 "cd".
24269 (grub_biosdisk_call_hook): Call with "cd" instead of arbitrary hdX.
24270
24271 2010-09-05 Vladimir Serbinenko <phcoder@gmail.com>
24272
24273 * grub-core/kern/emu/main.c (main): Reinit LVM and RAID.
24274 * util/grub-probe.c (main): Likewise.
24275 * util/i386/pc/grub-setup.c (main): Likewise.
24276 * util/sparc64/ieee1275/grub-setup.c (main): Likewise.
24277 Reported and debugged by: alexxy
24278
24279 2010-09-05 Vladimir Serbinenko <phcoder@gmail.com>
24280
24281 * grub-core/disk/lvm.c (grub_lvm_scan_device) [GRUB_UTIL]: Output more
24282 diagnostic info.
24283
24284 2010-09-05 Jo Shields <directhex@apebox.org>
24285
24286 * util/grub.d/30_os-prober.in: Add missing classes.
24287
24288 2010-09-05 Vladimir Serbinenko <phcoder@gmail.com>
24289
24290 * docs/grub.texi (Theme file format): Document new position format.
24291
24292 2010-09-05 Vladimir Serbinenko <phcoder@gmail.com>
24293
24294 * docs/grub.texi (Theme file format): Replace Box_slice_names.png with
24295 a table. Use @code instead of @verbatim.
24296
24297 2010-09-05 Colin D Bennett <colin@gibibit.com>
24298
24299 Gfxmenu documentation.
24300
24301 * docs/grub.texi (Theme file format): New chapter.
24302
24303 2010-09-05 Szymon Janc <szymon@janc.net.pl>
24304
24305 * grub-core/Makefile.core.def (xzio): New module.
24306 * grub-core/io/xzio.c: New file.
24307 * grub-core/lib/xzembed/xz.h: New file (from xembed).
24308 * grub-core/lib/xzembed/xz_config.h: Likewise.
24309 * grub-core/lib/xzembed/xz_dec_bcj.c: Likewise.
24310 * grub-core/lib/xzembed/xz_dec_lzma2.c: Likewise.
24311 * grub-core/lib/xzembed/xz_dec_stream.c: Likewise.
24312 * grub-core/lib/xzembed/xz_lzma2.h: Likewise.
24313 * grub-core/lib/xzembed/xz_private.h: Likewise.
24314 * grub-core/lib/xzembed/xz_stream.h: Likewise.
24315 * include/grub/file.h (grub_file_filter_id): New compression filter
24316 GRUB_FILE_FILTER_XZIO.
24317
24318 2010-09-05 Vladimir Serbinenko <phcoder@gmail.com>
24319
24320 * include/grub/file.h (GRUB_FILE_SIZE_UNKNOWN): New definition.
24321 * grub-core/disk/loopback.c (grub_loopback_open): Handle unknown file
24322 size.
24323
24324 2010-09-05 Vladimir Serbinenko <phcoder@gmail.com>
24325
24326 * include/grub/err.h (grub_err_t): Replace GRUB_ERR_BAD_GZIP_DATA with
24327 GRUB_ERR_BAD_COMPRESSED_DATA. All users updated.
24328
24329 2010-09-05 Vladimir Serbinenko <phcoder@gmail.com>
24330
24331 Uncompressed checksum support.
24332
24333 * grub-core/commands/hashsum.c (options): Add option --uncompress.
24334 (check_list): New parameter uncompress.
24335 (grub_cmd_hashsum): Handle --uncompress.
24336
24337 2010-09-05 Vladimir Serbinenko <phcoder@gmail.com>
24338
24339 Reintroduce testload.
24340
24341 * grub-core/commands/minicmd.c (grub_rescue_cmd_testload) [0]: Moved
24342 from here ...
24343 * grub-core/commands/testload.c (grub_cmd_testload): ... here.
24344 (GRUB_MOD_INIT): New function.
24345 (GRUB_MOD_FINI): Likewise.
24346 * grub-core/Makefile.core.def (testload): New module.
24347
24348 2010-09-05 Szymon Janc <szymon@janc.net.pl>
24349
24350 * grub-core/lib/posix_wrap/sys/types.h (bool): Transform into an enum.
24351 (uint8_t): New type.
24352 (uint16_t): Likewise.
24353 (uint32_t): Likewise.
24354 (uint64_t): Likewise.
24355
24356 2010-09-05 Szymon Janc <szymon@janc.net.pl>
24357
24358 * include/grub/crypto.h (GRUB_MD_CRC32): New definition.
24359
24360 2010-09-05 Vladimir Serbinenko <phcoder@gmail.com>
24361
24362 * grub-core/io/gzio.c (grub_gzio_open): Removed "transparent" parameter.
24363 Made static.
24364 (grub_gzfile_open): Removed. All users updated.
24365 (GRUB_MOD_INIT): New function.
24366 (GRUB_MOD_FINI): Likewise.
24367 * grub-core/kern/file.c (grub_file_filters_all): New variable.
24368 (grub_file_filters_enabled): Likewise.
24369 (grub_file_open): Handle filters.
24370 * grub-core/loader/i386/bsd.c (GRUB_MOD_INIT): Load gzio.
24371 * grub-core/normal/main.c (GRUB_MOD_INIT): Likewise.
24372 * include/grub/file.h (grub_file_filter_id_t): New type.
24373 (grub_file_filter_t): Likewise.
24374 (grub_file_filters_all): New extern variable.
24375 (grub_file_filters_enabled): Likewise.
24376 (grub_file_filter_register): New inline function.
24377 (grub_file_filter_unregister): Likewise.
24378 (grub_file_filter_disable): Likewise.
24379 (grub_file_filter_disable_compression): Likewise.
24380 * include/grub/gzio.h: Removed.
24381
24382 2010-09-04 BVK Chaitanya <bvk.groups@gmail.com>
24383
24384 Filename expansion support for wildcards in GRUB script.
24385
24386 * tests/grub_script_expansion.in: New test.
24387 * Makefile.util.def: Rule for new test.
24388
24389 * grub-core/commands/wildcard.c: New file, implements filename
24390 expansion support for GRUB script.
24391 * grub-core/Makefile.core.def: Rule update for regexp.mod.
24392 * grub-core/script/argv.c: Cosmetic changes.
24393 * grub-core/script/execute.c (grub_script_arglist_to_argv):
24394 Refactored to perform wildcard expansion on arguments.
24395 * include/grub/script_sh.h (grub_script_wildcard_translator): New
24396 struct.
24397
24398 * tests/util/grub-shell.in: Fix quoting for read input.
24399
24400 2010-09-04 BVK Chaitanya <bvk.groups@gmail.com>
24401
24402 Support for updating environment variables with matched substrings
24403 of regexp.
24404
24405 * tests/grub_cmd_regexp.in: New test.
24406 * Makefile.util.def: Rule for new test.
24407
24408 * grub-core/commands/regexp.c: New option -s to update environment
24409 variables with regexp matches.
24410
24411 2010-09-04 Szymon Janc <szymon@janc.net.pl>
24412
24413 * include/grub/file.h (grub_file): New member not_easly_seekable.
24414 (grub_file_seekable): New inline function.
24415 * grub-core/io/gzio.c (test_header): Don't test end magic if file isn't
24416 easily seekable.
24417 (grub_gzio_open): Set not_easly_seekable.
24418 * grub-core/fs/i386/pc/pxe.c (grub_pxefs_open): Set not_easily_seekable.
24419 * grub-core/io/bufio.c (grub_bufio_open): Propagate not_easily_seekable.
24420
24421 2010-09-04 BVK Chaitanya <bvk.groups@gmail.com>
24422
24423 Support for options to appear multiple times on cmdline.
24424
24425 * include/grub/lib/arg.h (grub_arg_list_alloc): New prototype.
24426 * grub-core/commands/extcmd.c: Support for repeatable option.
24427 * grub-core/lib/arg.c (grub_arg_list_alloc): New function for
24428 repeatable option support.
24429
24430 Refactor menuentry into a regular command.
24431
24432 * grub-core/commands/menuentry.c: New file, menuentry command
24433 implementation.
24434 * grub-core/Makefile.core.def: Rule update for normal.mod.
24435 * grub-core/normal/main.c: Moved menuentry creation to
24436 grub-core/commands/menuentry.c.
24437 * grub-core/normal/menu.c (grub_menu_execute_entry): Removed.
24438 (grub_menu_execute_entry_real): Removed.
24439 * grub-core/script/execute.c (grub_script_execute_sourcecode): New
24440 function.
24441 (grub_script_execute_menuentry): Removed.
24442 * grub-core/script/parser.y (menuentry): Removed.
24443 * grub-core/script/script.c (grub_script_create_cmdmenu): Removed.
24444 * grub-core/script/yylex.l (menuentry): Removed.
24445 * include/grub/menu.h (grub_menu_init): New prototype.
24446 (grub_menu_fini): New prototype.
24447 * include/grub/normal.h (grub_normal_add_menu_entry): Removed.
24448 * include/grub/script_sh.h (grub_script_cmd_menuentry): Removed.
24449 (grub_script_execute_sourcecode): New prototype.
24450
24451 2010-09-04 BVK Chaitanya <bvk.groups@gmail.com>
24452
24453 "return" command for GRUB script functions.
24454
24455 * tests/grub_script_return.in: New test.
24456 * Makefile.util.def: Rules for new test.
24457
24458 * grub-core/script/execute.c (grub_script_return): New function.
24459 * grub-core/script/main.c: Register/unregister return commaond.
24460 * include/grub/script_sh.h (grub_script_return): New prototype.
24461
24462 2010-09-04 BVK Chaitanya <bvk.groups@gmail.com>
24463
24464 "setparams" command to update positional parameters.
24465
24466 * tests/grub_script_setparams.in: New test.
24467 * Makefile.util.def: Rules for new test.
24468
24469 * grub-core/script/argv.c (grub_script_argv_make): New function.
24470 * grub-core/script/execute.c (replace_scope): New function.
24471 (grub_script_setparams): New function.
24472 * grub-core/script/lexer.c: Remove unused variables.
24473 * grub-core/script/main.c: Register/unregister setparams command.
24474 * include/grub/script_sh.h (grub_script_argv_make): New prototype.
24475 (grub_script_setparams): New prototype.
24476
24477 2010-09-04 BVK Chaitanya <bvk.groups@gmail.com>
24478
24479 * grub-core/normal/completion.c (grub_normal_do_completion): Fix
24480 grub_free order.
24481
24482 2010-09-04 BVK Chaitanya <bvk.groups@gmail.com>
24483
24484 Support for passing block of commands as an argument to extcmds.
24485
24486 * Makefile.util.def: Rules for new test.
24487 * tests/grub_script_blockarg.in: New test.
24488 * grub-core/tests/test_blockarg.c: New file, block argument
24489 command used in the test.
24490
24491 * include/grub/extcmd.h (grub_extcmd_context): New struct.
24492 (grub_register_extcmd_prio): New function prototype.
24493 (grub_extcmd_dispatcher): New function prototype.
24494 * include/grub/command.h (GRUB_COMMAND_FLAG_BLOCKS): New command
24495 type.
24496 * include/grub/script_sh.h (struct grub_script): New members
24497 `children', `next_siblings' and `refcnt' for block arguments and
24498 reference counting.
24499 (GRUB_SCRIPT_ARG_TYPE_BLOCK): New argument type.
24500 (grub_script_arg): New member `script' for block argument.
24501 (grub_script_argv): New member `script' for block argument.
24502 (grub_parser_param): New member `scripts' for block argument.
24503 (grub_script_mem_free): New extern function prototype.
24504 (grub_script_ref): New function prototype.
24505 (grub_script_unref): New function prototype.
24506
24507 * grub-core/normal/dyncmd.c (grub_dyncmd_dispatcher): Moved to
24508 extcmd form to support block arguments.
24509 * grub-core/script/argv.c: Block arguments support.
24510 * grub-core/script/execute.c: Likewise.
24511 * grub-core/script/lexer.c: Likewise.
24512 * grub-core/script/main.c: Likewise.
24513 * grub-core/script/script.c: Likewise.
24514 * grub-core/script/parser.y: Likewise. New `block' and `block0'
24515 non-terminals.
24516
24517 * grub-core/commands/acpi.c: Update extcmd implementations with
24518 grub_extcmd_context_t.
24519 * grub-core/commands/cat.c: Likewise.
24520 * grub-core/commands/echo.c: Likewise.
24521 * grub-core/commands/extcmd.c: Likewise.
24522 * grub-core/commands/hashsum.c: Likewise.
24523 * grub-core/commands/hdparm.c: Likewise.
24524 * grub-core/commands/help.c: Likewise.
24525 * grub-core/commands/hexdump.c: Likewise.
24526 * grub-core/commands/i386/cpuid.c: Likewise.
24527 * grub-core/commands/i386/pc/drivemap.c: Likewise.
24528 * grub-core/commands/i386/pc/halt.c: Likewise.
24529 * grub-core/commands/i386/pc/sendkey.c: Likewise.
24530 * grub-core/commands/iorw.c: Likewise.
24531 * grub-core/commands/keystatus.c: Likewise.
24532 * grub-core/commands/loadenv.c: Likewise.
24533 * grub-core/commands/ls.c: Likewise.
24534 * grub-core/commands/lspci.c: Likewise.
24535 * grub-core/commands/memrw.c: Likewise.
24536 * grub-core/commands/probe.c: Likewise.
24537 * grub-core/commands/search_wrap.c: Likewise.
24538 * grub-core/commands/setpci.c: Likewise.
24539 * grub-core/commands/sleep.c: Likewise.
24540 * grub-core/disk/loopback.c: Likewise.
24541 * grub-core/hello/hello.c: Likewise.
24542 * grub-core/loader/i386/bsd.c: Likewise.
24543 * grub-core/loader/xnu.c: Likewise.
24544 * grub-core/term/gfxterm.c: Likewise.
24545 * grub-core/term/serial.c: Likewise.
24546 * grub-core/tests/lib/functional_test.c: Likewise.
24547
24548 2010-09-04 BVK Chaitanya <bvk.groups@gmail.com>
24549
24550 Multi-line quoted strings support.
24551
24552 * grub-core/script/lexer.c (append_newline): Removed.
24553 (grub_script_lexer_yywrap): Refactored.
24554 (grub_script_lexer_init): Refactored.
24555 * grub-core/script/yylex.l (yywrap): New function.
24556 (grub_lexer_resplit): New function.
24557 (grub_lexer_unput): New function.
24558 * include/grub/script_sh.h (grub_lexer_param): New members, unput
24559 and resplit.
24560 * tests/grub_script_echo1.in: Added few more testcases.
24561
24562 2010-09-04 Vladimir Serbinenko <phcoder@gmail.com>
24563
24564 * grub-core/kern/misc.c: Don't add abort alias in utils.
24565 Reported by: echoline.
24566
24567 2010-09-03 BVK Chaitanya <bvk.groups@gmail.com>
24568
24569 Add missing files into "make dist" tarball for other platforms.
24570
24571 * gentpl.py (script): Use dist_noinst_DATA instead of EXTRA_DIST.
24572 * conf/Makefile.common (dist_noinst_DATA): New variable.
24573 * conf/Makefile.extra-dist: Added missing make dist files.
24574 * grub-core/Makefile.core.def: Likewise.
24575
24576 2010-09-03 Vladimir Serbinenko <phcoder@gmail.com>
24577
24578 Compress grub_prefix.
24579
24580 * grub-core/boot/i386/pc/lnxboot.S: Use
24581 GRUB_KERNEL_I386_PC_MULTIBOOT_SIGNATURE.
24582 * grub-core/kern/i386/pc/startup.S: Move grub_prefix to compressed part.
24583 * include/grub/offsets.h: Rename GRUB_MACHINE_DATA_END to
24584 GRUB_MACHINE_PREFIX_END. All users updated.
24585 (GRUB_KERNEL_I386_PC_PREFIX): Set to GRUB_KERNEL_I386_PC_RAW_SIZE.
24586 (GRUB_KERNEL_I386_PC_PREFIX_END): Set to GRUB_KERNEL_I386_PC_PREFIX
24587 + 0x40.
24588 (GRUB_KERNEL_I386_PC_RAW_SIZE): Decrease.
24589 * util/grub-mkimage.c (image_target_desc): Change data_end to
24590 prefix_end. All users updated.
24591
24592 2010-09-03 Vladimir Serbinenko <phcoder@gmail.com>
24593
24594 * grub-core/loader/i386/bsd.c (grub_freebsd_boot): Set %ebp to sane
24595 value.
24596 (grub_openbsd_boot): Likewise.
24597 (grub_netbsd_boot): Likewise.
24598 * grub-core/loader/i386/xnu.c (grub_xnu_boot_resume): Likewise.
24599 (grub_xnu_boot): Likewise.
24600
24601 2010-09-02 Vladimir Serbinenko <phcoder@gmail.com>
24602
24603 * configure.ac: Clean LIBS variable after tests.
24604
24605 2010-09-02 Colin Watson <cjwatson@ubuntu.com>
24606
24607 * INSTALL: Document that libdevmapper needs to be 1.02.34 or later.
24608
24609 2010-09-02 Vladimir Serbinenko <phcoder@gmail.com>
24610
24611 * configure.ac: Check for dm_log_with_errno_init in libdevmapper and
24612 echo if libdevmapper will be used.
24613
24614 2010-09-02 Ian Turner <Ian.Turner@deshaw.com>
24615
24616 * grub-core/fs/i386/pc/pxe.c (grub_pxefs_read): Keep the blocksize
24617 constant for the same file.
24618
24619 2010-09-02 Vladimir Serbinenko <phcoder@gmail.com>
24620
24621 * grub-core/kern/i386/multiboot_mmap.c: Remove leftover include.
24622
24623 2010-09-02 Colin Watson <cjwatson@ubuntu.com>
24624
24625 * .bzrignore: Add *.pp, **/.dirstamp, grub-core/*.module, and
24626 grub-core/*.pp.
24627
24628 2010-09-02 Colin Watson <cjwatson@ubuntu.com>
24629
24630 Zero %ebp and %edi when entering Linux's 32-bit entry point, as
24631 required by the boot protocol.
24632
24633 * include/grub/i386/relocator.h (struct grub_relocator32_state): Add
24634 ebp and edi members.
24635 * grub-core/lib/i386/relocator.c (grub_relocator_boot): Handle
24636 state.ebp and state.edi.
24637 * grub-core/lib/i386/relocator32.S (grub_relocator32_start): Set
24638 %ebp and %edi according to grub_relocator32_ebp and
24639 grub_relocator32_edi respectively.
24640 * grub-core/loader/i386/linux.c (grub_linux_boot): Zero state.ebp
24641 and state.edi.
24642
24643 2010-09-02 Vladimir Serbinenko <phcoder@gmail.com>
24644
24645 Add i386-pc-pxe image target.
24646
24647 * util/grub-mkimage.c (image_target_desc): New enum value
24648 IMAGE_I386_PC_PXE.
24649 (image_targets): New target i386-pc-pxe.
24650 (generate_image): Handle i386-pc-pxe image.
24651
24652 2010-09-02 Vladimir Serbinenko <phcoder@gmail.com>
24653
24654 Fix grub_pxe_scan.
24655
24656 * grub-core/fs/i386/pc/pxe.c (grub_pxe_pxenv): Put correct type bangpxe.
24657 (grub_pxe_scan): Fix types and pxe_rm_entry computation.
24658 All users updated.
24659 * include/grub/i386/pc/pxe.h (grub_pxe_bangpxe): New struct.
24660 (grub_pxe_pxenv): Correct type.
24661
24662 2010-09-01 Colin Watson <cjwatson@ubuntu.com>
24663
24664 * NEWS: Document most of the important changes since 1.98.
24665
24666 2010-09-01 Colin Watson <cjwatson@ubuntu.com>
24667
24668 * util/grub-mkrescue.in (usage): Tidy up usage output (and hence
24669 generated manual page) a little.
24670
24671 2010-09-01 Colin Watson <cjwatson@ubuntu.com>
24672
24673 * docs/grub.texi: Add myself as an author.
24674
24675 2010-09-01 Vladimir Serbinenko <phcoder@gmail.com>
24676
24677 * Makefile.util.def (libgrub.a): Add missing sunpc.
24678 Reported by: Seth Goldberg.
24679
24680 2010-08-30 Vladimir Serbinenko <phcoder@gmail.com>
24681
24682 Interrupt wrapping and code simplifications.
24683
24684 * Makefile.util.def (grub-mkrescue): Use x86 tg instead of
24685 x86_noieee1275 which are functionaly equivalent in this case.
24686 (grub-install): Make source on each platform explicit. Enable on
24687 all noemu.
24688 * gentpl.py (x86_efi_pc): Removed group.
24689 (x86_noefi): Likewise.
24690 (i386_noefi): Likewise.
24691 (x86_noieee1275): Likewise.
24692 (i386_noieee1275): Likewise.
24693 (i386_noefi_noieee1275): Likewise.
24694 (i386_pc_qemu_coreboot): Likewise.
24695 (i386_coreboot_multiboot): Likewise.
24696 (i386_pc_coreboot_multiboot_qemu): Likewise.
24697 (x86_noefi_mips): Likewise.
24698 (noieee1275): Likewise.
24699 (ieee1275_mips): Likewise.
24700 (noemu_noieee1275): Likewise.
24701 (cmos): New group.
24702 (usb): Likewise.
24703 (videoinkernel): Likewise.
24704 (videomodules): Likewise.
24705 * grub-core/Makefile.am (KERNEL_HEADER_FILES): Remove
24706 include/grub/elf.h, include/grub/elfload.h, include/grub/net.h,
24707 include/grub/reader.h, include/grub/symbol.h, include/grub/types.h,
24708 include/grub/loader.h, include/grub/msdos_partition.h,
24709 include/grub/machine/biosdisk.h, include/grub/machine/boot.h,
24710 include/grub/machine/console.h, include/grub/machine/vga.h,
24711 include/grub/machine/vbe.h, include/grub/machine/init.h,
24712 include/grub/machine/kernel.h, include/grub/cpu/time.h,
24713 include/grub/cpu/types.h, include/grub/gzio.h and include/grub/menu.h
24714 (KERNEL_HEADER_FILES) [i386-pc]: Add include/grub/machine/int.h.
24715 (KERNEL_HEADER_FILES) [i386-ieee1275]: Add include/grub/i386/pit.h
24716 * grub-core/Makefile.core.def (kernel): Explicit the source for
24717 startup. Explicit the platforms using kern/generic/rtc_get_time_ms.c.
24718 Split ieee1275_mips. Remove kern/i386/halt.c. Remove kern/i386/misc.S.
24719 Enable kern/i386/pit.c on all x86. Remove kern/i386/ieee1275/init.c.
24720 Use videoinkernel tag.
24721 (usb): Enable on all usb.
24722 (usbserial_common): Likewise.
24723 (usbserial_pl2303): Likewise.
24724 (usbserial_ftdi): Likewise.
24725 (uhci): Enable on all x86.
24726 (ohci): Enable on all pci.
24727 (cmostest): Enable on all CMOS.
24728 (acpi): Include commands/acpi.c on all platforms.
24729 (halt): Add relevant lib/*/halt.c.
24730 (hdparm): Enable on all pci.
24731 (lspci): Likewise.
24732 (usbtest): Enable on all usb.
24733 (ata): Enable on all pci.
24734 (ata_pthru): Likewise.
24735 (usbms): Enable on all usb.
24736 (usb_keyboard): Likewise.
24737 (font): Use tag videomodules.
24738 (bufio): Likewise.
24739 (datetime): Use tag cmos. Enable on all noemu.
24740 (mmap): Use tags common and x86.
24741 (gfxterm): Use tag videomodules.
24742 (bitmap): Likewise.
24743 (bitmap_scale): Likewise.
24744 (video_fb): Likewise.
24745 (video): Likewise.
24746 * grub-core/bus/usb/ohci.c (grub_ohci_td): Make link_td a pointer and
24747 adjust padding accordingly. All users updated.
24748 (grub_ohci_transaction): Fix bad format specification.
24749 (GRUB_MOD_INIT): Add asserts for struct size.
24750 * grub-core/bus/usb/uhci.c (grub_uhci_pci_iter): Add explicit casts.
24751 (grub_alloc_td): Likewise.
24752 (grub_free_queue): Likewise.
24753 (grub_uhci_transfer): Likewise.
24754 (grub_uhci_transaction): Fix bad format specification.
24755 * grub-core/bus/usb/usbtrans.c (grub_usb_control_msg): Likewise.
24756 (grub_usb_bulk_readwrite): Likewise.
24757 * grub-core/kern/i386/misc.S (grub_stop): Moved from here ...
24758 * grub-core/commands/i386/pc/halt.c (stop): ...here. Transformed into C.
24759 Made static.
24760 * grub-core/lib/i386/halt.c (stop): ... and here. Transformed into C.
24761 Made static.
24762 * grub-core/kern/i386/pc/startup.S (grub_halt): Moved from here ...
24763 * grub-core/commands/i386/pc/halt.c (grub_halt): ...here.
24764 Transformed into C.
24765 * grub-core/kern/i386/pc/startup.S (grub_biosdisk_rw_int13_extensions):
24766 Moved from here ...
24767 * grub-core/disk/i386/pc/biosdisk.c (grub_biosdisk_rw_int13_extensions):
24768 ... here. Transformed into C. Made static.
24769 * grub-core/kern/i386/pc/startup.S (grub_biosdisk_rw_standard):
24770 Moved from here ...
24771 * grub-core/disk/i386/pc/biosdisk.c (grub_biosdisk_rw_standard):
24772 ... here. Transformed into C. Made static.
24773 * grub-core/kern/i386/pc/startup.S
24774 (grub_biosdisk_check_int13_extensions): Moved from here ...
24775 * grub-core/disk/i386/pc/biosdisk.c
24776 (grub_biosdisk_check_int13_extensions): ... here. Transformed into C.
24777 Made static.
24778 * grub-core/kern/i386/pc/startup.S
24779 (grub_biosdisk_get_cdinfo_int13_extensions): Moved from here ...
24780 * grub-core/disk/i386/pc/biosdisk.c
24781 (grub_biosdisk_get_cdinfo_int13_extensions): ... here.
24782 Transformed into C. Made static.
24783 * grub-core/kern/i386/pc/startup.S
24784 (grub_biosdisk_get_diskinfo_int13_extensions): Moved from here ...
24785 * grub-core/disk/i386/pc/biosdisk.c
24786 (grub_biosdisk_get_diskinfo_int13_extensions): ... here.
24787 Transformed into C. Made static.
24788 * grub-core/kern/i386/pc/startup.S
24789 (grub_biosdisk_get_diskinfo_standard): Moved from here ...
24790 * grub-core/disk/i386/pc/biosdisk.c
24791 (grub_biosdisk_get_diskinfo_standard): ... here.
24792 Transformed into C. Made static.
24793 * grub-core/kern/i386/pc/startup.S
24794 (grub_biosdisk_get_num_floppies): Moved from here ...
24795 * grub-core/disk/i386/pc/biosdisk.c
24796 (grub_biosdisk_get_num_floppies): ... here.
24797 Transformed into C. Made static.
24798 * grub-core/disk/i386/pc/biosdisk.c (grub_biosdisk_get_diskinfo_real):
24799 New function.
24800 * grub-core/kern/i386/pc/startup.S (grub_pxe_scan): Moved from here ...
24801 * grub-core/fs/i386/pc/pxe.c (grub_pxe_scan): ... here.
24802 Transformed into C. Made static.
24803 * grub-core/kern/i386/pc/startup.S (grub_rm_entry): Moved from here ...
24804 * grub-core/fs/i386/pc/pxe.c (grub_rm_entry): ... here.
24805 Transformed into C. Made static.
24806 * grub-core/kern/i386/ieee1275/init.c: Removed.
24807 * grub-core/kern/i386/misc.S: Likewise.
24808 * grub-core/kern/i386/pc/startup.S (grub_get_memsize):
24809 Splitted from here ...
24810 * grub-core/kern/i386/pc/init.c (grub_get_conv_memsize): ... here.
24811 Transformed into C. Made static. All users updated.
24812 * grub-core/kern/i386/pc/mmap.c (grub_get_ext_memsize): ... and here.
24813 Transformed into C. Made static. All users updated.
24814 * grub-core/kern/i386/pc/startup.S (grub_get_eisa_mmap):
24815 Moved from here...
24816 * grub-core/kern/i386/pc/mmap.c (grub_get_eisa_mmap): ... here.
24817 Transformed into C. Made static. All users updated.
24818 * grub-core/kern/i386/pc/startup.S (grub_get_mmap_entry):
24819 Moved from here...
24820 * grub-core/kern/i386/pc/mmap.c (grub_get_mmap_entry): ... here.
24821 Transformed into C. Made static. All users updated.
24822 * grub-core/kern/i386/pc/startup.S (grub_stop_floppy):
24823 Removed (replaced by C version).
24824 * grub-core/kern/i386/pc/startup.S (grub_vga_set_mode):
24825 Moved from here...
24826 * grub-core/video/i386/pc/vga.c (grub_vga_set_mode): ...here.
24827 Transformed into C. Made static.
24828 * grub-core/kern/i386/pc/startup.S (grub_vbe_bios_get_controller_info):
24829 Moved from here...
24830 * grub-core/video/i386/pc/vbe.c (grub_vbe_bios_get_controller_info):
24831 ... here. Transformed into C.
24832 * grub-core/kern/i386/pc/startup.S (grub_vbe_bios_get_mode_info):
24833 Moved from here...
24834 * grub-core/video/i386/pc/vbe.c (grub_vbe_bios_get_mode_info):
24835 ... here. Transformed into C.
24836 * grub-core/kern/i386/pc/startup.S (grub_vbe_bios_set_mode):
24837 Moved from here...
24838 * grub-core/video/i386/pc/vbe.c (grub_vbe_bios_set_mode):
24839 ... here. Transformed into C. Made static.
24840 * grub-core/kern/i386/pc/startup.S (grub_vbe_bios_get_mode):
24841 Moved from here...
24842 * grub-core/video/i386/pc/vbe.c (grub_vbe_bios_get_mode):
24843 ... here. Transformed into C.
24844 * grub-core/kern/i386/pc/startup.S
24845 (grub_vbe_bios_getset_dac_palette_width):Moved from here...
24846 * grub-core/video/i386/pc/vbe.c
24847 (grub_vbe_bios_getset_dac_palette_width):... here. Transformed into C.
24848 * grub-core/kern/i386/pc/startup.S (grub_vbe_bios_set_memory_window):
24849 Moved from here...
24850 * grub-core/video/i386/pc/vbe.c (grub_vbe_bios_set_memory_window):
24851 ... here. Transformed into C.
24852 * grub-core/kern/i386/pc/startup.S (grub_vbe_bios_get_memory_window):
24853 Moved from here...
24854 * grub-core/video/i386/pc/vbe.c (grub_vbe_bios_get_memory_window):
24855 ... here. Transformed into C.
24856 * grub-core/kern/i386/pc/startup.S (grub_vbe_bios_set_scanline_length):
24857 Moved from here...
24858 * grub-core/video/i386/pc/vbe.c (grub_vbe_bios_set_scanline_length):
24859 ... here. Transformed into C.
24860 * grub-core/kern/i386/pc/startup.S (grub_vbe_bios_get_scanline_length):
24861 Moved from here...
24862 * grub-core/video/i386/pc/vbe.c (grub_vbe_bios_get_scanline_length):
24863 ... here. Transformed into C.
24864 * grub-core/kern/i386/pc/startup.S (grub_vbe_bios_set_display_start):
24865 Moved from here...
24866 * grub-core/video/i386/pc/vbe.c (grub_vbe_bios_set_display_start):
24867 ... here. Transformed into C. Made static.
24868 * grub-core/kern/i386/pc/startup.S (grub_vbe_bios_get_display_start):
24869 Moved from here...
24870 * grub-core/video/i386/pc/vbe.c (grub_vbe_bios_get_display_start):
24871 ... here. Transformed into C. Made static.
24872 * grub-core/kern/i386/pc/startup.S (grub_vbe_bios_set_palette_data):
24873 Moved from here...
24874 * grub-core/video/i386/pc/vbe.c (grub_vbe_bios_set_palette_data):
24875 ... here. Transformed into C. Made static.
24876 * grub-core/kern/i386/pc/startup.S (grub_pxe_call): Receive
24877 pxe_rm_entry as third argument.
24878 (grub_bios_interrupt): New function.
24879 * grub-core/kern/i386/qemu/mmap.c: Remove useless include.
24880 * grub-core/kern/i386/qemu/startup.S (codestart): Do cli;hlt instead
24881 of calling grub_stop.
24882 * grub-core/kern/efi/efi.c (grub_halt): Moved from here ...
24883 * grub-core/lib/efi/halt.c (grub_halt): ...here.
24884 * grub-core/kern/emu/main.c (grub_halt): Moved from here ...
24885 * grub-core/lib/emu/halt.c (grub_halt): ... here.
24886 * grub-core/lib/i386/halt.c: Moved from here ...
24887 * grub-core/lib/i386/halt.c: ... here.
24888 * grub-core/kern/ieee1275/openfw.c (grub_halt): Moved from here ...
24889 * grub-core/lib/ieee1275/halt.c (grub_halt): ... here.
24890 * grub-core/loader/i386/pc/linux.c (grub_linux16_boot): Call
24891 grub_stop_floppy.
24892 * grub-core/loader/i386/xnu.c (guessfsb) [IEEE1275]: Enable.
24893 * include/grub/i386/coreboot/init.h: Removed.
24894 * include/grub/i386/multiboot/init.h: Likewise.
24895 * include/grub/i386/pc/biosdisk.h: Removed all function prototypes.
24896 * include/grub/i386/pc/init.h: Likewise except grub_gate_a20.
24897 * include/grub/i386/pc/int.h: New file.
24898 * include/grub/i386/pc/pxe.h (GRUB_PXE_SIGNATURE): New definition.
24899 (grub_pxe_scan): Removed.
24900 (grub_pxe_call): Update prototype.
24901 * include/grub/i386/pc/vbe.h: Removed EXPORT_FUNC and useless
24902 prototypes.
24903 * include/grub/i386/pc/vga.h (grub_vga_set_mode): Removed.
24904 * include/grub/i386/qemu/init.h: Removed.
24905 * include/grub/mips/yeeloong/kernel.h (grub_reboot): Add missing
24906 noreturn.
24907 (grub_halt): Likewise.
24908 * include/grub/misc.h (grub_halt): Removed EXPORT_FUNC.
24909 (grub_reboot): Likewise.
24910 * grub-core/kern/i386/coreboot/init.c (grub_stop_floppy): Moved from here...
24911 * include/grub/i386/floppy.h (grub_stop_floppy): ...here. Inlined.
24912 * grub-core/kern/i386/pc/startup.S (grub_hard_stop): Removed.
24913
24914 2010-08-30 Robert Millan <rmh@gnu.org>
24915
24916 * NEWS: Document addition of ZFS support in `grub-install' and
24917 `grub-mkconfig'.
24918
24919 2010-08-30 BVK Chaitanya <bvk.groups@gmail.com>
24920
24921 * conf/Makefile.common (CPPFLAGS_DEFAULT): Remove leading / from
24922 dprintf output.
24923
24924 2010-08-30 Vladimir Serbinenko <phcoder@gmail.com>
24925
24926 Remove leftover embedding of font objects.
24927
24928 * include/grub/kernel.h (OBJ_TYPE_FONT): Removed.
24929 * util/grub-install.in (font): Removed.
24930 * util/grub-mkimage.c (generate_image): Remove font support. All users
24931 updated.
24932
24933 2010-08-30 Vladimir Serbinenko <phcoder@gmail.com>
24934
24935 Remove leftover embedding of font objects.
24936
24937 * include/grub/kernel.h (OBJ_TYPE_FONT): Removed.
24938 * util/grub-install.in (font): Removed.
24939 * util/grub-mkimage.c (generate_image): Remove font support. All users
24940 updated.
24941
24942 2010-08-30 Vladimir Serbinenko <phcoder@gmail.com>
24943
24944 * docs/grub.texi (Network): Fix reference to pxe_blksize.
24945 Reported by: Ian Turner
24946
24947 2010-08-30 Vladimir Serbinenko <phcoder@gmail.com>
24948
24949 * grub-core/normal/menu.c (grub_wait_after_message): Add a 10 second
24950 timeout to avoid indefinite boot stalling.
24951
24952 2010-08-30 Vladimir Serbinenko <phcoder@gmail.com>
24953
24954 * grub-core/normal/color.c (grub_env_write_color_normal): Fix a warning.
24955 (grub_env_write_color_highlight): Likewise.
24956
24957 2010-08-30 Vladimir Serbinenko <phcoder@gmail.com>
24958
24959 * grub-core/normal/term.c (print_more): Return to normal and not
24960 to standard state after printing "---MORE---".
24961
24962 2010-08-30 Vladimir Serbinenko <phcoder@gmail.com>
24963
24964 * grub-core/term/i386/vga_common.c (grub_console_setcolorstate):
24965 Mask out the bit 0x80 since it has other meaning that specifiing color.
24966
24967 2010-08-29 Vladimir Serbinenko <phcoder@gmail.com>
24968
24969 New relocator. Allows for more kernel support and more straightforward
24970 loader writing.
24971
24972 * Makefile.am (BOOTTARGET): New variable.
24973 (QEMU32): Likewise.
24974 (linux.init.x86_64): New target.
24975 (linux.init.i386): Likewise.
24976 (multiboot.elf): Likewise.
24977 (kfreebsd.elf): Likewise.
24978 (kfreebsd.aout): Likewise.
24979 (pc-chainloader.elf): Likewise.
24980 (pc-chainloader.bin): Likewise.
24981 (ntldr.elf): Likewise.
24982 (ntldr.bin): Likewise.
24983 (multiboot2.elf): Likewise.
24984 (kfreebsd.init.x86_64): Likewise.
24985 (kfreebsd.init.i386): Likewise.
24986 (knetbsd.init.i386): Likewise.
24987 (kopenbsd.init.i386): Likewise.
24988 (knetbsd.init.x86_64): Likewise.
24989 (kopenbsd.init.x86_64): Likewise.
24990 (linux-initramfs.i386): Likewise.
24991 (linux-initramfs.x86_64): Likewise.
24992 (kfreebsd-mfsroot.i386.img): Likewise.
24993 (knetbsd.image.i386): Likewise.
24994 (kopenbsd.image.i386): Likewise.
24995 (kopenbsd.image.x86_64): Likewise.
24996 (knetbsd.miniroot-image.i386.img): Likewise.
24997 (kfreebsd-mfsroot.x86_64.img): Likewise.
24998 (knetbsd.image.x86_64): Likewise.
24999 (knetbsd.miniroot-image.x86_64.img): Likewise.
25000 (kfreebsd-mfsroot.i386.gz): Likewise.
25001 (bootcheck-kfreebsd-i386): Likewise.
25002 (kfreebsd-mfsroot.x86_64.gz): Likewise.
25003 (bootcheck-kfreebsd-x86_64): Likewise.
25004 (knetbsd.miniroot-image.i386.gz): Likewise.
25005 (bootcheck-knetbsd-i386): Likewise.
25006 (bootcheck-kopenbsd-i386): Likewise.
25007 (bootcheck-kopenbsd-x86_64): Likewise.
25008 (knetbsd.miniroot-image.x86_64.gz): Likewise.
25009 (bootcheck-knetbsd-x86_64): Likewise.
25010 (bootcheck-linux-i386): Likewise.
25011 (bootcheck-linux-x86_64): Likewise.
25012 (bootcheck-linux16-i386): Likewise.
25013 (bootcheck-linux16-x86_64): Likewise.
25014 (bootcheck-multiboot): Likewise.
25015 (bootcheck-multiboot2): Likewise.
25016 (bootcheck-kfreebsd-aout): Likewise.
25017 (bootcheck-pc-chainloader): Likewise.
25018 (bootcheck-ntldr): Likewise.
25019 (CLEANFILES): Add new targets.
25020 (BOOTCHECKS): New variable.
25021 (.PHONY): Add bootchecks.
25022 (SUCCESSFUL_BOOT_STRING): New variable.
25023 (BOOTCHECK_TIMEOUT): Likewise.
25024 (bootcheck): New target
25025 * Makefile.util.def (grub-mkrescue): Enable on i386-multiboot.
25026 * configure.ac: Correct efiemu excuse.
25027 * docs/grub.texi (Supported kernels): New chapter.
25028 * grub-core/Makefile.am (KERNEL_HEADER_FILES): Add
25029 include/grub/mm_private.h. Simplify inclusion of
25030 include/grub/boot.h, include/grub/loader.h
25031 and include/grub/msdos_partition.h
25032 (KERNEL_HEADER_FILES) [i386_coreboot]:
25033 Remove include/grub/machine/loader.h. Add include/grub/i386/pit.h.
25034 (KERNEL_HEADER_FILES) [i386_multiboot]: Likewise.
25035 (KERNEL_HEADER_FILES) [i386_qemu]: Likewise.
25036 (KERNEL_HEADER_FILES) [i386_ieee1275]: Remove
25037 include/grub/machine/loader.h.
25038 (KERNEL_HEADER_FILES) [x86_64-efi]: Likewise.
25039 * grub-core/Makefile.core.def (kernel): Remove kern/i386/loader.S from
25040 extra_dist.
25041 (pci.mod): Enable on i386-multiboot.
25042 (acpi.mod): Enable on i386-multiboot and i386-coreboot.
25043 (efiemu.mod): Enable on i386-coreboot, i386-ieee1275, i386-multiboot and
25044 i386-qemu.
25045 (relocator.mod): Rewritten.
25046 (aout.mod): Enable on all x86.
25047 (bsd.mod): Likewise.
25048 (ntldr.mod): New module.
25049 (linux.mod): Use loader/i386/linux.c on all x86.
25050 (xnu.mod): Enable on all x86.
25051 (vga_text.mod): disable on EFI and QEMU.
25052 * grub-core/efiemu/i386/coredetect.c: Remove useless include.
25053 * grub-core/efiemu/i386/pc/cfgtables.c: Likewise.
25054 * grub-core/efiemu/loadcore.c: Likewise.
25055 * grub-core/efiemu/main.c: Likewise.
25056 (grub_efiemu_exit_boot_services): Removed.
25057 (grub_efiemu_finish_boot_services): Likewise.
25058 * grub-core/efiemu/mm.c (grub_efiemu_finish_boot_services): New
25059 function.
25060 * grub-core/efiemu/i386/nocfgtables.c: New file.
25061 * grub-core/kern/dl.c (grub_dl_unload_all): Removed.
25062 * grub-core/kern/efi/efi.c (grub_efi_exit_boot_services): Removed.
25063 (grub_efi_finish_boot_services): Moved from here ...
25064 * grub-core/kern/efi/mm.c (grub_efi_finish_boot_services): ...here.
25065 Fille finish memory map and related data.
25066 (finish_mmap_buf): New variable.
25067 (grub_efi_uintn_t finish_mmap_size): Likewise.
25068 (grub_efi_uintn_t finish_key): Likewise.
25069 (grub_efi_uintn_t finish_desc_size): Likewise.
25070 (grub_efi_uint32_t finish_desc_version): Likewise.
25071 (grub_efi_is_finished): Likewise.
25072 (grub_efi_get_memory_map): Use saved memory map if EFI is already
25073 finished.
25074 * grub-core/kern/elf.c (grub_elf32_phdr_iterate): Make global.
25075 (grub_elf64_phdr_iterate): Likewise.
25076 * grub-core/kern/i386/coreboot/init.c (grub_os_area_addr): Removed.
25077 (grub_os_area_size): Likewise.
25078 (grub_machine_init): Don't reserve os area.
25079 * grub-core/kern/i386/coreboot/startup.S: Don't include loader.S.
25080 * grub-core/kern/i386/ieee1275/startup.S: Likewise.
25081 * grub-core/kern/i386/loader.S: Removed.
25082 * grub-core/kern/i386/pc/init.c (grub_os_area_addr): Removed.
25083 (grub_os_area_size): Likewise.
25084 (grub_machine_init): Don't reserve os area.
25085 * grub-core/kern/i386/pc/startup.S (grub_chainloader_real_boot):
25086 Don't call grub_dl_unload_all.
25087 Don't include loader.S.
25088 * grub-core/kern/i386/qemu/mmap.c (grub_machine_mmap_iterate):
25089 Declare the memory after _end as available.
25090 * grub-core/kern/mm.c (GRUB_MM_FREE_MAGIC): Moved from here...
25091 * include/grub/mm_private.h (GRUB_MM_FREE_MAGIC): ... here.
25092 (GRUB_MM_ALLOC_MAGIC): Moved from here...
25093 * include/grub/mm_private.h (GRUB_MM_ALLOC_MAGIC): ... here.
25094 * grub-core/kern/mm.c (grub_mm_header): Moved from here...
25095 * include/grub/mm_private.h (grub_mm_header): ... here.
25096 * grub-core/kern/mm.c (GRUB_MM_ALIGN): Moved from here...
25097 * include/grub/mm_private.h (GRUB_MM_ALIGN): ... here.
25098 * grub-core/kern/mm.c (grub_mm_region): Moved from here ...
25099 (grub_mm_region): ..here. Removed addr. Added pre_size.
25100 All users updated.
25101 * grub-core/kern/mm.c (base): Renamed to ...
25102 (grub_mm_base): ... this. Made global.
25103 (grub_real_malloc): Alloc from end of region.
25104 (grub_memalign): Don't attempt to malloc if grub_mm_base is NULL.
25105 * grub-core/kern/powerpc/cache.S (grub_arch_sync_caches): Move to ...
25106 * grub-core/kern/powerpc/cache_flush.S: ... here.
25107 * grub-core/lib/efi/relocator.c: New file.
25108 * grub-core/lib/i386/relocator.c: Rewritten.
25109 * grub-core/lib/i386/relocator16.S: New file.
25110 * grub-core/lib/i386/relocator32.S: Likewise.
25111 * grub-core/lib/i386/relocator64.S: Likewise.
25112 * grub-core/lib/i386/relocator_asm.S: Rewritten.
25113 * grub-core/lib/i386/relocator_common.S: New file.
25114 * grub-core/lib/ieee1275/relocator.c: Likewise.
25115 * grub-core/lib/mips/relocator.c: Rewritten.
25116 * grub-core/lib/mips/relocator_asm.S: Renamed variables and minor
25117 stylistic adjustments.
25118 * grub-core/lib/powerpc/relocator.c: New file.
25119 * grub-core/lib/powerpc/relocator_asm.S: Likewise.
25120 * grub-core/lib/relocator.c: Rewritten.
25121 * grub-core/lib/x86_64/relocator_asm.S: New file.
25122 * grub-core/loader/aout.c (grub_aout_load): Make load_addr a void *.
25123 * grub-core/loader/i386/bsd.c (NETBSD_DEFAULT_VIDEO_MODE): New const.
25124 (bsd_tag): New struct.
25125 (tags): New variable.
25126 (tags_last): Likewise.
25127 (netbsd_module): New struct.
25128 (netbsd_mods): New variable.
25129 (netbsd_mods_last): Likewise.
25130 (openbsd_opts): New parameter "serial".
25131 (OPENBSD_SERIAL_ARG): New definition.
25132 (netbsd_opts): New parameter "serial".
25133 (NETBSD_SERIAL_ARG): New definition.
25134 (grub_freebsd_add_meta): Reorganised into ...
25135 (grub_bsd_add_meta): ...this. All users updated.
25136 (grub_freebsd_add_mmap): Reorganised into ...
25137 (generate_e820_mmap): ...this...
25138 (grub_bsd_add_mmap): ...and this. All users updated.
25139 (grub_freebsd_list_modules): Use tags.
25140 (grub_netbsd_add_meta_module): New function.
25141 (grub_netbsd_list_modules): Likewise.
25142 (grub_freebsd_boot): Use relocator and finish EFI.
25143 (grub_openbsd_boot): Likewise.
25144 (grub_netbsd_setup_video): New function.
25145 (grub_netbsd_add_modules): Likewise.
25146 (grub_netbsd_boot): Use grub_netbsd_add_modules, relocator, netbsd_tags
25147 and finish EFI.
25148 (grub_bsd_unload): Unload tags.
25149 (grub_bsd_load_aout): Use relocator.
25150 (grub_bsd_elf32_size_hook): New function.
25151 (grub_bsd_elf32_hook): Use relocator.
25152 (grub_bsd_elf64_size_hook): New function.
25153 (grub_bsd_elf64_hook): Use relocator.
25154 (grub_bsd_load_elf): Use relocator and call grub_openbsd_find_ramdisk.
25155 (grub_bsd_load): Zero-out openbsd_ramdisk.
25156 (grub_bsd_load): Use relocator.
25157 (grub_cmd_openbsd): Support serial.
25158 (grub_cmd_netbsd): Support modules.
25159 (grub_cmd_freebsd_module): Use relocator.
25160 (grub_netbsd_module_load): New function.
25161 (grub_cmd_netbsd_module): Likewise.
25162 (grub_cmd_openbsd_ramdisk): Likewise.
25163 (GRUB_MOD_INIT): Register knetbsd_module, knetbsd_module_elf and
25164 kopenbsd_ramdisk.
25165 (GRUB_MOD_FINI): Unregister new commands.
25166 * grub-core/loader/i386/bsdXX.c (load): Remove useless checks.
25167 (grub_freebsd_load_elfmodule_obj): Use relocator.
25168 (grub_freebsd_load_elfmodule): Likewise.
25169 (grub_freebsd_load_elf_meta): Likewise.
25170 (grub_netbsd_load_elf_meta): New function.
25171 (grub_openbsd_find_ramdisk): Likewise.
25172 * grub-core/loader/i386/bsd_helper.S: Removed.
25173 * grub-core/loader/i386/bsd_pagetable.c: Support relocator.
25174 * grub-core/loader/i386/bsd_trampoline.S: Removed.
25175 * grub-core/loader/i386/efi/linux.c: Likewise.
25176 * grub-core/loader/i386/ieee1275/linux.c: Likewise.
25177 * grub-core/loader/i386/linux.c (HAS_VGA_TEXT): New const.
25178 (DEFAULT_VIDEO_MODE): Likewise.
25179 (real_mode_target): New variable.
25180 (prot_mode_target): Likewise.
25181 (initrd_mem_target): Likewise.
25182 (relocator): Likewise.
25183 (efi_mmap_buf): Likewise.
25184 (efi_mmap_size): Likewise.
25185 (find_efi_mmap_size): Moved from grub-core/loader/i386/efi/linux.c.
25186 (free_pages): Use relocator.
25187 (allocate_pages): Account for efi_mmap and use relocator. Return error.
25188 (grub_linux_setup_video): Return error.
25189 (grub_linux_trampoline_start): Removed.
25190 (grub_linux_trampoline_end): Likewise.
25191 (grub_linux_boot): Use relocator and DEFAULT_VIDEO_MODE. Pass console
25192 andd video parameters depending on firmware.
25193 [GRUB_MACHINE_IEEE1275]: Pass OFW parameters.
25194 [GRUB_MACHINE_EFI]: Pass EFI parameters.
25195 (grub_cmd_linux) [GRUB_MACHINE_EFI]: Likewise.
25196 (grub_cmd_initrd): Use relocator.
25197 * grub-core/loader/i386/linux_trampoline.S: Removed.
25198 * grub-core/loader/i386/multiboot_mbi.c (elf_sec_num): New variable.
25199 (elf_sec_entsize): Likewise.
25200 (elf_sec_shstrndx): Likewise.
25201 (elf_sections): Likewise.
25202 (grub_multiboot_load): Use relocator.
25203 (grub_multiboot_get_mbi_size): Account for sections.
25204 (grub_multiboot_make_mbi): Use relocator and support sections.
25205 (grub_multiboot_add_elfsyms): New function.
25206 (grub_multiboot_free_mbi): Free sections.
25207 * grub-core/loader/i386/pc/linux.c (relocator): New variable.
25208 (grub_linux_real_target): Likewise.
25209 (grub_linux_real_chunk): Likewise.
25210 (grub_linux16_prot_size): Likewise.
25211 (grub_linux16_boot): Use relocator.
25212 (grub_linux_unload): Unload relocator.
25213 (grub_cmd_linux): Use relocator.
25214 (grub_cmd_initrd): Likewise.
25215 * grub-core/loader/i386/pc/ntldr.c: New file.
25216 * grub-core/loader/i386/xnu.c (guessfsb) [GRUB_MACHINE_IEEE1275]:
25217 Don't try to guess CPU frequency.
25218 (grub_xnu_set_video): Stretch bitmap.
25219 (grub_xnu_boot): Use relocator.
25220 * grub-core/loader/mips/linux.c (grub_linux_boot): Use relocator.
25221 (grub_linux_unload): Free relocator.
25222 (grub_linux_load32): Use relocator.
25223 (grub_linux_load64): Likewise.
25224 (grub_cmd_initrd): Likewise.
25225 * grub-core/loader/multiboot.c (grub_multiboot_boot): Use relocator.
25226 (grub_multiboot_unload): Unload relocator.
25227 (grub_cmd_multiboot): Use relocator.
25228 (grub_cmd_module): Likewise.
25229 * grub-core/loader/multiboot_elfxx.c (grub_multiboot_load_elfXX):
25230 Use relocator and support sections.
25231 * grub-core/loader/multiboot_mbi2.c(elf_sec_num): New variable.
25232 (elf_sec_entsize): Likewise.
25233 (elf_sec_shstrndx): Likewise.
25234 (elf_sections): Likewise.
25235 (grub_multiboot_load): Use relocator.
25236 (grub_multiboot_get_mbi_size): Account for sections.
25237 (grub_multiboot_make_mbi): Use relocator and support sections.
25238 (grub_multiboot_add_elfsyms): New function.
25239 * grub-core/loader/powerpc/ieee1275/linux.c: Remove useless include.
25240 * grub-core/loader/sparc64/ieee1275/linux.c: Likewise.
25241 * grub-core/loader/xnu.c (grub_xnu_heap_malloc): Use relocator.
25242 Prototype changed. All users updated.
25243 (grub_xnu_align_heap): Simplified.
25244 (grub_xnu_writetree_toheap): Likewise.
25245 (grub_xnu_unload): Unload relocator.
25246 (grub_cmd_xnu_kernel): Use relocator.
25247 (grub_cmd_xnu_kernel64): Likewise.
25248 (grub_xnu_register_memory): Simplified.
25249 * grub-core/loader/xnu_resume.c (grub_xnu_resume): Use relocator.
25250 * grub-core/term/efi/console.c (grub_console_putchar): Abort if
25251 EFI is finished.
25252 (grub_console_checkkey): Likewise.
25253 (grub_console_getkey): Likewise.
25254 (grub_console_getwh): Likewise.
25255 (grub_console_getxy): Likewise.
25256 (grub_console_gotoxy): Likewise.
25257 (grub_console_cls): Likewise.
25258 (grub_console_setcolorstate): Likewise.
25259 (grub_console_setcursor): Likewise.
25260 * grub-core/term/ns8250.c (grub_ns8250_hw_get_port): New function.
25261 * grub-core/tests/boot/kbsd.init-i386.S: New file.
25262 * grub-core/tests/boot/kbsd.init-x86_64.S: Likewise.
25263 * grub-core/tests/boot/kbsd.spec.txt: Likewise.
25264 * grub-core/tests/boot/kernel-8086.S: Likewise.
25265 * grub-core/tests/boot/kernel-i386.S: Likewise.
25266 * grub-core/tests/boot/kfreebsd-aout.cfg: Likewise.
25267 * grub-core/tests/boot/kfreebsd.cfg: Likewise.
25268 * grub-core/tests/boot/kfreebsd.init-i386.S: Likewise.
25269 * grub-core/tests/boot/kfreebsd.init-x86_64.S: Likewise.
25270 * grub-core/tests/boot/knetbsd.cfg: Likewise.
25271 * grub-core/tests/boot/kopenbsd.cfg: Likewise.
25272 * grub-core/tests/boot/kopenbsdlabel.txt: Likewise.
25273 * grub-core/tests/boot/linux.cfg: Likewise.
25274 * grub-core/tests/boot/linux.init-i386.S: Likewise.
25275 * grub-core/tests/boot/linux.init-x86_64.S: Likewise.
25276 * grub-core/tests/boot/linux16.cfg: Likewise.
25277 * grub-core/tests/boot/multiboot.cfg: Likewise.
25278 * grub-core/tests/boot/multiboot2.cfg: Likewise.
25279 * grub-core/tests/boot/ntldr.cfg: Likewise.
25280 * grub-core/tests/boot/pc-chainloader.cfg: Likewise.
25281 * include/grub/aout.h (grub_aout_load): Make load_addr a void *.
25282 * include/grub/autoefi.h (grub_autoefi_finish_boot_services):
25283 New definition.
25284 * include/grub/dl.h (grub_dl_unload_all): Removed.
25285 * include/grub/efi/efi.h (grub_efi_exit_boot_services): Likewise.
25286 (grub_efi_finish_boot_services): Change prototype.
25287 (grub_efi_is_finished): New variable.
25288 * include/grub/efiemu/efiemu.h (grub_efiemu_finish_boot_services):
25289 Changed prototype.
25290 (grub_efiemu_finish_boot_services): Removed.
25291 (grub_machine_efiemu_init_tables): New prototype.
25292 * include/grub/elfload.h (grub_elf32_phdr_iterate): Likewise.
25293 (grub_elf64_phdr_iterate): Likewise.
25294 * include/grub/i386/bsd.h: Include relocator.h.
25295 (freebsd_tag_header): New struct.
25296 (grub_openbsd_bios_mmap): Removed.
25297 (grub_unix_real_boot): Removed.
25298 (grub_freebsd_load_elfmodule32): Changed prototype.
25299 (grub_freebsd_load_elfmodule_obj64): Likewise.
25300 (grub_freebsd_load_elf_meta32): Likewise.
25301 (grub_freebsd_load_elf_meta64): Likewise.
25302 (grub_freebsd_add_meta): Removed.
25303 (grub_netbsd_load_elf_meta32): New prototype.
25304 (grub_netbsd_load_elf_meta64): Likewise.
25305 (grub_bsd_add_meta): Likewise.
25306 (grub_openbsd_ramdisk_descriptor): New struct.
25307 (grub_openbsd_find_ramdisk32): New prototype.
25308 (grub_openbsd_find_ramdisk64): Likewise.
25309 * include/grub/i386/coreboot/loader.h: Removed.
25310 * include/grub/i386/efi/loader.h: Likewise.
25311 * include/grub/i386/ieee1275/loader.h: Likewise.
25312 * include/grub/i386/linux.h (linux_kernel_header): Change void *
25313 to grub_uint32_t.
25314 * include/grub/i386/loader.h: Removed.
25315 * include/grub/i386/memory.h (GRUB_MEMORY_CPU_CR4_PAE_ON): Correct the
25316 value.
25317 (GRUB_MEMORY_CPU_CR4_PSE_ON): New definition.
25318 (grub_phys_addr_t): New type.
25319 (grub_vtop): New inline function.
25320 (grub_map_memory): Likewise.
25321 (grub_unmap_memory): Likewise.
25322 * include/grub/i386/multiboot/loader.h: Removed.
25323 * include/grub/i386/netbsd_bootinfo.h (NETBSD_BTINFO_BOOTDISK): Removed.
25324 (NETBSD_BTINFO_CONSOLE): New definition.
25325 (NETBSD_BTINFO_SYMTAB): Likewise.
25326 (NETBSD_BTINFO_MODULES): Likewise.
25327 (NETBSD_BTINFO_FRAMEBUF): Likewise.
25328 (grub_netbsd_bootinfo): New struct.
25329 (grub_netbsd_btinfo_common): Use explicit bitsize.
25330 (grub_netbsd_btinfo_mmap_entry): Removed.
25331 (GRUB_NETBSD_MAX_BOOTPATH_LEN): New definition.
25332 (grub_netbsd_btinfo_bootdisk): New struct.
25333 (grub_netbsd_btinfo_symtab): Likewise.
25334 (grub_netbsd_btinfo_serial): Likewise.
25335 (grub_netbsd_btinfo_modules): Likewise.
25336 (grub_netbsd_btinfo_framebuf): Likewise.
25337 (GRUB_NETBSD_MAX_ROOTDEVICE_LEN): New definition.
25338 * include/grub/i386/openbsd_bootarg.h (OPENBSD_BOOTARG_CONSOLE):
25339 Likewise.
25340 (grub_openbsd_bootargs): Use explicit bitsize.
25341 (grub_openbsd_bootarg_console): New struct.
25342 (GRUB_OPENBSD_COM_MAJOR): New definition.
25343 (GRUB_OPENBSD_VGA_MAJOR): Likewise.
25344 * include/grub/i386/pc/efiemu.h: Removed.
25345 * include/grub/i386/pc/loader.h: Don't include cpu/loader.h.
25346 * include/grub/i386/qemu/loader.h: Removed.
25347 * include/grub/i386/relocator.h: Rewritten.
25348 * include/grub/i386/xnu.h (grub_xnu_heap_will_be_at): Removed.
25349 * include/grub/mips/memory.h: New file.
25350 * include/grub/mips/multiboot.h: Rewritten.
25351 * include/grub/mips/relocator.h: Rewritten.
25352 * include/grub/mips/yeeloong/memory.h (grub_phys_addr_t): New type.
25353 (grub_vtop): New function.
25354 (grub_map_memory): Likewise.
25355 (grub_unmap_memory): Likewise.
25356 * include/grub/misc.h (ALIGN_DOWN): New definition.
25357 * include/grub/mm.h (grub_mm_check_real): New proto.
25358 (GRUB_MM_CHECK): New definition.
25359 * include/grub/mm_private.h: New file.
25360 * include/grub/multiboot.h (grub_multiboot_relocator): New variable.
25361 (grub_multiboot_get_mbi_size): Removed.
25362 (grub_multiboot_make_mbi): Change prottype.
25363 (grub_multiboot_set_accepts_video): New proto.
25364 (grub_multiboot_add_elfsyms): Likewise.
25365 (grub_multiboot_payload_eip): New variable.
25366 * include/grub/ns8250.h (grub_ns8250_hw_get_port) [!ASM_FILE]:
25367 New prototype.
25368 * include/grub/offsets.h (GRUB_KERNEL_I386_MULTIBOOT_PREFIX):
25369 New definition.
25370 (GRUB_KERNEL_I386_MULTIBOOT_DATA_END): Likewise.
25371 (GRUB_KERNEL_I386_MULTIBOOT_MOD_ALIGN): Likewise.
25372 * include/grub/powerpc/ieee1275/loader.h: Removed.
25373 * include/grub/powerpc/memory.h: New file.
25374 * include/grub/powerpc/relocator.h: Likewise.
25375 * include/grub/relocator.h: Likewise.
25376 * include/grub/relocator_private.h: Likewise.
25377 * include/grub/sparc64/ieee1275/loader.h: Removed.
25378 * include/grub/x86_64/memory.h: New file.
25379 * include/grub/xnu.h (grub_xnu_writetree_toheap): Changed prototype.
25380 (grub_xnu_heap_malloc): Likewise.
25381 (grub_xnu_heap_real_start): Removed.
25382 (grub_xnu_heap_start): Likewise.
25383 (grub_xnu_relocator): New variable.
25384 (grub_xnu_heap_target_start): Likewise.
25385 * tests/util/grub-shell.in: Support non-pc.
25386 * util/grub-mkimage.c (image_targets): Fix multiboot target.
25387
25388 2010-08-29 Vladimir Serbinenko <phcoder@gmail.com>
25389
25390 * grub-core/normal/charset.c (grub_utf8_to_ucs4_alloc): Avoid deadloop
25391 on malloc error.
25392 (grub_bidi_logical_to_visual): Check that malloc succeded.
25393 * grub-core/normal/term.c (grub_puts_terminal): Fix fallback to dumb
25394 puts.
25395 (grub_xputs_normal): Likewise.
25396
25397 2010-08-29 Vladimir Serbinenko <phcoder@gmail.com>
25398
25399 * grub-core/Makefile.core.def (kernel): Add kern/mips/cache_flush.S to
25400 extra_dist.
25401
25402 2010-08-29 Vladimir Serbinenko <phcoder@gmail.com>
25403
25404 * grub-core/efiemu/runtime/efiemu.sh: Removed.
25405
25406 2010-08-29 Vladimir Serbinenko <phcoder@gmail.com>
25407
25408 * Makefile.util.def (grub-ofpathname): Add missing ldadd.
25409
25410 2010-08-29 Vladimir Serbinenko <phcoder@gmail.com>
25411
25412 * grub-core/kern/misc.c (grub_real_dprintf): Always refresh after
25413 dprintf.
25414
25415 2010-08-29 BVK Chaitanya <bvk.groups@gmail.com>
25416
25417 * Makefile.util.def: Use ldadd instead of ldflags for libraries.
25418
25419 2010-08-28 Vladimir Serbinenko <phcoder@gmail.com>
25420
25421 * grub-core/normal/term.c (print_more): Fix a memory leak.
25422 (grub_puts_terminal): Revert to dumb puts if memory allocation fails.
25423 (grub_xputs_normal): Likewise.
25424
25425 2010-08-28 Vladimir Serbinenko <phcoder@gmail.com>
25426
25427 * grub-core/script/lexer.c (grub_script_lexer_init): Don't look before
25428 the begining of the string
25429
25430 2010-08-28 Vladimir Serbinenko <phcoder@gmail.com>
25431
25432 * grub-core/script/script.c (grub_script_parse): Free parsed on
25433 failure.
25434
25435 2010-08-28 Vladimir Serbinenko <phcoder@gmail.com>
25436
25437 * grub-core/normal/completion.c (grub_normal_do_completion): Free argv
25438 on failure.
25439
25440 2010-08-28 Vladimir Serbinenko <phcoder@gmail.com>
25441
25442 * grub-core/normal/cmdline.c (grub_cmdline_get): Free cl_terms on
25443 return.
25444
25445 2010-08-28 Vladimir Serbinenko <phcoder@gmail.com>
25446
25447 * grub-core/term/gfxterm.c (grub_gfxterm_term_fini): Free the text buffer.
25448 (scroll_up): Fix a memory leak.
25449
25450 2010-08-28 Vladimir Serbinenko <phcoder@gmail.com>
25451
25452 * grub-core/fs/nilfs2.c (grub_nilfs2_load_sb): Handle grub_disk_read
25453 errors.
25454
25455 2010-08-27 Vladimir Serbinenko <phcoder@gmail.com>
25456
25457 Handle USB pendrives exposed as floppies.
25458
25459 * grub-core/boot/i386/pc/boot.S: Check LBA even on what appears to be
25460 floppy.
25461 * grub-core/disk/i386/pc/biosdisk.c (grub_biosdisk_open): Likewise.
25462 Check for partitions on all devices.
25463
25464 2010-08-25 Vladimir Serbinenko <phcoder@gmail.com>
25465
25466 * grub-core/term/ieee1275/ofconsole.c (put): Correct prototype.
25467 (readkey): Likewise.
25468
25469 2010-08-25 BVK Chaitanya <bvk.groups@gmail.com>
25470
25471 Multiple variable names support to "export" command.
25472
25473 * normal/context.c (grub_cmd_export): "export" command supports
25474 multiple variable names.
25475
25476 2010-08-23 Samuel Thibault <samuel.thibault@ens-lyon.org>
25477
25478 * util/grub.d/30_os-prober.in: Fix conversion from grub-probe
25479 --target=drive output to Mach device name.
25480
25481 2010-08-23 BVK Chaitanya <bvk.groups@gmail.com>
25482
25483 New Automake based build system for GRUB.
25484
25485 * ABOUT-NLS: New file.
25486 * Makefile.am: New file. GRUB host utils' rules that doesn't fit
25487 in Makefile.util.def file.
25488 * Makefile.util.def: New file. Autogen build definitions file for
25489 GRUB host utils.
25490 * conf/Makefile.common: New file. Common variables for GRUB host
25491 utils and target modules.
25492 * conf/Makefile.extra-dist: New file. Extra files for make dist.
25493 * docs/Makefile.am: New file. Automake file for docs.
25494 * gentpl.py: New file. Python script to generate Autogen
25495 template.
25496 * grub-core/Makefile.am: New file. GRUB target modules' rules
25497 that doesn't fit in Makefile.core.def file.
25498 * grub-core/Makefile.core.def: New file. Autogen build
25499 definitions file for GRUB target modules.
25500 * grub-core/lib/setjmp.S: New file. Wrapper for target_cpu
25501 specific setjmp.S file.
25502 * po/Makefile.am: New file.
25503
25504 * .bzrignore: New ignores.
25505 * INSTALL: New requirements, without Ruby.
25506 * acinclude.m4: Use TARGET_IMG_BASE_LDOPT variable instead.
25507 * autogen.sh: Updated to invoke autogen as necessary.
25508 * configure.ac: Separate *FLAGS with HOST_ and TARGET_ prefixes,
25509 and defines for Automake conditionals.
25510 * geninit.sh: Refactoring.
25511
25512 * include/grub/dl.h: Allow build rules to define GRUB_MOD_* if
25513 necessary.
25514 * include/grub/emu/getroot.h (grub_make_system_path_relative_to_its_root):
25515 New prototype.
25516
25517 * include/grub/test.h: Fix functional test modules' naming.
25518 * grub-core/tests/example_functional_test.c: Fix test module name.
25519
25520 * util/misc.c: Hosted versions' of grub functions for libgrub.a
25521 * tests/lib/unit_test.c: Remove hosted versions of grub functions.
25522 * util/grub-editenv.c: Likewise.
25523 * util/grub-fstest.c: Likewise.
25524 * util/grub-mkdevicemap.c: Likewise.
25525 * util/grub-mkfont.c: Likewise.
25526 * util/grub-mkimage.c: Likewise.
25527 * util/grub-mkpasswd-pbkdf2.c: Likewise.
25528 * util/grub-probe.c: Likewise.
25529 * util/grub-script-check.c: Likewise.
25530 * util/i386/pc/grub-setup.c: Likewise.
25531 * util/sparc64/ieee1275/grub-setup.c: Likewise.
25532
25533 * tests/util/grub-shell.in: Fix override directory path.
25534 * util/grub-mkrescue.in: Replace @pkglib_DATA@ with files.
25535 * util/import_gcry.py: Create Makefile.gcry.def file instead.
25536
25537 * util/lvm.c: Update #includes.
25538 * util/raid.c: Likewise.
25539 * util/resolve.c: Likewise.
25540 * grub-core/bus/emu/pci.c: Likewise.
25541 * grub-core/lib/posix_wrap/stdlib.h: Likewise.
25542 * grub-core/lib/posix_wrap/string.h: Likewise.
25543 * grub-core/kern/emu/main.c: Likewise.
25544
25545 * grub-core/gensymlist.sh: New file. Script for generating kernel
25546 symbols file.
25547 * grub-core/genmoddep.awk: Support new kernel_syms.lst format.
25548
25549 * grub-core/gentrigtables.c: Fix unused variable warnings.
25550
25551 * Makefile.in: Removed.
25552 * conf/any-emu.rmk: Removed.
25553 * conf/common.rmk: Removed.
25554 * conf/i386-coreboot.rmk: Removed.
25555 * conf/i386-efi.rmk: Removed.
25556 * conf/i386-ieee1275.rmk: Removed.
25557 * conf/i386-multiboot.rmk: Removed.
25558 * conf/i386-pc.rmk: Removed.
25559 * conf/i386-qemu.rmk: Removed.
25560 * conf/i386.rmk: Removed.
25561 * conf/mips-yeeloong.rmk: Removed.
25562 * conf/mips.rmk: Removed.
25563 * conf/powerpc-ieee1275.rmk: Removed.
25564 * conf/sparc64-ieee1275.rmk: Removed.
25565 * conf/tests.rmk: Removed.
25566 * conf/x86-efi.rmk: Removed.
25567 * conf/x86_64-efi.rmk: Removed.
25568 * gendistlist.sh: Removed.
25569 * geninitheader.sh: Removed.
25570 * genkernsyms.sh.in: Removed.
25571 * genmk.rb: Removed.
25572 * gensymlist.sh.in: Removed.
25573 * mkinstalldirs: Removed.
25574 * boot: Moved ...
25575 * grub-core/boot: ... to here.
25576 * bus: Moved ...
25577 * grub-core/bus: ... to here.
25578 * commands: Moved ...
25579 * grub-core/commands: ... to here.
25580 * disk: Moved ...
25581 * grub-core/disk: ... to here.
25582 * efiemu: Moved ...
25583 * grub-core/efiemu: ... to here.
25584 * font: Moved ...
25585 * grub-core/font: ... to here.
25586 * fs: Moved ...
25587 * grub-core/fs: ... to here.
25588 * gencmdlist.sh: Moved ...
25589 * grub-core/gencmdlist.sh: ... to here.
25590 * genemuinit.sh: Moved ...
25591 * grub-core/genemuinit.sh: ... to here.
25592 * genemuinitheader.sh: Moved ...
25593 * grub-core/genemuinitheader.sh: ... to here.
25594 * genfslist.sh: Moved ...
25595 * grub-core/genfslist.sh: ... to here.
25596 * genhandlerlist.sh: Moved ...
25597 * grub-core/genhandlerlist.sh: ... to here.
25598 * genmoddep.awk: Moved ...
25599 * grub-core/genmoddep.awk: ... to here.
25600 * genmodsrc.sh: Moved ...
25601 * grub-core/genmodsrc.sh: ... to here.
25602 * genpartmaplist.sh: Moved ...
25603 * grub-core/genpartmaplist.sh: ... to here.
25604 * genparttoollist.sh: Moved ...
25605 * grub-core/genparttoollist.sh: ... to here.
25606 * genterminallist.sh: Moved ...
25607 * grub-core/genterminallist.sh: ... to here.
25608 * gentrigtables.c: Moved ...
25609 * grub-core/gentrigtables.c: ... to here.
25610 * genvideolist.sh: Moved ...
25611 * grub-core/genvideolist.sh: ... to here.
25612 * gettext: Moved ...
25613 * grub-core/gettext: ... to here.
25614 * gfxmenu: Moved ...
25615 * grub-core/gfxmenu: ... to here.
25616 * gnulib: Moved ...
25617 * grub-core/gnulib: ... to here.
25618 * hello: Moved ...
25619 * grub-core/hello: ... to here.
25620 * hook: Moved ...
25621 * grub-core/hook: ... to here.
25622 * io: Moved ...
25623 * grub-core/io: ... to here.
25624 * kern: Moved ...
25625 * grub-core/kern: ... to here.
25626 * lib: Moved ...
25627 * grub-core/lib: ... to here.
25628 * loader: Moved ...
25629 * grub-core/loader: ... to here.
25630 * mmap: Moved ...
25631 * grub-core/mmap: ... to here.
25632 * normal: Moved ...
25633 * grub-core/normal: ... to here.
25634 * partmap: Moved ...
25635 * grub-core/partmap: ... to here.
25636 * parttool: Moved ...
25637 * grub-core/parttool: ... to here.
25638 * script: Moved ...
25639 * grub-core/script: ... to here.
25640 * term: Moved ...
25641 * grub-core/term: ... to here
25642 * tests/example_functional_test.c: Moved ...
25643 * grub-core/tests/example_functional_test.c: ... to here.
25644 * tests/lib/functional_test.c: Moved ...
25645 * grub-core/tests/lib/functional_test.c: ... to here.
25646 * tests/lib/test.c: Moved ...
25647 * grub-core/tests/lib/test.c: ... to here.
25648 * video: Moved ...
25649 * grub-core/video: ... to here.
25650
25651 2010-08-23 BVK Chaitanya <bvk.groups@gmail.com>
25652
25653 Replace --enable-grub-emu-modules with grub-emu-lite.
25654
25655 * kern/emu/cache.S: New file. Wrapper for $target_cpu specific
25656 cache.S.
25657
25658 * include/grub/emu/misc.h (grub_emu_init): New prototype.
25659 * kern/emu/full.c: New file. For grub-emu specific initialization.
25660 * kern/emu/lite.c: New file. For grub-emu-lite initialization.
25661 * kern/emu/main.c: Call initialization function grub_emu_init.
25662
25663 * Makefile.in: Include grub-emu-lite in install.
25664 * commands/parttool.c: Use grub_no_autoload to differentiate
25665 between grub-emu and grub-emu-lite.
25666 * include/grub/misc.h: New variable grub_no_autoload.
25667
25668 * conf/any-emu.rmk: New rules for grub-emu-lite.
25669 * configure.ac: Remove --enable-grub-emu-modules.
25670 * genmk.rb: Cleanup unnecessary rules.
25671 * include/grub/dl.h: Remove GRUB_NO_MODULES macro.
25672
25673 * normal/main.c: Don't load list files on grub-emu-lite.
25674 * util/misc.c (grub_arch_sync_caches): Removed.
25675
25676 2010-08-23 Colin Watson <cjwatson@ubuntu.com>
25677
25678 * kern/mips/startup.S (grub_prefix): Update comment to refer to
25679 grub-mkimage rather than grub-mkelfimage.
25680 * kern/powerpc/ieee1275/startup.S (grub_prefix): Likewise.
25681
25682 2010-08-22 Vladimir Serbinenko <phcoder@gmail.com>
25683
25684 * term/at_keyboard.c (grub_at_keyboard_getkey_noblock): Don't discard
25685 a key after CapsLock or NumLock. It's just a qemu bug.
25686
25687 2010-08-21 Vladimir Serbinenko <phcoder@gmail.com>
25688
25689 * include/grub/usb.h (grub_usb_device): Add 'data' field back. It's
25690 needed by libusb wrapper.
25691
25692 2010-08-21 Samuel Thibault <samuel.thibault@ens-lyon.org>
25693
25694 * docs/grub.texi (GNU/Hurd): Document booting GNU/Hurd.
25695
25696 2010-08-21 Vladimir Serbinenko <phcoder@gmail.com>
25697
25698 * loader/multiboot.c (grub_cmd_module): Don't unzip module if
25699 --nounzip is passed.
25700
25701 2010-08-20 Vladimir Serbinenko <phcoder@gmail.com>
25702
25703 USB hotunplugging and USB serial support.
25704
25705 * bus/usb/ohci.c (grub_ohci_transfer): Fill *actual and respect timeout.
25706 * bus/usb/uhci.c (grub_free_queue): Compute *actual.
25707 (grub_uhci_transfer): Respect timeout and set *actual.
25708 * bus/usb/usb.c (grub_usb_device_initialize): Correctly skip fields of
25709 non-standard length.
25710 (grub_usb_device_attach): Autoload modules.
25711 (GRUB_MOD_INIT): Set grub_term_poll_usb.
25712 (GRUB_MOD_FINI): Unset grub_term_poll_usb.
25713 * bus/usb/usbhub.c (grub_usb_hub): Replace speed with devices. All
25714 users updated.
25715 (grub_usb_add_hub): Fill nports and children.
25716 (attach_root_port): Receive hub instead of controller.
25717 All users updated. Fill hub->devices.
25718 (grub_usb_root_hub): Allocate hub->devices.
25719 (detach_device): New function.
25720 (poll_nonroot_hub): Fill children and detach devices.
25721 * bus/usb/usbtrans.c (grub_usb_bulk_readwrite): Accept timeout and
25722 actual arguments. All users updated.
25723 (grub_usb_bulk_read_extended): New function.
25724 * bus/usb/serial/common.c: New file.
25725 * bus/usb/serial/ftdi.c: Likewise.
25726 * bus/usb/serial/pl2303.c: Likewise.
25727 * commands/terminal.c (handle_command): Support wildcard.
25728 * commands/usbtest.c: Output "Unknown" instead of empty string.
25729 * conf/any-emu.rmk (pkglib_MODULES): Add usbserial_common.mod.
25730 (usbserial_common_mod_SOURCES): New variable.
25731 (usbserial_common_mod_CFLAGS): Likewise.
25732 (usbserial_common_mod_LDFLAGS): Likewise.
25733 (pkglib_MODULES): Add usbserial_pl2303.mod.
25734 (usbserial_pl2303_mod_SOURCES): New variable.
25735 (usbserial_pl2303_mod_CFLAGS): Likewise.
25736 (usbserial_pl2303_mod_LDFLAGS): Likewise.
25737 (pkglib_MODULES): Add usbserial_ftdi.mod.
25738 (usbserial_ftdi_mod_SOURCES): New variable.
25739 (usbserial_ftdi_mod_CFLAGS): Likewise.
25740 (usbserial_ftdi_mod_LDFLAGS): Likewise.
25741 (pkglib_MODULES): Add serial.mod.
25742 (serial_mod_SOURCES): New variable.
25743 (serial_mod_CFLAGS): Likewise.
25744 (serial_mod_LDFLAGS): Likewise.
25745 * conf/i386-pc.rmk: Likewise.
25746 * conf/mips-yeeloong.rmk: Likewise.
25747 * conf/i386.rmk (serial_mod_SOURCES): Add term/ns8250.c.
25748 * conf/mips-yeeloong.rmk (kernel_img_SOURCES): Likewise.
25749 * disk/usbms.c (first_available_slot): New variable.
25750 (grub_usbms_attach): Don't reuse free slots due to potential cache
25751 problems.
25752 * include/grub/serial.h: Moved to ..
25753 * include/grub/ns8250.h: ...this.
25754 * include/grub/serial.h: New file.
25755 * include/grub/term.h (grub_term_poll_usb): New variable.
25756 * include/grub/terminfo.h (grub_terminfo_input_state): Pass term to
25757 readkey. All users updated.
25758 (grub_terminfo_output_state): Pass term to put.
25759 * include/grub/usb.h (GRUB_USB_REQTYPE): New enum.
25760 (grub_usb_controller_dev): Add timeout and actual arguments to
25761 transfer. All users updated.
25762 (grub_usb_interface): New field detach_data.
25763 (grub_usb_device): New fields children and nports.
25764 (grub_usb_ep_type_t): New type.
25765 (grub_usb_get_ep_type): New function.
25766 (grub_usb_bulk_read_extended): Likewise.
25767 * include/grub/usbdesc.h (grub_usb_desc): New type.
25768 * include/grub/usbserial.h: New file.
25769 * include/grub/usbtrans.h (grub_usb_transaction): New field preceding.
25770 * kern/term.c (grub_term_poll_usb): New variable.
25771 (grub_getkey): Call grub_term_poll_usb if set.
25772 (grub_checkkey): Likewise.
25773 (grub_getkeystatus): Likewise.
25774 * term/serial.c: Moved controller-specific parts to ...
25775 * term/ns8250.c: ... here.
25776 * term/serial.c: Mostly rewritten.
25777 * term/usb_keyboard.c: Reorganised to use GET_REPORT only on attaching
25778 according to spec.
25779
25780 2010-08-20 Robert Millan <rmh@gnu.org>
25781
25782 Make kFreeBSD code more generic to support ext2fs as root, ufs as
25783 a separate module and maybe other interesting combinations.
25784
25785 * util/grub.d/10_kfreebsd.in (load_kfreebsd_module): New function.
25786 (kfreebsd_entry): Use load_kfreebsd_module() to load modules.
25787 (kfreebsd_entry): Add generic filesystem module load routine.
25788 Map GRUB `ext2' to kFreeBSD `ext2fs'.
25789
25790 2010-08-20 Colin Watson <cjwatson@ubuntu.com>
25791
25792 * commands/i386/pc/sendkey.c (keysym_table): Rename "numlock" to
25793 "numcenter" (I misunderstood the purpose of this entry).
25794 * docs/grub.texi (sendkey): Likewise.
25795
25796 2010-08-20 Colin Watson <cjwatson@ubuntu.com>
25797
25798 * commands/i386/pc/sendkey.c (options): Remove "keep" from all
25799 status flag options; simply omitting the option is equivalent and
25800 simpler. Rename "wait" to "pause". Rename "sysreq" to "sysrq".
25801 (keysym_table): Rename "num5numlock" to "numlock".
25802 (grub_cmd_sendkey): Reinitialise `andmask' and `ormask', so that we
25803 can uniformly say that only the last of multiple `sendkey'
25804 invocations has any effect.
25805 * docs/grub.texi (sendkey): New section.
25806
25807 2010-08-19 Colin Watson <cjwatson@ubuntu.com>
25808
25809 * commands/i386/pc/sendkey.c (options): Fix three typos.
25810
25811 2010-08-19 Vladimir Serbinenko <phcoder@gmail.com>
25812
25813 Implement sendkey support.
25814
25815 * commands/i386/pc/sendkey.c: New file.
25816 * conf/i386-pc.rmk (pkglib_MODULES): Add sendkey.mod.
25817 (sendkey_mod_SOURCES): New variable.
25818 (sendkey_mod_CFLAGS): Likewise.
25819 (sendkey_mod_LDFLAGS): Likewise.
25820
25821 2010-08-18 Colin Watson <cjwatson@ubuntu.com>
25822
25823 * configure.ac: Move AM_INIT_AUTOMAKE after AC_CANONICAL_TARGET to
25824 fix warnings from Autoconf.
25825
25826 2010-08-18 Colin Watson <cjwatson@ubuntu.com>
25827
25828 * acinclude.m4 (grub_ASM_USCORE): Use a more accurate grep pattern,
25829 to avoid false positives with some assemblers that output things
25830 like "someprefix_func" as part of their output.
25831
25832 2010-08-15 Robert Millan <rmh@gnu.org>
25833
25834 * kern/emu/misc.c (grub_get_libzfs_handle): Handle libzfs_init()
25835 errors.
25836 * kern/emu/getroot.c (find_root_device_from_libzfs): Handle
25837 grub_get_libzfs_handle() errors.
25838
25839 2010-08-14 Robert Millan <rmh@gnu.org>
25840
25841 * kern/emu/misc.c (grub_find_zpool_from_dir): Abort function if
25842 filesystem is not ZFS.
25843
25844 2010-08-12 BVK Chaitanya <bvk.groups@gmail.com>
25845
25846 Fix for misspelled color names defaulting to black/black (bug
25847 reported by Doug Nazar)
25848
25849 * include/grub/normal.h (grub_parse_color_name_pair): Add return
25850 status to prototype.
25851 * normal/color.c (grub_parse_color_name_pair): Return failure
25852 status.
25853 (grub_env_write_color_normal): Ignore bad color names.
25854 (grub_env_write_color_highlight): Likewise.
25855 * normal/main.c (GRUB_MOD_INIT): Set default color names.
25856
25857 2010-08-12 BVK Chaitanya <bvk.groups@gmail.com>
25858
25859 "shift" command support to GRUB script.
25860
25861 * include/grub/script_sh.h (grub_script_shift): New prototype.
25862 * script/execute.c (grub_script_shift): New function.
25863 * script/main.c (grub_script_init): Register shift command.
25864 (grub_script_fini): Unregister shift command.
25865 * util/grub-script-check.c (grub_script_cmd_shift): New function.
25866
25867 * tests/grub_script_shift.in: New testcase.
25868 * conf/tests.rmk: Rules for new testcase.
25869
25870 2010-08-12 BVK Chaitanya <bvk.groups@gmail.com>
25871
25872 "continue" command support to GRUB script.
25873
25874 * script/execute.c (grub_script_execute_cmdwhile): Continue support.
25875 (grub_script_break): Continue support.
25876 * script/main.c (grub_script_init): Register continue command.
25877 (grub_script_fini): Unregister continue command.
25878
25879 * tests/grub_script_continue.in: New testcase.
25880 * conf/tests.rmk: Rules for new testcase.
25881
25882 2010-08-12 BVK Chaitanya <bvk@dbook>
25883
25884 "break" command support to GRUB script.
25885
25886 * conf/common.rmk: Rule updates to grub-script-check.
25887 * include/grub/misc.h (grub_min): New function.
25888 * include/grub/script_sh.h (grub_script_init): New prototype.
25889 (grub_script_fini): New prototype.
25890 (grub_script_break): New prototype.
25891 * script/main.c (grub_script_init): New function.
25892 (grub_script_fini): New function.
25893 * script/execute.c (grub_script_break): New function.
25894 * normal/main.c: Calls to grub_script_{init,fini}.
25895 * util/grub-script-check.c (grub_script_break): New function.
25896
25897 * tests/grub_script_break.in: New testcase.
25898 * conf/tests.rmk: Rules for new test case.
25899
25900 2010-08-12 BVK Chaitanya <bvk.groups@gmail.com>
25901
25902 Function parameters support to GRUB script.
25903
25904 * script/yylex.l (VARIABLE): Regular expression update.
25905 * script/function.c (grub_script_function_call): Moved ...
25906 * script/execute.c (grub_script_function_call): ... to here.
25907 (grub_script_execute_arglist_to_argv): Removed.
25908 (grub_script_arglist_to_argv): New function.
25909 * script/argv.c: New file.
25910 (grub_script_argv_free): New function.
25911 (grub_script_argv_next): Likewise.
25912 (grub_script_argv_append): Likewise.
25913 (grub_script_argv_split_append): Likewise.
25914 * include/grub/script_sh.h (grub_script_argv): New struct.
25915 (grub_script_argv_free): New function.
25916 (grub_script_argv_next): Likewise.
25917 (grub_script_argv_append): Likewise.
25918 (grub_script_argv_split_append): Likewise.
25919
25920 * conf/common.rmk (normal.mod): New source script/argv.c.
25921
25922 * tests/grub_script_echo1.in: More tests.
25923 * tests/grub_script_vars1.in: Likewise.
25924 * tests/grub_script_functions.in: New test case.
25925 * conf/tests.rmk: Rules for new testcase.
25926
25927 2010-08-12 BVK Chaitanya <bvk.groups@gmail.com>
25928
25929 Remove grub_script_cmdblock struct.
25930
25931 * include/grub/script_sh.h: Remove grub_script_cmdblock.
25932 * script/parser.y: Likewise.
25933 * script/execute.c: Rename cmdblock suffix to cmdlist.
25934 * script/script.c: Likewise.
25935 * util/grub-script-check.c: Likewise.
25936
25937 2010-08-11 Yves Blusseau <blusseau@zetam.org>
25938
25939 * .bzrignore: add grub-macho2img
25940
25941 2010-08-11 Vladimir Serbinenko <phcoder@gmail.com>
25942
25943 * kern/i386/qemu/init.c (grub_qemu_init_cirrus): Fix compilation error.
25944
25945 2010-08-11 Vladimir Serbinenko <phcoder@gmail.com>
25946
25947 Remove the dump of sm712 initialisation sequence.
25948
25949 * include/grub/pci.h (GRUB_PCI_CLASS_SUBCLASS_VGA): New const.
25950 * include/grub/vga.h (GRUB_VGA_IO_ARX_READ): New register.
25951 (GRUB_VGA_IO_MISC_WRITE): Likewise.
25952 (GRUB_VGA_CR_*): Added many registers.
25953 (GRUB_VGA_SR_*): Likewise.
25954 (GRUB_VGA_GR_*): Likewise.
25955 (grub_vga_write_arx): New function.
25956 (grub_video_hw_config): New struct.
25957 (grub_vga_set_geometry): New function.
25958 * kern/i386/qemu/init.c (load_palette): Use grub_vga_write_arx and
25959 GRUB_PCI_CLASS_SUBCLASS_VGA.
25960 * video/cirrus.c (grub_video_cirrus_setup): Use grub_vga_set_geometry.
25961 * video/sm712.c (grub_sm712_write_reg): New function
25962 (grub_sm712_read_reg): Likewise.
25963 (grub_sm712_sr_write): Likewise.
25964 (grub_sm712_gr_write): Likewise.
25965 (grub_sm712_cr_write): Likewise.
25966 (grub_sm712_write_arx): Likewise.
25967 (grub_sm712_cr_shadow_write): Likewise.
25968 (grub_sm712_write_dda_lookup): Likewise.
25969 (grub_video_sm712_setup): Initialise the video rather then
25970 blindly replay the dump.
25971 (main) [TEST]: Add a routine to be able to compile as standalone for
25972 tests.
25973 * video/sm712_init.c (sm712_init): Removed.
25974 (sm712_sr_seq1): New array.
25975 (sm712_sr_seq2): Likewise.
25976
25977 2010-08-10 Vladimir Serbinenko <phcoder@gmail.com>
25978
25979 * include/grub/vga.h: Add missing grub/pci.h include.
25980
25981 2010-08-10 Yves Blusseau <blusseau@zetam.org>
25982
25983 * util/grub-macho2img.c (main): fix typo
25984
25985 2010-08-10 Vladimir Serbinenko <phcoder@gmail.com>
25986
25987 * include/grub/vga.h (grub_vga_gr_write): Add GRUB_MACHINE_PCI_IO_BASE.
25988 (grub_vga_gr_read): Likewise.
25989 (grub_vga_cr_write): Likewise.
25990 (grub_vga_cr_read): Likewise.
25991 (grub_vga_sr_write): Likewise.
25992 (grub_vga_sr_read): Likewise.
25993 (grub_vga_palette_read): Likewise.
25994 (grub_vga_palette_write): Likewise.
25995 * video/sm712.c (GRUB_SM712_REG_BASE): New definition.
25996 (grub_sm712_sr_read): New function.
25997 (grub_video_sm712_setup): Use grub_vga_sr_write and grub_sm712_sr_read.
25998 * video/sm712_init.c (sm712_init): Substract GRUB_MACHINE_PCI_IO_BASE.
25999
26000 2010-08-09 Robert Millan <rmh@gnu.org>
26001
26002 * kern/emu/misc.c (grub_make_system_path_relative_to_its_root): Filter
26003 out unused variables on non-ZFS build.
26004
26005 2010-08-08 Robert Millan <rmh@gnu.org>
26006
26007 Fix path generation for sub-filesystems in ZFS.
26008
26009 * kern/emu/misc.c (grub_make_system_path_relative_to_its_root): Add
26010 missing slash.
26011
26012 2010-08-08 Robert Millan <rmh@gnu.org>
26013
26014 * util/grub-fstest.c (read_file, cmd_cmp): Improve error message.
26015
26016 2010-08-08 Robert Millan <rmh@gnu.org>
26017
26018 * util/grub.d/10_kfreebsd.in: When files required for ZFS do not
26019 exist, issue a proper error message (rely on `ls' for translated
26020 strings).
26021
26022 2010-08-08 Robert Millan <rmh@gnu.org>
26023
26024 Fix grub-probe invocation.
26025
26026 * util/grub.d/10_kfreebsd.in: s/label/fs_label/g.
26027
26028 2010-08-04 Robert Millan <rmh@gnu.org>
26029
26030 * configure.ac: Remove checks for getfsstat() and getmntany().
26031 Add checks for `<sys/param.h>' and `<sys/mount.h>'.
26032 * kern/emu/misc.c [HAVE_GETMNTANY]: Remove `<sys/mnttab.h>'.
26033 [HAVE_SYS_PARAM_H]: Include `<sys/param.h>'.
26034 [HAVE_SYS_MOUNT_H]: Include `<sys/mount.h>'.
26035 [HAVE_LIBZFS && HAVE_LIBNVPAIR] (find_mount_point_from_dir): Remove
26036 function.
26037 (grub_find_zpool_from_dir): Use statfs() instead of indirect matching
26038 via find_mount_point_from_dir() and getfsstat() / getmntany().
26039
26040 2010-08-04 Robert Millan <rmh@gnu.org>
26041
26042 * include/grub/emu/misc.h (grub_find_mount_point_from_dir)
26043 (grub_find_zpool_from_mount_point): Merge into ...
26044 (grub_find_zpool_from_dir): ... this.
26045 * kern/emu/misc.c: Likewise.
26046
26047 * kern/emu/misc.c
26048 (grub_make_system_path_relative_to_its_root): Replace
26049 grub_find_mount_point_from_dir() / grub_find_zpool_from_mount_point()
26050 with grub_find_zpool_from_dir().
26051 * kern/emu/getroot.c (find_root_device_from_libzfs): Likewise.
26052
26053 2010-08-04 Robert Millan <rmh@gnu.org>
26054
26055 Support OpenSolaris in ZFS device resolution.
26056
26057 * configure.ac: Check for getmntany().
26058 * kern/emu/misc.c [HAVE_GETMNTANY]: Include `<sys/mnttab.h>'.
26059 [HAVE_GETMNTANY] (grub_find_zpool_from_mount_point): Add OpenSolaris
26060 support.
26061
26062 2010-08-03 Robert Millan <rmh@gnu.org>
26063
26064 Fix grub-emu build.
26065
26066 * include/grub/util/misc.h: Move `<grub/util/libzfs.h>' to ...
26067 * include/grub/emu/misc.h: ... here.
26068
26069 * include/grub/util/misc.h (grub_get_libzfs_handle): Move function ...
26070 * include/grub/emu/misc.h (grub_get_libzfs_handle): ... here.
26071
26072 * util/misc.c: Remove `<grub/util/libzfs.h>'.
26073 [HAVE_LIBZFS] (libzfs_handle, fini_libzfs)
26074 (grub_get_libzfs_handle): Move to ...
26075 * kern/emu/misc.c [HAVE_LIBZFS] (__libzfs_handle, fini_libzfs)
26076 (grub_get_libzfs_handle): ... here.
26077
26078 2010-08-03 BVK Chaitanya <bvk.groups@gmail.com>
26079
26080 * script/execute.c (grub_script_execute_cmdline): Check for NULL
26081 as command name case.
26082
26083 2010-08-02 Colin Watson <cjwatson@ubuntu.com>
26084
26085 * disk/raid.c (insert_array): Select unique numbers for named arrays
26086 as well, for use as keys in the disk cache.
26087
26088 2010-08-01 Robert Millan <rmh@gnu.org>
26089
26090 * util/grub.d/10_kfreebsd.in: Initialize ${kfreebsd_device} as the
26091 kFreeBSD device name, except on ZFS where the filesystem label is
26092 used.
26093 (kfreebsd_entry): On ZFS root, load `opensolaris.ko', `zfs.ko' and
26094 `/boot/zfs/zpool.cache'.
26095 Set mountfrom kernel variable using ${kfreebsd_device}.
26096
26097 2010-08-01 Robert Millan <rmh@gnu.org>
26098
26099 Make it even harder to use uninitialized `libzfs_handle' (and
26100 make the interface a bit simpler).
26101
26102 * include/grub/util/misc.h (grub_util_init_libzfs)
26103 (libzfs_handle): Remove.
26104 (grub_get_libzfs_handle): New prototype.
26105
26106 * util/misc.c [HAVE_LIBZFS] (libzfs_handle): Add `static'
26107 attribute.
26108 (grub_util_init_libzfs): Remove.
26109 (grub_get_libzfs_handle): New function.
26110
26111 * kern/emu/getroot.c (find_root_device_from_libzfs): Use
26112 grub_get_libzfs_handle() to obtain a libzfs handle instead of
26113 accessing `libzfs_handle' directly.
26114
26115 2010-08-01 Robert Millan <rmh@gnu.org>
26116
26117 * include/grub/emu/misc.h (grub_find_mount_point_from_dir)
26118 (grub_find_zpool_from_mount_point): New function prototypes.
26119
26120 * kern/emu/getroot.c [HAVE_GETFSSTAT]: Move `<sys/mount.h>' to ...
26121 * kern/emu/misc.c [HAVE_GETFSSTAT]: ... here.
26122
26123 * kern/emu/getroot.c (find_mount_point_from_dir): Move to ...
26124 * kern/emu/misc.c (grub_find_mount_point_from_dir): ... this. Remove
26125 `static' attribute.
26126
26127 * kern/emu/getroot.c (find_root_device_from_libzfs): Split code for
26128 finding zpool from mount point into ...
26129 * kern/emu/misc.c (grub_find_zpool_from_mount_point): ... this.
26130
26131 * kern/emu/misc.c (grub_make_system_path_relative_to_its_root): When
26132 requested path is part of a ZFS pool, use
26133 grub_find_zpool_from_mount_point() to detect its filesystem name,
26134 and generate a path with `/fsname@path' syntax.
26135
26136 2010-08-01 Colin Watson <cjwatson@ubuntu.com>
26137
26138 * include/grub/util/libzfs.h (libzfs_init): Set argument list to
26139 (void) rather than () so that this is a proper prototype.
26140
26141 2010-08-01 Vladimir Serbinenko <phcoder@gmail.com>
26142
26143 * lib/arg.c (grub_arg_show_help): Add the necessary spacing.
26144
26145 2010-08-01 Vladimir Serbinenko <phcoder@gmail.com>
26146
26147 * kern/emu/getroot.c (find_mount_point_from_dir): Compile only if
26148 [HAVE_LIBZFS && HAVE_LIBNVPAIR]
26149
26150 2010-08-01 Colin Watson <cjwatson@ubuntu.com>
26151
26152 * util/grub-mkrescue.in: Remove ${efi_dir} after building efi.img.
26153
26154 2010-08-01 Colin Watson <cjwatson@ubuntu.com>
26155
26156 * script/yylex.l (NAME): Remove [:digit:], redundant with [:alnum:].
26157
26158 2010-08-01 Colin Watson <cjwatson@ubuntu.com>
26159
26160 * docs/grub.texi (Simple configuration): Document GRUB_CMDLINE_XEN
26161 and GRUB_CMDLINE_XEN_DEFAULT. Recommend setting
26162 GRUB_GFXPAYLOAD_LINUX=text rather than unsetting it in order to
26163 disable gfxpayload.
26164 (Shell-like scripting): Add real content.
26165 (Serial terminal): Suggest `terminal_input serial; terminal_output
26166 serial' rather than putting the two commands on separate lines,
26167 since console input will be inoperative after the first command.
26168 (menuentry): Document --class, --users, and --hotkey options.
26169 (terminfo): Describe what `visually-ordered UTF-8' means (thanks,
26170 Vladimir Serbinenko).
26171
26172 2010-08-01 Vladimir Serbinenko <phcoder@gmail.com>
26173 2010-08-01 Colin Watson <cjwatson@ubuntu.com>
26174
26175 * kern/misc.c (grub_memset): Optimise to reduce cache stalls.
26176
26177 2010-08-01 Robert Millan <rmh@gnu.org>
26178
26179 * include/grub/emu/misc.h (grub_find_mount_point_from_dir)
26180 (grub_find_zpool_from_mount_point): New function prototypes.
26181
26182 * kern/emu/getroot.c [HAVE_GETFSSTAT]: Move `<sys/mount.h>' to ...
26183 * kern/emu/misc.c [HAVE_GETFSSTAT]: ... here.
26184
26185 * kern/emu/getroot.c (find_mount_point_from_dir): Move to ...
26186 * kern/emu/misc.c (grub_find_mount_point_from_dir): ... this. Remove
26187 `static' attribute.
26188
26189 * kern/emu/getroot.c (find_root_device_from_libzfs): Split code for
26190 finding zpool from mount point into ...
26191 * kern/emu/misc.c (grub_find_zpool_from_mount_point): ... this.
26192
26193 * kern/emu/misc.c (grub_make_system_path_relative_to_its_root): When
26194 requested path is part of a ZFS pool, use
26195 grub_find_zpool_from_mount_point() to detect its filesystem name,
26196 and generate a path with `/fsname@path' syntax.
26197
26198 2010-08-01 Robert Millan <rmh@gnu.org>
26199
26200 Prevent accidental use of uninitialized libzfs_handle.
26201
26202 * util/grub-probe.c (main): Move grub_util_init_libzfs() call to ...
26203 * kern/emu/getroot.c (find_root_device_from_libzfs): ... here.
26204 * util/misc.c (grub_util_init_libzfs): Make this function idempotent.
26205
26206 2010-08-01 Colin Watson <cjwatson@ubuntu.com>
26207
26208 * util/grub.d/20_linux_xen.in: Don't use UUID for LVM root (matching
26209 util/grub.d/10_linux.in). Fixes Debian bug #591093.
26210
26211 2010-08-01 Robert Millan <rmh@gnu.org>
26212
26213 * kern/emu/getroot.c: Include `<grub/util/misc.h>'.
26214
26215 2010-07-31 Robert Millan <rmh@gnu.org>
26216
26217 * util/grub.d/10_kfreebsd.in: Make module handling more generic.
26218
26219 2010-07-31 Robert Millan <rmh@gnu.org>
26220
26221 * kern/emu/misc.c: Add missing license header.
26222
26223 2010-07-31 Robert Millan <rmh@gnu.org>
26224
26225 * configure.ac: Check for `libzfs.h' and `libnvpair.h'.
26226
26227 * include/grub/util/libnvpair.h: Include `<config.h>'.
26228 [HAVE_LIBNVPAIR_H]: Include `<libnvpair.h>' instead of
26229 declaring libnvpair prototypes ourselves.
26230 * include/grub/util/libzfs.h: Include `<config.h>'.
26231 [HAVE_LIBZFS_H]: Include `<libzfs.h>' instead of
26232 declaring libzfs prototypes ourselves.
26233
26234 (libzfs_handle): Moved to ...
26235 * include/grub/util/misc.h (libzfs_handle): ... here.
26236 Include `<grub/util/libzfs.h>'.
26237
26238 2010-07-30 Robert Millan <rmh@gnu.org>
26239
26240 * include/grub/emu/misc.h: Add missing license header.
26241
26242 2010-07-30 Robert Millan <rmh@gnu.org>
26243
26244 Enable `grub-probe -t device' resolution on ZFS.
26245
26246 * configure.ac: Check for getfsstat(), libzfs and libnvpair.
26247 * include/grub/util/libnvpair.h: New file.
26248 * include/grub/util/libzfs.h: New file.
26249
26250 * kern/emu/getroot.c: Include `<assert.h>' and `<error.h>'.
26251 [HAVE_LIBZFS && HAVE_LIBNVPAIR]: Include `<grub/util/libzfs.h>' and
26252 `<grub/util/libnvpair.h>'.
26253 [HAVE_GETFSSTAT]: Include `<sys/mount.h>'.
26254
26255 (find_mount_point_from_dir): New static function.
26256 [HAVE_LIBZFS && HAVE_LIBNVPAIR] (find_root_device_from_libzfs): New
26257 function.
26258 [HAVE_LIBZFS && HAVE_LIBNVPAIR] (grub_guess_root_device): Use
26259 find_root_device_from_libzfs() before ressorting to find_root_device().
26260
26261 * include/grub/util/misc.h (grub_util_init_libzfs): New function
26262 prototype.
26263 * util/misc.c: Include `<grub/util/libzfs.h>'.
26264 (grub_util_init_libzfs): New function.
26265 [HAVE_LIBZFS] (libzfs_handle): New global variable.
26266 [HAVE_LIBZFS] (fini_libzfs): New static function.
26267 (grub_util_init_libzfs): New function.
26268 * util/grub-probe.c (main): Call grub_util_init_libzfs().
26269
26270 2010-07-30 Robert Millan <rmh@gnu.org>
26271
26272 * include/grub/emu/misc.h (grub_make_system_path_relative_to_its_root)
26273 (xmalloc, xrealloc, xstrdup, xasprintf): Add
26274 `warn_unused_result' attribute.
26275 * include/grub/misc.h (grub_strdup, grub_strndup, grub_strlen)
26276 (grub_xasprintf, grub_xvasprintf): Likewise.
26277 * include/grub/emu/misc.h (xasprintf): Remove duplicate prototype.
26278
26279 2010-07-29 Robert Millan <rmh@gnu.org>
26280
26281 * util/grub-probe.c (PRINT_FS_LABEL): New enum value.
26282 (probe): Handle `PRINT_FS_LABEL'.
26283 (main): Handle `-t fs_label'.
26284
26285 2010-07-29 Robert Millan <rmh@gnu.org>
26286
26287 * configure.ac: Remove grub-mkisofs checks.
26288
26289 2010-07-28 Vladimir Serbinenko <phcoder@gmail.com>
26290
26291 * util/ieee1275/grub-install.in: Don't use empty grub_device.
26292 Reported by: Lennart Sorensen.
26293
26294 2010-07-20 Vladimir Serbinenko <phcoder@gmail.com>
26295
26296 * util/grub.d/00_header.in: Remove compatibility with terminal.mod
26297 prior to terminal_input/terminal_output separation. It's been over 1.5
26298 years and those versions weren't widely deployed.
26299
26300 2010-07-22 Colin Watson <cjwatson@ubuntu.com>
26301
26302 * disk/raid.c (insert_array): Don't count named arrays when looking
26303 for unused array numbers.
26304 Reported and tested by: Michael Guntsche.
26305
26306 2010-07-20 Colin Watson <cjwatson@ubuntu.com>
26307
26308 * bus/usb/emu/usb.c (grub_usb_poll_devices): Add a dummy
26309 implementation of this so that grub-emu links again, with a note
26310 that this should support hotplugging in the future.
26311
26312 2010-07-20 Colin Watson <cjwatson@ubuntu.com>
26313
26314 * kern/emu/getroot.c (grub_util_get_grub_dev): Use xasprintf.
26315
26316 2010-07-20 Colin Watson <cjwatson@ubuntu.com>
26317
26318 * disk/loopback.c (grub_cmd_loopback): Don't leak a grub_file_t
26319 handle on failure.
26320 (grub_loopback_close): Remove empty function.
26321 (grub_loopback_dev): Remove close method.
26322
26323 2010-07-20 Colin Watson <cjwatson@ubuntu.com>
26324
26325 Disable EFI cursor when the EFI console becomes inactive.
26326
26327 * term/efi/console.c (grub_efi_console_init): New function.
26328 (grub_efi_console_fini): New function.
26329 (grub_console_term_output): Register init and fini methods.
26330
26331 2010-07-20 Vladimir Serbinenko <phcoder@gmail.com>
26332
26333 * tests/util/grub-shell-tester.in: Remove bashism and declare as
26334 sh script.
26335
26336 2010-07-20 Vladimir Serbinenko <phcoder@gmail.com>
26337
26338 * disk/loopback.c (grub_loopback): Replace filename with file.
26339 (delete_loopback): Handle new semantics.
26340 (grub_cmd_loopback): Likewise.
26341 (grub_loopback_iterate): Likewise.
26342 (grub_loopback_close): Likewise.
26343
26344 2010-07-20 Vladimir Serbinenko <phcoder@gmail.com>
26345
26346 * util/i386/efi/grub-install.in: Revert to platform-specific behaviour
26347 with -p "".
26348 Reported by: Tito Keitel.
26349
26350 2010-07-20 Vladimir Serbinenko <phcoder@gmail.com>
26351
26352 * docs/grub.texi (Naming convention): Document new naming convention.
26353
26354 2010-07-20 Vadim Solomin <vadic052@gmail.com>
26355 2010-07-20 Colin Watson <cjwatson@ubuntu.com>
26356
26357 Generate device.map in something closer to the old ordering.
26358
26359 * util/deviceiter.c (struct device): New declaration.
26360 (compare_file_names): Rename to ...
26361 (compare_devices): ... this. Sort by kernel name in preference to
26362 the stable by-id name, but keep the latter as a fallback comparison.
26363 Update header comment.
26364 (grub_util_iterate_devices) [__linux__]: Construct and sort an array
26365 of `struct device' rather than of plain file names.
26366
26367 2010-07-20 Thomas Frauendorfer <Thomas.Frauendorfer@googlemail.com>
26368
26369 * lib/i386/relocator_asm.S [! __x86_64__]: Don't try to disable amd64
26370 on i386.
26371
26372 2010-07-20 Vladimir Serbinenko <phcoder@gmail.com>
26373
26374 * commands/acpi.c (setup_common_tables): Use sizeof instead of
26375 hardcoding size.
26376 (setv1table): Likewise.
26377
26378 2010-07-20 Colin Watson <cjwatson@ubuntu.com>
26379
26380 * disk/raid.c (insert_array): Use md/%s to name mdadm 1.x devices,
26381 removing the homehost if present.
26382 * kern/emu/getroot.c (get_mdadm_name) [__linux__]: New function.
26383 (grub_util_get_grub_dev): Use md/%s to name mdadm 1.x devices,
26384 removing the homehost if present.
26385 (grub_util_get_grub_dev) [__linux__]: Get the array name from mdadm
26386 if possible.
26387 * util/i386/pc/grub-setup.c (main): Handle md/* devices.
26388
26389 * disk/dmraid_nvidia.c (grub_dmraid_nv_detect): Add start_sector
26390 parameter. Set its pointer target to 0.
26391 * disk/mdraid_linux.c (grub_mdraid_detect): Add start_sector
26392 parameter. Set its pointer target to 0 for 0.9 metadata, or to the
26393 `data_offset' value from the superblock for 1.x metadata.
26394 * disk/raid.c (grub_raid_read): Offset reads by the start sector of
26395 data on the device.
26396 (insert_array): Record the start sector of data on the device.
26397 (grub_raid_register): Pass start_sector parameters to
26398 grub_raid_list->detect and insert_array.
26399 * include/grub/raid.h (struct grub_raid_array): Add start_sector
26400 member.
26401 (struct grub_raid): Add start_sector parameter to `detect'.
26402
26403 * disk/mdraid_linux.c (struct grub_raid_super_1x): Remove
26404 __attribute__ ((packed)), leaving a comment.
26405 (grub_mdraid_detect): Split out 0.9 and 1.x detection to ...
26406 (grub_mdraid_detect_09): ... here and ...
26407 (grub_mdraid_detect_1x): ... here.
26408
26409 2010-07-20 Peter Henn <peter.henn@web.de>
26410
26411 * disk/mdraid_linux.c (grub_mdraid_detect): Fix calculation of 1.x
26412 chunk size and disk size, which are already given as sector counts
26413 as distinct from the 0.90 units. Fetch the correct device number
26414 from the role table instead of using the table index.
26415
26416 2010-07-20 Felix Zielcke <fzielcke@z-51.de>
26417
26418 * disk/dmraid_nvidia.c (grub_dmraid_nv_detect): Set array->name to NULL.
26419 * disk/mdraid_linux.c (grub_raid_super_1x): New structure.
26420 (WriteMostly1): New macro.
26421 Set array->name to NULL for metadata format 0.90. Add support for
26422 metadata 1.x. Fix some comments.
26423 * disk/raid.c (): Add support for name based RAID arrays. Fix a
26424 few comments.
26425 * util/getroot.c (grub_util_get_grub_dev): Add support for
26426 /dev/md/name style devices.
26427
26428 2010-07-20 Colin Watson <cjwatson@ubuntu.com>
26429
26430 * .bzrignore: Ignore 20_linux_xen.
26431
26432 2010-07-17 Colin Watson <cjwatson@ubuntu.com>
26433
26434 * util/import_unicode.py: Remove unnecessary imports.
26435
26436 2010-07-17 Aleš Nesrsta <starous@volny.cz>
26437
26438 Hotplugging and USB hub support.
26439
26440 * bus/usb/ohci.c (grub_ohci_td): Add convenience fields.
26441 (grub_ohci): Likewise.
26442 (GRUB_OHCI_REG_CONTROL_BULK_ENABLE): New definition.
26443 (GRUB_OHCI_REG_CONTROL_CONTROL_ENABLE): Likewise.
26444 (GRUB_OHCI_RESET_CONNECT_CHANGE): Likewise.
26445 (GRUB_OHCI_CTRL_EDS): Likewise.
26446 (GRUB_OHCI_BULK_EDS): Likewise.
26447 (GRUB_OHCI_TDS): Likewise.
26448 (GRUB_OHCI_ED_ADDR_MASK): Likewise.
26449 (grub_ohci_ed_phys2virt): New function.
26450 (grub_ohci_virt_to_phys): Likewise.
26451 (grub_ohci_td_phys2virt): Likewise.
26452 (grub_ohci_td_virt2phys): Likewise.
26453 (grub_ohci_pci_iter): Allocate memory and don't wait for stable
26454 attachment.
26455 (grub_ohci_find_ed): New function.
26456 (grub_ohci_alloc_td): Likewise.
26457 (grub_ohci_free_td): Likewise.
26458 (grub_ohci_free_tds): Likewise.
26459 (grub_ohci_transfer): Use previously allocated memory.
26460 (grub_ohci_portstatus): Reset status changed bit.
26461 (grub_ohci_detect_dev): Supply status changed.
26462 (grub_ohci_fini_hw): Free memory.
26463 (grub_ohci_restore_hw): Reallocate memory.
26464 * bus/usb/uhci.c (grub_uhci_portstatus): Don't reset on disable.
26465 Reset status change.
26466 (grub_uhci_detect_dev): Supply status_change.
26467 * bus/usb/usb.c (attach_hooks): New var.
26468 (grub_usb_device_attach): New function.
26469 (grub_usb_register_attach_hook_class): Likewise.
26470 (grub_usb_unregister_attach_hook_class): Likewise.
26471 * bus/usb/usbhub.c (grub_usb_hub_add_dev): Handle errors correctly.
26472 (grub_usb_add_hub): Reset connection changed bit.
26473 (attach_root_port): New function.
26474 (grub_usb_root_hub): Likewise.
26475 (poll_nonroot_hub): Likewise.
26476 (grub_usb_poll_devices): Likewise.
26477 * commands/usbtest.c (grub_cmd_usbtest): Poll devices before listing.
26478 * disk/usbms.c (grub_usbms_open): Use device hooks.
26479 (grub_usbms_iterate) :Poll devices.
26480 (grub_usbms_finddevs): Split into ...
26481 (grub_usbms_attach): ... this ...
26482 (grub_usbms_attach): ... and this.
26483 * include/grub/usb.h (grub_usb_controller_dev): Supply status_changed
26484 in detect_dev.
26485 (grub_usb_interface): New fields attached and detach_hook.
26486 (grub_usb_attach_hook_class): New type.
26487 (grub_usb_attach_desc): New struct.
26488 (grub_usb_register_attach_hook_class): New function.
26489 (grub_usb_unregister_attach_hook_class): Likewise.
26490 (grub_usb_poll_devices): Likewise.
26491 (grub_usb_device_attach): Likewise.
26492 * include/grub/usbtrans.h (GRUB_USB_HUB_FEATURE_C_CONNECTED): New const.
26493 (GRUB_USB_HUB_STATUS_C_CONNECTED): Likewise.
26494
26495 2010-07-17 Vladimir Serbinenko <phcoder@gmail.com>
26496
26497 * include/grub/bsdlabel.h (GRUB_PC_PARTITION_BSD_LABEL_WHOLE_DISK_PARTITION): New definition.
26498 * partmap/bsdlabel.c (bsdlabel_partition_map_iterate): Use FreeBSD
26499 delta determination style. Works with most NetBSD partitions too.
26500
26501 2010-07-17 Vladimir Serbinenko <phcoder@gmail.com>
26502
26503 * kern/partition.c [GRUB_UTIL]: Add missing util/misc.h inclusion.
26504 * partmap/bsdlabel.c [GRUB_UTIL]: Likewise.
26505
26506 2010-07-17 Vladimir Serbinenko <phcoder@gmail.com>
26507
26508 * disk/scsi.c (grub_scsi_open): Fix incorrect pointer dereference.
26509
26510 2010-07-14 Anton Blanchard <anton@samba.org>
26511
26512 * loader/powerpc/ieee1275/linux.c (grub_cmd_linux): Do not reject
26513 ET_DYN files.
26514
26515 2010-07-14 Grégoire Sutre <gregoire.sutre@gmail.com>
26516
26517 * Makefile.in: Use the substituted @USE_NLS@ instead of ENABLE_NLS.
26518
26519 2010-07-14 Grégoire Sutre <gregoire.sutre@gmail.com>
26520
26521 * kern/partition.c (grub_partition_check_containment): New function to
26522 check that a partition is physically contained in a parent. Since
26523 offsets are relative (and non-negative), this reduces to checking that
26524 the partition ends before its parent.
26525 (grub_partition_map_probe): Discard out-of-range sub-partitions.
26526 (grub_partition_iterate): Likewise.
26527 * include/grub/partition.h (grub_partition_map): Slightly more detailed
26528 comments.
26529 * partmap/bsdlabel.c (bsdlabel_partition_map_iterate): Discard
26530 partitions that start before their parent, and add debug printfs.
26531
26532 2010-07-13 Colin Watson <cjwatson@ubuntu.com>
26533
26534 * Makefile.in (.SUFFIX): Spell correctly, as ...
26535 (.SUFFIXES): ... this. Fixes bug where `make foo' (where foo is a
26536 bare module name without `.mod', e.g. `test') tried to invoke a
26537 Modula-2 compiler.
26538
26539 2010-07-13 Colin Watson <cjwatson@ubuntu.com>
26540
26541 * README: Point to the Info manual.
26542
26543 2010-07-13 Jiro SEKIBA <jir@unicus.jp>
26544
26545 * fs/nilfs2.c: fix macro NILFS_2ND_SUPER_BLOCK to calculate
26546 2nd superblock position from partition size.
26547
26548 2010-07-10 Colin Watson <cjwatson@ubuntu.com>
26549
26550 * Makefile.in (MAINTAINER_CLEANFILES): Remove
26551 unicode/UnicodeData.txt, unicode/BidiMirroring.txt, and
26552 unicode/ArabicShaping.txt again; these are inputs to autogen.sh, not
26553 outputs.
26554
26555 2010-07-10 Vladimir Serbinenko <phcoder@gmail.com>
26556
26557 Restructure SCSI .id handling.
26558 Reported and tested by: Aleš Nesrsta.
26559
26560 * disk/ata.c (grub_atapi_close): Removed. All users updated.
26561 (grub_atapi_dev): Changed .name to "ata". New field .id.
26562 * disk/usbms.c (grub_usbms_close): Removed. All users updated.
26563 (grub_usbms_dev): New field .id.
26564 * disk/scsi.c (grub_scsi_iterate): Generate name.
26565 (grub_scsi_open): Parse name.
26566 * include/grub/scsi.h (grub_make_scsi_id): New function.
26567 (grub_scsi_dev): Change iterate and open to number instead of naming
26568 busses. All users updated.
26569 (grub_scsi): Remove name. Add .bus.
26570
26571 2010-07-10 Vladimir Serbinenko <phcoder@gmail.com>
26572
26573 * commands/help.c (grub_cmd_help): Fix a typo.
26574
26575 2010-07-10 Vladimir Serbinenko <phcoder@gmail.com>
26576
26577 * normal/term.c (put_glyphs_terminal): Fix state->num_lines counting.
26578 Reported and tested by: Colin Watson.
26579
26580 2010-07-10 Vladimir Serbinenko <phcoder@gmail.com>
26581
26582 * util/grub-mkrescue.in: Don't use tar GNU-ism since it's not necessary
26583 in this context.
26584
26585 2010-07-07 Vladimir Serbinenko <phcoder@gmail.com>
26586
26587 * tests/util/grub-shell.in: Remove bashisms and declare as sh script.
26588
26589 2010-07-07 Colin Watson <cjwatson@ubuntu.com>
26590
26591 * term/gfxterm.c (grub_gfxterm_background_image_cmd): Fix
26592 indentation.
26593
26594 2010-07-06 Colin Watson <cjwatson@ubuntu.com>
26595
26596 * conf/common.rmk (grub_probe_SOURCES): Add disk/raid5_recover.c
26597 and disk/raid6_recover.c.
26598 * conf/i386-pc.rmk (grub_setup_SOURCES): Likewise.
26599 * conf/sparc64-ieee1275.rmk (grub_setup_SOURCES): Likewise.
26600
26601 2010-07-06 Colin Watson <cjwatson@ubuntu.com>
26602
26603 * term/gfxterm.c (repaint_schedulded): Rename to ...
26604 (repaint_scheduled): ... this. Update all callers.
26605 (repaint_was_schedulded): Rename to ...
26606 (repaint_was_scheduled): ... this. Update all callers.
26607
26608 2010-07-06 Colin Watson <cjwatson@ubuntu.com>
26609
26610 * util/deviceiter.c (grub_util_iterate_devices): Skip MD devices,
26611 which we expect to be handled by upper layers.
26612
26613 2010-07-06 BVK Chaitanya <bvk.groups@gmail.com>
26614
26615 * bus/usb/usbhub.c: #include time.h header.
26616
26617 2010-07-06 Colin Watson <cjwatson@ubuntu.com>
26618
26619 * fs/reiserfs.c (grub_reiserfs_iterate_dir): Zero out first byte of
26620 entry_name also for entries without stat blocks (e.g. ".."); fixes
26621 corruption of the first entry in a directory.
26622
26623 2010-07-06 Colin Watson <cjwatson@ubuntu.com>
26624
26625 * util/grub.d/00_header.in: Process GRUB_THEME and GRUB_BACKGROUND
26626 after setting gfxterm as the active terminal. GRUB_BACKGROUND
26627 doesn't work otherwise.
26628
26629 2010-07-05 Colin Watson <cjwatson@ubuntu.com>
26630
26631 * docs/grub.texi (Features): Update list of supported file systems.
26632 (GNU/Linux): Update for GRUB 2.
26633 (Serial terminal): Remove mention of --disable-serial, which was a
26634 GRUB Legacy configure option. Update instructions to use
26635 `terminal_input' and `terminal_output' rather than `terminal'.
26636 (Vendor power-on keys): Copy-edit. Add cross-references to `Simple
26637 configuration' and `Installing GRUB using grub-install'.
26638 (Menu entry editor): Update for GRUB 2.
26639 (terminfo): Add vt100-color, ieee1275, and dumb terminal types.
26640 Document new -a, -u, and -v options.
26641 (initrd): New section.
26642 (initrd16): New section.
26643 (linux): New section.
26644 (linux16): New section.
26645 (search): The `var' argument to `--set' is optional.
26646 (GRUB only offers a rescue shell): Go into a little more detail on
26647 drive ordering.
26648
26649 2010-07-05 Colin Watson <cjwatson@ubuntu.com>
26650
26651 * Makefile.in: Set LINGUAS to empty if ENABLE_NLS is undefined.
26652
26653 2010-07-05 Colin Watson <cjwatson@ubuntu.com>
26654
26655 * Makefile.in (MAINTAINER_CLEANFILES): Add unicode/UnicodeData.txt,
26656 unicode/BidiMirroring.txt, unicode/ArabicShaping.txt, and unidata.c.
26657
26658 2010-07-05 Colin Watson <cjwatson@ubuntu.com>
26659
26660 * util/i386/pc/grub-setup.c (setup): Rename prefix to
26661 install_prefix, in line with install_dos_part and install_bsd_part.
26662 Add new prefix variable, which is copied to install_prefix after
26663 comparing core.img in memory with the one read from disk in the
26664 no-embedding case, and use that rather than overwriting
26665 install_prefix immediately when installing to a partition.
26666 Fixes Debian bug #586621; based on patches by Matt Kraai and M. Vefa
26667 Bicakci.
26668
26669 2010-07-04 Grégoire Sutre <gregoire.sutre@gmail.com>
26670
26671 * configure.ac: Avoid == in test command, it's not portable.
26672 * util/grub.d/30_os-prober.in: Likewise.
26673
26674 2010-07-04 Colin Watson <cjwatson@ubuntu.com>
26675
26676 * kern/emu/getroot.c [__GNU__]: Include <sys/mman.h> for munmap.
26677
26678 2010-07-04 Grégoire Sutre <gregoire.sutre@gmail.com>
26679
26680 * util/i386/pc/grub-setup.c (setup): Do not embed when there are
26681 multiple (top-level) partmaps.
26682
26683 2010-07-02 Vladimir Serbinenko <phcoder@gmail.com>
26684
26685 * util/i386/efi/grub-install.in: Don't use empty grub_device.
26686 Reported by: Tino Keitel.
26687
26688 2010-07-02 Vladimir Serbinenko <phcoder@gmail.com>
26689
26690 Bidi and diacritics support.
26691
26692 * Makefile.in (widthspec.bin): New target.
26693 (widthspec.h): Likewise.
26694 (TARGET_CFLAGS): Add -DHAVE_UNIFONT_WIDTHSPEC=1 if font was available.
26695 * autogen.sh: Generate unidata.c.
26696 * commands/cat.c (grub_cmd_cat): Don't use grub_putchar.
26697 * commands/ls.c (grub_ls_list_devices): Likewise.
26698 (grub_ls_list_files): Likewise.
26699 * commands/minicmd.c (grub_mini_cmd_cat): Likewise.
26700 (grub_mini_cmd_lsmod): Likewise.
26701 * commands/read.c: Likewise.
26702 * kern/corecmd.c (grub_core_cmd_ls): Likewise.
26703 * kern/rescue_reader.c (grub_rescue_read_line): Likewise.
26704 * lib/arg.c (grub_arg_show_help): Likewise.
26705 * lib/crypto.c (grub_password_get): Likewise.
26706 * normal/auth.c (grub_username_get): Likewise.
26707 * normal/misc.c (grub_normal_print_device_info): Likewise.
26708 * commands/help.c (grub_cmd_help): Use grub_unicode_aglomerate_comb.
26709 * conf/common.rmk (grub_mkfont_SOURCES): Add unidata.c.
26710 (gfxmenu_mod_SOURCES): Add gfxmenu/font.c.
26711 (normal/charset.c_DEPENDENCIES): New variable.
26712 (normal_mod_SOURCES): Add normal/charset.c and unidata.c.
26713 (pkglib_MODULES): Remove charset.mod.
26714 (charset_mod_SOURCES): Removed.
26715 (charset_mod_CFLAGS): Likewise.
26716 (charset_mod_LDFLAGS): Likewise.
26717 (pkglib_MODULES) [ieee1275]: Remove terminfo.mod.
26718 * conf/powerpc-ieee1275.rmk (kernel_img_SOURCES): Add term/terminfo.c
26719 and term/tparm.c.
26720 * conf/sparc64-ieee1275.rmk (kernel_img_SOURCES): Likewise.
26721 * conf/i386-ieee1275.rmk (kernel_img_SOURCES): Likewise.
26722 (kernel_img_HEADERS): Add terminfo.h.
26723 * font/font.c (ascii_glyph_lookup): Return NULL on failure.
26724 Fill ->font. Reverse ascii bitmaps.
26725 (grub_font_get_xheight): New function.
26726 * font/font.c (grub_font_get_string_width): Moved from here ...
26727 * gfxmenu/font.c (grub_font_get_string_width): ... here.
26728 * font/font.c (grub_font_draw_string): Moved from here ...
26729 * gfxmenu/font.c (grub_font_draw_string): ... here.
26730 * font/font.c (grub_font_dup_glyph): New function.
26731 (grub_font_blit_glyph): Likewise.
26732 (grub_font_blit_glyph_mirror): Likewise.
26733 (blit_comb): Likewise.
26734 (grub_font_construct_dry_run): Likewise.
26735 (grub_font_get_constructed_device_width): Likewise.
26736 (grub_font_construct_glyph): Likewise.
26737 * include/grub/charset.h (grub_ucs4_to_utf8): New proto.
26738 * include/grub/misc.h (grub_utf8_to_ucs4): Moved from here ...
26739 * include/grub/charset.h (grub_utf8_to_ucs4): ... here.
26740 * include/grub/font.h (GRUB_FONT_CODE_CHAR_MASK): New constant.
26741 (GRUB_FONT_CODE_RIGHT_JOINED): Likewise.
26742 (GRUB_FONT_CODE_LEFT_JOINED): Likewise.
26743 (grub_font_get_xheight): New proto.
26744 (grub_font_get_constructed_device_width): Likewise.
26745 (grub_font_construct_glyph): Likewise.
26746 * include/grub/font.h (grub_font_get_string_width): Moved from here ...
26747 * include/grub/gfxmenu_view.h (grub_font_get_string_width): ... here.
26748 * include/grub/font.h (grub_font_draw_string): Moved from here ...
26749 * include/grub/gfxmenu_view.h (grub_font_draw_string): ... here.
26750 * include/grub/i386/vga_common.h (grub_console_putchar): Moved from here..
26751 * include/grub/i386/pc/console.h (grub_console_putchar): ... here.
26752 * include/grub/i386/vga_common.h (grub_console_real_putchar): Removed.
26753 (grub_console_getcharwidth): Likewise.
26754 * include/grub/misc.h (grub_xputs): New proto.
26755 (grub_puts): Inlined.
26756 * include/grub/normal.h (grub_print_ucs4): Add margin specification.
26757 (grub_normal_get_line_counter): Removed.
26758 (grub_install_newline_hook): Likewise.
26759 (grub_normal_get_char_counter): New proto.
26760 (grub_normal_reset_more): Likewise.
26761 (grub_xputs_normal): Likewise.
26762 * include/grub/powerpc/ieee1275/console.h: Removed.
26763 * include/grub/sparc64/ieee1275/console.h: Likewise.
26764 * include/grub/term.h (GRUB_TERM_CODE_TYPE_MASK): New definition.
26765 (GRUB_TERM_CODE_TYPE_ASCII): Likewise.
26766 (GRUB_TERM_CODE_TYPE_CP437): Likewise.
26767 (GRUB_TERM_CODE_TYPE_UTF8_LOGICAL): Likewise.
26768 (GRUB_TERM_CODE_TYPE_UTF8_VISUAL): Likewise.
26769 (GRUB_TERM_CODE_TYPE_VISUAL_GLYPHS): Likewise.
26770 (grub_term_input): Pass reference to self. All users updated.
26771 (grub_term_output): Pass grub_unicode_glyph to putchar and getcharwidth.
26772 Pass reference to self. New fields normal_color, highlight_color and
26773 data. All users updated.
26774 (grub_putchar): Removed.
26775 (grub_putcode): Remove EXPORT_FUNC since it's not in kernel anymore.
26776 (grub_unicode_estimate_width): New function.
26777 (grub_term_getcharwidth): Add defaults.
26778 (GRUB_TERM_DEFAULT_NORMAL_COLOR): New definition.
26779 (GRUB_TERM_DEFAULT_HIGHLIGHT_COLOR): Likewise.
26780 (GRUB_TERM_DEFAULT_STANDARD_COLOR): Likewise.
26781 (grub_cls): Remove EXPORT_FUNC.
26782 (grub_setcolorstate): Inline.
26783 (grub_newline_hook): Removed.
26784 * include/grub/terminfo.h: Rewritten. All users updated.
26785 * include/grub/unicode.h: New file.
26786 * include/grub/video.h (grub_video_signed_rect): New type.
26787 * kern/emu/console.c (grub_console_highlight_color): Removed.
26788 (grub_console_normal_color): Likewise.
26789 (grub_console_standard_color): Made static.
26790 (grub_ncurses_putchar): Remove mapping.
26791 (grub_ncurses_getcharwidth): Removed.
26792 (grub_ncurses_term_output): Declare as GRUB_TERM_CODE_TYPE_ASCII.
26793 (grub_ncurses_setcolor): Removed.
26794 (grub_ncurses_getcolor): Likewise.
26795 * kern/i386/pc/startup.S (grub_console_real_putchar): Renamed to ...
26796 (grub_console_putchar): ... this.
26797 (grub_console_putchar): Handle argument difference.
26798 * kern/ieee1275/init.c (grub_machine_init): Split console_init into
26799 console_init_early and console_init_lately.
26800 * kern/sparc64/ieee1275/init.c (grub_machine_init): Likewise.
26801 * kern/misc.c (grub_puts): Removed.
26802 (grub_vprintf): Store UTF-8 string instead of outputting it directly.
26803 (grub_vsnprintf_real): Remove str = NULL support.
26804 * kern/misc.c (grub_utf8_to_ucs4): Move from here ...
26805 * normal/charset.c (grub_utf8_to_ucs4): ... here.
26806 * kern/term.c (grub_putcode): Renamed to ...
26807 (grub_putcode_dumb): ... this. Pass grub_unicode_glyph instead of code.
26808 (grub_putchar): Removed.
26809 (grub_xputs_dumb): New function.
26810 (grub_xputs): New variable.
26811 * lib/charset.c: Move from here ...
26812 * normal/charset.c: ... to here.
26813 (grub_ucs4_to_utf8): New function.
26814 (grub_ucs4_to_utf8_alloc): Use grub_ucs4_to_utf8.
26815 (join_types): New variable.
26816 (unpack_join): New function.
26817 (bidi_types): New variable.
26818 (unpack_bidi): New function.
26819 (get_bidi_type): Likewise.
26820 (get_join_type): Likewise.
26821 (is_mirrored): Likewise.
26822 (grub_unicode_get_comb_type): Likewise.
26823 (grub_unicode_estimate_width) [HAVE_UNIFONT_WIDTHSPEC]: Likewise.
26824 (is_type_after): Likewise.
26825 (grub_unicode_aglomerate_comb): Likewise.
26826 (bidi_line_wrap): Likewise.
26827 (grub_bidi_line_logical_to_visual): Likewise.
26828 (grub_bidi_logical_to_visual): Likewise.
26829 (grub_unicode_mirror_code): Likewise.
26830 (grub_unicode_shape_code): Likewise.
26831 * normal/cmdline.c (grub_cmdline_get): Reset more counter.
26832 Don't use grub_putchar.
26833 * normal/main.c (grub_normal_init_page): Use grub_putcode.
26834 (grub_normal_reader_init): Likewise.
26835 (grub_xputs_saved): New variable.
26836 (GRUB_MOD_INIT): Set grub_xputs.
26837 (GRUB_MOD_FINI): Restore grub_xputs.
26838 * normal/menu.c (grub_wait_after_message): Don't use grub_putchar.
26839 (menu_init): Avoid printing gfxmenu error.
26840 (show_menu): Use grub_normal_get_char_counter.
26841 * normal/menu_entry.c (update_screen): Fix out-of-array.
26842 (complete): Avoid NULL dereferencing.
26843 * grub_menu_entry_run (grub_menu_entry_run): Don't use putchar.
26844 * normal/menu_text.c (print_spaces): Removed.
26845 (grub_print_ucs4): Likewise.
26846 (grub_print_message_indented): Use grub_print_ucs4.
26847 (print_message): Use grub_putcode.
26848 (print_entry): Hanlde diacritics.
26849 * normal/term.c (term_state): New type.
26850 (grub_more_lines): Removed.
26851 (term_states): New variable.
26852 (grub_normal_line_counter): Renamed to ..
26853 (grub_normal_char_counter): ...this. All users updated.
26854 (grub_normal_get_line_counter): Renamed to ...
26855 (grub_normal_get_char_counter): ... this.
26856 (grub_normal_reset_more): New function.
26857 (process_newline): Removed.
26858 (print_more): New function.
26859 (grub_install_newline_hook): Removed.
26860 (map_code): New function.
26861 (grub_puts_terminal): Use grub_print_ucs4.
26862 (putglyph): New function.
26863 (putcode_real): Likewise.
26864 (grub_putcode): Use putcode_real.
26865 (get_maxwidth): New function.
26866 (get_startwidth): Likewise.
26867 (print_ucs4_terminal): Likewise.
26868 (find_term_state): Likewise.
26869 (put_glyphs_terminal): Likewise.
26870 (print_backlog): Likewise.
26871 (print_ucs4_real): Likewise.
26872 (grub_print_ucs4): Likewise.
26873 (grub_xputs_normal): Likewise.
26874 * term/efi/console.c (grub_console_putchar): Output diacritics.
26875 (grub_console_getcharwidth): Removed.
26876 (grub_console_term_output): Declare as GRUB_TERM_CODE_TYPE_UCS4_VISUAL.
26877 * term/gfxterm.c (clear_char): Free chars.
26878 (scroll_up): Avoid leaking memory.
26879 (grub_gfxterm_putchar): Support diacritics.
26880 (grub_video_term): Declare as GRUB_TERM_CODE_TYPE_UCS4_VISUAL.
26881 * term/i386/pc/console.c (grub_console_term_output): Declare as
26882 GRUB_TERM_CODE_TYPE_VGA.
26883 * term/i386/pc/vga.c (grub_vga_term): Declare as
26884 GRUB_TERM_CODE_TYPE_VISUAL_GLYPHS.
26885 * term/i386/pc/vga_text.c (grub_vga_text_term): Declare as
26886 GRUB_TERM_CODE_TYPE_VGA.
26887 * term/i386/vga_common.c (map_char): Removed.
26888 (grub_console_putchar): Likewise.
26889 (grub_console_getcharwidth): Likewise.
26890 * term/ieee1275/ofconsole.c: Simplify using terminfo.
26891 (colors): Reordered to match terminfo.
26892 (grub_ofconsole_normal_color): Removed.
26893 (grub_ofconsole_writeesc): Likewise.
26894 (grub_ofconsole_highlight_color): Likewise.
26895 (grub_ofconsole_getcharwidth): Likewise.
26896 (grub_ofconsole_setcolorstate): Likewise.
26897 (grub_ofconsole_setcolor): Likewise.
26898 (grub_ofconsole_getcolor): Likewise.
26899 (grub_ofconsole_readkey): Renamed to ...
26900 (readkey): ... this. Remove escape sequence handling. Return -1 on no
26901 key.
26902 (grub_ofconsole_checkkey): Removed.
26903 (grub_ofconsole_getkey): Likewise.
26904 (grub_ofconsole_getxy): Likewise.
26905 (grub_ofconsole_gotoxy): Likewise.
26906 (grub_ofconsole_cls): Likewise.
26907 (grub_ofconsole_refresh): Likewise.
26908 (grub_ofconsole_terminfo_input): New struct.
26909 (grub_ofconsole_terminfo_output): Likewise.
26910 (grub_ofconsole_term_input): Use terminfo.
26911 (grub_ofconsole_term_output): Likewise.
26912 (grub_console_init): Split into ...
26913 (grub_console_init_early): ...this and ...
26914 (grub_console_init_lately): ...this. Use terminfo.
26915 (grub_ofconsole_putchar): Renamed to ...
26916 (put): ... this. Remove mapping.
26917 (grub_ofconsole_term_output): Declare as GRUB_TERM_CODE_TYPE_ASCII.
26918 * term/serial.c: Simplify using terminfo.
26919 (xpos): Removed.
26920 (ypos): Likewise.
26921 (keep_track): Likewise.
26922 (registered): Likewise.
26923 (input_buf): Likewise.
26924 (npending): Likewise.
26925 (serial_translate_key_sequence): Likewise.
26926 (fill_input_buf): Likewise.
26927 (grub_serial_checkkey): Likewise.
26928 (grub_serial_getkey): Likewise.
26929 (grub_serial_getxy): Likewise.
26930 (grub_serial_gotoxy): Likewise.
26931 (grub_serial_putchar): Likewise.
26932 (grub_serial_cls): Likewise.
26933 (grub_serial_setcolorstate): Likewise.
26934 (grub_serial_setcursor): Likewise.
26935 (serial_hw_init): Use serial_hw_fetch.
26936 (grub_serial_terminfo_input): New variable.
26937 (grub_serial_terminfo_output): Likewise.
26938 (grub_serial_term_input): Use terminfo.
26939 (grub_serial_term_output): Likewise.
26940 * term/terminfo.c (putstr): Use put.
26941 (grub_terminfo_all_free): New function
26942 (grub_terminfo_set_current): New types vt100-color, ieee1275 and dumb.
26943 (grub_terminfo_output_register): New function.
26944 (grub_terminfo_output_unregister): Likewise.
26945 (grub_terminfo_getxy): Likewise.
26946 (grub_terminfo_readkey): Likewise.
26947 (grub_terminfo_checkkey): Likewise.
26948 (grub_terminfo_getkey): Likewise.
26949 (grub_terminfo_input_init): Likewise.
26950 (print_terminfo): Likewise.
26951 (grub_cmd_terminfo): Handle encoding.
26952 (grub_terminfo_gotoxy): Track position.
26953 (grub_terminfo_cls): Likewise.
26954 (grub_terminfo_putchar): Likewise.
26955 (grub_terminfo_setcolorstate): Handle colors
26956 (grub_terminfo_cursor_on): This ...
26957 (grub_terminfo_cursor_off): ... and this merged into ...
26958 (grub_terminfo_setcursor): ... this.
26959 * term/tparm.c (grub_terminfo_tparm): Avoid NULL dereferencing.
26960 * unicode/ArabicShaping.txt: New file (imported from Unicode).
26961 * unicode/BidiMirroring.txt: Likewise.
26962 * unicode/UnicodeData.txt: Likewise.
26963 * unicode/COPYING: Likewise.
26964 * util/grub-editenv.c (grub_putchar): Removed.
26965 (grub_xputs_real): New function.
26966 (grub_xputs): New variable.
26967 * util/grub-fstest.c (grub_putchar): Removed.
26968 (grub_xputs_real): New function.
26969 (grub_xputs): New variable.
26970 * util/grub-mkdevicemap.c (grub_putchar): Removed.
26971 (grub_xputs_real): New function.
26972 (grub_xputs): New variable.
26973 * util/grub-probe.c (grub_putchar): Removed.
26974 (grub_xputs_real): New function.
26975 (grub_xputs): New variable.
26976 * util/grub-script-check.c (grub_putchar): Removed.
26977 (grub_xputs_real): New function.
26978 (grub_xputs): New variable.
26979 * util/i386/pc/grub-setup.c (grub_putchar): Removed.
26980 (grub_xputs_real): New function.
26981 (grub_xputs): New variable.
26982 * util/import_unicode.py: New file.
26983 * util/grub-mkfont.c (ft_errmsgs): New array.
26984 (grub_glyph_info): Make bitmap a pointer.
26985 (file_formats): New type WIDTH_SPEC.
26986 (grub_font_info): New members glyphs_unsorted, glyphs_sorted, num_glyphs.
26987 (options): Add width-spec.
26988 (help): Likewise.
26989 (add_char): Renamed to ...
26990 (add_glyph): ... this.
26991 (add_glyph): Use index. Show freetype errors. Cut blank space at borders.
26992 (glyph_replace): New type.
26993 (subst_rightjoin), (subst_leftjoin), (subst_medijoin): New variables.
26994 (add_char): New function.
26995 (add_subst): Likewise.
26996 (process_cursive): Likewise.
26997 (add_font): Handle GSUB.
26998 (write_font_width_spec): New function.
26999 (main): Sort glyphs.
27000 * commands/minicmd.c (grub_mini_cmd_clear): Moved from here ...
27001 * normal/main.c (grub_mini_cmd_clear): ..here. All users updated.
27002 * kern/term.c (grub_cls): Moved from here...
27003 * normal/term.c (grub_cls): ... here.
27004
27005 2010-07-02 Colin Watson <cjwatson@ubuntu.com>
27006
27007 * include/grub/types.h: Define the C99-style PRIxGRUB_SIZE macro,
27008 suitable for using within the format argument of printf when
27009 converting grub_size_t.
27010 * disk/usbms.c (grub_usbms_transfer): Use PRIxGRUB_SIZE rather than
27011 "x" to convert grub_size_t arguments.
27012
27013 2010-07-02 Vladimir Serbinenko <phcoder@gmail.com>
27014
27015 * gfxmenu/gui_list.c (draw_menu): Use viewport to simplify code and fix
27016 too long captions.
27017 (list_get_minimal_size): Take selection box into account.
27018
27019 2010-07-02 Vladimir Serbinenko <phcoder@gmail.com>
27020
27021 * font/font.c (grub_font_get_glyph_with_fallback): Avoid dereferencing
27022 NULL font.
27023
27024 2010-07-02 Colin Watson <cjwatson@ubuntu.com>
27025
27026 * util/deviceiter.c (grub_util_iterate_devices): Skip device-mapper
27027 devices when iterating over /dev/disk/by-id; they will be handled
27028 later if appropriate, which they aren't always (e.g. LVM).
27029
27030 2010-07-02 Colin Watson <cjwatson@ubuntu.com>
27031
27032 * include/grub/misc.h (grub_reboot): Declare as noreturn.
27033 * kern/efi/efi.c (grub_reboot): Don't return, even if reset_system
27034 fails.
27035 (grub_halt): Likewise.
27036 * kern/ieee1275/openfw.c (grub_reboot): Don't return, even if
27037 reset-all fails.
27038 (grub_halt): Don't return, even if all of shut-down, power-off, and
27039 poweroff fail.
27040
27041 2010-07-02 Colin Watson <cjwatson@ubuntu.com>
27042
27043 * kern/efi/init.c (grub_efi_init): set_watchdog_timer takes four
27044 arguments, not three.
27045
27046 2010-07-02 Colin Watson <cjwatson@ubuntu.com>
27047
27048 * util/grub-mkconfig_lib.in (uses_abstraction): New function.
27049 * util/grub.d/10_linux.in: Use it to check for LVM, so that
27050 LVM-on-RAID is handled correctly.
27051
27052 2010-07-02 Colin Watson <cjwatson@ubuntu.com>
27053
27054 * docs/grub.texi (Changes from GRUB Legacy): New section.
27055 (Future): Fix typo.
27056
27057 2010-07-02 Colin Watson <cjwatson@ubuntu.com>
27058
27059 * util/grub-mkconfig_lib.in (grub_file_is_not_garbage): Sometimes
27060 grub.d/README accidentally ends up executable for one reason or
27061 another. Ignore it.
27062
27063 2010-07-02 Vladimir Serbinenko <phcoder@gmail.com>
27064
27065 * partmap/gpt.c (MAX_SECTOR_LOG): New definition.
27066 (gpt_partition_map_iterate): Support non-512B sectors.
27067
27068 2010-07-02 Vladimir Serbinenko <phcoder@gmail.com>
27069
27070 * kern/efi/init.c (grub_efi_init): Disable watchdog.
27071 Tested by: Seth Goldberg.
27072
27073 2010-07-02 Vladimir Serbinenko <phcoder@gmail.com>
27074
27075 * loader/multiboot.c (grub_multiboot_boot) [GRUB_USE_MULTIBOOT2]:
27076 Properly align mbi.
27077 Reported by: Seth Goldberg.
27078
27079 2010-07-01 Vladimir Serbinenko <phcoder@gmail.com>
27080
27081 * util/grub-mkrescue.in: Avoid module duplication.
27082
27083 2010-07-01 Sean Finney <seanius@seanius.net>
27084
27085 * util/grub.d/10_linux.in: Don't use UUID for LVM root.
27086
27087 2010-07-01 Sean Finney <seanius@seanius.net>
27088
27089 * disk/lvm.c (grub_lvm_scan_device): Skip snapshots.
27090
27091 2010-07-01 Vladimir Serbinenko <phcoder@gmail.com>
27092
27093 * disk/lvm.c (grub_lvm_checkvalue): New function.
27094 (grub_lvm_check_flag): Likewise.
27095
27096 2010-07-01 Robert Millan <rmh@gnu.org>
27097
27098 * kern/emu/hostdisk.c (convert_system_partition_to_system_disk):
27099 Support 'p' as partition separator on kernel of FreeBSD (used
27100 with GPT labels).
27101 (grub_util_biosdisk_get_grub_dev): Likewise.
27102
27103 2010-07-01 Vladimir Serbinenko <phcoder@gmail.com>
27104
27105 Yeeloong firmware port.
27106
27107 * boot/mips/yeeloong/fwstart.S: New file.
27108 * bus/cs5536.c (gpiodump): New const.
27109 (set_io_space): New function.
27110 (set_iod): Likewise.
27111 (set_p2d): Likewise.
27112 (grub_cs5536_init_geode): Likewise.
27113 * commands/mips/yeeloong/lsspd.c: New file.
27114 * conf/mips-qemu-mips.rmk (pkglib_MODULES): Add serial.mod.
27115 (serial_mod_SOURCES): New variable.
27116 (serial_mod_CFLAGS): Likewise.
27117 (serial_mod_LDFLAGS): Likewise.
27118 * conf/mips-yeeloong.rmk (kernel_img_SOURCES): Add term/serial.c,
27119 term/terminfo.c and term/tparm.c.
27120 (pkglib_IMAGES): Add fwstart.img.
27121 (fwstart_img_SOURCES): New variable.
27122 (fwstart_img_CFLAGS): Likewise.
27123 (fwstart_img_ASFLAGS): Likewise.
27124 (fwstart_img_LDFLAGS): Likewise.
27125 (fwstart_img_FORMAT): Likewise.
27126 (pkglib_MODULES): Add lsspd.mod.
27127 (lsspd_mod_SOURCES): New variable.
27128 (lsspd_mod_CFLAGS): Likewise.
27129 (lsspd_mod_LDFLAGS): Likewise.
27130 (pkglib_MODULES): Add halt.mod.
27131 (halt_mod_SOURCES): New variable.
27132 (halt_mod_CFLAGS): Likewise.
27133 (halt_mod_LDFLAGS): Likewise.
27134 * conf/mips.rmk (pkglib_MODULES): Remove serial.mod.
27135 (serial_mod_SOURCES): Removed.
27136 (serial_mod_CFLAGS): Likewise.
27137 (serial_mod_LDFLAGS): Likewise.
27138 * disk/ata.c (check_device): New function.
27139 (grub_ata_device_initialize): Use check_device.
27140 (grub_ata_iterate): Recheck devices.
27141 (grub_ata_open): Likewise.
27142 (grub_atapi_iterate): Likewise.
27143 (grub_atapi_open): Likewise.
27144 * include/grub/ata.h (GRUB_ATA_CH0_PORT1): New macro.
27145 (GRUB_ATA_CH1_PORT1): Likewise.
27146 (GRUB_ATA_CH0_PORT2): Likewise.
27147 (GRUB_ATA_CH1_PORT2): Likewise.
27148 * include/grub/mips/loongson.h: New file.
27149 * include/grub/mips/yeeloong/ec.h: Likewise.
27150 * include/grub/mips/yeeloong/serial.h (GRUB_MACHINE_SERIAL_PORT): New definition.
27151 (GRUB_MACHINE_SERIAL_DIVISOR_115200): Likewise.
27152 (GRUB_MACHINE_SERIAL_PORTS) [ASM_FILE]: Remove.
27153 * include/grub/misc.h (grub_halt): Declare as noreturn.
27154 * include/grub/serial.h (UART_ENABLE_FIFO): Renamed to ...
27155 (UART_ENABLE_FIFO_TRIGGER14): ... this. All users updated.
27156 (UART_ENABLE_FIFO_TRIGGER1): New definition.
27157 (UART_ENABLE_DTRRTS): Likewise.
27158 (UART_ENABLE_MODEM): Removed.
27159 (UART_ENABLE_OUT2): New const.
27160 * include/grub/term.h (grub_term_register_input_active): New function.
27161 (grub_term_register_output_active): Likewise.
27162 * kern/mips/startup.S [GRUB_MACHINE_MIPS_YEELOONG]: Handle 0xffffffff
27163 argument.
27164 * kern/mips/yeeloong/init.c (grub_get_rtc): Macroify.
27165 (init_pci): New function.
27166 (grub_machine_init): Execute platform init when firmware. Init serial.
27167 (grub_halt): Implement.
27168 (grub_exit): Likewise.
27169 (grub_reboot): Likewise.
27170 * term/serial.c (serial_hw_init): Update macros.
27171 [GRUB_MACHINE_MIPS_YEELOONG]: Init on startup.
27172 * util/grub-mkimage.c (image_target_desc): New id IMAGE_YEELOONG_FLASH.
27173 (image_targets): New target mipsel-yeeloong-flash.
27174 (generate_image): Support IMAGE_YEELOONG_FLASH.
27175 * video/sm712.c (GRUB_SM712_TOTAL_MEMORY_SPACE): New definition.
27176 (grub_video_sm712_setup): Init card.
27177 (grub_video_sm712_set_palette): Removed.
27178 * video/sm712_init.c: New file.
27179
27180 2010-06-30 Colin Watson <cjwatson@ubuntu.com>
27181
27182 * Makefile.in (install-local): Temporarily prepend $(builddir) to
27183 PATH when running help2man and then run it on the unadorned
27184 executable names, rather than passing $(builddir)/* paths to
27185 help2man. This avoids the build directory ending up in generated
27186 manual pages.
27187
27188 2010-06-29 Colin Watson <cjwatson@ubuntu.com>
27189
27190 * util/grub-mkconfig.in: Use 'set -e' rather than '#! /bin/sh -e',
27191 to avoid accidents when debugging with 'sh -x'.
27192 * util/grub-mkrescue.in: Likewise.
27193 * util/grub.d/00_header.in: Likewise.
27194 * util/grub.d/10_hurd.in: Likewise.
27195 * util/grub.d/10_kfreebsd.in: Likewise.
27196 * util/grub.d/10_linux.in: Likewise.
27197 * util/grub.d/10_netbsd.in: Likewise.
27198 * util/grub.d/10_windows.in: Likewise.
27199 * util/grub.d/20_linux_xen.in: Likewise.
27200 * util/grub.d/30_os-prober.in: Likewise.
27201 * util/powerpc/ieee1275/grub-mkrescue.in: Likewise.
27202
27203 2010-06-29 Colin Watson <cjwatson@ubuntu.com>
27204
27205 * commands/cat.c (grub_cmd_cat): Fix buffer overrun if '\r' is the
27206 last character in the buffer.
27207 Reported by: Vladimir Serbinenko.
27208
27209 2010-06-29 Robert Millan <rmh@gnu.org>
27210
27211 * docs/grub.texi (Simple configuration): Document ${GRUB_BADRAM}.
27212 (Command-line and menu entry commands): Document `badram' command.
27213
27214 2010-06-28 Robert Millan <rmh@gnu.org>
27215
27216 * util/grub-mkconfig.in: Export `GRUB_BADRAM' variable.
27217 * util/grub.d/00_header.in: When `GRUB_BADRAM' is set, issue badram
27218 command using ${GRUB_BADRAM} as parameter.
27219
27220 2010-06-28 Colin Watson <cjwatson@ubuntu.com>
27221
27222 * docs/grub.texi (Device map): New section.
27223 (Themes): New section (stub).
27224 * Makefile.in (docs/grub.info): The info documentation now builds
27225 without errors. Make sure it stays that way.
27226
27227 2010-06-28 Vladimir Serbinenko <phcoder@gmail.com>
27228
27229 Use normal parser for menu entries.
27230 Reported by: Thomas Frauendorfer
27231
27232 * include/grub/parser.h (grub_parser_execute): Don't export.
27233 * normal/menu.c (grub_menu_execute_entry_real): New function.
27234 (grub_menu_execute_entry): Use grub_menu_execute_entry_real.
27235
27236 2010-06-28 Colin Watson <cjwatson@ubuntu.com>
27237
27238 * docs/grub.texi (Embedded configuration): New section (replacing
27239 old "Preset Menu" stub).
27240 (Images): New section.
27241 (configfile): Note that any menu entries defined in `file' are shown
27242 immediately.
27243
27244 2010-06-28 Josh Triplett <josh@joshtriplett.org>
27245
27246 * mmap/i386/pc/mmap_helper.S: Set CF on return.
27247
27248 2010-06-28 Colin Watson <cjwatson@ubuntu.com>
27249
27250 * util/grub-install.in: Add --debug-image= option.
27251
27252 2010-06-28 Colin Watson <cjwatson@ubuntu.com>
27253
27254 Change grub-mkdevicemap to emit /dev/disk/by-id/ names where
27255 possible on Linux.
27256
27257 * util/deviceiter.c (check_device): Rename to ...
27258 (check_device_readable_unique): ... this. Update all callers.
27259 Maintain and check a list of which devices (by canonicalized name)
27260 have already been seen.
27261 (clear_seen_devices): New function.
27262 (compare_file_names) [__linux__]: New function.
27263 (grub_util_iterate_devices): Clear the list of seen devices on exit
27264 and (just in case) on entry.
27265 (grub_util_iterate_devices) [__linux__]: Iterate over non-partition
27266 devices in /dev/disk/by-id/, in sorted order. Remove DM-RAID
27267 seen-devices list, superseded by general code in check_device.
27268
27269 2010-06-28 Colin Watson <cjwatson@ubuntu.com>
27270
27271 * commands/cat.c (options): New variable.
27272 (grub_cmd_cat): Parse options. If the --dos option is given, print
27273 DOS-style "\r\n" line endings as simple newlines (Debian bug
27274 #586358).
27275 (GRUB_MOD_INIT): Use extcmd.
27276 (GRUB_MOD_FINI): Likewise.
27277 * docs/grub.texi (cat): Document --dos.
27278
27279 2010-06-28 Vladimir Serbinenko <phcoder@gmail.com>
27280
27281 XEN with Linux grub-mkconfig support.
27282
27283 * conf/common.rmk (grub-mkconfig_SCRIPTS) [linux]: Add 20_linux_xen.
27284 * util/grub-mkconfig.in: Export GRUB_CMDLINE_XEN and
27285 GRUB_CMDLINE_XEN_DEFAULT.
27286 * util/grub.d/20_linux_xen.in: New file.
27287
27288 2010-06-28 Vladimir Serbinenko <phcoder@gmail.com>
27289
27290 Initialise VGA video on qemu ourselves.
27291
27292 * boot/i386/qemu/boot.S: Don't call 0xc000.
27293 * conf/i386-qemu.rmk (kern/i386/qemu/init.c_DEPENDENCIES): New variable.
27294 (kernel_img_SOURCES): Add kern/i386/qemu/init.c and bus/pci.c.
27295 (kernel_img_HEADERS): Add pci.h.
27296 * conf/i386.rmk (pkglib_MODULES) [qemu]: Remove pci.mod.
27297 * configure.ac: Force unifont on qemu and yeeloong.
27298 * include/grub/i386/qemu/kernel.h (grub_qemu_init_cirrus): New proto.
27299 (grub_vga_palette_write): Use correct register.
27300 * kern/i386/coreboot/init.c (grub_machine_init) [GRUB_MACHINE_QEMU]:
27301 Call grub_qemu_init_cirrus.
27302 * kern/i386/qemu/init.c: New file.
27303 * term/i386/pc/vga_text.c (inc_y): Never read outside the screen.
27304
27305 * commands/videotest.c (grub_cmd_videotest): Handle double buffering.
27306
27307 2010-06-26 Pavel Roskin <proski@gnu.org>
27308
27309 * util/grub.d/10_linux.in: Add support for initrd images on Fedora
27310 13.
27311
27312 2010-06-26 Colin Watson <cjwatson@ubuntu.com>
27313
27314 * docs/grub.texi (Simple configuration): Explain that
27315 GRUB_DISABLE_LINUX_RECOVERY and GRUB_DISABLE_NETBSD_RECOVERY must be
27316 set to `true' to disable their respective recovery entries, not
27317 merely set.
27318
27319 2010-06-26 Colin Watson <cjwatson@ubuntu.com>
27320
27321 Make the `source' command slightly faster.
27322
27323 * normal/main.c (grub_normal_execute): Don't re-read list files when
27324 nested.
27325
27326 2010-06-23 Colin Watson <cjwatson@ubuntu.com>
27327
27328 * loader/i386/multiboot_mbi.c (retrieve_video_parameters): Set red
27329 field position and mask size to red fields from mode_info, not
27330 green.
27331 * loader/multiboot_mbi2.c (retrieve_video_parameters): Likewise.
27332 Remove redundant tag->common.framebuffer_type assignment.
27333 Reported by: Seth Goldberg.
27334
27335 2010-06-23 Colin Watson <cjwatson@ubuntu.com>
27336
27337 Sync up other versions of the Linux loader with Robert Millan's
27338 change of 2010-01-09, "Make loader output a bit more user-friendly".
27339
27340 * loader/i386/efi/linux.c (grub_linux_boot): Move debug info to
27341 grub_dprintf().
27342 (grub_cmd_linux): Likewise.
27343 (grub_cmd_initrd): Likewise.
27344 * loader/i386/ieee1275/linux.c (grub_cmd_linux): Likewise.
27345 * loader/i386/pc/linux.c (grub_cmd_linux): Likewise.
27346
27347 2010-06-21 Colin Watson <cjwatson@ubuntu.com>
27348
27349 * kern/efi/mm.c (grub_efi_mm_init): Handle systems with memory maps
27350 larger than MEMORY_MAP_SIZE.
27351
27352 2010-06-21 BVK Chaitanya <bvk.groups@gmail.com>
27353
27354 Fix parallel build.
27355
27356 * conf/common.rmk: Add grub_script.tab.h as a grub-script-check
27357 dependency.
27358 * script/parser.y: #include grub_script.tab.h header.
27359
27360 2010-06-20 Vladimir Serbinenko <phcoder@gmail.com>
27361
27362 Support >3GiB and <16MiB RAM in i386-qemu.
27363
27364 * kern/i386/qemu/mmap.c (QEMU_CMOS_MEMSIZE2_HIGH): New const.
27365 (QEMU_CMOS_MEMSIZE2_LOW): Likewise.
27366 (grub_lower_mem): Removed.
27367 (grub_upper_mem): Likewise.
27368 (mem_size): Made static.
27369 (above_4g): New variable.
27370 (grub_machine_mmap_init): Detect small mem_size and above_4g.
27371 (grub_machine_mmap_iterate): Order in ascending order and add above_4g
27372 support.
27373
27374 2010-06-20 Vladimir Serbinenko <phcoder@gmail.com>
27375
27376 Cirrus 5446 and Bochs video cards support.
27377
27378 * conf/i386.rmk (pkglib_MODULES): Add video_cirrus.mod and
27379 video_bochs.mod
27380 (video_cirrus_mod_SOURCES): New variable.
27381 (video_cirrus_mod_CFLAGS): Likewise.
27382 (video_cirrus_mod_LDFLAGS): Likewise.
27383 (video_bochs_mod_SOURCES): Likewise.
27384 (video_bochs_mod_CFLAGS): Likewise.
27385 (video_bochs_mod_LDFLAGS): Likewise.
27386 * include/grub/vga.h: New file.
27387 * include/grub/video_fb.h (grub_video_fb_doublebuf_blit_init): Removed.
27388 (grub_video_fb_set_page_t): New type.
27389 (grub_video_fb_setup): New prototype.
27390 (grub_video_fb_swap_buffers): Likewise.
27391 (grub_video_fb_get_info_and_fini): Likewise.
27392 * term/i386/pc/vga_text.c (CRTC_ADDR_PORT): Moved to include/grub/vga.h.
27393 (CRTC_DATA_PORT): Likewise.
27394 (CRTC_CURSOR): Likewise.
27395 (CRTC_CURSOR_ADDR_HIGH): Likewise.
27396 (CRTC_CURSOR_ADDR_LOW): Likewise.
27397 (CRTC_CURSOR_DISABLE): Likewise.
27398 (update_cursor): Use grub_vga_cr_write.
27399 (grub_vga_text_setcursor): Likewise.
27400 * video/bochs.c: New file.
27401 * video/fb/video_fb.c (render_target): Moved into framebuffer variable.
27402 (palette): Likewise.
27403 (palette_size): Likewise.
27404 (framebuffer): New variable.
27405 (grub_video_fb_init): Use 'framebuffer'.
27406 (grub_video_fb_fini): Likewise.
27407 (grub_video_fb_get_info): Likewise.
27408 (grub_video_fb_get_palette): Likewise.
27409 (grub_video_fb_set_palette): Likewise.
27410 (grub_video_fb_set_viewport): Likewise.
27411 (grub_video_fb_get_viewport): Likewise.
27412 (grub_video_fb_map_color): Likewise.
27413 (grub_video_fb_map_rgb): Likewise.
27414 (grub_video_fb_map_rgba): Likewise.
27415 (grub_video_fb_unmap_color): Likewise.
27416 (grub_video_fb_unmap_color_int): Likewise.
27417 (grub_video_fb_fill_rect): Likewise.
27418 (grub_video_fb_blit_bitmap): Likewise.
27419 (grub_video_fb_blit_render_target): Likewise.
27420 (grub_video_fb_scroll): Likewise.
27421 (grub_video_fb_create_render_target): Likewise.
27422 (grub_video_fb_doublebuf_blit_init): Likewise.
27423 (grub_video_fb_set_active_render_target): Handle doublebuffering.
27424 (doublebuf_pageflipping_update_screen): New function.
27425 (doublebuf_pageflipping_init): Likewise.
27426 (grub_video_fb_setup): Likewise.
27427 (grub_video_fb_swap_buffers): Likewise.
27428 (grub_video_fb_get_info_and_fini): Likewise.
27429 * video/i386/pc/vbe.c (framebuffer): Remove all doublebuffering fields.
27430 All users updated.
27431 (doublebuf_pageflipping_commit): Restructured into ...
27432 (doublebuf_pageflipping_set_page): ... this.
27433 (doublebuf_pageflipping_update_screen): Removed.
27434 (doublebuf_pageflipping_init): Likewise.
27435 (double_buffering_init): Likewise.
27436 (grub_video_vbe_setup): Use grub_video_fb_setup.
27437 (grub_video_vbe_swap_buffers): Removed.
27438 (grub_video_vbe_set_active_render_target): Likewise.
27439 (grub_video_vbe_get_active_render_target): Likewise.
27440 (grub_video_vbe_get_info_and_fini): Use grub_video_fb_get_info_and_fini.
27441 (grub_video_vbe_adapter): Use grub_video_fb_swap_buffers,
27442 grub_video_fb_set_active_render_target and
27443 grub_video_fb_get_active_render_target.
27444 * video/i386/pc/vga.c (SEQUENCER_ADDR_PORT): Move to include/grub/vga.h.
27445 (SEQUENCER_DATA_PORT): Likewise.
27446 (MAP_MASK_REGISTER): Likewise.
27447 (CRTC_ADDR_PORT): Likewise.
27448 (CRTC_DATA_PORT): Likewise.
27449 (START_ADDR_HIGH_REGISTER): Likewise.
27450 (START_ADDR_LOW_REGISTER): Likewise.
27451 (GRAPHICS_ADDR_PORT): Likewise.
27452 (GRAPHICS_DATA_PORT): Likewise.
27453 (READ_MAP_REGISTER): Likewise.
27454 (INPUT_STATUS1_REGISTER): Likewise.
27455 (INPUT_STATUS1_VERTR_BIT): Likewise.
27456 (get_map_mask): Use grub_vga_sr_read.
27457 (set_map_mask): Use grub_vga_sr_write.
27458 (set_read_map): Use grub_vga_gr_write.
27459 (set_start_address): Use grub_vga_cr_write.
27460 * video/sm712.c (framebuffer): Remove leftover fields.
27461
27462 2010-06-20 Colin Watson <cjwatson@ubuntu.com>
27463
27464 * util/grub-mkconfig.in: Capitalise and export GRUB_PREFIX. Stop
27465 setting GRUB_VIDEO_BACKEND. Make it available as a user override
27466 instead. Replace the gfxterm backend check with a check that
27467 ${GRUB_PREFIX}/video.lst is non-empty.
27468 * util/grub.d/00_header.in: Use GRUB_PREFIX rather than computing it
27469 again.
27470 (load_video): New generated function. Call it before loading
27471 gfxterm rather than loading ${GRUB_VIDEO_BACKEND}.
27472 * util/grub.d/10_linux.in (linux_entry): Call load_video.
27473 * util/grub.d/30_os-prober.in (osx_entry): Likewise.
27474 * docs/grub.texi (Simple configuration): Document
27475 GRUB_VIDEO_BACKEND.
27476
27477 2010-06-20 Vladimir Serbinenko <phcoder@gmail.com>
27478
27479 Use video functions in linux and xnu loaders.
27480
27481 * conf/i386-pc.rmk (xnu_mod_SOURCES): Remove loader/i386/pc/xnu.c.
27482 * conf/x86-efi.rmk (xnu_mod_SOURCES): Remove loader/i386/efi/xnu.c.
27483 * include/grub/i386/xnu.h (grub_xnu_set_video): Removed.
27484 * loader/i386/efi/linux.c (grub_linux_setup_video): Copied from
27485 loader/i386/pc/linux.c.
27486 (grub_linux_boot): Resynced with loader/i386/pc/linux.c.
27487 (find_line_len): Removed.
27488 (find_framebuf): Likewise.
27489 (grub_cmd_linux): Declare grub_linux_boot as possibly returning.
27490 * loader/i386/efi/xnu.c: Removed.
27491 * loader/i386/pc/xnu.c: Moved from here...
27492 * loader/i386/xnu.c: ...here.
27493
27494 Enable priorities in video drivers.
27495
27496 * include/grub/video.h (grub_video_adapter_prio_t): New type.
27497 (grub_video_adapter): New field prio.
27498 (grub_video_register): Respect prio when inserting.
27499 * video/efi_gop.c (grub_video_gop_adapter): Add prio.
27500 * video/efi_uga.c (grub_video_uga_adapter): Likewise.
27501 * video/emu/sdl.c (grub_video_sdl_adapter): Likewise.
27502 * video/i386/pc/vbe.c (grub_video_vbe_adapter): Likewise.
27503 * video/i386/pc/vga.c (grub_video_vga_adapter): Likewise.
27504 * video/ieee1275.c (grub_video_ieee1275_adapter): Likewise.
27505 * video/sm712.c (grub_video_sm712_adapter): Likewise.
27506
27507 Fix SDL driver ID.
27508
27509 * include/grub/video.h (grub_video_driver_id_t): New value
27510 GRUB_VIDEO_DRIVER_SDL.
27511 * video/emu/sdl.c (grub_video_sdl_adapter): Add id.
27512
27513 2010-06-17 Colin Watson <cjwatson@ubuntu.com>
27514
27515 * util/i386/pc/grub-setup.c (usage): Pass an extra `program_name'
27516 argument to printf.
27517 * util/sparc64/ieee1275/grub-setup.c (usage): Likewise.
27518
27519 2010-06-17 Colin Watson <cjwatson@ubuntu.com>
27520
27521 * util/i386/pc/grub-setup.c (usage): Fix syntax error.
27522 * util/sparc64/ieee1275/grub-setup.c (usage): Likewise.
27523
27524 2010-06-17 Colin Watson <cjwatson@ubuntu.com>
27525
27526 * util/i386/pc/grub-setup.c (usage): Warn against running grub-setup
27527 directly, and recommend grub-install instead.
27528 * util/sparc64/ieee1275/grub-setup.c (usage): Likewise.
27529
27530 2010-06-17 Colin Watson <cjwatson@ubuntu.com>
27531
27532 Fix i386-pc prefix handling with nested partitions (Debian bug
27533 #585068). Note that the case where the core image is booted using
27534 multiboot and relocated from its original location still requires
27535 more work.
27536
27537 * kern/i386/pc/init.c (make_install_device): If the prefix starts
27538 with "(,", fill the boot drive in between those two characters, but
27539 expect that a full partition specification including partition map
27540 names will follow.
27541 * util/i386/pc/grub-setup.c (setup): Unless an explicit prefix was
27542 specified, write a prefix without the drive name but including a
27543 full partition specification.
27544
27545 2010-06-16 Colin Watson <cjwatson@ubuntu.com>
27546
27547 * util/grub-mkconfig.in: Ignore non-option arguments, for
27548 compatibility with older versions (before 2010-06-12) which did the
27549 same. In particular, this makes it easier to ship an update-grub
27550 wrapper which is compatible with that used with GRUB Legacy (Debian
27551 bug #586056).
27552
27553 2010-06-14 Grégoire Sutre <gregoire.sutre@gmail.com>
27554
27555 * Makefile.in (install-local): Use $$file.h2m instead of $$dest.h2m
27556 for manual page generation.
27557
27558 2010-06-14 Grégoire Sutre <gregoire.sutre@gmail.com>
27559
27560 * po/POTFILES: Remove leftover commands/handler.c.
27561
27562 2010-06-14 Colin Watson <cjwatson@ubuntu.com>
27563
27564 * util/grub-mkconfig.in: Remove vestige of old argument parsing that
27565 left this script non-functional.
27566
27567 2010-06-14 Colin Watson <cjwatson@ubuntu.com>
27568
27569 * docs/man/grub-emu.h2m: New file.
27570
27571 2010-06-13 Colin Watson <cjwatson@ubuntu.com>
27572
27573 * docs/grub.texi (Commands): Document reduced command set in rescue
27574 mode.
27575 (cpuid): New section.
27576
27577 2010-06-13 Grégoire Sutre <gregoire.sutre@gmail.com>
27578
27579 * kern/emu/hostdisk.c (grub_util_biosdisk_get_grub_dev): Use the
27580 new partition naming style.
27581 * util/grub-install.in: Adapt sed subtitutions in grub-probe calls.
27582
27583 2010-06-12 BVK Chaitanya <bvk.groups@gmail.com>
27584
27585 Add "-o grub.iso" like cmdline options support.
27586
27587 * util/grub-install.in: Improve cmdline option parsing.
27588 * util/grub-mkconfig.in: Likewise.
27589 * util/grub-mkrescue.in: Likewise.
27590 * util/grub-reboot.in: Likewise.
27591 * util/grub-set-default.in: Likewise.
27592 * util/i386/efi/grub-install.in: Likewise.
27593 * util/ieee1275/grub-install.in: Likewise.
27594 * util/powerpc/ieee1275/grub-mkrescue.in: Likewise.
27595
27596 2010-06-12 Colin Watson <cjwatson@ubuntu.com>
27597
27598 * .bzrignore: Ignore 41_custom.
27599
27600 2010-06-12 Thomas Schmitt <scdbackup@gmx.net>
27601
27602 * util/grub-mkrescue.in: Pass unrecognized options to xorriso.
27603
27604 2010-06-12 Colin Watson <cjwatson@ubuntu.com>
27605
27606 Avoid false positives in fs.lst, partmap.lst, and video.lst due to
27607 prototype declarations.
27608
27609 * genmk.rb (PModule::rule): Define GRUB_LST_GENERATOR when
27610 generating fs, partmap, and video lists.
27611 * include/grub/fs.h (grub_fs_register): Omit prototype if
27612 GRUB_LST_GENERATOR is defined.
27613 * include/grub/partition.h (grub_partition_map_register): Likewise.
27614 * include/grub/video.h (grub_video_register): Likewise.
27615
27616 2010-06-12 Javier Martín <lordhabbit@gmail.com>
27617
27618 * include/grub/types.h: Check for GRUB_CPU_SIZEOF_LONG when appropriate.
27619
27620 2010-06-12 Thomas Schmitt <scdbackup@gmx.net>
27621
27622 * util/grub-mkrescue.in: Support --xorriso argument.
27623
27624 2010-06-12 Vladimir Serbinenko <phcoder@gmail.com>
27625
27626 * util/grub-mkrescue.in: Use -graft-points instead of -pathspecs.
27627 Suggested by: Thomas Schmitt.
27628
27629 2010-06-12 Vladimir Serbinenko <phcoder@gmail.com>
27630
27631 * util/grub-mkrescue.in: Add --sort-weight arguments to xorriso.
27632 Suggested by: Thomas Schmitt.
27633
27634 2010-06-12 Vladimir Serbinenko <phcoder@gmail.com>
27635
27636 custom.cfg support.
27637
27638 * conf/common.rmk (grub-mkconfig_SCRIPTS): Add 41_custom.
27639 * util/grub.d/41_custom.in: New file.
27640
27641 2010-06-12 Colin Watson <cjwatson@ubuntu.com>
27642
27643 * util/grub-mkrescue.in (make_image): Remove sh module, which has
27644 been merged back into normal.
27645
27646 2010-06-11 Colin Watson <cjwatson@ubuntu.com>
27647
27648 * include/grub/efi/uga_draw.h (GRUB_EFI_UGA_GLT_MAX): Rename to ...
27649 (GRUB_EFI_UGA_BLT_MAX): ... this (typo fix).
27650
27651 2010-06-11 Colin Watson <cjwatson@ubuntu.com>
27652
27653 * Makefile.in (install-local): Include $(srcdir)/docs/man/$$dest.h2m
27654 when generating manual pages.
27655 * docs/man/grub-bin2h.h2m: New file.
27656 * docs/man/grub-editenv.h2m: New file.
27657 * docs/man/grub-fstest.h2m: New file.
27658 * docs/man/grub-install.h2m: New file.
27659 * docs/man/grub-macho2img.h2m: New file.
27660 * docs/man/grub-mkconfig.h2m: New file.
27661 * docs/man/grub-mkdevicemap.h2m: New file.
27662 * docs/man/grub-mkfont.h2m: New file.
27663 * docs/man/grub-mkimage.h2m: New file.
27664 * docs/man/grub-mkpasswd-pbkdf2.h2m: New file.
27665 * docs/man/grub-mkrelpath.h2m: New file.
27666 * docs/man/grub-mkrescue.h2m: New file.
27667 * docs/man/grub-ofpathname.h2m: New file.
27668 * docs/man/grub-pe2elf.h2m: New file.
27669 * docs/man/grub-probe.h2m: New file.
27670 * docs/man/grub-reboot.h2m: New file.
27671 * docs/man/grub-script-check.h2m: New file.
27672 * docs/man/grub-set-default.h2m: New file.
27673 * docs/man/grub-setup.h2m: New file.
27674
27675 2010-06-10 Vladimir Serbinenko <phcoder@gmail.com>
27676
27677 Use FOR_* macros instead of *_iterate whenever possible.
27678
27679 * commands/handler.c: Removed.
27680 * commands/help.c (grub_cmd_help): Use FOR_COMMANDS.
27681 * commands/minicmd.c (grub_mini_cmd_lsmod): Use FOR_DL_MODULES.
27682 * conf/any-emu.rmk (kernel_img_SOURCES): Remove kern/handler.c.
27683 * conf/common.rmk (script/lexer.c_DEPENDENCIES): Add grub_script.yy.h.
27684 (grub_probe_SOURCES): Remove kern/parser.c.
27685 (util/grub-script-check.c_DEPENDENCIES): Removed.
27686 (grub_script_check_SOURCES): Remove kern/handler.c, kern/parser.c
27687 and grub_script_check_init.c.
27688 (grub_script_check_init.lst): Removed.
27689 (grub_script_check_init.h): Likewise.
27690 (grub_script_check_init.c): Likewise.
27691 (pkglib_MODULES): Remove handler.mod and sh.mod.
27692 (handler_mod_SOURCES): Removed.
27693 (handler_mod_CFLAGS): Likewise.
27694 (handler_mod_LDFLAGS): Likewise.
27695 (normal_mod_SOURCES): Remove normal/handler.c.
27696 Add script/main.c, script/script.c, script/execute.c,
27697 script/function.c, script/lexer.c, grub_script.tab.c
27698 and grub_script.yy.c.
27699 * conf/i386-coreboot.rmk (kernel_img_SOURCES): Remove kern/handler.c.
27700 * conf/i386-ieee1275.rmk (kernel_img_SOURCES): Likewise.
27701 * conf/i386-pc.rmk (kernel_img_SOURCES): Likewise.
27702 (grub_setup_SOURCES): Remove kern/parser.c.
27703 * conf/i386-qemu.rmk (kernel_img_SOURCES): Remove kern/handler.c.
27704 * conf/mips-qemu-mips.rmk (kernel_img_SOURCES): Likewise.
27705 * conf/mips-yeeloong.rmk (kernel_img_SOURCES): Likewise.
27706 * conf/powerpc-ieee1275.rmk (kernel_img_SOURCES): Likewise.
27707 * conf/sparc64-ieee1275.rmk (kernel_img_SOURCES): Likewise.
27708 (grub_setup_SOURCES): Remove kern/parser.c.
27709 * conf/x86-efi.rmk (kernel_img_SOURCES): Remove kern/handler.c.
27710 * gettext/gettext.c (grub_gettext_delete_list): Don't use grub_list_pop.
27711 * include/grub/command.h (grub_command_iterate): Removed.
27712 (FOR_COMMANDS): New macro.
27713 * include/grub/dl.h (grub_dl): New member next.
27714 (grub_dl_iterate): Removed.
27715 (grub_dl_head): New variable declaration.
27716 (FOR_DL_MODULES): New macro.
27717 * include/grub/fs.h: Include list.h.
27718 (grub_fs): Make next first element.
27719 (grub_fs_list): New variable declaration.
27720 (grub_fs_register): Make inline.
27721 (grub_fs_unregister): Likewise.
27722 (grub_fs_iterate): Removed.
27723 (FOR_FILESYSTEMS): New macro.
27724 * include/grub/handler.h: Removed.
27725 * include/grub/list.h (grub_list_hook_t): Removed.
27726 (grub_list_test_t): Likewise.
27727 (grub_list_pop): Likewise.
27728 (grub_list_iterate): Likewise.
27729 (grub_list_insert): Likewise.
27730 (FOR_LIST_ELEMENTS): New macro.
27731 * include/grub/parser.h (grub_parser_class): Removed.
27732 (grub_parser_register): Likewise.
27733 (grub_parser_unregister): Likewise.
27734 (grub_parser_get_current): Likewise.
27735 (grub_parser_set_current): Likewise.
27736 (grub_register_rescue_parser): Likewise.
27737 (grub_rescue_parse_line): New function.
27738 * include/grub/partition.h (FOR_PARTITION_MAPS): Use FOR_LIST_ELEMENTS.
27739 * include/grub/script_sh.h (grub_script_function_list): New variable
27740 declaration.
27741 (FOR_SCRIPT_FUNCTIONS): New macro.
27742 (grub_script_function_iterate): Removed.
27743 (grub_normal_parse_line): New prototype.
27744 * include/grub/term.h (FOR_ACTIVE_TERM_INPUTS): Use FOR_LIST_ELEMENTS.
27745 (FOR_DISABLED_TERM_INPUTS): Likewise.
27746 (FOR_ACTIVE_TERM_OUTPUTS): Likewise.
27747 (FOR_DISABLED_TERM_OUTPUTS): Likewise.
27748 * include/grub/video.h (grub_video_adapter): Move 'next' to first
27749 element.
27750 (grub_video_register): Inline.
27751 (grub_video_unregister): Likewise.
27752 (grub_video_adapter_list): New variable declaration.
27753 (grub_video_iterate): Removed.
27754 (FOR_VIDEO_ADAPTERS): New macro.
27755 * kern/dl.c (grub_dl_list): Removed. All users updated.
27756 (grub_dl_iterate): Removed.
27757 * kern/fs.c (grub_fs_list): Make global.
27758 (grub_fs_register): Removed.
27759 (grub_fs_unregister): Likewise.
27760 (grub_fs_iterate): Likewise.
27761 * kern/handler.c: Removed.
27762 * kern/list.c (grub_list_pop): Removed.
27763 (grub_list_iterate): Likewise.
27764 (grub_list_insert): Likewise.
27765 (grub_named_list_find): Use FOR_LIST_ELEMENTS.
27766 (grub_prio_list_insert): Don't use grub_list_insert.
27767 * kern/main.c (grub_register_rescue_parser): Don't call
27768 grub_register_rescue_parser.
27769 * kern/parser.c (grub_parser_class): Removed.
27770 (grub_parser_execute): Use grub_rescue_parse_line.
27771 * kern/rescue_parser.c (grub_rescue_parse_line): Make global.
27772 (grub_rescue_parser): Removed.
27773 (grub_register_rescue_parser): Likewise.
27774 * kern/rescue_reader.c (grub_rescue_run): Use grub_rescue_parse_line.
27775 * normal/auth.c (is_authenticated): Use FOR_LIST_ELEMENTS.
27776 (grub_auth_check_authentication): Likewise.
27777 * normal/completion.c (iterate_command): Removed.
27778 (grub_normal_do_completion): Use FOR_COMMANDS.
27779 * normal/handler.c: Removed.
27780 * normal/main.c (read_config_file): Remove parser changing.
27781 (grub_normal_execute): Don't call read_handler_list.
27782 (grub_normal_read_line_real): Statically allocate prompt.
27783 (grub_cmdline_run): Use grub_normal_parse_line.
27784 (GRUB_MOD_FINI): Don't call free_handler_list.
27785 * normal/menu_entry.c (run): Likewise.
27786 * script/function.c (grub_script_function_list): Make global.
27787 (grub_script_function_iterate): Removed.
27788 * script/main.c (grub_normal_parse_line): Make global.
27789 (grub_sh_parser): Removed.
27790 (GRUB_MOD_INIT): Likewise.
27791 (GRUB_MOD_FINI): Likewise.
27792 * tests/lib/functional_test.c (grub_functional_test): Use
27793 FOR_LIST_ELEMENTS.
27794 * tests/lib/test.c (free_failures): Don't use grub_list_pop.
27795 (grub_test_run): Use FOR_LIST_ELEMENTS.
27796 * tests/lib/unit_test.c (main): Likewise.
27797 * util/deviceiter.c (grub_util_iterate_devices): Don't use
27798 grub_list_pop.
27799 * util/grub-fstest.c (grub_term_input_class): Removed.
27800 (grub_term_output_class): Likewise.
27801 * util/grub-probe.c: Likewise.
27802 * util/i386/pc/grub-setup.c: Likewise.
27803 * util/sparc64/ieee1275/grub-setup.c: Likewise.
27804 * util/grub-script-check.c (main): Don't call grub_init_all and
27805 grub_fini_all.
27806 * video/video.c (grub_video_adapter_list): Make global.
27807 (grub_video_register): Removed.
27808 (grub_video_unregister): Likewise.
27809 (grub_video_iterate): Likewise.
27810
27811 2010-06-09 Vladimir Serbinenko <phcoder@gmail.com>
27812
27813 * docs/grub.texi (Vendor power-on button): Add Asus EeePC 1005PE as
27814 reported by Henrique Ferreiro.
27815
27816 2010-06-09 Robert Millan <rmh@gnu.org>
27817
27818 * util/grub.d/10_linux.in: Prefer compressed images over non-compressed
27819 ones, when both are available.
27820
27821 2010-06-08 Grégoire Sutre <gregoire.sutre@gmail.com>
27822
27823 Make --version uniform and avoid hard-coded program name.
27824
27825 * util/grub-mkimage.c (main): Use `program_name' instead of
27826 hard-coded string.
27827 * util/i386/pc/grub-setup.c (main): Likewise.
27828 * util/sparc64/ieee1275/grub-setup.c (parse_options): Likewise.
27829 * util/grub-install.in: Save the basename of $0 in $self, and use the
27830 latter in informational messages. Use the same format for --version
27831 as the binary programs.
27832 * util/grub-mkconfig.in: Likewise.
27833 * util/grub-mkrescue.in: Likewise.
27834 * util/grub-reboot.in: Likewise.
27835 * util/grub-set-default.in: Likewise.
27836 * util/i386/efi/grub-install.in: Likewise.
27837 * util/ieee1275/grub-install.in: Likewise.
27838 * util/powerpc/ieee1275/grub-mkrescue.in: Likewise.
27839
27840 2010-06-08 Grégoire Sutre <gregoire.sutre@gmail.com>
27841
27842 * util/i386/pc/grub-setup.c (setup): Use absolute offsets for start of
27843 embedding area. Use <= instead of == when checking for non-emptiness.
27844
27845 2010-06-08 Grégoire Sutre <gregoire.sutre@gmail.com>
27846
27847 * configure.ac: Add `.' to the directories searched for unifont.
27848
27849 2010-06-08 Colin Watson <cjwatson@ubuntu.com>
27850
27851 * .bzrignore: Add ascii.bitmaps, ascii.h, grub_script.yy.c, and
27852 grub_script.yy.h.
27853
27854 2010-06-08 Colin Watson <cjwatson@ubuntu.com>
27855
27856 * docs/grub.texi (History): Expand to cover GRUB 2.
27857 (Serial terminal): Refer to `terminal_input' and `terminal_output'
27858 commands, not `terminal'.
27859 (serial): Likewise.
27860 (terminal_input): New section.
27861 (terminal_output): New section.
27862 (uppermem): New section (stub).
27863 (Obtaining and Building GRUB): Refer to Bazaar, not Subversion.
27864
27865 2010-06-08 Colin Watson <cjwatson@ubuntu.com>
27866
27867 * docs/grub.texi (Security): Menu entries are unrestricted by
27868 default, not restricted to superusers as I had previously thought.
27869 Reword to account for this.
27870
27871 2010-06-07 Colin Watson <cjwatson@ubuntu.com>
27872
27873 * kern/emu/misc.c (device_mapper_null_log): New function.
27874 (grub_device_mapper_supported): New function.
27875 * include/grub/emu/misc.h (grub_device_mapper_supported): Add
27876 prototype.
27877 * kern/emu/hostdisk.c (find_partition_start): Check whether
27878 device-mapper is supported before trying to use it.
27879 * util/deviceiter.c (grub_util_iterate_devices): Likewise.
27880
27881 2010-06-07 Colin Watson <cjwatson@ubuntu.com>
27882
27883 * docs/grub.texi (Naming convention): Use GRUB 2 syntax.
27884 (File name syntax): Likewise.
27885 (help): --all is no longer supported in GRUB 2. Be more precise
27886 about pattern matching.
27887
27888 2010-06-07 Colin Watson <cjwatson@ubuntu.com>
27889
27890 * normal/completion.c (grub_normal_do_completion): When completing
27891 arguments to "set" and the current word contains an equals sign,
27892 skip to after the equals sign before starting completion.
27893
27894 2010-06-07 Colin Watson <cjwatson@ubuntu.com>
27895
27896 * fs/i386/pc/pxe.c (grub_pxe_open): Fix parsing of gateway_ip.
27897
27898 2010-06-07 Colin Watson <cjwatson@ubuntu.com>
27899
27900 * docs/grub.texi (Network): New section.
27901 (Device syntax): The network device is called `(pxe)' in GRUB 2, not
27902 `(nd)' as in GRUB Legacy.
27903 (pxe_unload): New section.
27904
27905 2010-06-07 Colin Watson <cjwatson@ubuntu.com>
27906
27907 * docs/grub.texi (Troubleshooting): `echo' is not usually available
27908 in the rescue shell, so recommend using `set' instead. Thanks,
27909 Jordan Uggla.
27910
27911 2010-06-07 Colin Watson <cjwatson@ubuntu.com>
27912
27913 * docs/grub.texi (Filesystem): Refer to `search' instead of `find'.
27914 (password): New section.
27915 (password_pbkdf2): New section.
27916 (search): New section.
27917 (Security): New section.
27918 (Troubleshooting): New section, currently very incomplete.
27919 (Invoking grub-mkpasswd-pbkdf2): New section.
27920 (Internals): New section, currently very incomplete.
27921
27922 2010-06-07 Colin Watson <cjwatson@ubuntu.com>
27923
27924 * util/grub.d/00_header.in: Add some more quoting (of
27925 "${prev_saved_entry}" and "${boot_once}") needed to make savedefault
27926 work again.
27927 Reported by: Mario 'BitKoenig' Holbe (Debian bug #584812).
27928
27929 2010-06-07 Colin Watson <cjwatson@ubuntu.com>
27930
27931 * util/grub-mkpasswd-pbkdf2.c (main): Rename top-level `c' variable
27932 to `count', fixing variable shadowing that broke the -c option.
27933
27934 2010-06-05 Colin Watson <cjwatson@ubuntu.com>
27935
27936 * util/grub.d/00_header.in: Quote values assigned to `saved_entry',
27937 in case they contain spaces.
27938
27939 2010-06-04 Colin Watson <cjwatson@ubuntu.com>
27940
27941 * util/grub-mkconfig_lib.in (prepare_grub_to_access_device): Prepend
27942 "part_" to partmap module names, in line with grub-install.
27943 Reported by: Jindřich Makovička (Debian bug #584426).
27944
27945 2010-06-04 Colin Watson <cjwatson@ubuntu.com>
27946
27947 * util/grub-mkimage.c: Make target-related error messages slightly
27948 more helpful; -O talks about "format". Explicitly point to the use
27949 of -O if no target is specified.
27950 Reported by: Didier Raboud (Debian bug #584415).
27951
27952 2010-06-03 Colin Watson <cjwatson@ubuntu.com>
27953
27954 * INSTALL: Document several build requirements for optional features
27955 (libdevmapper, ncurses, libusb, SDL, FreeType, GNU Unifont).
27956
27957 2010-06-02 Grégoire Sutre <gregoire.sutre@gmail.com>
27958
27959 * kern/emu/hostdisk.c (convert_system_partition_to_system_disk)
27960 [__NetBSD__]: Handle all device names matching /dev/r[a-z]+[0-9][a-z].
27961 (find_partition_start) [__NetBSD__]: Correct error messages for NetBSD.
27962
27963 2010-06-02 Colin Watson <cjwatson@ubuntu.com>
27964
27965 * docs/grub.texi (Simple configuration): Fix copy-and-paste typo.
27966 Thanks to Jordan Uggla for spotting this.
27967
27968 2010-06-02 Aleš Nesrsta <starous@volny.cz>
27969
27970 Finally make USB usable.
27971
27972 * bus/usb/ohci.c (grub_ohci_reg_t): Add missing values.
27973 (GRUB_OHCI_RHUB_PORT_POWER_MASK): New macro.
27974 (GRUB_OHCI_RHUB_PORT_ALL_POWERED): Likewise.
27975 (GRUB_OHCI_REG_FRAME_INTERVAL_FSMPS_MASK): Likewise.
27976 (GRUB_OHCI_REG_FRAME_INTERVAL_FSMPS_SHIFT): Likewise.
27977 (GRUB_OHCI_REG_FRAME_INTERVAL_FI_SHIFT): Likewise.
27978 (GRUB_OHCI_FSMPS): Likewise.
27979 (GRUB_OHCI_PERIODIC_START): Likewise.
27980 (GRUB_OHCI_FRAME_INTERVAL): Likewise.
27981 (GRUB_OHCI_SET_PORT_ENABLE): Likewise.
27982 (GRUB_OHCI_CLEAR_PORT_ENABLE): Likewise.
27983 (GRUB_OHCI_SET_PORT_RESET): Likewise.
27984 (GRUB_OHCI_SET_PORT_RESET_STATUS_CHANGE): Likewise.
27985 * bus/usb/ohci.c (grub_ohci_pci_iter): Various important fixups.
27986 (grub_ohci_transaction): Likewise.
27987 (grub_ohci_transfer): Improve condition detection algorithms.
27988 Handle toggle property. Program the transactions correctly.
27989 Improve error handling. Various important fixups.
27990 (grub_ohci_portstatus): Put register writes in right order.
27991 * bus/usb/uhci.c (grub_free_queue): Compute last_trans.
27992 (grub_uhci_transfer): Don't show "failed" message on success.
27993 * bus/usb/usb.c (grub_usb_set_configuration): Zero-fill whole "toggle"
27994 array.
27995 (grub_usb_device_initialize): Read first 8 bytes of descriptor to
27996 determine its size.
27997 * bus/usb/usbtrans.c (grub_usb_control_msg): Use descdev.maxsize0 even
27998 before initialization is completed. Use IN direction for empty
27999 transfers. Use last_trans and compute toggle.
28000 * include/grub/usbtrans.h (grub_usb_transfer): New field last_trans.
28001 (GRUB_USB_FEATURE_ENDP_HALT): Correct the value.
28002 (GRUB_USB_FEATURE_DEV_REMOTE_WU): Likewise.
28003 (GRUB_USB_FEATURE_TEST_MODE): Likewise.
28004 * include/grub/usb.h (grub_usb_err_t): New value GRUB_USB_ERR_UNRECOVERABLE.
28005 (grub_usb_device): Increase toggle to 256.
28006 (grub_usbms_subclass_t): New values GRUB_USBMS_SUBCLASS_RBC,
28007 GRUB_USBMS_SUBCLASS_MMC2, GRUB_USBMS_SUBCLASS_UFI and
28008 GRUB_USBMS_SUBCLASS_SFF8070.
28009 * include/grub/scsicmd.h (grub_scsi_test_unit_ready): New structure.
28010 (grub_scsi_inquiry): New member page and alloc_length.
28011 (grub_scsi_request_sense): New structure.
28012 (grub_scsi_request_sense_data): Likewise.
28013 (grub_scsi_read_capacity): New fields logical_block_addr, PMI and
28014 control.
28015 * disk/scsi.c (grub_scsi_request_sense): New function.
28016 (grub_scsi_test_unit_ready): Likewise.
28017 (grub_scsi_inquiry): Fill new fields.
28018 (grub_scsi_read_capacity): Likewise.
28019 (grub_scsi_read10): Add request sense at the end.
28020 (grub_scsi_read12): Likewise.
28021 (grub_scsi_write10): Likewise.
28022 (grub_scsi_write12): Likewise.
28023 (grub_scsi_open): Add Test Unit Ready.
28024 * disk/usbms.c (grub_usbms_finddevs): Check configcnt.
28025 Support additional subclasses. Con't clear halt yet. Activate the
28026 proper config. Calculate LUNs correctly.
28027 (grub_usbms_transfer): Various important fixups.
28028
28029 2010-06-02 Vladimir Serbinenko <phcoder@gmail.com>
28030
28031 * bus/pci.c (grub_pci_iterate) [GRUB_MACHINE_MIPS_YEELOONG]: Skip ghosts.
28032 * bus/usb/ohci.c (grub_ohci_portstatus): Handle R/WC correctly.
28033 (grub_ohci_fini_hw): New function.
28034 (grub_ohci_restore_hw): Likewise.
28035 (GRUB_MOD_INIT(ohci)): Register preboot hook.
28036 (GRUB_MOD_FINI(ohci)): Shutdown OHCI.
28037 * term/usb_keyboard.c: Remove include of grub/machine/console.h.
28038
28039 2010-06-02 Vladimir Serbinenko <phcoder@gmail.com>
28040
28041 Dedicated DMA allocations.
28042
28043 * bus/pci.c (grub_memalign_dma32): New function
28044 (grub_dma_free): Likewise.
28045 (grub_dma_get_virt): Likewise.
28046 (grub_dma_get_phys): Likewise.
28047 * bus/usb/ohci.c (grub_ohci): New members hcca_addr and hcca_chunk.
28048 (grub_ohci_pci_iter): Use dma32_alloc.
28049 (grub_ohci_transfer): Likewise.
28050 * bus/usb/usbtrans.c (grub_usb_control_msg): Likewise.
28051 (grub_usb_bulk_readwrite): Likewise.
28052 * include/grub/pci.h: Add declarations.
28053
28054 2010-06-02 Vladimir Serbinenko <phcoder@gmail.com>
28055
28056 CS5536 support.
28057
28058 * bus/cs5536.c: New file.
28059 * bus/usb/ohci.c (grub_ohci_pci_iter): Check for CS5536.
28060 * conf/i386.rmk (pkglib_MODULES): Add cs5536.mod.
28061 (cs5536_mod_SOURCES): New variable.
28062 (cs5536_mod_CFLAGS): Likewise.
28063 (cs5536_mod_LDFLAGS): Likewise.
28064 * conf/mips-yeeloong.rmk (kernel_img_HEADERS): Add cs5536.h and
28065 machine/pci.h.
28066 (kernel_img_SOURCES): Add bus/cs5536.c.
28067 (pkglib_MODULES): Add usb.mod, usbtest.mod, ohci.mod, usbms.mod and
28068 usb_keyboard.mod.
28069 (usb_mod_SOURCES): New variable.
28070 (usb_mod_CFLAGS): New variable.
28071 (usb_mod_LDFLAGS): New variable.
28072 (usbtest_mod_SOURCES): New variable.
28073 (usbtest_mod_CFLAGS): New variable.
28074 (usbtest_mod_LDFLAGS): New variable.
28075 (ohci_mod_SOURCES): New variable.
28076 (ohci_mod_CFLAGS): New variable.
28077 (ohci_mod_LDFLAGS): New variable.
28078 (usbms_mod_SOURCES): New variable.
28079 (usbms_mod_CFLAGS): New variable.
28080 (usbms_mod_LDFLAGS): New variable.
28081 (usb_keyboard_mod_SOURCES): New variable.
28082 (usb_keyboard_mod_CFLAGS): New variable.
28083 (usb_keyboard_mod_LDFLAGS): New variable.
28084 * include/grub/smbus.h: New file.
28085 * include/grub/cs5536.h: New file.
28086
28087 2010-06-02 Colin Watson <cjwatson@ubuntu.com>
28088
28089 * util/grub.d/00_header.in: Add safety check to make sure that
28090 ${locale_dir} exists before trying to probe it.
28091
28092 2010-06-02 Colin Watson <cjwatson@ubuntu.com>
28093
28094 * docs/grub.texi (SCO UnixWare): Remove, at Vladimir's request and
28095 per the GNU Coding Standards; this is now too obscure to be worth
28096 documenting.
28097 (QNX): Likewise.
28098 (chainloader): Remove cross-reference to `SCO UnixWare'.
28099
28100 2010-06-02 Colin Watson <cjwatson@ubuntu.com>
28101
28102 * docs/grub.texi (Chain-loading): New section.
28103 (DOS/Windows): New section, borrowed from GRUB Legacy with details
28104 adjusted for GRUB 2.
28105 (SCO UnixWare): Likewise.
28106 (QNX): Likewise.
28107 (chainloader): Add reference to `Block list syntax'.
28108 (drivemap): New section.
28109 (parttool): New section.
28110
28111 2010-06-02 Colin Watson <cjwatson@ubuntu.com>
28112
28113 * docs/grub.texi (GNU GRUB manual): Remove reference to `Invoking
28114 the grub shell'.
28115 (Installation): Add reference to `Making a GRUB bootable CD-ROM'.
28116 (Installing GRUB using grub-install): Remove reference to the grub
28117 shell; mention `grub-mkimage' and `grub-setup' instead.
28118 (Invoking grub-install): Likewise.
28119 (Interface): Add reference to `Menu entry editor'.
28120 (serial): Remove `--device' option.
28121
28122 2010-06-02 Colin Watson <cjwatson@ubuntu.com>
28123
28124 * docs/grub.texi (Configuration): New section, documenting
28125 configuration file generation using grub-mkconfig. I've left a slot
28126 for documenting the full shell scripting format but have not yet
28127 started on writing that up.
28128 (Invoking grub-mkconfig): New section.
28129
28130 2010-06-02 Colin Watson <cjwatson@ubuntu.com>
28131
28132 * docs/grub.texi (direntry): Remove grub-terminfo reference.
28133 (GNU GRUB manual): Likewise.
28134 (General commands): Update description of `terminfo' for GRUB 2.
28135
28136 2010-06-02 Colin Watson <cjwatson@ubuntu.com>
28137
28138 * commands/gptsync.c (grub_cmd_gptsync): Fix typos.
28139 (GRUB_MOD_INIT): Fix capitalisation.
28140 * docs/grub.texi (Command-line and menu entry commands): Document
28141 gettext and gptsync commands.
28142
28143 2010-06-02 Colin Watson <cjwatson@ubuntu.com>
28144
28145 * conf/any-emu.rmk (kernel_img_SOURCES) [!x86]: Include
28146 kern/$(target_cpu)/cache.S even if TARGET_NO_MODULES = yes.
28147
28148 2010-06-01 Colin Watson <cjwatson@ubuntu.com>
28149
28150 Add btrfs probing support, currently only in the single-device case.
28151
28152 * kern/emu/getroot.c (find_root_device_from_mountinfo): New
28153 function.
28154 (grub_guess_root_device): Call find_root_device_from_mountinfo
28155 before looking in /dev.
28156
28157 2010-05-31 Vladimir Serbinenko <phcoder@gmail.com>
28158
28159 * disk/i386/pc/biosdisk.c (grub_biosdisk_open): Use
28160 GRUB_DISK_SIZE_UNKNOWN.
28161 * disk/ieee1275/ofdisk.c (grub_ofdisk_open): Likewise.
28162
28163 2010-05-31 Jiro SEKIBA <jir@unicus.jp>
28164
28165 * include/grub/disk.h (GRUB_DISK_SIZE_UNKNOWN): New macro.
28166 * fs/nilfs.c: Support 2nd super block in case 1st one is accidently
28167 corrupted or not synced properly.
28168
28169 2010-05-31 Vladimir Serbinenko <phcoder@gmail.com>
28170
28171 * normal/main.c (grub_normal_add_menu_entry): Avoid going out of args.
28172 Reported by: Seth Goldberg.
28173
28174 2010-05-31 Vladimir Serbinenko <phcoder@gmail.com>
28175
28176 * loader/multiboot_mbi2.c (grub_multiboot_make_mbi): Fix incorrect
28177 addition of dest.
28178 Reported by: Seth Goldberg.
28179
28180 2010-05-31 Vladimir Serbinenko <phcoder@gmail.com>
28181
28182 * commands/setpci.c (grub_setpci_iter): Fix an incorrect function check.
28183 Reported by: Seth Goldberg.
28184
28185 2010-05-31 Vladimir Serbinenko <phcoder@gmail.com>
28186
28187 * loader/multiboot_elfxx.c (grub_multiboot_load_elfXX) [__mips]: Check
28188 64-bit address as signed on MIPS.
28189
28190 2010-05-28 Colin Watson <cjwatson@ubuntu.com>
28191
28192 * configure.ac: AC_PROG_LEX sets LEX to ":" if lex is missing, not
28193 to the empty string.
28194
28195 2010-05-28 BVK Chaitanya <bvk.groups@gmail.com>
28196
28197 Fix grub-emu issues on NetBSD, with gcc 4.1.3.
28198
28199 * conf/any-emu.rmk: Remove unnecessary COMMON_CFLAGS.
28200 * include/grub/emu/misc.h (canonicalize_file_name): New Prototype.
28201 * kern/misc.c (__enable_execute_stack): Disable on
28202 GRUB_MACHINE_EMU.
28203
28204 2010-05-28 Colin Watson <cjwatson@ubuntu.com>
28205
28206 Make grub-probe work with symbolic links under /dev/mapper as well
28207 as with real block devices. The Linux world seems to be (at best)
28208 in transition here, and GRUB shouldn't get caught in the middle.
28209
28210 * kern/emu/getroot.c (find_root_device): Follow symbolic links under
28211 /dev/mapper.
28212
28213 2010-05-27 Colin Watson <cjwatson@ubuntu.com>
28214
28215 * util/grub-script-check.c (main): Ensure defined behaviour on empty
28216 input files (in which case exit zero).
28217
28218 2010-05-27 Colin Watson <cjwatson@ubuntu.com>
28219
28220 * kern/emu/misc.c (canonicalize_file_name): realpath can still
28221 return NULL for various reasons even if it has a maximum-length
28222 buffer: for example, there might be a symlink loop, or the path
28223 might exceed PATH_MAX. If this happens, return NULL.
28224
28225 2010-05-27 Robert Millan <rmh@gnu.org>
28226
28227 * util/grub-mkconfig_lib.in (prepare_grub_to_access_device): Insert
28228 partmap module to handle cross-partmap setups.
28229 Reported by Orestes Mas. Gràcies!
28230
28231 2010-05-27 Colin Watson <cjwatson@ubuntu.com>
28232
28233 * util/grub-mkrescue.in: Initialise override_dir rather than
28234 assuming that it's unset or empty in the environment.
28235
28236 2010-05-26 Grégoire Sutre <gregoire.sutre@gmail.com>
28237
28238 * kern/emu/hostdisk.c (find_partition_start) [__NetBSD__]: Renamed
28239 variable index into p_index to suppress a warning with -Wshadow.
28240
28241 2010-05-25 BVK Chaitanya <bvk.groups@gmail.com>
28242
28243 * INSTALL: Added flex >= 2.5.35 requirement.
28244
28245 2010-05-23 Vladimir Serbinenko <phcoder@gmail.com>
28246
28247 * commands/usbtest.c (grub_usb_get_string): Properly support UTF-16.
28248
28249 2010-05-23 Vladimir Serbinenko <phcoder@gmail.com>
28250
28251 cmostest support.
28252
28253 * commands/i386/cmostest.c: New file.
28254 * conf/i386-coreboot.rmk (pkglib_MODULES): Add cmostest.mod.
28255 (cmostest_mod_SOURCES): New variable.
28256 (cmostest_mod_CFLAGS): Likewise.
28257 (cmostest_mod_LDFLAGS): Likewise.
28258 * conf/i386-pc.rmk: Likewise.
28259 * docs/grub.texi (Vendor power-on keys): New section.
28260 * util/grub-mkconfig.in: export GRUB_DEFAULT_BUTTON,
28261 GRUB_HIDDEN_TIMEOUT_BUTTON, GRUB_TIMEOUT_BUTTON
28262 and GRUB_BUTTON_CMOS_ADDRESS.
28263 * util/grub.d/00_header.in: Handle powering-on by separate button.
28264
28265 2010-05-23 Vladimir Serbinenko <phcoder@gmail.com>
28266
28267 * gfxmenu/gui_list.c (draw_menu): Don't add scrollbar width to padding.
28268 Removed drawing_scrollbar argument. All users updated
28269 Fixes #29792.
28270 Reported by Jo Shields
28271
28272 2010-05-23 Vladimir Serbinenko <phcoder@gmail.com>
28273
28274 * gfxmenu/view.c (grub_gfxmenu_draw_terminal_box): Apply only to current
28275 buffer since gfxterm handles double repaint.
28276
28277 2010-05-23 Vladimir Serbinenko <phcoder@gmail.com>
28278
28279 * gfxmenu/gfxmenu.c (grub_gfxmenu_try): Change viewport on both buffers.
28280 * term/gfxterm.c (real_scroll): Likewise.
28281
28282 2010-05-21 Vladimir Serbinenko <phcoder@gmail.com>
28283
28284 * kern/i386/pc/mmap.c (grub_machine_mmap_iterate): Zero-fill entry
28285 before calling BIOS.
28286
28287 2010-05-21 Vladimir Serbinenko <phcoder@gmail.com>
28288
28289 * include/grub/i18n.h: Always enable grub_gettext.
28290
28291 2010-05-21 Vladimir Serbinenko <phcoder@gmail.com>
28292
28293 * kern/i386/pc/init.c (make_install_device): Fix a leftover usage of old
28294 partition naming style.
28295
28296 2010-05-21 Colin Watson <cjwatson@ubuntu.com>
28297
28298 * util/grub-mkconfig.in: Fix handling of -o so that it works when
28299 not the first option.
28300
28301 2010-05-20 Colin Watson <cjwatson@ubuntu.com>
28302
28303 * util/grub-mkrelpath.c (usage): Remove excess apostrophe.
28304
28305 2010-05-20 Colin Watson <cjwatson@ubuntu.com>
28306
28307 * util/misc.c: Move inclusion of <limits.h> to ...
28308 * kern/emu/misc.c: ... here. Needed for canonicalize_file_name.
28309
28310 2010-05-20 Grégoire Sutre <gregoire.sutre@gmail.com>
28311
28312 * kern/emu/hostdisk.c (grub_util_biosdisk_get_grub_dev) [__NetBSD__]:
28313 Fix merge error in NetBSD code.
28314 (find_partition_start) [__NetBSD__]: Likewise.
28315
28316 2010-05-19 BVK Chaitanya <bvk.groups@gmail.com>
28317
28318 Fix grub-mkrescue usage unit testing.
28319
28320 * tests/util/grub-shell.in: Use --grub-mkimage with grub-mkrescue.
28321
28322 2010-05-18 Christian Franke <franke@computer.org>
28323
28324 * util/grub.d/10_windows.in: Use path names instead of
28325 drive letters to prevent warning from Cygwin 1.7.
28326 Add drivemap command to menuentry if needed.
28327
28328 2010-05-18 Justus Winter <4winter@informatik.uni-hamburg.de>
28329
28330 * util/grub.d/10_hurd.in: Include all gnumach* kernels, not only
28331 gnumach and gnumach.gz.
28332
28333 2010-05-18 Vladimir Serbinenko <phcoder@gmail.com>
28334
28335 * include/grub/i18n.h (gettext): Inline instead of using #define.
28336 (grub_gettext): Likewise.
28337 (_): Likewise.
28338
28339 2010-05-18 Vladimir Serbinenko <phcoder@gmail.com>
28340
28341 * Makefile.in (CPPFLAGS): Replace -DGRUB_LIBDIR with
28342 -DGRUB_PKGLIBROOTDIR= and prepend @PACKAGE_TARNAME@. All users updated.
28343 * util/grub-mkimage.c (image_targets): Add i386-multiboot.
28344 (main): Add a slash after pkglibdirroot.
28345
28346 2010-05-18 Vladimir Serbinenko <phcoder@gmail.com>
28347
28348 * util/grub-install.in: Add missing "in" keyword.
28349
28350 2010-05-18 Vladimir Serbinenko <phcoder@gmail.com>
28351
28352 * util/grub-mkrescue.in: Remove -O i386-pc duplication.
28353 Reported by: Seth Goldberg.
28354
28355 2010-05-18 Vladimir Serbinenko <phcoder@gmail.com>
28356
28357 * po/POTFILES: Rename util/grub-mkrawimage.c to util/grub-mkimage.c.
28358
28359 2010-05-18 Colin Watson <cjwatson@ubuntu.com>
28360
28361 * configure.ac: Check for Linux device-mapper support.
28362
28363 * util/hostdisk.c (device_is_mapped): New function.
28364 (find_partition_start): New function, partly broken out from
28365 linux_find_partition and grub_util_biosdisk_get_grub_dev but with
28366 device-mapper support added.
28367 (linux_find_partition): Use find_partition_start.
28368 (convert_system_partition_to_system_disk): Add `st' argument.
28369 Support Linux /dev/mapper/* devices if device-mapper support is
28370 available; only DM-RAID devices are understood at present.
28371 (find_system_device): Add `st' argument. Pass it to
28372 convert_system_partition_to_system_disk.
28373 (grub_util_biosdisk_get_grub_dev): Pass stat result to
28374 find_system_device and convert_system_partition_to_system_disk. Use
28375 find_partition_start.
28376
28377 * conf/common.rmk (grub_mkdevicemap_SOURCES): Add kern/env.c,
28378 kern/err.c, kern/list.c, kern/misc.c, and kern/emu/mm.c.
28379 * util/deviceiter.c [__linux__]: Define MINOR.
28380 (grub_util_iterate_devices): Add support for DM-RAID disk devices.
28381 * util/mkdevicemap.c (grub_putchar): New function.
28382 (grub_getkey): New function.
28383 (grub_refresh): New function.
28384 (main): Set debug=all if -v -v is used.
28385
28386 2010-05-18 Colin Watson <cjwatson@ubuntu.com>
28387
28388 Fix build with non-GNU libcs.
28389
28390 * util/misc.c (canonicalize_file_name): Move to ...
28391 * kern/emu/misc.c (canonicalize_file_name): ... here. Needed by
28392 grub_make_system_path_relative_to_its_root.
28393
28394 2010-05-18 Colin Watson <cjwatson@ubuntu.com>
28395
28396 * util/grub-mkrescue.in: Sync up with grub-install in terms of how
28397 we handle finding grub-mkimage. Default to finding grub-mkimage in
28398 ${bindir} with program_transform_name applied, and provide a
28399 --grub-mkimage option to override this.
28400
28401 2010-05-17 Vladimir Serbinenko <phcoder@gmail.com>
28402
28403 Remove grub-mkisofs.
28404
28405 * conf/common.rmk (bin_UTILITIES): Remove grub-mkisofs.
28406 (grub_mkisofs_SOURCES): Removed.
28407 (grub_mkisofs_CFLAGS): Removed.
28408 * util/mkisofs/defaults.h: Removed.
28409 * util/mkisofs/eltorito.c: Likewise.
28410 * util/mkisofs/exclude.h: Likewise.
28411 * util/mkisofs/hash.c: Likewise.
28412 * util/mkisofs/include/: Likewise.
28413 * util/mkisofs/include/fctldefs.h: Likewise.
28414 * util/mkisofs/include/mconfig.h: Likewise.
28415 * util/mkisofs/include/prototyp.h: Likewise.
28416 * util/mkisofs/include/statdefs.h: Likewise.
28417 * util/mkisofs/iso9660.h: Likewise.
28418 * util/mkisofs/joliet.c: Likewise.
28419 * util/mkisofs/match.c: Likewise.
28420 * util/mkisofs/match.h: Likewise.
28421 * util/mkisofs/mkisofs.c: Likewise.
28422 * util/mkisofs/mkisofs.h: Likewise.
28423 * util/mkisofs/msdos_partition.h: Likewise.
28424 * util/mkisofs/multi.c: Likewise.
28425 * util/mkisofs/name.c: Likewise.
28426 * util/mkisofs/rock.c: Likewise.
28427 * util/mkisofs/tree.c: Likewise.
28428 * util/mkisofs/write.c: Likewise.
28429
28430 2010-05-17 Vladimir Serbinenko <phcoder@gmail.com>
28431
28432 Unify grub-mkimage accross platforms.
28433
28434 * Makefile.in (CPPFLAGS): Set GRUB_LIBDIR to $(libdir).
28435 * conf/common.rmk (bin_UTILITIES): Removed grub-mkelfimage.
28436 (grub_mkelfimage_SOURCES): Removed.
28437 (util/elf/grub-mkimage.c_DEPENDENCIES): Renamed to ..
28438 (util/grub-mkimage.c_DEPENDENCIES): .. this.
28439 (bin_UTILITIES): Add grub-mkimage.
28440 (grub_mkimage_SOURCES): New variable.
28441 (kernel_img_HEADERS): Remove machine/kernel.h.
28442 * conf/i386-pc.rmk (pkglib_IMAGES): Remove kernel.img.
28443 (pkglib_PROGRAMS): Add kernel.img.
28444 (kernel_img_HEADERS): Add machine/kernel.h.
28445 (kernel_img_FORMAT): Removed.
28446 (bin_UTILITIES): Remove grub-mkimage.
28447 (grub_mkimage_SOURCES): Removed.
28448 (grub_mkimage_CFLAGS): Likewise.
28449 (util/grub-mkrawimage.c_DEPENDENCIES): Likewise.
28450 * conf/i386-qemu.rmk (pkglib_IMAGES): Remove kernel.img.
28451 (pkglib_PROGRAMS): Add kernel.img.
28452 (bin_UTILITIES): Remove grub-mkimage.
28453 (grub_mkimage_SOURCES): Removed.
28454 (grub_mkimage_CFLAGS): Likewise.
28455 (util/grub-mkrawimage.c_DEPENDENCIES): Likewise.
28456 * conf/mips-qemu-mips.rmk (pkglib_IMAGES): Remove kernel.img.
28457 (pkglib_PROGRAMS): Add kernel.img.
28458 * conf/mips-yeeloong.rmk (pkglib_IMAGES): Remove kernel.img.
28459 (pkglib_PROGRAMS): Add kernel.img.
28460 * conf/mips.rmk (bin_UTILITIES): Remove grub-mkimage.
28461 (grub_mkimage_SOURCES): Removed.
28462 (grub_mkimage_CFLAGS): Likewise.
28463 (util/grub-mkrawimage.c_DEPENDENCIES): Likewise.
28464 * conf/sparc64-ieee1275.rmk (pkglib_IMAGES): Remove kernel.img.
28465 (pkglib_PROGRAMS): Add kernel.img.
28466 (bin_UTILITIES): Remove grub-mkimage.
28467 (grub_mkimage_SOURCES): Removed.
28468 (grub_mkimage_CFLAGS): Likewise.
28469 (util/grub-mkrawimage.c_DEPENDENCIES): Likewise.
28470 * conf/x86-efi.rmk (bin_UTILITIES): Remove grub-mkimage.
28471 (grub_mkimage_SOURCES): Removed.
28472 (grub_mkimage_CFLAGS): Likewise.
28473 (util/grub-mkrawimage.c_DEPENDENCIES): Likewise.
28474 * configure.ac (machine_CFLAGS): Add "-DMACHINE".
28475 * include/grub/efi/pe32.h (grub_pe32_optional_header): Split into ...
28476 (grub_pe32_optional_header): ... this.
28477 (grub_pe64_optional_header): ... and this. All users updated.
28478 (GRUB_PE32_PE32_MAGIC): Split into ..
28479 (GRUB_PE32_PE32_MAGIC): .. this.
28480 (GRUB_PE32_PE64_MAGIC): .. and this.
28481 (GRUB_PE32_SIGNATURE_SIZE): New definition.
28482 * include/grub/elf.h (PT_GNU_STACK): New definition.
28483 * include/grub/i386/coreboot/kernel.h: Merged into include/grub/offsets.h. All users updated.
28484 * include/grub/i386/efi/kernel.h: Likewise.
28485 * include/grub/i386/kernel.h: Likewise.
28486 * include/grub/i386/pc/kernel.h: Likewise.
28487 * include/grub/i386/qemu/boot.h: Likewise.
28488 * include/grub/mips/kernel.h: Likewise.
28489 * include/grub/mips/qemu-mips/kernel.h: Likewise.
28490 * include/grub/powerpc/ieee1275/kernel.h: Likewise.
28491 * include/grub/powerpc/kernel.h: Likewise.
28492 * include/grub/sparc64/ieee1275/boot.h: Likewise.
28493 * include/grub/sparc64/ieee1275/kernel.h: Likewise.
28494 * include/grub/sparc64/kernel.h: Likewise.
28495 * include/grub/x86_64/efi/kernel.h: Likewise.
28496 * include/grub/x86_64/kernel.h: Likewise.
28497 * include/grub/offsets.h: New file.
28498 * include/grub/kernel.h (grub_module_info): Split into ...
28499 (grub_module_info32): ... this.
28500 (grub_module_info64): ... and this.
28501 * include/grub/i386/pc/boot.h (GRUB_BOOT_MACHINE_KERNEL_SEG): Moved from here ...
28502 * include/grub/offsets.h (GRUB_BOOT_I386_PC_KERNEL_SEG): ... here.
28503 (grub_boot_blocklist): Moved from here ...
28504 * include/grub/offsets.h (grub_pc_bios_boot_blocklist): ... here.
28505 * include/grub/i386/pc/memory.h (GRUB_MEMORY_MACHINE_UPPER): Moved from here.
28506 * include/grub/offsets.h (GRUB_MEMORY_I386_PC_UPPER): .. here.
28507 * include/grub/types.h (grub_target_to_host16): Removed.
28508 (grub_target_to_host32): Likewise.
28509 (grub_target_to_host64): Likewise.
28510 (grub_host_to_target16): Likewise.
28511 (grub_host_to_target32): Likewise.
28512 (grub_host_to_target64): Likewise.
28513 (grub_host_to_target_addr): Likewise.
28514
28515 Support grub-mkrescue for efi, coreboot and qemu.
28516
28517 * conf/x86-efi.rmk (bin_SCRIPTS): Add grub-mkrescue.
28518 * kern/efi/init.c (grub_efi_set_prefix): Handle baked in prefix.
28519 * util/elf/grub-mkimage.c: Merged into util/grub-mkimage.c.
28520 * util/grub-mkrawimage.c: Moved from here ...
28521 * util/grub-mkimage.c: ... here. All users updated.
28522 (ALIGN_ADDR): Use image_target.
28523 (TARGET_NO_FIELD): New const.
28524 (image_target_desc): New type.
28525 (image_targets): New array.
28526 (grub_target_to_host64): Use image_target.
28527 (grub_target_to_host32): Likewise.
28528 (grub_target_to_host16): Likewise.
28529 (grub_host_to_target64): Likewise.
28530 (grub_host_to_target32): Likewise.
28531 (grub_host_to_target16): Likewise.
28532 (grub_host_to_target_addr): Likewise.
28533 (generate_image): Handle multiimage.
28534 (main): Require -O parameter. All users updated.
28535 * util/grub-mkimagexx.c: New file. Based on util/grub-mkrawimage.c and
28536 util/efi/grub-mkimage.c
28537 * util/grub-mkrescue.in: Handle coreboot, efi and qemu.
28538 New option --rom-directory.
28539 Use xorriso.
28540 * util/i386/efi/grub-mkimage.c: Removed.
28541 * util/i386/pc/grub-setup.c (grub_target_to_host16): New definition.
28542 (grub_target_to_host32): Likewise.
28543 (grub_target_to_host64): Likewise.
28544 (grub_host_to_target16): Likewise.
28545 (grub_host_to_target32): Likewise.
28546 (grub_host_to_target64): Likewise.
28547 * util/sparc64/ieee1275/grub-setup.c (grub_target_to_host16): New definition.
28548 (grub_target_to_host32): Likewise.
28549 (grub_target_to_host64): Likewise.
28550 (grub_host_to_target16): Likewise.
28551 (grub_host_to_target32): Likewise.
28552 (grub_host_to_target64): Likewise.
28553
28554 2010-05-17 BVK Chaitanya <bvk.groups@gmail.com>
28555
28556 Source tree is reorganized for emu build.
28557
28558 * include/grub/util/console.h: Move from here...
28559 * include/grub/emu/console.h: ...to here.
28560 * include/grub/util/getroot.h: Move from here...
28561 * include/grub/emu/getroot.h: ...to here.
28562 * include/grub/util/hostdisk.h: Move from here...
28563 * include/grub/emu/hostdisk.h: ...to here.
28564 * util/console.c: Move from here...
28565 * kern/emu/console.c: ...to here.
28566 * util/getroot.c: Move from here...
28567 * kern/emu/getroot.c: ...to here.
28568 * util/grub-emu.c: Move from here...
28569 * kern/emu/main.c: ...to here.
28570 * util/hostdisk.c: Move from here...
28571 * kern/emu/hostdisk.c: ...to here.
28572 * util/hostfs.c: Move from here...
28573 * kern/emu/hostfs.c: ...to here.
28574 * util/mm.c: Move from here...
28575 * kern/emu/mm.c: ...to here.
28576 * util/pci.c: Move from here...
28577 * bus/emu/pci.c: ...to here.
28578 * util/sdl.c: Move from here...
28579 * video/emu/sdl.c: ...to here.
28580 * util/time.c: Move from here...
28581 * kern/emu/time.c: ...to here.
28582 * util/usb.c: Move from here...
28583 * bus/usb/emu/usb.c: ...to here.
28584
28585 * include/grub/emu/misc.h: New header for grub-emu functions.
28586 * kern/emu/misc.c: grub-emu functions separated from util/misc.c
28587
28588 * conf/any-emu.rmk: Rule updates for above renames.
28589 * conf/common.rmk: Likewise.
28590 * conf/i386-pc.rmk: Likewise.
28591 * conf/i386-qemu.rmk: Likewise.
28592 * conf/mips.rmk: Likewise.
28593 * conf/sparc64-ieee1275.rmk: Likewise.
28594 * conf/x86-efi.rmk: Likewise.
28595
28596 * disk/lvm.h: #include updates for above renames.
28597 * util/grub-mkrelpath.c: Likewise.
28598 * util/grub-probe.c: Likewise.
28599 * util/i386/pc/grub-setup.c: Likewise.
28600 * util/sparc64/ieee1275/grub-setup.c: Likewise.
28601 * kern/emu/console.c: Likewise.
28602 * kern/emu/getroot.c: Likewise.
28603 * kern/emu/hostdisk.c: Likewise.
28604 * kern/emu/main.c: Likewise. (was grub-emu.c earlier)
28605
28606 * include/grub/dl.h: Remove grub_dl_{ref,unref}.
28607 * include/grub/util/misc.h: Move grub-emu functions to emu/misc.h.
28608 * kern/dl.c: Handle null mod in grub_dl_{ref,unref}.
28609 * util/misc.c: Remove grub-emu functions.
28610
28611 2010-05-13 Vladimir Serbinenko <phcoder@gmail.com>
28612
28613 Fix gfxmenu crash.
28614 Reported by: Thorsten Grützmacher.
28615
28616 * gfxmenu/gui_circular_progress.c (circprog_destroy): Unregister
28617 timeout hook.
28618 (circprog_set_property): Register and unregister timeout hook.
28619 * gfxmenu/gui_label.c (grub_gui_label): New fields template and value.
28620 (label_destroy): Free template. and unregister hook.
28621 (label_set_state): New function.
28622 (label_set_property): Handle templates and hooks.
28623 * gfxmenu/gui_progress_bar.c (progress_bar_destroy): Unregister
28624 timeout hook.
28625 (progress_bar_set_property): Register and unregister timeout hook.
28626 * gfxmenu/view.c (TIMEOUT_COMPONENT_ID): Move from here ...
28627 * include/grub/gui.h (GRUB_GFXMENU_TIMEOUT_COMPONENT_ID): ...to here
28628 * gfxmenu/view.c (grub_gfxmenu_timeout_notifications): New variable.
28629 (update_timeout_visit): Removed.
28630 (update_timeouts): New function.
28631 (redraw_timeouts): Likewise.
28632 (grub_gfxmenu_print_timeout): Use update_timeouts and redraw_timeouts.
28633 (grub_gfxmenu_clear_timeout): Likewise.
28634 * include/grub/gui.h (grub_gfxmenu_set_state_t): New type.
28635 (grub_gfxmenu_timeout_notify): Likewise.
28636 (grub_gfxmenu_timeout_notifications): New external variable.
28637 (grub_gfxmenu_timeout_register): New function.
28638 (grub_gfxmenu_timeout_unregister): Likewise.
28639
28640 2010-05-09 Vladimir Serbinenko <phcoder@gmail.com>
28641
28642 Transform (broken) vga terminal into (working) vga video driver.
28643
28644 * conf/i386-pc.rmk (vga_mod_SOURCES): Change term/i386/pc/vga.c to
28645 video/i386/pc/vga.c.
28646 * include/grub/video.h (grub_video_driver_id):
28647 Add GRUB_VIDEO_DRIVER_VGA.
28648 * term/i386/pc/vga.c: Renamed to ...
28649 * video/i386/pc/vga.c: ...this
28650 (DEBUG_VGA): Removed.
28651 (CHAR_WIDTH): Likewise.
28652 (CHAR_HEIGHT): Likewise.
28653 (TEXT_WIDTH): Likewise.
28654 (TEXT_HEIGHT): Likewise.
28655 (DEFAULT_FG_COLOR): Likewise.
28656 (DEFAULT_BG_COLOR): Likewise.
28657 (colored_char): Likewise.
28658 (xpos): Likewise.
28659 (ypos): Likewise.
28660 (cursor_state): Likewise.
28661 (fg_color): Likewise.
28662 (bg_color): Likewise.
28663 (text_buf): Likewise.
28664 (page): Likewise.
28665 (font): Likewise.
28666 (framebuffer): New variable.
28667 (set_read_map): Disabled.
28668 (setup): New variable.
28669 (is_target): Likewise.
28670 (grub_vga_mod_init): Likewise.
28671 (grub_vga_mod_fini): Likewise.
28672 (check_vga_mem): Likewise.
28673 (write_char): Likewise.
28674 (write_cursor): Likewise.
28675 (scroll_up): Likewise.
28676 (grub_vga_putchar): Likewise.
28677 (grub_vga_getcharwidth): Likewise.
28678 (grub_vga_getwh): Likewise.
28679 (grub_vga_getxy): Likewise.
28680 (grub_vga_gotoxy): Likewise.
28681 (grub_vga_cls): Likewise.
28682 (grub_vga_setcolorstate): Likewise.
28683 (grub_vga_setcursor): Likewise.
28684 (grub_video_vga_init): New function.
28685 (grub_video_vga_setup): Likewise.
28686 (grub_video_vga_fini): Likewise.
28687 (update_target): Likewise.
28688 (grub_video_vga_blit_bitmap): Likewise.
28689 (grub_video_vga_blit_render_target): Likewise.
28690 (grub_video_vga_set_active_render_target): Likewise.
28691 (grub_video_vga_get_active_render_target): Likewise.
28692 (grub_video_vga_swap_buffers): Likewise.
28693 (grub_video_vga_set_palette): Likewise.
28694 (grub_video_vga_get_info_and_fini): Likewise.
28695 (grub_vga_term): Removed.
28696 (grub_video_vga_adapter): New variable.
28697 (GRUB_MOD_INIT): Register a video driver instead of terminal.
28698 (GRUB_MOD_FINI): Unrefister a video driver instead of terminal.
28699
28700 2010-05-05 Vladimir Serbinenko <phcoder@gmail.com>
28701
28702 * video/readers/jpeg.c: Indented.
28703
28704 2010-05-05 Vladimir Serbinenko <phcoder@gmail.com>
28705
28706 Various jpeg cleanups.
28707
28708 * video/readers/jpeg.c (grub_jpeg_get_huff_code): Use ARRAY_SIZE.
28709 (grub_jpeg_decode_quan_table): Use sizeof.
28710 (grub_jpeg_decode_du): Use ARRAY_SIZE.
28711
28712 2010-05-05 Peter Hurley <No e-mail available> (tiny change)
28713
28714 * video/readers/jpeg.c (grub_jpeg_decode_huff_table): Loop over all
28715 tables. Ignore non-last ac bit.
28716 (grub_jpeg_decode_quan_table): Likewise.
28717
28718 2010-05-05 Vladimir Serbinenko <phcoder@gmail.com>
28719
28720 * include/grub/ieee1275/ieee1275.h (grub_ieee1275_flag): New value
28721 GRUB_IEEE1275_FLAG_NO_PRE1_5M_CLAIM.
28722 * kern/ieee1275/cmain.c (grub_ieee1275_find_options): Set
28723 GRUB_IEEE1275_FLAG_NO_PRE1_5M_CLAIM on qemu.
28724 * kern/ieee1275/init.c (grub_claim_heap): Don0t allocate below
28725 1.5MiB if GRUB_IEEE1275_FLAG_NO_PRE1_5M_CLAIM is set.
28726
28727 2010-05-05 Vladimir Serbinenko <phcoder@gmail.com>
28728
28729 * term/ieee1275/ofconsole.c (grub_ofconsole_getkey): Fix off-by-one
28730 error.
28731
28732 2010-05-05 Vladimir Serbinenko <phcoder@gmail.com>
28733
28734 * term/ieee1275/ofconsole.c (grub_ofconsole_readkey): Support C0 code.
28735
28736 2010-05-03 Vladimir Serbinenko <phcoder@gmail.com>
28737
28738 * commands/parttool.c (grub_cmd_parttool): Fix #if !GRUB_NO_MODULES
28739 condition.
28740
28741 2010-05-03 Vladimir Serbinenko <phcoder@gmail.com>
28742
28743 * kern/mm.c (grub_real_malloc): Put magic and size assignment in common
28744 part.
28745
28746 2010-05-03 Vladimir Serbinenko <phcoder@gmail.com>
28747
28748 * kern/mm.c (grub_mm_init_region): Check for region size after aligning
28749 pointers.
28750
28751 2010-05-03 Vladimir Serbinenko <phcoder@gmail.com>
28752
28753 * kern/mm.c (grub_real_malloc): Fix size calculation when extra == 0.
28754
28755 2010-05-01 Christian Franke <franke@computer.org>
28756
28757 * util/grub-mkconfig_lib.in (make_system_path_relative_to_its_root):
28758 Remove broken Cygwin path conversion.
28759 * util/misc.c: [__CYGWIN__] Add include and define.
28760 [__CYGWIN__] (get_win32_path): Copy function from getroot.c, modify
28761 for Cygwin 1.7.
28762 (make_system_path_relative_to_its_root): Simplify loop, replace early
28763 return by break.
28764 [__CYGWIN__] Add conversion to win32 path.
28765 Include "/" case in trailing slash removal.
28766
28767 2010-05-01 Vladimir Serbinenko <phcoder@gmail.com>
28768
28769 * kern/main.c (grub_load_config): Fix copy-pasted comment.
28770 Reported by: Seth Goldberg
28771
28772 2010-05-01 Vladimir Serbinenko <phcoder@gmail.com>
28773
28774 * commands/help.c (grub_cmd_help): Fix a typo.
28775 Reported by: Seth Goldberg
28776
28777 2010-05-01 Vladimir Serbinenko <phcoder@gmail.com>
28778
28779 * commands/hashsum.c (GRUB_MOD_INIT): Remove duplication of command
28780 name and add N_.
28781 * commands/i386/pc/drivemap.c (GRUB_MOD_INIT): Likewise.
28782 * commands/iorw.c (GRUB_MOD_INIT): Likewise.
28783 * commands/password_pbkdf2.c (GRUB_MOD_INIT): Likewise.
28784 * commands/regexp.c (GRUB_MOD_INIT): Likewise.
28785 * commands/setpci.c (GRUB_MOD_INIT): Likewise.
28786 * commands/terminal.c (GRUB_MOD_INIT): Likewise.
28787 * efiemu/main.c (GRUB_MOD_INIT): Likewise.
28788 * font/font_cmd.c (GRUB_MOD_INIT): Likewise.
28789 * kern/corecmd.c (GRUB_MOD_INIT): Likewise.
28790 * mmap/mmap.c (GRUB_MOD_INIT): Likewise.
28791 * normal/context.c (GRUB_MOD_INIT): Likewise.
28792 * normal/main.c (GRUB_MOD_INIT): Likewise.
28793 * term/gfxterm.c (GRUB_MOD_INIT): Likewise.
28794 * term/serial.c (GRUB_MOD_INIT): Likewise.
28795 * term/terminfo.c (GRUB_MOD_INIT): Likewise.
28796
28797 2010-05-01 Vladimir Serbinenko <phcoder@gmail.com>
28798
28799 * kern/mm.c (grub_real_malloc): Satisfy alignment requirement when
28800 extra == 0.
28801
28802 2010-05-01 Vladimir Serbinenko <phcoder@gmail.com>
28803
28804 * commands/iorw.c: New file.
28805 * conf/i386.rmk (pkglib_MODULES): Add iorw.mod.
28806 (iorw_mod_SOURCES): New variable.
28807 (iorw_mod_CFLAGS): Likewise.
28808 (iorw_mod_LDFLAGS): Likewise.
28809
28810 2010-05-01 Vladimir Serbinenko <phcoder@gmail.com>
28811
28812 Hotkey support
28813
28814 * include/grub/menu.h (grub_menu_entry): New field 'hotkey'.
28815 * normal/main.c (hotkey_aliases): New variable.
28816 (grub_normal_add_menu_entry): Parse "--hotkey".
28817 * normal/menu_text.c (run_menu): Handle hotkeys.
28818
28819 2010-05-01 Vladimir Serbinenko <phcoder@gmail.com>
28820
28821 * kern/i386/coreboot/init.c (grub_machine_init): Call
28822 grub_machine_mmap_init on qemu.
28823
28824 2010-05-01 Vladimir Serbinenko <phcoder@gmail.com>
28825
28826 * boot/i386/qemu/boot.S: Add a missing .code16.
28827
28828 2010-05-01 Vladimir Serbinenko <phcoder@gmail.com>
28829
28830 Use LBIO on coreboot.
28831
28832 * conf/i386-coreboot.rmk (kernel_img_SOURCES): Change
28833 kern/i386/multiboot_mmap.c to kern/i386/coreboot/mmap.c.
28834 * include/grub/i386/coreboot/memory.h (GRUB_LINUXBIOS_MEMBER_LINK):
28835 New declaration.
28836 * kern/i386/coreboot/init.c (grub_machine_init): Don't call
28837 grub_machine_mmap_init on coreboot.
28838 * kern/i386/coreboot/mmap.c (grub_linuxbios_table_iterate): Handle
28839 GRUB_LINUXBIOS_MEMBER_LINK.
28840 (grub_machine_mmap_iterate): Fix declaration.
28841 * kern/i386/coreboot/startup.S: Don't save mbi location on coreboot.
28842
28843 2010-05-01 Vladimir Serbinenko <phcoder@gmail.com>
28844
28845 Split coreboot and multiboot ports.
28846
28847 * conf/i386-multiboot.rmk: New file.
28848 * configure.ac: Add multiboot port.
28849 * include/grub/i386/multiboot/boot.h: New file.
28850 * include/grub/i386/multiboot/console.h: Likewise.
28851 * include/grub/i386/multiboot/init.h: Likewise.
28852 * include/grub/i386/multiboot/kernel.h: Likewise.
28853 * include/grub/i386/multiboot/loader.h: Likewise.
28854 * include/grub/i386/multiboot/memory.h: Likewise.
28855 * include/grub/i386/multiboot/serial.h: Likewise.
28856 * include/grub/i386/multiboot/time.h: Likewise.
28857 * include/grub/multiboot.h: Add GRUB_MACHINE_MULTIBOOT to ifdef.
28858 * loader/multiboot.c: Likewise.
28859 * loader/multiboot_mbi2.c: Likewise.
28860 * util/grub-mkrescue.in: Generate multiboot rescue.
28861
28862 2010-05-01 Vladimir Serbinenko <phcoder@gmail.com>
28863
28864 * kern/parser.c (grub_parser_execute): Cope with read-only config.
28865
28866 2010-05-01 Vladimir Serbinenko <phcoder@gmail.com>
28867
28868 Merge handling of input and output terminals. Fix a hang.
28869
28870 * commands/terminal.c (abstract_terminal): New struct.
28871 (handle_command): New function. Based on grub_cmd_terminal_input.
28872 (grub_cmd_terminal_input): Use handle_command.
28873 (grub_cmd_terminal_output): Use handle_command.
28874
28875 2010-05-01 BVK Chaitanya <bvk.groups@gmail.com>
28876
28877 Fix comment handling.
28878
28879 * tests/grub_script_comments.in: New testcase.
28880 * conf/tests.rmk: Rules for new testcase.
28881 * script/yylex.l: Updated flex rules.
28882
28883 2010-04-28 Samuel Thibault <samuel.thibault@ens-lyon.org>
28884
28885 * docs/grub.texi (play): Document that zero pitches produce rests.
28886 * commands/i386/pc/play.c (grub_cmd_play): Call 'grub_file_open' only
28887 if argc is 1.
28888
28889 2010-04-27 Vladimir Serbinenko <phcoder@gmail.com>
28890
28891 * conf/x86-efi.rmk (linux_mod_SOURCES): Write explicitly to avoid
28892 autogen issues.
28893
28894 2010-04-26 Christian Franke <franke@computer.org>
28895
28896 * include/grub/util/getroot.h (grub_get_prefix): Remove prototype.
28897 * util/getroot.c [__CYGWIN__] (get_win32_path): Remove function.
28898 (grub_get_prefix): Remove function.
28899 * util/grub-emu.c (main): Replace grub_get_prefix () call by
28900 make_system_path_relative_to_its_root ().
28901 * util/sparc64/ieee1275/grub-setup.c (main): Likewise.
28902
28903 2010-04-24 Christian Franke <franke@computer.org>
28904
28905 * Makefile.in (TARGET_LDFLAGS): Add -static-libgcc.
28906 (kernel_img_LDFLAGS): Remove -static-libgcc.
28907
28908 2010-04-24 Christian Franke <franke@computer.org>
28909
28910 * configure.ac: Do not CHECK_BSS_START_SYMBOL
28911 and CHECK_END_SYMBOL if grub-emu is built.
28912 Unset TARGET_OBJ2ELF if grub-emu is built
28913 without module support.
28914
28915 2010-04-24 Jiro SEKIBA <jir@unicus.jp>
28916
28917 Nilfs2 support.
28918
28919 * conf/common.rmk (grub_probe_SOURCES): Add fs/nilfs2.c.
28920 (grub_fstest_SOURCES): Likewise.
28921 (pkglib_MODULES): Add nilfs2.mod.
28922 (nilfs2_mod_SOURCES): New variable.
28923 (nilfs2_mod_CFLAGS): Likewise.
28924 (nilfs2_mod_LDFLAGS): Likewise.
28925 * conf/i386-pc.rmk (grub_setup_SOURCES): Add fs/nilfs2.c.
28926 * conf/sparc64-ieee1275.rmk (grub_setup_SOURCES): Add fs/nilfs2.c.
28927 * fs/nilfs2.c: New file.
28928
28929 2010-04-21 Vladimir Serbinenko <phcoder@gmail.com>
28930
28931 * configure.ac: Refuse to compile for x86_64-efi is mcmodel=large
28932 is not supported.
28933
28934 2010-04-19 Grégoire Sutre <gregoire.sutre@gmail.com>
28935
28936 Add grub-mkconfig support for NetBSD.
28937
28938 * util/grub.d/10_netbsd.in: grub-mkconfig helper script for NetBSD.
28939 * util/grub-mkconfig.in: export new NetBSD specific variables.
28940 * po/POTFILES-shell: added 10_netbsd.in.
28941 * util/grub-mkconfig_lib.in: check for gettext binary, default to echo.
28942
28943 2010-04-19 BVK Chaitanya <bvk.groups@gmail.com>
28944
28945 Fix emu build with grub-emu-pci and grub-emu-modules.
28946
28947 * include/grub/util/misc.h: Export grub_util_{info,error,warn}
28948 functions.
28949 * include/grub/libpciaccess.h: New file.
28950 * conf/any-emu.rmk: Update kernel headers for emu build.
28951
28952 2010-04-19 Vladimir Serbinenko <phcoder@gmail.com>
28953
28954 * fs/udf.c (grub_udf_iterate_dir): Silence a spurious warning.
28955
28956 2010-04-19 Vladimir Serbinenko <phcoder@gmail.com>
28957
28958 * fs/udf.c (grub_udf_iterate_dir): Decode the Unicode filenames.
28959
28960 2010-04-18 Vladimir Serbinenko <phcoder@gmail.com>
28961
28962 * boot/sparc64/ieee1275/boot.S: Various size-reducing changes.
28963 Retrieve chosen/bootpath if bootpath isn't hardcoded.
28964 * conf/sparc64-ieee1275.rmk (grub_setup_SOURCES): Add
28965 util/ieee1275/ofpath.c.
28966 * util/sparc64/ieee1275/grub-ofpathname.c: Renamed to ...
28967 * util/ieee1275/grub-ofpathname.c: ... this. All users updated
28968 * include/grub/sparc64/ieee1275/boot.h
28969 (GRUB_BOOT_MACHINE_KERNEL_SECTOR): Renamed to ...
28970 (GRUB_BOOT_MACHINE_KERNEL_BYTE): ...this. Moved 8 bytes lower.
28971 * util/hostdisk.c (grub_util_biosdisk_get_osdev): New function.
28972 * util/ieee1275/ofpath.c (grub_util_devname_to_ofpath): Make argument
28973 const char *.
28974 * util/sparc64/ieee1275/grub-setup.c (compute_dest_ofpath): Removed.
28975 (setup): Use KERNEL_BYTE instead of KERNEL_SECTOR.
28976 Use grub_util_devname_to_ofpath. Zero-fill boot_devpath on same disk
28977 install.
28978
28979 2010-04-18 Grégoire Sutre <gregoire.sutre@gmail.com>
28980
28981 * util/grub-mkconfig.in: Corrected two == equality tests.
28982 Set grub_prefix as in grub-install for NetBSD and OpenBSD.
28983 * configure.ac: All definitions and uses of TARGET_IMG_LDFLAGS_AC now
28984 expect a number appended to it.
28985 * acinclude.m4 (grub_PROG_OBJCOPY_ABSOLUTE): ${TARGET_IMG_LDFLAGS_AC}
28986 expects a number appended to it.
28987
28988 2010-04-18 Vladimir Serbinenko <phcoder@gmail.com>
28989
28990 * po/POTFILES: Renamed multiboot_loader.c to multiboot.c
28991
28992 2010-04-18 Vladimir Serbinenko <phcoder@gmail.com>
28993
28994 * util/hostdisk.c (make_device_name): Change to new partition naming.
28995
28996 2010-04-17 Vladimir Serbinenko <phcoder@gmail.com>
28997
28998 * disk/lvm.c (grub_lvm_memberlist): Issue an error if pv->disk = 0.
28999
29000 2010-04-17 Christian Franke <franke@computer.org>
29001
29002 * Makefile.in: Add missing localedir setting.
29003
29004 2010-04-14 Colin Watson <cjwatson@ubuntu.com>
29005
29006 Restore TEXTDOMAINDIR correction from r1889, lost apparently by
29007 mistake in r2156. Noticed by Anthony Fok.
29008
29009 * util/grub.d/10_kfreebsd.in (TEXTDOMAINDIR): Set to lowercased
29010 @localedir@.
29011 * util/grub.d/10_linux.in (TEXTDOMAINDIR): Likewise.
29012
29013 2010-04-14 BVK Chaitanya <bvk.groups@gmail.com>
29014
29015 Fix a spurious, uninitialized variable warning.
29016
29017 * loader/i386/bsdXX.c (grub_freebsd_load_elfmodule_obj):
29018 Initialize variable, shdr.
29019 (grub_freebsd_load_elfmodule): Likewise.
29020 (grub_freebsd_load_elf_meta): Likewise.
29021
29022 2010-04-13 BVK Chaitanya <bvk.groups@gmail.com>
29023
29024 Fix for escaped dollar in double quoted strings.
29025
29026 * script/yylex.l: Updated flex rules.
29027 * conf/tests.rmk: Rule for new testcase.
29028 * tests/grub_script_dollar.in: New testcase.
29029
29030 2010-04-13 Carles Pina i Estany <carles@pina.cat>
29031 2010-04-13 Colin Watson <cjwatson@ubuntu.com>
29032
29033 Enclose all translated strings in grub.cfg in single quotes, and
29034 escape them appropriately (Ubuntu bug #552921).
29035
29036 * util/grub-mkconfig_lib.in (gettext_quoted): New function.
29037 * util/grub.d/10_hurd.in: Use it.
29038 * util/grub.d/10_kfreebsd.in (kfreebsd_entry): Likewise.
29039 * util/grub.d/10_linux.in (linux_entry): Likewise.
29040
29041 2010-04-11 Vladimir Serbinenko <phcoder@gmail.com>
29042
29043 Fix cygwin compilation.
29044
29045 * configure.ac: Define NEED_REGISTER_FRAME_INFO.
29046 * include/grub/misc.h (__register_frame_info)
29047 [NEED_REGISTER_FRAME_INFO && !UTIL]: New export.
29048 (__deregister_frame_info) [NEED_REGISTER_FRAME_INFO && !UTIL]: Likewise.
29049 * kern/misc.c (__register_frame_info)
29050 [NEED_REGISTER_FRAME_INFO && !UTIL]: New empty function.
29051 (__deregister_frame_info) [NEED_REGISTER_FRAME_INFO && !UTIL]: Likewise.
29052
29053 2010-04-11 Vladimir Serbinenko <phcoder@gmail.com>
29054
29055 * configure.ac: Respect grub_cv_asm_uscore when defining dummy symbols.
29056
29057 2010-04-11 Vladimir Serbinenko <phcoder@gmail.com>
29058
29059 Unify libgcc processing.
29060
29061 * Makefile.in (kernel_img_LDFLAGS): New variable.
29062 * conf/common.rmk (kernel_img_HEADERS): Add libgcc.h.
29063 * conf/i386-coreboot.rmk (kernel_img_LDFLAGS): Append instead of
29064 overwriting.
29065 * conf/i386-ieee1275.rmk (kernel_img_LDFLAGS): Likewise.
29066 * conf/i386-pc.rmk (kernel_img_LDFLAGS): Likewise.
29067 * conf/i386-qemu.rmk (kernel_img_LDFLAGS): Likewise.
29068 * conf/x86-efi.rmk (kernel_img_LDFLAGS): Likewise.
29069 * conf/mips-qemu-mips.rmk (kernel_img_LDFLAGS): Append instead of
29070 overwriting. Remove -lgcc and -static-libgcc
29071 * conf/mips-yeeloong.rmk (kernel_img_LDFLAGS): Likewise.
29072 * conf/mips.rmk (kernel_img_HEADERS): Remove cpu/libgcc.h
29073 * conf/powerpc-ieee1275.rmk (kernel_img_HEADERS): Remove cpu/libgcc.h
29074 (kernel_img_LDFLAGS): Append instead of overwriting.
29075 Remove -lgcc and -static-libgcc
29076 * conf/sparc64-ieee1275.rmk: Likewise.
29077 * include/grub/powerpc/libgcc.h: Move to ...
29078 * include/grub/libgcc.h: .. this.
29079 * include/grub/libgcc.h: Don't export most of the function on x86.
29080 (__bswapsi2): New export.
29081 (__bswapdi2): Likewise.
29082 * include/grub/mips/libgcc.h: Removed.
29083 * include/grub/sparc64/libgcc.h: Likewise.
29084
29085 2010-04-10 Vladimir Serbinenko <phcoder@gmail.com>
29086
29087 * util/hostdisk.c (grub_util_biosdisk_get_grub_dev): Remove
29088 disk_info_msg (conflicts with gettexting into languages with cases).
29089
29090 2010-04-10 Grégoire Sutre <gregoire.sutre@gmail.com>
29091
29092 Add grub-probe support for NetBSD.
29093
29094 * util/getroot.c (find_root_device): Convert block device to
29095 character device on NetBSD.
29096 * util/probe.c (probe): Require character device on NetBSD.
29097 * util/hostdisk.c: NetBSD specific headers.
29098 (configure_device_driver): new function to tune device driver
29099 parameters (currently only for NetBSD floppy driver).
29100 (grub_util_biosdisk_open): NetBSD specific code (get disk size
29101 via disklabel ioctl).
29102 (open_device): call configure_device_driver on NetBSD.
29103 (convert_system_partition_to_system_disk): NetBSD specific code.
29104 (device_is_wholedisk): Likewise.
29105 (grub_util_biosdisk_get_grub_dev): Likewise.
29106 (make_device_name): Fixed a typo in bsd_part_str.
29107 * configure.ac: check for opendisk() and getrawpartition() on
29108 NetBSD and set LIBUTIL.
29109 * Makefile.in: add LIBUTIL to LIBS.
29110
29111 2010-04-10 BVK Chaitanya <bvk.groups@gmail.com>
29112
29113 Documentation fix.
29114
29115 * util/grub-script-check.c: Better help message.
29116
29117 2010-04-10 BVK Chaitanya <bvk.groups@gmail.com>
29118
29119 Fix FreeBSD build.
29120
29121 * configure.ac: Flex version check.
29122 * conf/common.rmk: Add -Wno-error to sh.mod.
29123 * script/yylex.l: Remove all #pragma.
29124
29125 2010-04-10 Vladimir Serbinenko <phcoder@gmail.com>
29126
29127 * include/grub/util/misc.h (canonicalise_file_name): Add missing
29128 prototype.
29129 Reported by: Seth Goldberg.
29130
29131 2010-04-10 Vladimir Serbinenko <phcoder@gmail.com>
29132
29133 * loader/multiboot.c (GRUB_MOD_INIT) [GRUB_USE_MULTIBOOT2]:
29134 Rename "module" to "module2".
29135 Reported by: Seth Goldberg.
29136
29137 2010-04-10 Vladimir Serbinenko <phcoder@gmail.com>
29138
29139 * include/grub/efi/memory.h (grub_machine_mmap_iterate): Remove
29140 EXPORT_FUNC.
29141 Reported by: Seth Goldberg.
29142
29143 2010-04-10 Vladimir Serbinenko <phcoder@gmail.com>
29144
29145 * lib/posix_wrap/locale.h: Add missing file.
29146 Reported by: Seth Goldberg.
29147
29148 2010-04-10 Vladimir Serbinenko <phcoder@gmail.com>
29149
29150 grub-emu module load support.
29151
29152 * Makefile.in (TARGET_NO_MODULES): New variable. All users of
29153 NO_DYNAMIC_MODULES switched to this.
29154 (TARGET_CFLAGS): Add -DGRUB_TARGET_NO_MODULES=1 if applicable.
29155 (CFLAGS): Likewise.
29156 * conf/any-emu.rmk: Generate symlist.
29157 (kernel_img_HEADERS): Add util/datetime.h.
29158 (kernel_img_HEADERS) [sdl]: Add sdl.h.
29159 (kernel_img_HEADERS) [libusb]: Add libusb.h.
29160 (kernel_img_SOURCES) [TARGET_NO_MODULES = no && !x86]: Add
29161 kern/$(target_cpu)/cache.S.
29162 * configure.ac (grub-emu-modules): New option.
29163 * genmk.rb: Handle multiple source lists.
29164 * include/grub/sdl.h: New file.
29165 * include/grub/libusb.h: Likewise.
29166 * util/grub-emu.c (main): Hanle (host) root.
29167 * util/hostdisk.c (grub_util_biosdisk_get_grub_dev): Error with
29168 GRUB_ERR_UNKNOWN_DEVICE.
29169 * util/misc.c: Move mm functions to ...
29170 * util/mm.c: ... here. All users updated.
29171
29172 2010-04-09 Vladimir Serbinenko <phcoder@gmail.com>
29173
29174 * Makefile.in (RMKFILES): Search in srcdir and not current directory.
29175 (MAINTAINER_CLEANFILES): Don't add $(srcdir) to MKFILES. Add few
29176 missing files.
29177 (maintainer-clean): Remove libgcrypt-grub.
29178
29179 2010-04-09 Vladimir Serbinenko <phcoder@gmail.com>
29180
29181 * term/efi/console.c (grub_console_checkkey): Macroify key contants.
29182
29183 2010-04-09 EFI Coder <eficoder@hotmail.com>
29184
29185 * normal/menu_text.c (print_message): Clean up the message and show
29186 the Fn information when on EFI
29187 * term/efi/console.c (grub_console_checkkey): Add F4 support.
29188
29189 2010-04-09 Vladimir Serbinenko <phcoder@gmail.com>
29190
29191 * normal/autofs.c (read_fs_list): New parameter 'prefix'.
29192 All users updated.
29193 * normal/crypto.c (read_crypto_list): Likewise.
29194 * normal/dyncmd.c (read_command_list): Likewise.
29195 * normal/term.c (read_terminal_list): Likewise.
29196 * normal/main.c (read_lists): Use explicit prefix.
29197 (read_lists_hook): Use read_lists.
29198 (grub_normal_execute): Likewise.
29199
29200 2010-04-09 Vladimir Serbinenko <phcoder@gmail.com>
29201
29202 * util/grub-mkrescue.in: Fix incorrect path in coreboot part.
29203 Reported by: Thomas Schmitt.
29204 Add -no-emul-boot to grub-mkisofs parameters.
29205
29206 2010-04-09 Vladimir Serbinenko <phcoder@gmail.com>
29207
29208 * font/font.c: Indented.
29209
29210 2010-04-09 BVK Chaitanya <bvk.groups@gmail.com>
29211
29212 Elif support to GRUB script (by Deepak Vankadaru).
29213
29214 * tests/grub_script_if.in: New testcase.
29215 * conf/tests.rmk: Rule for new testcase.
29216 * script/parser.y: Grammar rules for elif.
29217
29218 2010-04-09 BVK Chaitanya <bvk.groups@gmail.com>
29219
29220 While and until loops support to GRUB script.
29221
29222 * include/grub/script_sh.h (grub_script_cmdwhile): New struct.
29223 (grub_script_create_cmdwhile): New function prototype.
29224 (grub_script_execute_cmdwhile): New function prototype.
29225 * script/execute.c (grub_script_execute_cmdwhile): New function.
29226 * script/parser.y (command): New commands.
29227 (whilecmd): New grammar rule.
29228 (untilcmd): New grammar rule.
29229 * script/script.c (grub_script_create_cmdwhile): New function.
29230 * util/grub-script-check.c (grub_script_execute_cmdwhile): New
29231 function.
29232
29233 * tests/grub_script_while1.in: New testcase.
29234 * conf/tests.rmk: Rule for new testcase.
29235
29236 2010-04-09 Vladimir Serbinenko <phcoder@gmail.com>
29237
29238 * util/grub.d/00_header.in: Add few missing quotes. Recognise *.jpeg
29239 as *.jpg.
29240
29241 2010-04-09 Mario Vazquez <mariovazq@gmail.com>
29242
29243 GRUB_BACKGROUND support.
29244
29245 * util/grub-mkconfig.in: Export GRUB_BACKGROUND.
29246 * util/grub.d/00_header.in: Parse GRUB_BACKGROUND.
29247
29248 2010-04-09 Vladimir Serbinenko <phcoder@gmail.com>
29249
29250 Load fonts and modules for gfxmenu in grub-mkconfig.
29251 Idea by: Mario Vazquez
29252
29253 * util/grub.d/00_header.in: Load pf2 and image modules.
29254
29255 2010-04-09 Vladimir Serbinenko <phcoder@gmail.com>
29256
29257 grub-mkconfig multiple terminal support.
29258
29259 * util/grub-mkconfig.in: Handle multiple terminals correctly.
29260 * util/grub.d/00_header.in: Likewise.
29261
29262 2010-04-09 Vladimir Serbinenko <phcoder@gmail.com>
29263
29264 * Makefile.in: Specify files explicitly instead of using $< and $@ since
29265 we use cd $(srcdir).
29266
29267 2010-04-08 Colin Watson <cjwatson@ubuntu.com>
29268
29269 * util/grub.d/10_linux.in: Only use the first word of
29270 GRUB_DISTRIBUTOR for --class, to avoid problems if somebody puts
29271 spaces in GRUB_DISTRIBUTOR.
29272 * util/grub.d/10_kfreebsd.in: Likewise.
29273 * util/grub.d/10_hurd.in: Likewise.
29274
29275 2010-04-06 BVK Chaitanya <bvk.groups@gmail.com>
29276
29277 Fix unit testing framework for Qemu 0.12.
29278
29279 * tests/util/grub-shell.in: Remove -serial stdio option.
29280
29281 2010-04-06 Vladimir Serbinenko <phcoder@gmail.com>
29282
29283 POSIX header file wrappers.
29284
29285 * lib/posix_wrap/assert.h: New file. Wrapper for its POSIX
29286 equivalents.
29287 * lib/posix_wrap/ctype.h: Likewise.
29288 * lib/posix_wrap/errno.h: Likewise.
29289 * lib/posix_wrap/langinfo.h: Likewise.
29290 * lib/posix_wrap/limits.h: Likewise.
29291 * lib/posix_wrap/localcharset.h: Likewise.
29292 * lib/posix_wrap/stdint.h: Likewise.
29293 * lib/posix_wrap/stdio.h: Likewise.
29294 * lib/posix_wrap/stdlib.h: Likewise.
29295 * lib/posix_wrap/string.h: Likewise.
29296 * lib/posix_wrap/sys/types.h: Likewise.
29297 * lib/posix_wrap/unistd.h: Likewise.
29298 * lib/posix_wrap/wchar.h: Likewise.
29299 * lib/posix_wrap/wctype.h: Likewise.
29300 * conf/common.rmk (grub_script.yy.c): Remove #include elimination.
29301 (grub_script.yy.h): Likewise.
29302 * script/yylex.l: Remove POSIX emulation #defines.
29303 * Makefile.in (POSIX_CFLAGS): New variable.
29304 (GNULIB_UTIL_CFLAGS): Likewise.
29305
29306 Regexp support.
29307
29308 * conf/common.rmk (pkglib_MODULES): Add regexp.mod.
29309 (regexp_mod_SOURCES): New variable.
29310 (regexp_mod_CFLAGS): Likewise.
29311 (regexp_mod_LDFLAGS): Likewise.
29312 * commands/regexp.c: New file.
29313 * gnulib/regcomp.c: New file. Imported from gnulib.
29314 * gnulib/regex.c: Likewise.
29315 * gnulib/regex_internal.c: Likewise.
29316 * gnulib/regex_internal.h: Likewise.
29317 * gnulib/regexec.c: Likewise.
29318 * gnulib/regex.h: Likewise.
29319
29320 2010-04-05 Vladimir Serbinenko <phcoder@gmail.com>
29321
29322 * loader/i386/multiboot_mbi.c (grub_multiboot_load): Correctly report
29323 unsupported video mode types.
29324
29325 2010-04-05 Vladimir Serbinenko <phcoder@gmail.com>
29326
29327 * kern/i386/pc/startup.S (grub_getrtsecs): Removed (dead code).
29328
29329 2010-04-05 Vladimir Serbinenko <phcoder@gmail.com>
29330
29331 * include/grub/i386/pc/init.h (grub_get_mmap_entry): Don't export.
29332 * conf/i386-pc.rmk (kernel_img_HEADERS): Remove machine/init.h.
29333
29334 2010-04-04 Vladimir Serbinenko <phcoder@gmail.com>
29335
29336 Remove unused grub_vga_get_font.
29337
29338 * kern/i386/pc/startup.S (grub_vga_get_font): Removed.
29339 * include/grub/i386/pc/vga.h (grub_vga_get_font): Likewise.
29340
29341 2010-04-03 Grégoire Sutre <gregoire.sutre@gmail.com>
29342
29343 * kern/misc.c: Disable the __enable_execute_stack hack for utilities.
29344 * include/grub/misc.h: Likewise.
29345
29346 2010-04-03 Grégoire Sutre <gregoire.sutre@gmail.com>
29347
29348 * util/grub-install.in: Add `|| exit 1' to all grub-probe calls
29349 for which failure is fatal.
29350
29351 2010-04-03 Grégoire Sutre <gregoire.sutre@gmail.com>
29352
29353 * util/grub-install.in: Use mkdir -p to create grub directory.
29354 * util/i386/efi/grub-install.in: Likewise.
29355 * util/ieee1275/grub-install.in: Likewise.
29356
29357 2010-04-03 Grégoire Sutre <gregoire.sutre@gmail.com>
29358
29359 * Makefile.in (LEX): new variable.
29360
29361 2010-04-03 Grégoire Sutre <gregoire.sutre@gmail.com>
29362
29363 * util/i386/efi/grub-dumpdevtree: replaced the non-portable `==' by
29364 `=' and added double quotes on operands of this equality test.
29365
29366 2010-04-03 Vladimir Serbinenko <phcoder@gmail.com>
29367
29368 * Makefile.in (uninstall): Remove a leftover debug echo.
29369 Reported by: Grégoire Sutre
29370
29371 2010-04-03 Vladimir Serbinenko <phcoder@gmail.com>
29372
29373 MIPS multiboot2 support.
29374
29375 * conf/mips.rmk (pkglib_MODULES): Add multiboot2.mod.
29376 (multiboot2_mod_SOURCES): New variable.
29377 (multiboot2_mod_CFLAGS): Likewise.
29378 (multiboot2_mod_LDFLAGS): Likewise.
29379 (multiboot2_mod_ASFLAGS): Likewise.
29380 * include/grub/i386/multiboot.h (MULTIBOOT_INITIAL_STATE): New
29381 definition.
29382 (MULTIBOOT_ENTRY_REGISTER): Likewise.
29383 (MULTIBOOT_MBI_REGISTER): Likewise.
29384 (MULTIBOOT_ARCHITECTURE_CURRENT): Likewise.
29385 (MULTIBOOT_ELF32_MACHINE): Likewise.
29386 (MULTIBOOT_ELF64_MACHINE): Likewise.
29387 * include/grub/mips/multiboot.h: New file.
29388 * include/grub/video.h (grub_video_driver_id): New type
29389 GRUB_VIDEO_DRIVER_SM712.
29390 (grub_video_get_info_and_fini): Export.
29391 (grub_video_get_palette): Likewise.
29392 (grub_video_get_driver_id): Likewise.
29393 * include/multiboot2.h: Resynced with spec.
29394 * loader/i386/multiboot.c: Moved from here ...
29395 * loader/multiboot.c: ... here. All users updated.
29396 (grub_multiboot_boot): Use platform-specific macros.
29397 * loader/i386/multiboot_elfxx.c: Moved from here ...
29398 * loader/multiboot_elfxx.c: ... here. All users updated.
29399 (E_MACHINE): Use MULTIBOOT_ELF32_MACHINE and MULTIBOOT_ELF64_MACHINE.
29400 * loader/i386/multiboot_mbi2.c (grub_multiboot_load): Check arcitecture.
29401 * video/sm712.c (grub_video_sm712_adapter): Add missing id field.
29402
29403 2010-04-02 Vladimir Serbinenko <phcoder@gmail.com>
29404
29405 Import gnulib argp module.
29406
29407 * gnulib/argp-ba.c: New file.
29408 * gnulib/argp-eexst.c: Likewise.
29409 * gnulib/argp-fmtstream.c: Likewise.
29410 * gnulib/argp-fmtstream.h: Likewise.
29411 * gnulib/argp-fs-xinl.c: Likewise.
29412 * gnulib/argp-help.c: Likewise.
29413 * gnulib/argp-namefrob.h: Likewise.
29414 * gnulib/argp-parse.c: Likewise.
29415 * gnulib/argp-pin.c: Likewise.
29416 * gnulib/argp-pv.c: Likewise.
29417 * gnulib/argp-pvh.c: Likewise.
29418 * gnulib/argp-version-etc.c: Likewise.
29419 * gnulib/argp-version-etc.h: Likewise.
29420 * gnulib/argp-xinl.c: Likewise.
29421 * gnulib/argp.h: Likewise.
29422
29423 2010-03-31 Vladimir Serbinenko <phcoder@gmail.com>
29424
29425 * kern/device.c (grub_device_iterate): Clear errors after failed
29426 opening device.
29427
29428 2010-03-31 Vladimir Serbinenko <phcoder@gmail.com>
29429
29430 * kern/ieee1275/openfw.c (grub_children_iterate): Skip device itself if
29431 returned by firmware.
29432
29433 2010-03-30 Vladimir Serbinenko <phcoder@gmail.com>
29434
29435 * loader/i386/multiboot_mbi2.c (retrieve_video_parameters): Fix
29436 compilation on coreboot and qemu
29437
29438 2010-03-28 Vladimir Serbinenko <phcoder@gmail.com>
29439
29440 * include/multiboot2.h: Resync with spec.
29441
29442 2010-03-28 Vladimir Serbinenko <phcoder@gmail.com>
29443
29444 Multiboot2 tag support
29445
29446 * conf/i386.rmk (multiboot2_mod_SOURCES): Replace
29447 loader/i386/multiboot_mbi.c with loader/i386/multiboot_mbi2.c.
29448 Remove loader/multiboot_loader.c.
29449 * include/grub/i386/multiboot.h (grub_multiboot_real_boot): Removed.
29450 (grub_multiboot2_real_boot): Likewise.
29451 * include/grub/multiboot.h (grub_multiboot_set_accepts_video): Removed.
29452 (grub_get_multiboot_mmap_count): New proto.
29453 (grub_fill_multiboot_mmap): Likewise.
29454 (grub_multiboot_set_video_mode): Likewise.
29455 (grub_multiboot_set_console): Likewise.
29456 (grub_multiboot_load): Likewise.
29457 (grub_multiboot_load_elf): Likewise.
29458 (GRUB_MULTIBOOT_CONSOLE_EGA_TEXT): New definition.
29459 (GRUB_MULTIBOOT_CONSOLE_FRAMEBUFFER): Likewise.
29460 * include/multiboot.h: Resynced with specification.
29461 * include/multiboot2.h: Resynced with specification.
29462 * loader/i386/multiboot_mbi.c (DEFAULT_VIDEO_MODE): Moved from here...
29463 * loader/i386/multiboot.c (DEFAULT_VIDEO_MODE): ... here.
29464 * loader/i386/multiboot_mbi.c (HAS_VGA_TEXT): Moved from here ..
29465 * include/grub/multiboot.h (GRUB_MACHINE_HAS_VGA_TEXT): ... here. All
29466 users updated.
29467 * loader/i386/multiboot_mbi.c (accepts_video): Moved from here...
29468 * loader/i386/multiboot.c (accepts_video): ... here. All users updated.
29469 * loader/i386/multiboot_mbi.c (grub_multiboot_set_accepts_video):
29470 Removed.
29471 * loader/i386/multiboot_mbi.c (grub_get_multiboot_mmap_len):
29472 Moved from here...
29473 * loader/i386/multiboot.c (grub_get_multiboot_mmap_len): ... here.
29474 * loader/i386/multiboot_mbi.c (grub_fill_multiboot_mmap):
29475 Moved from here...
29476 * loader/i386/multiboot.c (grub_fill_multiboot_mmap): ... here.
29477 * loader/i386/multiboot_mbi.c (set_video_mode): Moved from here...
29478 * loader/i386/multiboot.c (grub_multiboot_set_video_mode): ... here.
29479 All users updated.
29480 * loader/i386/multiboot_mbi2.c: New file.
29481
29482 2010-03-27 Vladimir Serbinenko <phcoder@gmail.com>
29483
29484 Resync with gnulib.
29485
29486 * Makefile.in (GNULIB_CFLAGS): New variable.
29487 * conf/common.rmk (grub_mkisofs_CFLAGS): Add GNULIB_CFLAGS.
29488 (grub_script_check_CFLAGS): New variable.
29489 * gnulib/alloca.h: Resync with gnulib.
29490 * gnulib/error.c: Likewise.
29491 * gnulib/error.h: Likewise.
29492 * gnulib/fnmatch.c: Likewise.
29493 * gnulib/fnmatch_loop.c: Likewise.
29494 * gnulib/getdelim.c: Likewise.
29495 * gnulib/getline.c: Likewise.
29496 * gnulib/getopt.c: Likewise.
29497 * gnulib/getopt1.c: Likewise.
29498 * gnulib/getopt_int.h: Likewise.
29499 * gnulib/gettext.h: Likewise.
29500 * gnulib/progname.c: Likewise.
29501 * gnulib/progname.h: Likewise.
29502
29503 2010-03-27 Grégoire Sutre <gregoire.sutre@gmail.com>
29504
29505 Fix a build failure (-Wundef -Werror) when ENABLE_NLS is not defined,
29506 which is the case with --disabled-nls.
29507
29508 * include/grub/i18n.h: Use (defined(ENABLE_NLS)
29509 && ENABLE_NLS) instead of ENABLE_NLS in all #if preprocessor macros.
29510 * util/misc.c: Likewise.
29511 * util/mkisofs/mkisofs.c: Likewise.
29512 * util/mkisofs/mkisofs.h: Likewise.
29513
29514 2010-03-27 Vladimir Serbinenko <phcoder@gmail.com>
29515
29516 Simplify Apple CC support.
29517
29518 * commands/i386/pc/drivemap_int13h.S: Use LOCAL when possible.
29519 Add 0 byte at the end not to have a symbol with empty target.
29520 * mmap/i386/pc/mmap_helper.S: Likewise.
29521 * genmk.rb: Ignore errors 2030 and 2050.
29522 * kern/i386/pc/startup.S: Use LOCAL when possible.
29523
29524 2010-03-26 BVK Chaitanya <bvk.groups@gmail.com>
29525
29526 Testcase and the fix for final semicolon on cmdline.
29527
29528 * tests/grub_script_final_semicolon.in: New testcase.
29529 * conf/tests.rmk: Rules for the new testcase.
29530 * script/parser.y: Grammar fix.
29531
29532 2010-03-26 BVK Chaitanya <bvk@localhost>
29533
29534 Blank lines testcase for GRUB script.
29535
29536 * tests/grub_script_blanklines.in: New testcase.
29537 * conf/tests.rmk: Rules for the new testcase.
29538
29539 2010-03-26 Vladimir Serbinenko <phcoder@gmail.com>
29540
29541 Don't use __FILE__.
29542
29543 * genmk.rb: Add -DGRUB_FILE to all C targets.
29544 * fs/reiserfs.c: Replace __FILE__ with GRUB_FILE.
29545 * include/grub/list.h: Likewise.
29546 * include/grub/misc.h: Likewise.
29547 * include/grub/mm.h: Likewise.
29548 * include/grub/test.h: Likewise.
29549 * kern/mm.c: Likewise.
29550 * lib/libgcrypt_wrap/cipher_wrap.h: Likewise.
29551
29552 2010-03-26 Vladimir Serbinenko <phcoder@gmail.com>
29553
29554 Sunpc partitions support.
29555
29556 * conf/common.rmk (grub_probe_SOURCES): Add partmap/sunpc.c.
29557 (grub_fstest_SOURCES): Likewise.
29558 (pkglib_MODULES): Add part_sunpc.mod.
29559 (part_sunpc_mod_SOURCES): New variable.
29560 (part_sunpc_mod_CFLAGS): Likewise.
29561 (part_sunpc_mod_LDFLAGS): Likewise.
29562 * conf/i386-pc.rmk (grub_setup_SOURCES): Add partmap/sunpc.c.
29563 * partmap/sunpc.c: New file.
29564
29565 2010-03-26 BVK Chaitanya <bvk@localhost>
29566
29567 For loop support to GRUB script.
29568
29569 * include/grub/script_sh.h (grub_script_cmdfor): New struct.
29570 (grub_script_create_cmdfor): New function prototype.
29571 (grub_script_execute_cmdfor): New function prototype.
29572 * script/execute.c (grub_script_execute_cmdfor): New function.
29573 * script/parser.y (command): New for command.
29574 (forcmd): New grammar rule.
29575 * script/script.c (grub_script_create_cmdfor): New function.
29576 * util/grub-script-check.c (grub_script_execute_cmdfor): New
29577 function.
29578 * tests/grub_script_for1.in: New testcase.
29579 * conf/tests.rmk: Rules for new testcase.
29580
29581 2010-03-26 Vladimir Serbinenko <phcoder@gmail.com>
29582
29583 Nested partitions
29584
29585 * commands/blocklist.c (grub_cmd_blocklist): Don't check whether
29586 'partition' is NULL, grub_partition_get_start already does that.
29587 * commands/loadenv.c (check_blocklists): Likewise.
29588 (write_blocklists): Likewise.
29589 * conf/common.rmk (grub_probe_SOURCES): Add partmap/bsdlabel.c.
29590 (grub_fstest_SOURCES): Likewise.
29591 (pkglib_MODULES): Add part_bsd.mod.
29592 (part_bsd_mod_SOURCES): New variable.
29593 (part_bsd_mod_CFLAGS): Likewise.
29594 (part_bsd_mod_LDFLAGS): Likewise.
29595 * conf/i386-pc.rmk (grub_setup_SOURCES): Add partmap/bsdlabel.c.
29596 (grub_emu_SOURCES): Likewise.
29597 * conf/sparc64-ieee1275.rmk (grub_emu_SOURCES): Likewise.
29598 * include/grub/bsdlabel.h: New file.
29599 * include/grub/partition.h (grub_partition_map): Remove 'probe' and
29600 'get_name'.
29601 (grub_partition): Add 'parent' and 'number'. Remove 'data'.
29602 (grub_partition_map_list): New variable.
29603 (grub_partition_map_register): Inline.
29604 (grub_partition_map_unregister): Likewise.
29605 (FOR_PARTITION_MAPS): New macro.
29606 (grub_partition_map_iterate): Removed.
29607 (grub_partition_get_start): Handle nested partitions.
29608 * include/grub/msdos_partition.h: Remove bsd-related entries.
29609 (grub_pc_partition): Remove.
29610 * kern/disk.c (grub_disk_close): Free partition data.
29611 (grub_disk_adjust_range): Handle nested partitions.
29612 * kern/partition.c (grub_partition_map_probe): New function.
29613 (grub_partition_probe): Parse name to number, handle subpartitions.
29614 (get_partmap): New function.
29615 (grub_partition_iterate): Handle subpartitions.
29616 (grub_partition_get_name): Likewise.
29617 * loader/i386/pc/bsd.c (grub_bsd_get_device): Likewise.
29618 * loader/i386/multiboot.c (grub_multiboot_get_bootdev): Likewise.
29619 * loader/i386/pc/chainloader.c (grub_chainloader_cmd): Likewise.
29620 * partmap/acorn.c (acorn_partition_map_iterate): Don't force raw access.
29621 Set 'number'.
29622 (acorn_partition_map_probe): Remove.
29623 (acorn_partition_map_get_name): Likewise.
29624 * partmap/amiga.c (amiga_partition_map_iterate): Don't force raw access.
29625 Set 'number'.
29626 Set 'index' to 0 since there can be only one partition entry per sector.
29627 (amiga_partition_map_probe): Remove.
29628 (amiga_partition_map_get_name): Likewise.
29629 * partmap/apple.c (apple_partition_map_iterate): Don't force raw access.
29630 Set 'number'.
29631 Set 'offset' and 'index' to real positions of partitions.
29632 (apple_partition_map_probe): Remove.
29633 (apple_partition_map_get_name): Likewise.
29634 * partmap/bsdlabel.c: New file.
29635 * partmap/gpt.c (gpt_partition_map_iterate): Don't force raw access.
29636 Set 'number'.
29637 Allocate 'data' so it can be correctly freed.
29638 Set 'index' to offset inside sector.
29639 (gpt_partition_map_probe): Remove.
29640 (gpt_partition_map_get_name): Likewise.
29641 * partmap/msdos.c (grub_partition_parse): Remove.
29642 (pc_partition_map_iterate): Don't force raw access.
29643 Set 'number'.
29644 Make 'ext_offset' a local variable.
29645 (pc_partition_map_probe): Remove.
29646 (pc_partition_map_get_name): Remove.
29647 * partmap/sun.c (sun_partition_map_iterate): Don't force raw access.
29648 Set 'number'.
29649 (sun_partition_map_probe): Remove.
29650 (sun_partition_map_get_name): Likewise.
29651 * parttool/msdospart.c (grub_pcpart_boot): Handle nested partitions.
29652 (grub_pcpart_type): Likewise.
29653 * util/hostdisk.c (open_device): Handle new numbering scheme.
29654 (grub_util_biosdisk_get_grub_dev): Handle nested partitions.
29655 * util/i386/pc/grub-setup.c (setup): Handle new numbering scheme.
29656 * util/grub-probe.c (probe_partmap): Handle nested paritions.
29657 * util/grub-install.in: Insert all subpartition modules.
29658 * util/ieee1275/grub-install.in: Likewise.
29659
29660 2010-03-24 Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
29661
29662 * kern/dl.c (grub_dl_resolve_symbols): Improve error message
29663 grammar.
29664
29665 2010-03-24 Colin Watson <cjwatson@ubuntu.com>
29666
29667 * .bzrignore: Add grub-bin2h, grub-reboot, and grub-set-default.
29668
29669 2010-03-21 Colin Watson <cjwatson@ubuntu.com>
29670
29671 * util/grub-install.in: Copy .mo files from @datadir@/locale, to
29672 match where 'make install' puts them.
29673 * util/i386/efi/grub-install.in: Likewise.
29674
29675 2010-03-19 Colin Watson <cjwatson@ubuntu.com>
29676
29677 * .bzrignore: Add gentrigtables, grub-script-check,
29678 grub_script_check_init.c, grub_script_check_init.h, and
29679 trigtables.c.
29680
29681 2010-03-18 Vladimir Serbinenko <phcoder@gmail.com>
29682
29683 * kern/parser.c: Indented.
29684
29685 2010-03-17 Vladimir Serbinenko <phcoder@gmail.com>
29686
29687 * term/i386/pc/vesafb.c: Removed (orphaned, deprecated and broken).
29688
29689 2010-03-17 Vladimir Serbinenko <phcoder@gmail.com>
29690
29691 * video/fb/fbblit.c (grub_video_fbblit_blend_XXXA8888_1bit): Handle
29692 alpha_mask_size == 0 case.
29693
29694 2010-03-14 BVK Chaitanya <bvk.groups@gmail.com>
29695
29696 GRUB shell lexer and parser improvements.
29697
29698 * conf/any-emu.rmk: Build rule updates.
29699 * conf/common.rmk: Likewise.
29700 * conf/i386-coreboot.rmk: Likewise.
29701 * conf/i386-efi.rmk: Likewise.
29702 * conf/i386-ieee1275.rmk: Likewise.
29703 * conf/i386-pc.rmk: Likewise.
29704 * conf/powerpc-ieee1275.rmk: Likewise.
29705 * conf/x86_64-efi.rmk: Likewise.
29706
29707 * configure.ac: Configure check for flex.
29708
29709 * include/grub/script_sh.h (grub_script_arg_type_t): More argument
29710 types.
29711 (grub_lexer_param): Struct member updates.
29712 (grub_parser_param): Likewise.
29713 (GRUB_LEXER_TOKEN_MAX): Maximum token size.
29714 (GRUB_LEXER_RECORD_INCREMENT): Memory increments' size.
29715 (grub_script_lexer_init): Prototype update.
29716 (grub_script_lexer_record_start): Likewise.
29717 (grub_script_lexer_record_stop): Likewise.
29718 (grub_script_lexer_yywrap): New function prototype.
29719 (grub_script_lexer_fini): Likewise.
29720 (grub_script_execute_argument_to_string): Removed by...
29721 (grub_script_execute_argument_to_argv): ...better version.
29722
29723 * script/execute.c (ROUND_UPTO): New macro.
29724 (grub_script_execute_cmdline): Out of memory fixes.
29725 (grub_script_execute_menuentry): Likewise.
29726 (grub_script_execute_argument_to_string): Removed. Update all
29727 users by...
29728 (grub_script_execute_argument_to_argv): ...better version.
29729 * script/function.c (grub_script_function_create): Use
29730 grub_script_execute_argument_to_argv instead of
29731 grub_script_execute_argument_to_string.
29732
29733 * script/lexer.c (check_varstate): Removed.
29734 (check_textstate): Removed.
29735 (grub_script_lexer_record_start): Likewise.
29736 (grub_script_lexer_record_stop): Likewise.
29737 (recordchar): Replaced with...
29738 (grub_script_lexer_record): ...new function.
29739 (nextchar): Removed.
29740 (grub_script_lexer_init): Rewritten.
29741 (grub_script_yylex): Rewritten.
29742 (append_newline): New function.
29743 (grub_script_lexer_yywrap): New function.
29744 (grub_script_lexer_fini): New function.
29745 (grub_script_yyerror): Sets error flag.
29746
29747 * script/yylex.l: New file.
29748 (grub_lexer_yyfree): Wrapper for flex yyffre.
29749 (grub_lexer_yyalloc): Likewise.
29750 (grub_lexer_yyrealloc): Likewise.
29751 * script/parser.y: Refactored.
29752
29753 * script/script.c (grub_script_arg_add): Out of memory fixes.
29754 (grub_script_add_arglist): Likewise.
29755 (grub_script_create_cmdline): Likewise.
29756 (grub_script_create_cmdmenu): Likewise.
29757 (grub_script_add_cmd): Likewise.
29758 (grub_script_parse): Use grub_script_lexer_fini to deallocated.
29759 * util/grub-script-check.c (grub_script_execute_menuentry): Remove
29760 unnecessary code.
29761
29762 * tests/grub_script_echo1.in: New testcase.
29763 * tests/grub_script_vars1.in: New testcase.
29764 * tests/grub_script_echo_keywords.in: New testcase.
29765
29766 2010-03-14 Vladimir Serbinenko <phcoder@gmail.com>
29767
29768 Remove some redundancy in build system.
29769
29770 * Makefile.in (TARGET_CFLAGS): Add -ffreestanding.
29771 (TARGET_ASFLAGS): Add -nostdinc -fno-builtin.
29772 (TARGET_LDFLAGS): Add -nostdlib.
29773 (TARGET_IMG_LDFLAGS): Likewise.
29774 * commands/lsmmap.c (grub_cmd_lsmmap) [GRUB_MACHINE_EMU]: Don't do
29775 anything since mmap isn't available.
29776 * conf/any-emu.rmk (kernel_img_SOURCES): Remove commands/boot.c.
29777 Add util/time.c.
29778 (pkglib_MODULES): Remove reboot.mod.
29779 (reboot_mod_SOURCES): Removed.
29780 (reboot_mod_CFLAGS): Likewise.
29781 (reboot_mod_LDFLAGS): Likewise.
29782 * conf/common.rmk (script/lexer.c_DEPENDENCIES): New variable.
29783 (MOSTLYCLEANFILES): Add symlist.c kernel_syms.lst.
29784 (DEFSYMFILES): Add kernel_syms.lst.
29785 (kernel_img_HEADERS): Add common headers.
29786 (symlist.c): New target.
29787 (kernel_syms.lst): Likewise.
29788 (pkglib_MODULES): Add memdisk.mod.
29789 (memdisk_mod_SOURCES): New variable.
29790 (memdisk_mod_CFLAGS): Likewise.
29791 (memdisk_mod_LDFLAGS): Likewise.
29792 (pkglib_MODULES): Add reboot.mod.
29793 (reboot_mod_SOURCES): New variable.
29794 (reboot_mod_CFLAGS): Likewise.
29795 (reboot_mod_LDFLAGS): Likewise.
29796 (pkglib_MODULES): Add date.mod.
29797 (date_mod_SOURCES): New variable.
29798 (date_mod_CFLAGS): Likewise.
29799 (date_mod_LDFLAGS): Likewise.
29800 (pkglib_MODULES): Add datehook.mod.
29801 (datehook_mod_SOURCES): New variable.
29802 (datehook_mod_CFLAGS): Likewise.
29803 (datehook_mod_LDFLAGS): Likewise.
29804 (pkglib_MODULES): Add lsmmap.mod.
29805 (lsmmap_mod_SOURCES): New variable.
29806 (lsmmap_mod_CFLAGS): Likewise.
29807 (lsmmap_mod_LDFLAGS): Likewise.
29808 (pkglib_MODULES): Add boot.mod.
29809 (boot_mod_SOURCES): New variable.
29810 (boot_mod_CFLAGS): Likewise.
29811 (boot_mod_LDFLAGS): Likewise.
29812 * conf/i386-coreboot.rmk: Removed redundant parts.
29813 * conf/i386-ieee1275.rmk: Likewise.
29814 * conf/i386-pc.rmk: Likewise.
29815 * conf/mips-yeeloong.rmk: Likewise.
29816 * conf/mips.rmk: Likewise.
29817 * conf/powerpc-ieee1275.rmk: Likewise.
29818 * conf/sparc64-ieee1275.rmk: Likewise.
29819 * conf/x86_64-efi.rmk: Likewise.
29820 * conf/i386-coreboot.rmk: Moved qemu parts ..
29821 * conf/i386-qemu.rmk: ... here
29822 * conf/i386-efi.rmk: Moved common parts to...
29823 * conf/x86-efi.rmk: ... here.
29824 * conf/i386.rmk: Added modules common to all x86 variants.
29825 * configure.ac: Add -m32/-m64 to TARGET_ASFLAGS.
29826 * disk/memdisk.c: Remove grub/machine/kernel.h.
29827 * gensymlist.sh.in: Include symbol.h.
29828 * hook/datehook.c: Correct module name.
29829 * include/grub/datetime.h (grub_get_datetime) [GRUB_MACHINE_EMU]: Export.
29830 (grub_set_datetime) [GRUB_MACHINE_EMU]: Likewise.
29831 * include/grub/i386/efi/serial.h: New file.
29832 * include/grub/x86_64/efi/serial.h: Likewise.
29833 * util/time.c: Likewise.
29834 * video/ieee1275.c (grub_video_ieee1275_setup): Handle 64-bit void *.
29835
29836 2010-03-14 Colin King <colin.king@ubuntu.com>
29837 2010-03-14 Colin Watson <cjwatson@ubuntu.com>
29838
29839 Shrink the pre-partition-table part of boot.img by eight bytes.
29840
29841 * boot/i386/pc/boot.S (ERR): New macro.
29842 (chs_mode): Use ERR.
29843 (geometry_error): Likewise.
29844 (hd_probe_error): Remove. This is only used once, so we wrwite
29845 it inline instead.
29846 (read_error): Instead of printing read_error_string, just set up
29847 %si and fall through to ...
29848 (error_message): ... this new function, also used by ERR.
29849
29850 2010-03-14 Colin Watson <cjwatson@ubuntu.com>
29851
29852 Speed up consecutive hostdisk operations on the same device.
29853
29854 * util/hostdisk.c (struct grub_util_biosdisk_data): New structure.
29855 (grub_util_biosdisk_open): Initialise disk->data.
29856 (struct linux_partition_cache): New structure.
29857 (linux_find_partition): Cache partition start positions; these are
29858 expensive to compute on every read and write.
29859 (open_device): Cache open file descriptor in disk->data, so that we
29860 don't have to reopen it and flush the buffer cache for consecutive
29861 operations on the same device.
29862 (grub_util_biosdisk_close): New function.
29863 (grub_util_biosdisk_dev): Set `close' member.
29864
29865 * conf/common.rmk (grub_probe_SOURCES): Add kern/list.c.
29866 * conf/i386-efi.rmk (grub_setup_SOURCES): Likewise.
29867 * conf/i386-pc.rmk (grub_setup_SOURCES): Likewise.
29868 * conf/sparc64-ieee1275.rmk (grub_setup_SOURCES): Likewise.
29869 * conf/x86_64-efi.rmk (grub_setup_SOURCES): Likewise.
29870
29871 2010-03-14 Vladimir Serbinenko <phcoder@gmail.com>
29872
29873 Compile parts of grub-emu as modules.
29874
29875 * Makefile.in (TARGET_CPPFLAGS) [emu]: Remove -nostdinc -isystem.
29876 (pkglib_DATA) [emu]: Remove moddep.lst command.lst fs.lst
29877 partmap.lst parttool.lst handler.lst video.lst crypto.lst terminal.lst.
29878 (all-local): Add $(GRUB_EMU).
29879 (install-local): Install $(GRUB_EMU).
29880 (uninstall): Uninstall $(GRUB_EMU).
29881 * commands/parttool.c: Replace GRUB_UTIL with GRUB_NO_MODULES.
29882 * kern/dl.c: Likewise.
29883 * commands/sleep.c: Not include machine/time.h.
29884 * conf/any-emu.rmk (COMMON_LDFLAGS): New variable.
29885 (COMMON_CFLAGS): Likewise.
29886 (sbin_UTILITIES): Remove grub-emu.
29887 (grub_emu_SOURCES): Removed.
29888 (kernel_img_RELOCATABLE): New variable.
29889 (pkglib_PROGRAMS): Add kernel.img.
29890 (kernel_img_SOURCES): New variable
29891 (kernel_img_CFLAGS): Likewise.
29892 (kernel_img_LDFLAGS): Likewise.
29893 (TARGET_NO_STRIP): Likewise.
29894 (TARGET_NO_DYNAMIC_MODULES): Likewise.
29895 (pkglib_MODULES): Add progname.mod, hostfs.mod, host.mod, reboot.mod,
29896 halt.mod, cpuid.mod, usb.mod, sdl.mod and pci.mod.
29897 (grub-emu): New target.
29898 (GRUB_EMU): New variable.
29899 * configure.ac: Whitelist -emu as possible x86_64 architecture.
29900 * efiemu/main.c: Replace GRUB_UTIL with GRUB_MACHINE_EMU.
29901 * loader/xnu.c: Likewise.
29902 * include/grub/pci.h: Likewise.
29903 * genemuinit.sh: New file.
29904 * genemuinitheader.sh: Likewise.
29905 * genmk.rb: Don't strip if TARGET_NO_STRIP is yes.
29906 Support TARGET_NO_DYNAMIC_MODULES.
29907 * include/grub/dl.h (GRUB_NO_MODULES): New variable.
29908 * commands/search.c: Fix GRUB_MOD_INIT and GRUB_MOD_FINI arguments.
29909 * disk/loopback.c: Likewise.
29910 * font/font_cmd.c: Likewise.
29911 * partmap/acorn.c: Likewise.
29912 * partmap/amiga.c: Likewise.
29913 * partmap/apple.c: Likewise.
29914 * partmap/gpt.c: Likewise.
29915 * partmap/msdos.c: Likewise.
29916 * partmap/sun.c: Likewise.
29917 * parttool/msdospart.c: Likewise.
29918 * term/gfxterm.c: Likewise.
29919 * video/bitmap.c: Likewise.
29920 * video/readers/jpeg.c: Likewise.
29921 * video/readers/png.c: Likewise.
29922 * video/readers/tga.c: Likewise.
29923 * video/video.c: Likewise.
29924 * util/grub-emu.c (read_command_list): Removed.
29925 (main): Don't call util_init_nls.
29926 * util/misc.c (grub_err_printf) [!GRUB_UTIL]: Removed.
29927 (grub_util_init_nls) [!GRUB_UTIL]: Likewise.
29928
29929 2010-03-14 Vladimir Serbinenko <phcoder@gmail.com>
29930
29931 * conf/powerpc-ieee1275.rmk (pkglib_MODULES): Add datetime.mod,
29932 date.mod, datehook.mod.
29933 (datetime_mod_SOURCES): New variable.
29934 (datetime_mod_CFLAGS): Likewise.
29935 (datetime_mod_LDFLAGS): Likewise.
29936 (date_mod_SOURCES): Likewise.
29937 (date_mod_CFLAGS): Likewise.
29938 (date_mod_LDFLAGS): Likewise.
29939 (datehook_mod_SOURCES): Likewise.
29940 (datehook_mod_CFLAGS): Likewise.
29941 (datehook_mod_LDFLAGS): Likewise.
29942 * conf/sparc64-ieee1275.rmk: Likewise.
29943 * lib/ieee1275/datetime.c: New file.
29944
29945 2010-03-14 Vladimir Serbinenko <phcoder@gmail.com>
29946
29947 * conf/powerpc-ieee1275.rmk (pkglib_MODULES): Add ieee1275_fb.mod.
29948 (ieee1275_fb_mod_SOURCES): New variable.
29949 (ieee1275_fb_mod_CFLAGS): Likewise.
29950 (ieee1275_fb_mod_LDFLAGS): Likewise.
29951 * include/grub/ieee1275/ieee1275.h (grub_ieee1275_devices_iterate):
29952 New proto.
29953 * kern/ieee1275/init.c (HEAP_MAX_SIZE): Increased.
29954 (HEAP_MAX_ADDR): Likewise.
29955 * kern/ieee1275/openfw.c (grub_children_iterate): Don't skip empty
29956 type.
29957 Correct stop condition.
29958 (grub_ieee1275_devices_iterate): New function.
29959 * video/ieee1275.c: New file.
29960
29961 2010-03-14 Vladimir Serbinenko <phcoder@gmail.com>
29962
29963 Merge sparc grub-mkimage into generic grub-mkimage and a.out support.
29964
29965 * boot/sparc64/ieee1275/boot.S (boot_continue): Use SCRATCH_PAD_BOOT
29966 as scratch.
29967 * boot/sparc64/ieee1275/diskboot.S (after_info_block): Use
29968 SCRATCH_PAD_DISKBOOT as scratch.
29969 (bootit): Pass Openfirmware pointer in %o4.
29970 * conf/sparc64-ieee1275.rmk (kernel_img_LDFLAGS): Link at 0x4400 instead
29971 of 0x200000.
29972 (grub_mkimage_SOURCES): Replace util/sparc64/ieee1275/grub-mkimage.c
29973 with util/grub-mkrawimage.c.
29974 * configure.ac: Handle GRUB_MACHINE_SPARC64 and GRUB_MACHINE_MIPS.
29975 * include/grub/aout.h (AOUT_MID_SUN): New definition.
29976 (grub_aout_get_type) [GRUB_UTIL]: Removed.
29977 (grub_aout_load) [GRUB_UTIL]: Likewise.
29978 * include/grub/kernel.h (grub_modules_get_end): New proto.
29979 * include/grub/sparc64/ieee1275/boot.h (SCRATCH_PAD): Removed.
29980 (SCRATCH_PAD_BOOT): New definition.
29981 (SCRATCH_PAD_DISKBOOT): Likewise.
29982 (GRUB_BOOT_MACHINE_IMAGE_ADDRESS): Set to 0x4400.
29983 * include/grub/sparc64/ieee1275/ieee1275.h
29984 (grub_ieee1275_original_stack): New variable
29985 * include/grub/sparc64/ieee1275/kernel.h (GRUB_KERNEL_MACHINE_RAW_SIZE):
29986 New definition
29987 (GRUB_KERNEL_MACHINE_STACK_SIZE): Likewise.
29988 (GRUB_PLATFORM_IMAGE_FORMATS): Likewise.
29989 (GRUB_PLATFORM_IMAGE_DEFAULT_FORMAT): Likewise.
29990 (GRUB_PLATFORM_IMAGE_DEFAULT): Likewise.
29991 (GRUB_PLATFORM_IMAGE_RAW): Likewise.
29992 (GRUB_PLATFORM_IMAGE_AOUT): Likewise.
29993 (grub_platform_image_format_t): New type.
29994 * kern/mips/yeeloong/init.c (grub_modules_get_end): Move from here ...
29995 * kern/main.c (grub_modules_get_end)
29996 [GRUB_MACHINE_MIPS_YEELOONG || GRUB_MACHINE_SPARC64]: ... here.
29997 * kern/sparc64/ieee1275/crt0.S: Store firmware entry point in %o0.
29998 (codestart): Switch stacks.
29999 * kern/sparc64/ieee1275/init.c (grub_ieee1275_original_stack): New
30000 variable.
30001 (grub_heap_init): Use grub_modules_get_end.
30002 * loader/sparc64/ieee1275/linux.c (grub_linux_boot): Restore original
30003 stack.
30004 * util/grub-mkrawimage.c (generate_image): Support sparc64.
30005 (main): Likewise.
30006 * util/sparc64/ieee1275/grub-mkimage.c: Removed.
30007
30008 2010-03-14 Thorsten Glaser <tg@mirbsd.org>
30009
30010 * util/grub-mkrescue.in: Base ISO UUID on UTC.
30011
30012 2010-03-08 Matt Kraai <kraai@ftbfs.org>
30013
30014 * util/i386/pc/grub-setup.c (setup): Fix a grammatical error (Debian
30015 bug #559005).
30016
30017 2010-03-07 Vladimir Serbinenko <phcoder@gmail.com>
30018
30019 * genmoddep.awk: Output all missing symbols and not only first.
30020
30021 2010-03-06 Vladimir Serbinenko <phcoder@gmail.com>
30022
30023 * NEWS: Put the date of 1.98 release.
30024
30025 2010-03-06 Vladimir Serbinenko <phcoder@gmail.com>
30026
30027 * configure.ac: Update CPPFLAGS and not CFLAGS when checking for
30028 ft2build.h.
30029
30030 2010-03-06 Vladimir Serbinenko <phcoder@gmail.com>
30031
30032 * normal/cmdline.c (grub_cmdline_get): Fix gabled line after
30033 completition in the middle of string.
30034
30035 2010-03-06 Vladimir Serbinenko <phcoder@gmail.com>
30036
30037 * util/grub-mkrescue.in: Use mktemp with explicit template.
30038
30039 2010-03-06 Vladimir Serbinenko <phcoder@gmail.com>
30040
30041 * loader/i386/bsd.c (grub_bsd_get_device): Fix a memory leak.
30042
30043 2010-03-06 Vladimir Serbinenko <phcoder@gmail.com>
30044
30045 * loader/i386/multiboot_mbi.c (grub_multiboot_set_bootdev): Free the
30046 right pointer.
30047
30048 2010-03-05 Vladimir Serbinenko <phcoder@gmail.com>
30049
30050 Fix FreeBSD compilation.
30051
30052 * Makefile.in (TARGET_CPPFLAGS): Remove -nostdinc -isystem.
30053 * configure.ac: Add -nostdinc -isystem to TARGET_CPPFLAGS if it works.
30054
30055 2010-03-05 Vladimir Serbinenko <phcoder@gmail.com>
30056
30057 * util/import_gcry.py: Add autogenerated files to MAINTAINER_CLEANFILES.
30058
30059 2010-03-04 Vladimir Serbinenko <phcoder@gmail.com>
30060
30061 * gettext/gettext.c (grub_gettext_init_ext): Fix a memory leak.
30062
30063 2010-03-04 Vladimir Serbinenko <phcoder@gmail.com>
30064
30065 * disk/scsi.c (grub_scsi_iterate): Fix a memory leak.
30066
30067 2010-03-04 Robert Millan <rmh.grub@aybabtu.com>
30068
30069 Support relative image path in theme file.
30070
30071 * gfxmenu/gui_image.c (grub_gui_image): New member theme_dir.
30072 (image_set_property): Handle theme_dir and relative path.
30073
30074 2010-03-04 Vladimir Serbinenko <phcoder@gmail.com>
30075
30076 * configure.ac: Alias amd64 to x86_64.
30077
30078 2010-03-04 Vladimir Serbinenko <phcoder@gmail.com>
30079
30080 * NEWS: mention multiboot on EFI.
30081
30082 2010-03-04 Vladimir Serbinenko <phcoder@gmail.com>
30083
30084 * kern/main.c (grub_load_modules): Handle errors from init functions of
30085 embeded modules.
30086
30087 2010-03-04 Vladimir Serbinenko <phcoder@gmail.com>
30088
30089 * normal/autofs.c (autoload_fs_module): Handle errors.
30090
30091 2010-03-04 Vladimir Serbinenko <phcoder@gmail.com>
30092
30093 Disable linux.mod on qemu-mips since it's not functional and leads
30094 to compilation failure.
30095
30096 * conf/mips.rmk (pkglib_MODULES): Remove linux.mod.
30097 * conf/mips-yeeloong.rmk (pkglib_MODULES): Add linux.mod.
30098 * conf/mips.rmk (linux_mod_SOURCES): Move from here ...
30099 * conf/mips-yeeloong.rmk (linux_mod_SOURCES): ... here
30100 * conf/mips.rmk (linux_mod_CFLAGS): Move from here ...
30101 * conf/mips-yeeloong.rmk (linux_mod_CFLAGS): ... here
30102 * conf/mips.rmk (linux_mod_ASFLAGS): Move from here ...
30103 * conf/mips-yeeloong.rmk (linux_mod_ASFLAGS): ... here
30104 * conf/mips.rmk (linux_mod_LDFLAGS): Move from here ...
30105 * conf/mips-yeeloong.rmk (linux_mod_LDFLAGS): ... here
30106 Reported by: BVK Chaitanya
30107
30108 2010-03-04 Jordan Uggla <jordan.uggla@gmail.com>
30109
30110 * INSTALL: Add gettext as a dependency and add qemu to a new section
30111 "Prerequisites for make-check".
30112
30113 2010-03-04 Christian Franke <franke@computer.org>
30114
30115 * util/grub-pe2elf.c: Add missing include "progname.h".
30116
30117 2010-03-04 Vladimir Serbinenko <phcoder@gmail.com>
30118
30119 * normal/crypto.c (read_crypto_list): Fix a typo.
30120 Reported by: Seth Goldberg.
30121
30122 2010-03-04 Vladimir Serbinenko <phcoder@gmail.com>
30123
30124 * Makefile.in (DISTCLEANFILES): Add stamp-h1.
30125 Reported by: Seth Goldberg.
30126
30127 2010-03-04 Vladimir Serbinenko <phcoder@gmail.com>
30128
30129 * Makefile.in (CLEANFILES) [FONT_SOURCE && grub_mkfont]: Add
30130 ascii.bitmaps.
30131
30132 2010-03-04 Vladimir Serbinenko <phcoder@gmail.com>
30133
30134 * genmk.rb: Remove terminal*.lst in make clean.
30135 Reported by: Seth Goldberg.
30136
30137 2010-03-04 Vladimir Serbinenko <phcoder@gmail.com>
30138
30139 * util/i386/efi/grub-install.in: Copy gettext files.
30140
30141 2010-03-01 Vladimir Serbinenko <phcoder@gmail.com>
30142
30143 * fs/ext2.c (grub_ext2_read_block): Fix an integer overflow.
30144
30145 2010-03-01 Vladimir Serbinenko <phcoder@gmail.com>
30146
30147 Wait for user entry basing on presence of output rather than on errors.
30148
30149 * include/grub/normal.h (grub_normal_get_line_counter): New proto.
30150 (grub_install_newline_hook): Likewise.
30151 * normal/main.c (GRUB_MOD_INIT): Call grub_install_newline_hook.
30152 * normal/menu.c (show_menu): Check line_counter to determine presence
30153 of output.
30154 * normal/term.c (grub_normal_line_counter): New variable.
30155 (grub_normal_get_line_counter): New function.
30156 (grub_install_newline_hook): Likewise.
30157
30158 2010-03-01 Vladimir Serbinenko <phcoder@gmail.com>
30159
30160 * commands/cat.c (grub_cmd_cat): Propagate grub_gzfile_open error.
30161
30162 2010-03-01 Vladimir Serbinenko <phcoder@gmail.com>
30163
30164 * configure.ac: Update version to 1.98.
30165
30166 2010-02-26 Vladimir Serbinenko <phcoder@gmail.com>
30167
30168 * util/grub.d/10_linux.in (linux_entry): Don't default to
30169 gfxpayload=keep if Linux doesn't support video handover.
30170
30171 2010-02-25 Vladimir Serbinenko <phcoder@gmail.com>
30172
30173 Don't compile video modules on yeeloong since video subsystem is part
30174 of kernel.
30175
30176 * conf/common.rmk (pkglib_MODULES) [yeeloong]: Remove video.mod,
30177 video_fb.mod, bitmap.mod, font.mod, gfxterm.mod and bufio.mod
30178 * conf/mips-yeeloong.rmk (kernel_img_HEADERS): Add bitmap.h,
30179 video.h, gfxterm.h, font.h, bitmap_scale.h and bufio.h.
30180 * conf/mips.rmk (kernel_img_HEADERS): Add values instead of overwriting.
30181 * include/grub/bitmap.h: Add EXPORT_FUNC and EXPORT_VAR.
30182 * include/grub/bitmap_scale.h: Likewise.
30183 * include/grub/bufio.h: Likewise.
30184 * include/grub/font.h: Likewise.
30185 * include/grub/gfxterm.h: Likewise.
30186 * include/grub/video.h: Likewise.
30187 * include/grub/vbe.h: Don't include video_fb.h.
30188 * video/i386/pc/vbe.c: Include video_fb.h.
30189 * commands/i386/pc/vbetest.c: Include video.h.
30190
30191 2010-02-25 Jordan Uggla <jordan.uggla@gmail.com>
30192
30193 * util/grub-mkconfig.in (GRUB_SAVEDEFAULT): Export new variable.
30194 * util/grub-mkconfig_lib.in (save_default_entry): Only save a new
30195 default entry if GRUB_SAVEDEFAULT=true. This allows using
30196 GRUB_DEFAULT=saved on its own to let grub-reboot work, without
30197 saving a new default on every boot.
30198
30199 2010-02-24 Vladimir Serbinenko <phcoder@gmail.com>
30200
30201 * normal/crypto.c (read_crypto_list): Fix a memory leak.
30202 * normal/term.c (read_terminal_list): Likewise.
30203 * normal/main.c (grub_normal_init_page): Likewise.
30204 (grub_normal_read_line_real): Likewise.
30205
30206 2010-02-24 Vladimir Serbinenko <phcoder@gmail.com>
30207
30208 * loader/i386/multiboot_mbi.c (grub_multiboot_set_bootdev): Fix a
30209 memory leak.
30210 Reported by: Seth Goldberg.
30211
30212 2010-02-24 Joey Korkames <joey+lists@kidfixit.com>
30213
30214 * term/ieee1275/ofconsole.c (grub_ofconsole_readkey): Remove
30215 duplicate declaration of `start'.
30216
30217 2010-02-20 Vladimir Serbinenko <phcoder@gmail.com>
30218
30219 * fs/iso9660.c (grub_iso9660_iterate_dir): Strip version from joliet
30220 filename.
30221 Reported by: Georgy Buranov
30222
30223 2010-02-20 Carles Pina i Estany <carles@pina.cat>
30224
30225 * util/grub-mkrawimage.c (usage): Change string formatting to
30226 improve gettext.
30227
30228 2010-02-20 Manoel Rebelo Abranches <mrabran@br.ibm.com>
30229
30230 * term/ieee1275/ofconsole.c (grub_ofconsole_readkey): Add delete and
30231 backspace keys.
30232
30233 2010-02-20 Vladimir Serbinenko <phcoder@gmail.com>
30234
30235 * video/fb/video_fb.c (grub_video_fb_scroll): Fix a pixel size bug.
30236 Reported by: Michael Suchanek.
30237
30238 2010-02-18 Samuel Thibault <samuel.thibault@ens-lyon.org>
30239
30240 * util/grub-mkconfig.in: Export GRUB_INIT_TUNE.
30241 * util/grub.d/00_header.in: Handle GRUB_INIT_TUNE.
30242
30243 2010-02-16 Vladimir Serbinenko <phcoder@gmail.com>
30244
30245 Remove any reference to non-free fonts.
30246
30247 * commands/videotest.c (grub_cmd_videotest): Use unifont by default.
30248 * docs/gfxmenu-theme-example.txt: Removed. It's both outdated and
30249 uses non-free components.
30250 * font/font.c (grub_font_get_name): Remove example name.
30251 * gfxmenu/gui_label.c (grub_gui_label_new): Use unifont by default.
30252 * gfxmenu/gui_list.c (grub_gui_list_new): Likewise.
30253 * gfxmenu/gui_progress_bar.c (grub_gui_progress_bar_new): Likewise.
30254 * gfxmenu/view.c (grub_gfxmenu_view_new): Likewise.
30255
30256 2010-02-16 Georgy Buranov <gburanov@gmail.com>
30257
30258 * disk/efi/efidisk.c (grub_efidisk_get_device_name): Fix a typo.
30259
30260 2010-02-15 Vladimir Serbinenko <phcoder@gmail.com>
30261
30262 * term/serial.c (serial_get_divisor) [GRUB_MACHINE_MIPS_YEELOONG]:
30263 Double divisor.
30264 (serial_hw_init) [GRUB_MACHINE_MIPS_YEELOONG]: Don't enable advanced
30265 features.
30266 (GRUB_MOD_INIT) [GRUB_MACHINE_MIPS_YEELOONG]: Default to 115200.
30267
30268 2010-02-15 Vladimir Serbinenko <phcoder@gmail.com>
30269
30270 * gensymlist.sh.in: Use TARGET_CC instead of CC.
30271
30272 2010-02-14 Samuel Thibault <samuel.thibault@ens-lyon.org>
30273
30274 * commands/i386/pc/play.c (GRUB_MOD_INIT(play)): Fix help.
30275 * docs/grub.texi (Command-line and menu entry commands): Document play
30276 command.
30277
30278 2010-02-14 Samuel Thibault <samuel.thibault@ens-lyon.org>
30279
30280 * commands/i386/pc/play.c (grub_cmd_play): If grub_file_open fails,
30281 parse arguments as inline tempo and notes. Move code for playing notes
30282 to...
30283 (play): ... new function.
30284
30285 2010-02-14 Samuel Thibault <samuel.thibault@ens-lyon.org>
30286
30287 * commands/i386/pc/play.c (T_REST, T_FINE, struct note, beep_on): Use
30288 grub_uint16_t instead of short.
30289 (grub_cmd_play): Use grub_uint32_t instead of int, convert data from
30290 disk from little endian to cpu endianness.
30291
30292 2010-02-07 Samuel Thibault <samuel.thibault@ens-lyon.org>
30293
30294 * commands/i386/pc/play.c (BASE_TEMPO): Set to 60 *
30295 GRUB_TICKS_PER_SECOND instead of 120.
30296
30297 2010-02-14 Vladimir Serbinenko <phcoder@gmail.com>
30298
30299 * term/ieee1275/ofconsole.c (grub_ofconsole_readkey): Wait for possible
30300 escape sequence after \e.
30301
30302 2010-02-14 Vladimir Serbinenko <phcoder@gmail.com>
30303
30304 * term/ieee1275/ofconsole.c (grub_ofconsole_putchar): Don't output
30305 non-ASCII characters.
30306
30307 2010-02-14 Vladimir Serbinenko <phcoder@gmail.com>
30308
30309 * util/grub-mkconfig_lib.in (prepare_grub_to_access_device): Enclose
30310 set root in single quotes to prevent \, from being unescaped.
30311
30312 2010-02-14 Vladimir Serbinenko <phcoder@gmail.com>
30313
30314 Prevent unknown commands from stopping menuentry execution.
30315
30316 * script/execute.c (grub_script_execute_cmdline): Print error after
30317 unknown command.
30318
30319 2010-02-14 Vladimir Serbinenko <phcoder@gmail.com>
30320
30321 * fs/i386/pc/pxe.c (GRUB_MOD_INIT): Fix typo.
30322 Reported by: Pavel Pisa.
30323
30324 2010-02-13 Vladimir Serbinenko <phcoder@gmail.com>
30325
30326 * io/gzio.c (grub_gzio_open): Use grub_zalloc.
30327
30328 2010-02-13 Vladimir Serbinenko <phcoder@gmail.com>
30329
30330 Merge grub_ieee1275_map_physical into grub_map and rename to
30331 grub_ieee1275_map
30332
30333 * include/grub/ieee1275/ieee1275.h (grub_ieee1275_map): New proto.
30334 * include/grub/sparc64/ieee1275/ieee1275.h (grub_ieee1275_map_physical):
30335 Remove.
30336 * kern/ieee1275/openfw.c (grub_map): Rename to ...
30337 (grub_ieee1275_map): ... this. All users updated. Add phys_lo when
30338 necessary.
30339 * kern/sparc64/ieee1275/ieee1275.c (grub_ieee1275_map_physical): Remove.
30340
30341 2010-02-13 Vladimir Serbinenko <phcoder@gmail.com>
30342
30343 * disk/ieee1275/ofdisk.c (grub_ofdisk_open): Check device type before
30344 opening and not after.
30345
30346 2010-02-13 Vladimir Serbinenko <phcoder@gmail.com>
30347
30348 * term/ieee1275/ofconsole.c (grub_ofconsole_readkey): Macroify
30349 constants.
30350
30351 2010-02-13 Vladimir Serbinenko <phcoder@gmail.com>
30352
30353 * loader/sparc64/ieee1275/linux.c (align_addr): Remove.
30354 (alloc_phys): Use ALIGN_UP instead of align_addr.
30355
30356 2010-02-13 Vladimir Serbinenko <phcoder@gmail.com>
30357
30358 * loader/sparc64/ieee1275/linux.c (alloc_phys): Correct bounds checking.
30359
30360 2010-02-13 Vladimir Serbinenko <phcoder@gmail.com>
30361
30362 * kern/sparc64/ieee1275/crt0.S (codestart): Move modules backwards.
30363
30364 2010-02-13 Vladimir Serbinenko <phcoder@gmail.com>
30365
30366 * disk/ieee1275/ofdisk.c (grub_ofdisk_read): Remove excessively
30367 verbose dprintf.
30368
30369 2010-02-13 Vladimir Serbinenko <phcoder@gmail.com>
30370
30371 Fix over-4GiB seek on sparc64.
30372
30373 * include/grub/ieee1275/ieee1275.h (grub_ieee1275_seek):
30374 Replace pos_i and pos_lo with pos. All users updated.
30375 * include/grub/powerpc/ieee1275/ieee1275.h (GRUB_IEEE1275_CELL_SIZEOF):
30376 New constant.
30377 * include/grub/sparc64/ieee1275/ieee1275.h (GRUB_IEEE1275_CELL_SIZEOF):
30378 Likewise.
30379 * kern/ieee1275/ieee1275.c (grub_ieee1275_seek): Split pos into pos_hi
30380 and pos_lo.
30381
30382 2010-02-13 Vladimir Serbinenko <phcoder@gmail.com>
30383
30384 * util/grub-mkrawimage.c (main): Call set_program_name.
30385
30386 2010-02-13 Vladimir Serbinenko <phcoder@gmail.com>
30387
30388 Properly align 64-bit targets.
30389
30390 * util/grub-mkrawimage.c (ALIGN_ADDR): New macro.
30391 (generate_image): Use ALIGN_ADDR.
30392
30393 2010-02-13 Vladimir Serbinenko <phcoder@gmail.com>
30394
30395 Properly create cross-endian images.
30396
30397 * include/grub/types.h (grub_host_to_target_addr): New macro
30398 * util/grub-mkrawimage.c (generate_image): Add missing host_to_target.
30399
30400 2010-02-13 Vladimir Serbinenko <phcoder@gmail.com>
30401
30402 * util/grub-mkrawimage.c (generate_image): Add forgotten ALIGN_UP.
30403
30404 2010-02-10 Vladimir Serbinenko <phcoder@gmail.com>
30405
30406 Pass SIMPLE framebuffer size in bytes and not 64K blocks.
30407
30408 * loader/i386/efi/linux.c (grub_linux_setup_video): Don't divide by 64K.
30409 * loader/i386/linux.c (grub_linux_setup_video): Likewise.
30410 (grub_linux_boot): Divide by 64K when on VESA.
30411
30412 2010-02-10 Vladimir Serbinenko <phcoder@gmail.com>
30413
30414 Support GRUB_GFXPAYLOAD_LINUX.
30415
30416 * util/grub-mkconfig.in: Export GRUB_GFXPAYLOAD_LINUX.
30417 * util/grub.d/10_linux.in (linux_entry): Handle GRUB_GFXPAYLOAD_LINUX.
30418
30419 2010-02-10 Vladimir Serbinenko <phcoder@gmail.com>
30420
30421 * script/execute.c (grub_script_execute_cmdline): Use grub_print_error
30422 to show messages instead of discarding them.
30423 Process errors after executing command and not before. Keep old method
30424 too as precaution.
30425
30426 2010-02-09 Vladimir Serbinenko <phcoder@gmail.com>
30427
30428 * configure.ac: Check for ft2build.h.
30429
30430 2010-02-07 Vladimir Serbinenko <phcoder@gmail.com>
30431
30432 * kern/ieee1275/openfw.c (grub_halt): Try executing "poweroff".
30433
30434 2010-02-07 Vladimir Serbinenko <phcoder@gmail.com>
30435
30436 * genkernsyms.sh.in: Use TARGET_CC.
30437
30438 2010-02-07 Colin Watson <cjwatson@ubuntu.com>
30439
30440 * NEWS: Update.
30441
30442 2010-02-07 Vladimir Serbinenko <phcoder@gmail.com>
30443
30444 * include/grub/multiboot2.h: Remove leftover file.
30445 * include/grub/normal.h [GRUB_UTIL]: Remove leftover declarations.
30446 * include/grub/partition.h [GRUB_UTIL]: Likewise.
30447
30448 2010-02-07 Yves Blusseau <blusseau@zetam.org>
30449
30450 * gnulib/getdelim.c: add missing header (type ssize_t must be defined).
30451
30452 2010-02-07 Vladimir Serbinenko <phcoder@gmail.com>
30453
30454 Fix warnings in grub-emu when compiling with maximum warning options.
30455
30456 * util/grub-emu.c (ENABLE_RELOCATABLE): New definition.
30457 (grub_arch_modules_addr): Return 0 and not NULL.
30458 * util/misc.c (ENABLE_RELOCATABLE): New definition.
30459 (xstrdup): Use newstr instead of dup.
30460 * util/hostdisk.c (grub_util_biosdisk_get_grub_dev): Rename one instance
30461 of disk to dsk to avoid shadowing.
30462 (find_free_slot): Fix prototype.
30463 * util/getroot.c (grub_util_is_dmraid): Make static.
30464 * include/grub/time.h (grub_get_rtc) [GRUB_MACHINE_EMU || GRUB_UTIL]:
30465 Add missing prototype.
30466 * util/sdl.c (grub_video_sdl_set_viewport): Remove.
30467
30468 2010-02-07 Vladimir Serbinenko <phcoder@gmail.com>
30469
30470 * loader/i386/linux.c (grub_linux_setup_video): Handle error
30471 appropriately.
30472
30473 2010-02-07 Vladimir Serbinenko <phcoder@gmail.com>
30474
30475 * fs/reiserfs.c (grub_reiserfs_read): Use #if 0 instead of commenting
30476 code out.
30477
30478 2010-02-07 Vladimir Serbinenko <phcoder@gmail.com>
30479
30480 * include/grub/cache.h (grub_arch_sync_caches) [i386 || x86_64]: Inline.
30481 * kern/i386/coreboot/init.c (grub_arch_sync_caches): Remove.
30482 * kern/i386/efi/init.c (grub_arch_sync_caches): Likewise.
30483 * kern/i386/ieee1275/init.c (grub_arch_sync_caches): Likewise.
30484 * kern/i386/pc/init.c (grub_arch_sync_caches): Likewise.
30485 * util/misc.c (grub_arch_sync_caches) [i386 || x86_64]: Likewise.
30486
30487 2010-02-07 Vladimir Serbinenko <phcoder@gmail.com>
30488
30489 * include/grub/err.h (grub_err_printf): Don't export.
30490
30491 2010-02-07 Vladimir Serbinenko <phcoder@gmail.com>
30492
30493 * include/grub/dl.h (grub_dl_register_symbol): Don't export.
30494
30495 2010-02-07 Vladimir Serbinenko <phcoder@gmail.com>
30496
30497 * include/grub/i18n.h (grub_gettext_dummy): Removed.
30498 * kern/misc.c (grub_gettext_dummy): Make static.
30499
30500 2010-02-06 Vladimir Serbinenko <phcoder@gmail.com>
30501
30502 * kern/misc.c (grub_utf8_to_ucs4): Don't eat valid characters preceeded
30503 by non-valid ones.
30504 * kern/term.c (grub_putchar): Likewise.
30505
30506 2010-02-06 Vladimir Serbinenko <phcoder@gmail.com>
30507
30508 * partmap/sun.c (sun_partition_map_iterate): Restructure flow to fix
30509 buggy hook call and memory leak.
30510
30511 2010-02-06 Vladimir Serbinenko <phcoder@gmail.com>
30512
30513 * commands/ls.c (grub_ls_list_files): Free pathname on exit.
30514
30515 2010-02-06 Vladimir Serbinenko <phcoder@gmail.com>
30516
30517 * fs/fat.c (grub_fat_iterate_dir): Free unibuf at exit.
30518
30519 2010-02-06 Vladimir Serbinenko <phcoder@gmail.com>
30520
30521 * loader/i386/pc/xnu.c (grub_xnu_set_video): Add const qualifier to
30522 modevar.
30523 Return grub_errno on allocation error.
30524
30525 2010-02-06 Vladimir Serbinenko <phcoder@gmail.com>
30526
30527 * disk/ieee1275/ofdisk.c (grub_ofdisk_read): Correct error handling.
30528
30529 2010-02-06 Yves Blusseau <blusseau@zetam.org>
30530
30531 * conf/common.rmk (grub_script_check_SOURCES): add missing dependencies.
30532 (grub_mkpasswd_pbkdf2_SOURCES): Likewise.
30533
30534 2010-02-06 Vladimir Serbinenko <phcoder@gmail.com>
30535
30536 * fs/i386/pc/pxe.c (grub_pxefs_dir): Return with failure on
30537 non-pxe disk.
30538 (grub_pxefs_open): Likewise.
30539
30540 2010-02-06 Robert Millan <rmh.grub@aybabtu.com>
30541
30542 * util/grub.d/10_hurd.in: Add --class information to menuentries.
30543 * util/grub.d/10_kfreebsd.in: Likewise.
30544 * util/grub.d/10_linux.in: Likewise.
30545
30546 2010-02-06 Colin D Bennett <colin@gibibit.com>
30547
30548 * conf/common.rmk (pkglib_MODULES): Add gfxmenu.mod.
30549 (gfxmenu_mod_SOURCES): New variable.
30550 (gfxmenu_mod_CFLAGS): Likewise.
30551 (gfxmenu_mod_LDFLAGS): Likewise.
30552 * include/grub/term.h (grub_term_set_current_output): Declare
30553 argument as const.
30554 * docs/gfxmenu-theme-example.txt: New file.
30555 * gfxmenu/gfxmenu.c: Likewise.
30556 * gfxmenu/gui_box.c: Likewise.
30557 * gfxmenu/gui_canvas.c: Likewise.
30558 * gfxmenu/gui_circular_progress.c: Likewise.
30559 * gfxmenu/gui_image.c: Likewise.
30560 * gfxmenu/gui_label.c: Likewise.
30561 * gfxmenu/gui_list.c: Likewise.
30562 * gfxmenu/gui_progress_bar.c: Likewise.
30563 * gfxmenu/gui_string_util.c: Likewise.
30564 * gfxmenu/gui_util.c: Likewise.
30565 * gfxmenu/icon_manager.c: Likewise.
30566 * gfxmenu/model.c: Likewise.
30567 * gfxmenu/named_colors.c: Likewise.
30568 * gfxmenu/theme_loader.c: Likewise.
30569 * gfxmenu/view.c: Likewise.
30570 * gfxmenu/widget-box.c: Likewise.
30571 * include/grub/gfxmenu_model.h: Likewise.
30572 * include/grub/gfxmenu_view.h: Likewise.
30573 * include/grub/gfxwidgets.h: Likewise.
30574 * include/grub/gui.h: Likewise.
30575 * include/grub/gui_string_util.h: Likewise.
30576 * include/grub/icon_manager.h: Likewise.
30577
30578 2010-02-06 Vladimir Serbinenko <phcoder@gmail.com>
30579
30580 Agglomerate scrolling in gfxterm.
30581
30582 * term/gfxterm.c (grub_virtual_screen): New member 'total_screen'.
30583 (grub_virtual_screen_setup): Initialise 'total_screen'.
30584 (write_char): Split to ...
30585 (paint_char): ... this ...
30586 (write_char): ... and this.
30587 (paint_char): Handle delayed scrolling.
30588 (draw_cursor): Likewise.
30589 (scroll_up): Split to ...
30590 (real_scroll): ... this ...
30591 (scroll_up): ... and this.
30592 (real_scroll): Handle multi-line scroll and draw below-the-bottom
30593 characters.
30594 (grub_gfxterm_refresh): Call real_scroll.
30595
30596 2010-02-06 Colin D Bennett <colin@gibibit.com>
30597
30598 * include/grub/misc.h (grub_iscntrl): New inline function.
30599 (grub_isalnum): Likewise.
30600 (grub_strtol): Likewise.
30601
30602 2010-02-06 Colin D Bennett <colin@gibibit.com>
30603
30604 * normal/menu_text.c (get_entry_number): Move from here ...
30605 * normal/menu.c (get_entry_number): ... moved here.
30606 * include/grub/menu.h (grub_menu_get_default_entry_index):
30607 New prototype.
30608 * normal/menu.c (grub_menu_get_default_entry_index): New function.
30609 * normal/menu_text.c (run_menu): Use grub_menu_get_default_entry_index.
30610 * include/grub/menu_viewer.h (grub_menu_viewer_init): New prototype.
30611 (grub_menu_viewer_should_return): Likewise.
30612 * normal/main.c (GRUB_MOD_INIT (normal)): Call grub_menu_viewer_init.
30613 * normal/menu_text.c (run_menu): Enable menu switching.
30614 * normal/menu_viewer.c (should_return): New variable.
30615 (menu_viewer_changed): Likewise.
30616 (grub_menu_viewer_show_menu): Handle menu viewer changes.
30617 (grub_menu_viewer_should_return): New function.
30618 (menuviewer_write_hook): Likewise.
30619 (grub_menu_viewer_init): Likewise.
30620
30621 2010-02-06 Colin D Bennet <colin@gibibit.com>
30622 2010-02-06 Vladimir Serbinenko <phcoder@gmail.com>
30623
30624 Support for gfxterm in a window.
30625
30626 * include/grub/gfxterm.h: New file.
30627 * include/grub/video.h (struct grub_video_rect): New declaration.
30628 (grub_video_rect_t): Likewise.
30629 * term/gfxterm.c (struct grub_gfxterm_window): New type.
30630 (refcount): New variable.
30631 (render_target): Likewise.
30632 (window): Likewise.
30633 (repaint_callback): Likewise.
30634 (grub_virtual_screen_setup): Use 'render_target'.
30635 (init_window): New function.
30636 (grub_gfxterm_init_window): Likewise.
30637 (grub_gfxterm_init): Check reference counter.
30638 Use init_window.
30639 (destroy_window): New function.
30640 (grub_gfxterm_destroy_window): Likewise.
30641 (grub_gfxterm_fini): Check reference counter.
30642 Use destroy_window.
30643 (redraw_screen_rect): Restore viewport.
30644 Use 'render_target' and 'window'.
30645 Call 'repaint_callback'.
30646 (write_char): Use 'render_target'.
30647 (draw_cursor): Likewise.
30648 (scroll_up): Restore viewport.
30649 Use 'render_target' and 'window'.
30650 Call 'repaint_callback'.
30651 (grub_gfxterm_cls): Likewise.
30652 (grub_gfxterm_refresh): Use 'window'.
30653 (grub_gfxterm_set_repaint_callback): New function.
30654 (grub_gfxterm_background_image_cmd): Use 'window'.
30655 (grub_gfxterm_get_term): New function.
30656 (GRUB_MOD_INIT(term_gfxterm)): Set 'refcount' to 0.
30657
30658 2010-02-06 Colin D Bennett <colin@gibibit.com>
30659
30660 Bitmap scaling support.
30661
30662 * conf/common.rmk (pkglib_MODULES): Add bitmap_scale.mod.
30663 (bitmap_scale_mod_SOURCES): New variable.
30664 (bitmap_scale_mod_CFLAGS): Likewise.
30665 (bitmap_scale_mod_LDFLAGS): Likewise.
30666 * include/grub/bitmap_scale.h: New file.
30667 * term/gfxterm.c (BACKGROUND_CMD_ARGINDEX_MODE): New definiton.
30668 (background_image_cmd_options): New variable.
30669 (grub_gfxterm_background_image_cmd): Support bitmap stretching.
30670 (cmd): Rename and change type to ...
30671 (background_image_cmd_handle): ... this. All users updated.
30672 (GRUB_MOD_INIT(term_gfxterm)): Make background_image extended command.
30673 * video/bitmap_scale.c: New file.
30674
30675 2010-02-06 Vladimir Serbinenko <phcoder@gmail.com>
30676
30677 SDL support.
30678
30679 * Makefile.in (LIBSDL): New variable.
30680 (enable_grub_emu_sdl): Likewise.
30681 * conf/i386-pc.rmk (grub_emu_SOURCES): Add video files.
30682 (grub_emu_SOURCES) [enable_grub_emu_sdl]: Add util/sdl.c.
30683 (grub_emu_LDFLAGS) [enable_grub_emu_sdl]: Add $(LIBSDL).
30684 * configure.ac: Detect SDL availability and add --enable-grub-emu-sdl
30685 * util/sdl.c: New file.
30686
30687 2010-02-06 Colin D Bennett <colin@gibibit.com>
30688 2010-02-06 Vladimir Serbinenko <phcoder@gmail.com>
30689
30690 Double buffering support.
30691
30692 * commands/i386/pc/videotest.c (grub_cmd_videotest): Swap doublebuffers.
30693 * include/grub/video.h: Update comment.
30694 * include/grub/video_fb.h (grub_video_fb_doublebuf_update_screen_t):
30695 New type.
30696 (grub_video_fb_doublebuf_blit_init): New prototype.
30697 * term/gfxterm.c (scroll_up): Support double buffering.
30698 (grub_gfxterm_refresh): Likewise.
30699 * video/fb/video_fb.c (doublebuf_blit_update_screen): New function.
30700 (grub_video_fb_doublebuf_blit_init): Likewise.
30701 * video/i386/pc/vbe.c (framebuffer): Remove 'render_target'. Add
30702 'front_target', 'back_target', 'offscreen_buffer', 'page_size',
30703 'displayed_page', 'render_page' and 'update_screen'.
30704 (grub_video_vbe_fini): Free offscreen buffer.
30705 (doublebuf_pageflipping_commit): New function.
30706 (doublebuf_pageflipping_update_screen): Likewise.
30707 (doublebuf_pageflipping_init): Likewise.
30708 (double_buffering_init): Likewise.
30709 (grub_video_vbe_setup): Enable doublebuffering.
30710 (grub_video_vbe_swap_buffers): Implement.
30711 (grub_video_vbe_set_active_render_target): Handle double buffering.
30712 (grub_video_vbe_get_active_render_target): Likewise.
30713 (grub_video_vbe_get_info_and_fini): Likewise. Free offscreen_buffer.
30714 (grub_video_vbe_adapter): Use grub_video_vbe_get_active_render_target.
30715 (grub_video_vbe_enable_double_buffering): Likewise.
30716 (grub_video_vbe_swap_buffers): Use update_screen.
30717 (grub_video_set_mode): Use double buffering.
30718
30719 2010-02-06 Robert Millan <rmh.grub@aybabtu.com>
30720
30721 * maintainance/gentrigtables.py: Remove.
30722 * lib/trig.c: Likewise.
30723
30724 * gentrigtables.c: New file. C rewrite of gentrigtables.py.
30725
30726 * conf/common.rmk (trig_mod_SOURCES): Replace `lib/trig.c' with
30727 `trigtables.c'.
30728 (trigtables.c): New rule.
30729 (gentrigtables): Likewise.
30730 (DISTCLEANFILES): Add `trigtables.c' and `gentrigtables'.
30731
30732 2010-02-06 Robert Millan <rmh.grub@aybabtu.com>
30733
30734 * maintainance/gentrigtables.py: Avoid duplicate hardcoding of
30735 integer constants.
30736
30737 2010-02-06 Colin D Bennet <colin@gibibit.com>
30738
30739 Trigonometry support.
30740
30741 * include/grub/trig.h: New file.
30742 * lib/trig.c: Likewise.
30743 * maintainance/gentrigtables.py: Likewise.
30744 * conf/common.rmk (pkglib_MODULES): Add trig.mod.
30745 (trig_mod_SOURCES): New variable.
30746 (trig_mod_CFLAGS): Likewise.
30747 (trig_mod_LDFLAGS): Likewise.
30748
30749 2010-02-06 Vladimir Serbinenko <phcoder@gmail.com>
30750
30751 * kern/ieee1275/openfw.c (grub_ieee1275_encode_devname): Support whole
30752 disk devices.
30753
30754 2010-02-06 Vladimir Serbinenko <phcoder@gmail.com>
30755
30756 * kern/ieee1275/openfw.c (grub_devalias_iterate): Stop iterating on
30757 error.
30758
30759 2010-02-03 Vladimir Serbinenko <phcoder@gmail.com>
30760
30761 * util/hostdisk.c (open_device): Don't use partition device when reading
30762 before the partition.
30763 (grub_util_biosdisk_read): Don't read from partition and before the
30764 partition in single operation.
30765 (grub_util_biosdisk_write): Don't write to partition and before the
30766 partition in single operation.
30767
30768 2010-02-03 Torsten Landschoff <torsten@debian.org>
30769
30770 * kern/disk.c (grub_disk_read): Fix offset computation when reading
30771 last sectors.
30772
30773 2010-02-03 Vladimir Serbinenko <phcoder@gmail.com>
30774
30775 * disk/i386/pc/biosdisk.c (grub_biosdisk_read): Handle non-2048 aligned
30776 CDROM reads.
30777 (grub_biosdisk_write): Refuse to write to CDROM.
30778
30779 2010-01-31 Vladimir Serbinenko <phcoder@gmail.com>
30780
30781 * disk/ieee1275/ofdisk.c (grub_ofdisk_iterate): Fix off-by-one error.
30782
30783 2010-01-31 Vladimir Serbinenko <phcoder@gmail.com>
30784
30785 * font/font.c (find_glyph): Check that bmp_idx is available before
30786 using it.
30787 (grub_font_get_string_width): Never call grub_font_get_glyph_internal
30788 with (font == NULL).
30789
30790 2010-01-28 Christian Schmitt <chris@ilovelinux.de>
30791
30792 * util/ieee1275/grub-install.in: Fix nvsetenv arguments.
30793
30794 2010-01-28 BVK Chaitanya <bvk.groups@gmail.com>
30795
30796 * include/grub/script_sh.h (sourcecode): Add const qualifier.
30797 * util/grub-script-check.c (getline): Fix empty lines case.
30798
30799 2010-01-28 Robert Millan <rmh.grub@aybabtu.com>
30800
30801 * Makefile.in (check): Exit with fail status when one of the tests
30802 fails.
30803 * tests/example_functional_test.c (example_test): Fix reversed assert.
30804 * tests/example_unit_test.c (example_test): Likewise.
30805
30806 2010-01-28 Colin Watson <cjwatson@ubuntu.com>
30807
30808 * util/grub.d/10_linux.in: This script does not use any of the
30809 contents of gettext.sh, only the external command `gettext', so stop
30810 sourcing it. (Moreover, gettext.sh isn't necessarily installed in
30811 the same prefix as GRUB.)
30812 * util/grub.d/10_kfreebsd.in: Likewise.
30813
30814 2010-01-27 Vladimir Serbinenko <phcoder@gmail.com>
30815
30816 * normal/cmdline.c (grub_cmdline_get): Fix completion in the middle
30817 of the line.
30818
30819 2010-01-27 Vladimir Serbinenko <phcoder@gmail.com>
30820
30821 * kern/disk.c (grub_disk_read): Fix offset computation when reading
30822 last sectors.
30823
30824 2010-01-27 Vladimir Serbinenko <phcoder@gmail.com>
30825
30826 * commands/hashsum.c (hash_file): Avoid possible stack overflow by
30827 having a 4KiB and not 32KiB buffer size.
30828
30829 2010-01-27 Robert Millan <rmh.grub@aybabtu.com>
30830
30831 * util/hostfs.c: Include `<errno.h>'.
30832 (grub_hostfs_read): Handle errors from fseeko() and fread().
30833
30834 2010-01-27 Robert Millan <rmh.grub@aybabtu.com>
30835
30836 * kern/disk.c (grub_disk_read): Fix bug that would cause infinite
30837 loop when using read hooks on files whose size isn't sector-aligned.
30838
30839 2010-01-27 Robert Millan <rmh.grub@aybabtu.com>
30840
30841 Remove unused parameter.
30842
30843 * fs/iso9660.c (struct grub_iso9660_data): Remove `length' parameter.
30844 (grub_iso9660_open): Remove initialization of `data->length'.
30845
30846 2010-01-27 Robert Millan <rmh.grub@aybabtu.com>
30847
30848 * util/grub-fstest.c (fstest): Rewrite allocation, fixing a few
30849 memleak conditions.
30850
30851 2010-01-27 Carles Pina i Estany <carles@pina.cat>
30852
30853 * util/lvm.c: New macro LVM_DEV_MAPPER_STRING.
30854 (grub_util_lvm_isvolume): Use LVM_DEV_MAPPER_STRING.
30855
30856 2010-01-26 Carles Pina i Estany <carles@pina.cat>
30857
30858 * util/bin2h.c (usage): Fix warning (space after backslash).
30859
30860 2010-01-26 Carles Pina i Estany <carles@pina.cat>
30861
30862 * font/font.c: Include `grub/fontformat.h.
30863 Remove font file format constants.
30864 (grub_font_load): Use the new macros.
30865 * include/grub/fontformat.h: New file.
30866 * util/grub-mkfont.c: Include `grub/fontformat.c'.
30867 (write_font_pf2): Use the new macros.
30868
30869 2010-01-26 Robert Millan <rmh.grub@aybabtu.com>
30870
30871 * util/bin2h.c (usage): Make --help actually explain what `grub-bin2h'
30872 does.
30873
30874 2010-01-26 Robert Millan <rmh.grub@aybabtu.com>
30875
30876 * include/grub/i386/pc/boot.h (GRUB_BOOT_MACHINE_PXE_DL): New macro.
30877
30878 * boot/i386/pc/pxeboot.S: Include `<grub/machine/boot.h>'.
30879 (_start): Macroify `0x7F'.
30880
30881 * kern/i386/pc/init.c: Include `<grub/machine/boot.h>'.
30882 (make_install_device): Use "(pxe)" as fallback prefix when booting
30883 via PXE.
30884
30885 2010-01-26 Vladimir Serbinenko <phcoder@gmail.com>
30886
30887 * configure.ac: Reset LIBS after check for libgcc symbols.
30888
30889 2010-01-25 Colin Watson <cjwatson@ubuntu.com>
30890
30891 * util/hostdisk.c (open_device): Add trailing newline to debug
30892 message.
30893
30894 2010-01-25 Grégoire Sutre <gregoire.sutre@gmail.com>
30895
30896 * configure.ac: Check for `limits.h'.
30897 * util/misc.c: Include `<limits.h>' (for PATH_MAX).
30898
30899 2010-01-24 Robert Millan <rmh.grub@aybabtu.com>
30900
30901 * loader/mips/linux.c (grub_cmd_linux, grub_cmd_initrd): Don't
30902 capitalize error strings.
30903
30904 2010-01-24 Samuel Thibault <samuel.thibault@ens-lyon.org>
30905
30906 * util/grub.d/10_hurd.in: Add a recovery mode.
30907
30908 2010-01-23 Vladimir Serbinenko <phcoder@gmail.com>
30909
30910 * configure.ac: Check for libgcc symbols with -nostdlib.
30911
30912 2010-01-23 BVK Chaitanya <bvk.groups@gmail.com>
30913
30914 * acinclude.m4: Quote underquoted AC_DEFUN parameters.
30915
30916 2010-01-22 Vladimir Serbinenko <phcoder@gmail.com>
30917
30918 * term/ieee1275/ofconsole.c (grub_ofconsole_setcolorstate): Allocate on
30919 stack since heap may be unavailable at that point.
30920 (grub_ofconsole_gotoxy): Likewise.
30921
30922 2010-01-22 Vladimir Serbinenko <phcoder@gmail.com>
30923
30924 * configure.ac: Check for _restgpr_14_x.
30925 * include/grub/powerpc/libgcc.h [HAVE__RESTGPR_14_X]: Add _restgpr_*_x
30926 and _savegpr_* prototypes.
30927
30928 2010-01-22 Robert Millan <rmh.grub@aybabtu.com>
30929
30930 Use generic grub_reboot() for i386-efi.
30931
30932 * kern/efi/efi.c [__i386__] (grub_reboot): Remove.
30933 * kern/i386/efi/startup.S: Include `"../realmode.S"'.
30934 * kern/i386/realmode.S: Include `<grub/i386/pc/memory.h>'.
30935
30936 2010-01-22 Vladimir Serbinenko <phcoder@gmail.com>
30937
30938 * kern/ieee1275/init.c (grub_machine_set_prefix): Don't check for
30939 presence of "prefix" variable as it breaks when normal.mod is
30940 embedded.
30941
30942 2010-01-21 Vladimir Serbinenko <phcoder@gmail.com>
30943
30944 * term/ieee1275/ofconsole.c (grub_ofconsole_dimensions): Allocate on
30945 stack since heap is unavailable at that point.
30946
30947 2010-01-21 Vladimir Serbinenko <phcoder@gmail.com>
30948
30949 * include/grub/i386/bsd.h (FREEBSD_N_BIOS_GEOM): Removed.
30950 (grub_freebsd_bootinfo): Rewritten.
30951 * loader/i386/bsd.c (grub_freebsd_boot): Use new grub_freebsd_bootinfo.
30952
30953 2010-01-21 Vladimir Serbinenko <phcoder@gmail.com>
30954
30955 * util/misc.c (make_system_path_relative_to_its_root): Fix typo.
30956
30957 2010-01-21 Robert Millan <rmh.grub@aybabtu.com>
30958
30959 * po/POTFILES: Remove mkisofs-related files. They have their own TLP
30960 domain now.
30961
30962 2010-01-20 Felix Zielcke <fzielcke@z-51.de>
30963
30964 * util/misc.c (make_system_path_relative_to_its_root): Change the work
30965 around for handling "/" to the correct fix. Fix a memory leak. Use
30966 xstrdup instead of strdup.
30967
30968 2010-01-20 Vladimir Serbinenko <phcoder@gmail.com>
30969
30970 * conf/mips.rmk (kernel_img_HEADERS): Add env_private.h
30971
30972 2010-01-20 Vladimir Serbinenko <phcoder@gmail.com>
30973
30974 Optimise glyph lookup by Basic Multilingual Plane lookup array.
30975
30976 * font/font.c (struct grub_font): New member 'bmp_idx'.
30977 (font_init): Initialise 'bmp_idx'.
30978 (load_font_index): Fill 'bmp_idx'.
30979 (find_glyph): Make inline. Use bmp_idx for BMP characters.
30980
30981 2010-01-20 Vladimir Serbinenko <phcoder@gmail.com>
30982
30983 * video/fb/video_fb.c (grub_video_fb_scroll): Optimise by avoiding
30984 unnecessary calls.
30985
30986 2010-01-20 Vladimir Serbinenko <phcoder@gmail.com>
30987
30988 Move context handling out of the kernel.
30989
30990 * conf/any-emu.rmk (grub_emu_SOURCES): Add normal/context.c.
30991 * conf/common.rmk (normal_mod_SOURCES): Add normal/context.c.
30992 * conf/i386-coreboot.rmk (kernel_img_HEADERS): Add env_private.h.
30993 * conf/i386-efi.rmk: Likewise.
30994 * conf/i386-ieee1275.rmk: Likewise.
30995 * conf/i386-pc.rmk: Likewise.
30996 * conf/powerpc-ieee1275.rmk: Likewise.
30997 * conf/sparc64-ieee1275.rmk: Likewise.
30998 * conf/x86_64-efi.rmk: Likewise.
30999 * include/grub/env.h: Include grub/menu.h.
31000 (grub_env_var_type): Removed.
31001 (grub_env_var): Replaced field 'type' with 'global'.
31002 (grub_env_find): New prototype.
31003 (grub_env_context_open): Remove EXPORT_FUNC.
31004 (grub_env_context_close): Likewise.
31005 (grub_env_export): Likewise.
31006 (grub_env_set_data_slot): Removed.
31007 (grub_env_get_data_slot): Likewise.
31008 (grub_env_unset_data_slot): Likewise.
31009 (grub_env_unset_menu): New prototype.
31010 (grub_env_set_menu): Likewise.
31011 (grub_env_get_menu): Likewise.
31012 * include/grub/env_private.h: New file.
31013 * include/grub/normal.h (grub_context_init): New prototype.
31014 (grub_context_fini): Likewise.
31015 * kern/corecmd.c (grub_core_cmd_export): Moved from here ...
31016 * normal/context.c (grub_cmd_export): ... to here.
31017 * kern/env.c: Include env_private.h.
31018 (HASHSZ): Moved to include/grub/env_private.h.
31019 (grub_env_context): Likewise.
31020 (grub_env_sorted_var): Likewise.
31021 (current_context): Renamed from this ...
31022 (grub_current_context): ...to this. 'static' removed. All users updated.
31023 (grub_env_find): Removed 'static'.
31024 (grub_env_context_open): Moved to normal/context.c.
31025 (grub_env_context_close): Likewise.
31026 (grub_env_export): Likewise.
31027 (mangle_data_slot_name): Removed.
31028 (grub_env_set_data_slot): Likewise.
31029 (grub_env_get_data_slot): Likewise.
31030 (grub_env_unset_data_slot): Likewise.
31031 * kern/main.c (grub_set_root_dev): Don't export root.
31032 It will be done later.
31033 (grub_main): Don't export prefix.
31034 It will be done later.
31035 * normal/context.c: New file.
31036 * normal/main.c (free_menu): Use grub_env_unset_menu.
31037 (grub_normal_add_menu_entry): Use grub_env_get_menu.
31038 (read_config_file): Use grub_env_get_menu and grub_env_set_menu.
31039 (GRUB_MOD_INIT(normal)): Call grub_context_init.
31040 (GRUB_MOD_FINI(normal)): Call grub_context_fini.
31041
31042 2010-01-20 Vladimir Serbinenko <phcoder@gmail.com>
31043
31044 setpci support.
31045
31046 * commands/setpci.c: New file.
31047 * conf/i386.rmk (pkglib_MODULES): Add setpci.mod.
31048 (setpci_mod_SOURCES): New variable.
31049 (setpci_mod_CFLAGS): Likewise.
31050 (setpci_mod_LDFLAGS): Likewise.
31051
31052 2010-01-20 Vladimir Serbinenko <phcoder@gmail.com>
31053
31054 Byte-addressable PCI configuration space.
31055
31056 * bus/pci.c (grub_pci_make_address): Use byte address instead of
31057 dword address.
31058 (grub_pci_iterate): Use macroses GRUB_PCI_REG_PCI_ID and
31059 GRUB_PCI_REG_CACHELINE.
31060 * bus/usb/ohci.c (grub_ohci_pci_iter): Use macroses
31061 GRUB_PCI_REG_CLASS and GRUB_PCI_REG_ADDRESS_REG0.
31062 * bus/usb/uhci.c (grub_ohci_pci_iter): Use macroses
31063 GRUB_PCI_REG_CLASS and GRUB_PCI_REG_ADDRESS_REG4.
31064 * commands/efi/fixvideo.c (scan_card): Use macros GRUB_PCI_REG_CLASS.
31065 * commands/efi/loadbios.c (enable_rom_area): Pass byte-address to
31066 grub_pci_make_address.
31067 (lock_rom_area): Likewise.
31068 * commands/lspci.c (grub_lspci_iter): Use macroses
31069 GRUB_PCI_REG_CLASS and GRUB_PCI_REG_ADDRESSES. Handle byte-addressing
31070 of grub_pci_make_address.
31071 * disk/ata.c (grub_ata_pciinit): Likewise.
31072 * include/grub/pci.h (GRUB_PCI_REG_PCI_ID): New macro.
31073 (GRUB_PCI_REG_VENDOR): Likewise.
31074 (GRUB_PCI_REG_DEVICE): Likewise.
31075 (GRUB_PCI_REG_COMMAND): Likewise.
31076 (GRUB_PCI_REG_STATUS): Likewise.
31077 (GRUB_PCI_REG_REVISION): Likewise.
31078 (GRUB_PCI_REG_CLASS): Likewise.
31079 (GRUB_PCI_REG_CACHELINE): Likewise.
31080 (GRUB_PCI_REG_LAT_TIMER): Likewise.
31081 (GRUB_PCI_REG_HEADER_TYPE): Likewise.
31082 (GRUB_PCI_REG_BIST): Likewise.
31083 (GRUB_PCI_REG_ADDRESSES): Likewise.
31084 (GRUB_PCI_REG_ADDRESS_REG): Likewise.
31085 (GRUB_PCI_REG_ADDRESS_REG): Likewise.
31086 (GRUB_PCI_REG_ADDRESS_REG): Likewise.
31087 (GRUB_PCI_REG_ADDRESS_REG): Likewise.
31088 (GRUB_PCI_REG_ADDRESS_REG): Likewise.
31089 (GRUB_PCI_REG_ADDRESS_REG): Likewise.
31090 (GRUB_PCI_REG_CIS_POINTER): Likewise.
31091 (GRUB_PCI_REG_SUBVENDOR): Likewise.
31092 (GRUB_PCI_REG_SUBSYSTEM): Likewise.
31093 (GRUB_PCI_REG_ROM_ADDRESS): Likewise.
31094 (GRUB_PCI_REG_CAP_POINTER): Likewise.
31095 (GRUB_PCI_REG_IRQ_LINE): Likewise.
31096 (GRUB_PCI_REG_IRQ_PIN): Likewise.
31097 (GRUB_PCI_REG_MIN_GNT): Likewise.
31098 (GRUB_PCI_REG_MAX_LAT): Likewise.
31099 * loader/i386/efi/linux.c (find_framebuf): Use GRUB_PCI_REG_CLASS.
31100 * loader/i386/efi/xnu.c (find_framebuf): Likewise.
31101 * video/efi_uga.c (find_framebuf): Likewise.
31102 * video/sm712.c (grub_video_sm712_setup): Likewise.
31103 * util/pci.c (grub_pci_make_address): Use byte-addressed configuration
31104 space.
31105
31106 2010-01-20 Robert Millan <rmh.grub@aybabtu.com>
31107
31108 * util/grub.d/10_linux.in (linux_entry): Set gfxpayload=keep when it
31109 can be reliably determined to be supported.
31110
31111 2010-01-20 Robert Millan <rmh.grub@aybabtu.com>
31112
31113 * loader/i386/linux.c (grub_cmd_linux): If `vga=' was used, write down
31114 that VESA is supported.
31115 (grub_linux_boot): Use generic framebuffer unless VESA is known to be
31116 supported.
31117
31118 2010-01-20 Vladimir Serbinenko <phcoder@gmail.com>
31119
31120 * conf/common.rmk (font/font.c_DEPENDENCIES): Condition on FONT_SOURCE.
31121
31122 2010-01-20 Robert Millan <rmh.grub@aybabtu.com>
31123
31124 * util/misc.c (make_system_path_relative_to_its_root): Work around
31125 special-casing of "/", as previous incarnation of this routine did.
31126
31127 2010-01-20 Vladimir Serbinenko <phcoder@gmail.com>
31128
31129 Fix any-emu compilation.
31130
31131 * conf/any-emu.rmk (bin_UTILITIES): Add grub-bin2h.
31132 * grub_bin2h_SOURCES: New variable.
31133
31134 2010-01-20 Robert Millan <rmh.grub@aybabtu.com>
31135
31136 * util/grub.d/00_header.in: Fix stupid mistake from last commit.
31137
31138 2010-01-20 Robert Millan <rmh.grub@aybabtu.com>
31139
31140 * util/grub.d/00_header.in: Fix handling of locale_dir.
31141
31142 2010-01-20 Vladimir Serbinenko <phcoder@gmail.com>
31143
31144 * configure.ac: Add /usr/share/fonts/unifont/unifont.pcf.gz
31145 as possible unifont location (Gentoo).
31146 Reported by: Alexander Brüning
31147
31148 2010-01-20 Vladimir Serbinenko <phcoder@gmail.com>
31149
31150 Don't try to generate lists for kernel.img.
31151
31152 * conf/i386-efi.rmk (pkglib_PROGRAMS): New variable.
31153 (pkglib_MODULES): Remove kernel.img.
31154 (kernel_img_EXPORTS): Removed.
31155 (kernel_img_RELOCATABLE): New variable.
31156 * conf/x86_64-efi.rmk: Likewise.
31157 * genmk.rb: Remove *_EXPORTS support and add *_RELOCATABLE support.
31158
31159 2010-01-20 Vladimir Serbinenko <phcoder@gmail.com>
31160
31161 * include/grub/misc.h (grub_sprintf): Removed. All users switched to
31162 grub_xasprintf or grub_snprintf.
31163 (grub_vsprintf): Likewise.
31164 (grub_snprintf): New proto.
31165 (grub_vsnprintf): Likewise.
31166 (grub_xasprintf): Likewise.
31167 (grub_xvasprintf): Likewise.
31168 * kern/misc.c (grub_vprintf): Use grub_vsnprintf_real.
31169 (grub_sprintf): Removed.
31170 (grub_vsnprintf): New function.
31171 (grub_snprintf): Likewise.
31172 (grub_xvasprintf): Likewise.
31173 (grub_xasprintf): Likewise.
31174 (grub_vsprintf): Renamed to ...
31175 (grub_vsnprintf_real): ...this. New argument max_len.
31176
31177 2010-01-20 BVK Chaitanya <bvk.groups@gmail.com>
31178
31179 * include/grub/script_sh.h (sourcecode): Remove const qualifier to
31180 fix grub-script-check warning.
31181
31182 2010-01-20 Vladimir Serbinenko <phcoder@gmail.com>
31183
31184 * include/grub/font.h (grub_font_load): Fix prototype.
31185
31186 2010-01-20 Vladimir Serbinenko <phcoder@gmail.com>
31187
31188 * conf/mips.rmk (kernel_img_HEADERS) [yeeloong]: Add pci.h.
31189
31190 2010-01-20 Vladimir Serbinenko <phcoder@gmail.com>
31191
31192 * include/grub/x86_64/at_keyboard.h: New file.
31193
31194 2010-01-20 Vladimir Serbinenko <phcoder@gmail.com>
31195
31196 * loader/mips/linux.c: Include missing grub/i18n.h.
31197
31198 2009-12-20 Robert Millan <rmh.grub@aybabtu.com>
31199
31200 * normal/menu.c (notify_execution_failure): Clarify error message.
31201
31202 2009-12-20 Robert Millan <rmh.grub@aybabtu.com>
31203
31204 * commands/loadenv.c (check_blocklists): Use `grub_err_t' as
31205 return value (and revert all return statements). Update users.
31206
31207 2010-01-20 Dan Merillat <debian@dan.merillat.org>
31208
31209 * kern/device.c (grub_device_iterate): Allocate new part_ent
31210 structure based on sizeof (*p) rather than sizeof (p->next), to
31211 account for structure padding.
31212
31213 * util/grub-probe.c (probe_raid_level): Return -1 immediately if
31214 disk is NULL, which might happen for LVM physical volumes with no
31215 LVM signature.
31216
31217 2009-12-20 Robert Millan <rmh.grub@aybabtu.com>
31218
31219 * loader/mips/linux.c (grub_cmd_initrd)
31220 (GRUB_MOD_INIT(linux)): Adjust and gettextize a few strings.
31221
31222 2009-12-20 Robert Millan <rmh.grub@aybabtu.com>
31223
31224 * kern/mips/yeeloong/init.c (grub_video_sm712_init)
31225 (grub_video_video_init, grub_video_bitmap_init)
31226 (grub_font_manager_init, grub_term_gfxterm_init)
31227 (grub_at_keyboard_init): New extern declarations.
31228 (grub_machine_init): Initialize gfxterm and at_keyboard.
31229
31230 * kern/main.c (grub_main): Revert grub_printf delay kludge.
31231
31232 * util/grub-install.in: Revert embed of `at_keyboard.mod' and
31233 `gfxterm.mod' into core image.
31234
31235 * conf/mips.rmk (pkglib_IMAGES, kernel_img_SOURCES)
31236 (kernel_img_CFLAGS, kernel_img_ASFLAGS, kernel_img_LDFLAGS)
31237 (kernel_img_FORMAT): Copy to ...
31238
31239 * conf/mips-qemu-mips.rmk (pkglib_IMAGES, kernel_img_SOURCES)
31240 (kernel_img_CFLAGS, kernel_img_ASFLAGS, kernel_img_LDFLAGS)
31241 (kernel_img_FORMAT): ... here, and ...
31242
31243 * conf/mips-yeeloong.rmk (pkglib_IMAGES, kernel_img_SOURCES)
31244 (kernel_img_CFLAGS, kernel_img_ASFLAGS, kernel_img_LDFLAGS)
31245 (kernel_img_FORMAT): ... here.
31246
31247 (kernel_img_SOURCES): Add files necessary for output (gfxterm)
31248 and input (at_keyboard) terminals in kernel.
31249 (kernel_img_CFLAGS): Add `-DUSE_ASCII_FAILBACK'.
31250
31251 (pkglib_MODULES): Remove `pci.mod'.
31252 (pci_mod_SOURCES, pci_mod_CFLAGS, pci_mod_LDFLAGS)
31253 (sm712_mod_SOURCES, sm712_mod_CFLAGS, sm712_mod_LDFLAGS)
31254 (at_keyboard_mod_SOURCES, at_keyboard_mod_CFLAGS)
31255 (at_keyboard_mod_LDFLAGS): Remove variables.
31256
31257 2010-01-11 Felix Zielcke <fzielcke@z-51.de>
31258
31259 * po/POTFILES: Replace `term/i386/pc/serial.c' with `term/serial.c'.
31260
31261 2009-12-10 Robert Millan <rmh.grub@aybabtu.com>
31262
31263 * include/grub/mips/libgcc.h: Only export symbols for functions
31264 that libgcc provides.
31265
31266 2009-12-02 Vladimir Serbinenko <phcoder@gmail.com>
31267
31268 MIPS support.
31269
31270 * bus/bonito.c: New file.
31271 * bus/pci.c (grub_pci_iterate): Use GRUB_PCI_NUM_BUS and
31272 GRUB_PCI_NUM_DEVICES.
31273 * term/i386/pc/serial.c: Move to ...
31274 * term/serial.c: ... here. All users updated.
31275 * util/i386/pc/grub-mkimage.c: Move to ...
31276 * util/grub-mkrawimage.c: ... here. All users updated.
31277 * term/i386/pc/at_keyboard.c: Move to ...
31278 * term/at_keyboard.c: ... here. All users updated.
31279 * conf/mips-qemu-mips.rmk: New file.
31280 * conf/mips-yeeloong.rmk: Likewise.
31281 * conf/mips.rmk: Likewise.
31282 * configure.ac: New platforms mipsel-yeeloong, mips-qemu-mips and
31283 mipsel-qemu-mips.
31284 * disk/ata.c (grub_ata_device_initialize): Add GRUB_MACHINE_PCI_IO_BASE
31285 to port addresses.
31286 (grub_ata_pciinit): Support CS5536.
31287 * font/font.c (grub_font_load): Use grub_file_t instead of filename.
31288 * font/font_cmd.c (loadfont_command): Open file before passing it to
31289 grub_font_load.
31290 (pseudo_file_read): New function.
31291 (pseudo_file_close): Likewise.
31292 (pseudo_fs): New structure.
31293 (load_font_module): New function.
31294 (GRUB_MOD_INIT(font_manager)): Load embedded font.
31295 * fs/cpio.c (grub_cpio_open): Handle partial matches correctly.
31296 * genmk.rb: Strip .rel.dyn, .reginfo, .note and .comment.
31297 * genmoddep.awk: Ignore __gnu_local_gp. It's defined by linker.
31298 * include/grub/i386/at_keyboard.h: Split into ...
31299 * include/grub/at_keyboard.h: ... this ...
31300 * include/grub/i386/at_keyboard.h: ... and this.
31301 * include/grub/dl.h (grub_arch_dl_init_linker) [_mips && !GRUB_UTIL]:
31302 New prototype.
31303 * include/grub/elfload.h (grub_elf32_size): New parameter. All users
31304 updated.
31305 (grub_elf64_size): Likewise.
31306 * include/grub/font.h (grub_font_load): Use grub_file_t instead of
31307 filename.
31308 * include/grub/i386/io.h (grub_port_t): New type. All users updated.
31309 * include/grub/i386/coreboot/serial.h: Rewritten.
31310 * include/grub/i386/ieee1275/serial.h: Include
31311 grub/i386/coreboot/serial.h instead of grub/i386/pc/serial.h.
31312 * include/grub/i386/pc/serial.h: Moved from here ...
31313 * include/grub/serial.h: ... to here. All users updated.
31314 * include/grub/i386/pci.h (GRUB_MACHINE_PCI_IO_BASE): New definition.
31315 (GRUB_PCI_NUM_BUS): Likewise.
31316 (GRUB_PCI_NUM_DEVICES): Likewise.
31317 (grub_pci_device_map_range): Add missing volatile keyword.
31318 * include/grub/kernel.h (OBJ_TYPE_FONT): New enum value.
31319 * include/grub/mips/at_keyboard.h: New file.
31320 * include/grub/mips/cache.h: Likewise.
31321 * include/grub/mips/io.h: Likewise.
31322 * include/grub/mips/kernel.h: Likewise.
31323 * include/grub/mips/libgcc.h: Likewise.
31324 * include/grub/mips/pci.h: Likewise.
31325 * include/grub/mips/qemu-mips/boot.h: Likewise.
31326 * include/grub/mips/qemu-mips/kernel.h: Likewise.
31327 * include/grub/mips/qemu-mips/loader.h: Likewise.
31328 * include/grub/mips/qemu-mips/memory.h: Likewise.
31329 * include/grub/mips/qemu-mips/serial.h: Likewise.
31330 * include/grub/mips/qemu-mips/time.h: Likewise.
31331 * include/grub/mips/relocator.h: Likewise.
31332 * include/grub/mips/time.h: Likewise.
31333 * include/grub/mips/types.h: Likewise.
31334 * include/grub/mips/yeeloong/at_keyboard.h: Likewise.
31335 * include/grub/mips/yeeloong/boot.h: Likewise.
31336 * include/grub/mips/yeeloong/kernel.h: Likewise.
31337 * include/grub/mips/yeeloong/loader.h: Likewise.
31338 * include/grub/mips/yeeloong/memory.h: Likewise.
31339 * include/grub/mips/yeeloong/pci.h: Likewise.
31340 * include/grub/mips/yeeloong/serial.h: Likewise.
31341 * include/grub/mips/yeeloong/time.h: Likewise.
31342 * kern/dl.c (grub_dl_resolve_symbols): Handle STT_OBJECT correctly.
31343 * kern/elf.c (grub_elf32_size): New parameter. All users
31344 updated.
31345 (grub_elf64_size): Likewise.
31346 * kern/main.c (grub_main): Call grub_arch_dl_init_linker if necessary.
31347 Load modules before saying "Welcome to GRUB!".
31348 Call grub_refresh after saying "Welcome to GRUB!".
31349 * kern/mips/cache.S: New file.
31350 * kern/mips/cache_flush.S: Likewise.
31351 * kern/mips/dl.c: Likewise.
31352 * kern/mips/init.c: Likewise.
31353 * kern/mips/qemu-mips/init.c: Likewise.
31354 * kern/mips/startup.S: Likewise.
31355 * kern/mips/yeeloong/init.c: Likewise.
31356 * kern/term.c (grub_putcode): Handle NULL terminal.
31357 (grub_getcharwidth): Likewise.
31358 (grub_getkey): Likewise.
31359 (grub_checkkey): Likewise.
31360 (grub_getkeystatus): Likewise.
31361 (grub_getxy): Likewise.
31362 (grub_getwh): Likewise.
31363 (grub_gotoxy): Likewise.
31364 (grub_cls): Likewise.
31365 (grub_setcolorstate): Likewise.
31366 (grub_setcolor): Likewise.
31367 (grub_getcolor): Likewise.
31368 (grub_refresh): Likewise.
31369 * lib/mips/relocator.c (JUMP_SIZEOF): Fix incorrect value.
31370 (write_jump): Add hatch nop.
31371 * lib/mips/relocator_asm.S: Use kern/mips/cache_flush.S.
31372 * lib/mips/setjmp.S: New file.
31373 * loader/mips/linux.c: Likewise.
31374 * term/i386/pc/at_keyboard.c: Move from here ...
31375 * term/at_keyboard.c: ... to here.
31376 * term/i386/pc/serial.c: Moved from here ...
31377 * term/serial.c: ... to here. All users updated.
31378 (TEXT_HEIGHT): Set to 24 to fit linux terminal.
31379 (serial_hw_io_addr): Use GRUB_MACHINE_SERIAL_PORTS.
31380 (serial_translate_key_sequence): Avoid deadlock.
31381 (grub_serial_getkey): Handle backspace.
31382 (grub_serial_putchar): Fix newline handling.
31383 * util/i386/pc/grub-mkimage.c: Move from here ...
31384 * util/grub-mkrawimage.c: ... to here. All users updated.
31385 (generate_image): New parameters 'font_path' and 'format'.
31386 Support embedding font.
31387 Use grub_host_to_target* instead of grub_cpu_to_le*.
31388 (generate_image) [GRUB_MACHINE_MIPS]: Support ELF encapsulation.
31389 (options) [GRUB_PLATFORM_IMAGE_DEFAULT]: New option "--format".
31390 (options): New option "--font".
31391 (usage): Likewise.
31392 (main) [GRUB_PLATFORM_IMAGE_DEFAULT]: Handle "--format".
31393 (main): Handle "--font".
31394 * term/gfxterm.c (grub_virtual_screen): New member bg_color_display.
31395 (grub_virtual_screen_setup): Set bg_color_display.
31396 (redraw_screen_rect): Use bg_color_display instead of incorrect
31397 bg_color.
31398 (grub_gfxterm_cls): Likewise.
31399 * util/elf/grub-mkimage.c (load_modules): New parameter 'config_path'.
31400 Support embedding config file.
31401 (add_segments): Likewise.
31402 (options): New option "--config".
31403 (main): Handle "--config".
31404 * video/sm712.c: New file.
31405
31406 2010-01-18 Robert Millan <rmh.grub@aybabtu.com>
31407
31408 Fix parallel builds.
31409
31410 * conf/common.rmk (font/font.c_DEPENDENCIES): New variable (makes
31411 font.c depend on ascii.h).
31412
31413 2010-01-12 Carles Pina i Estany <carles@pina.cat>
31414
31415 * Makefile.in (DUSE_ASCII_FAILBACK): New macro.
31416
31417 2010-01-11 Carles Pina i Estany <carles@pina.cat>
31418
31419 * font/font.c (GENERATE_ASCII): Change the name to USE_ASCII_FAILBACK.
31420 By default: disabled.
31421 * Makefile.in (ascii.h): Remove the non-needed grub/bin2h size
31422 parameter.
31423
31424 2010-01-10 Carles Pina i Estany <carles@pina.cat>
31425
31426 * font/font.c: Update copyright years.
31427 * util/grub-mkfont.c (write_font_ascii_bitmap): Change comment format.
31428
31429 2010-01-10 Carles Pina i Estany <carles@pina.cat>
31430
31431 * font/font.c: Include `ascii.h'.
31432 (ASCII_BITMAP_SIZE): New macro.
31433 (ascii_font_glyph): Define.
31434 (ascii_glyph_lookup): New function.
31435 (grub_font_get_string_width): Change comment. If glyph not found, use
31436 ascii_glyph_lookup.
31437 (grub_font_get_glyph_with_fallback): If glyph not available returns
31438 ascii_glyph_lookup.
31439 * util/grub-mkfont.c (file_formats): New enum.
31440 (options): Add `ascii-bitmaps' new option.
31441 (usage): Add `asii-bitmaps' new option.
31442 (write_font_ascii_bitmap): New function.
31443 (write_font): Rename to ...
31444 (write_font_p2): ... this. Remove print_glyphs call.
31445 (main): Use file_format. Implement code for ranges if ascii-bitmaps is
31446 used. Call print_glyphs.
31447 * Makefile.in (pkgdata_DATA): Add `ascii.h'.
31448
31449 2010-01-14 Robert Millan <rmh.grub@aybabtu.com>
31450
31451 * conf/common.rmk (bin_UTILITIES): Add `grub-bin2h'.
31452 (grub_bin2h_SOURCES): New variable.
31453 * util/bin2h.c: New file.
31454
31455 2010-01-20 Vladimir Serbinenko <phcoder@gmail.com>
31456
31457 * include/multiboot.h: Resynced with spec.
31458 * include/multiboot2.h: Likewise.
31459 * loader/i386/multiboot_mbi.c (grub_fill_multiboot_mmap): Handle
31460 GRUB_MACHINE_MEMORY_ACPI_RECLAIMABLE and GRUB_MACHINE_MEMORY_NVS.
31461
31462 2010-01-18 Robert Millan <rmh.grub@aybabtu.com>
31463
31464 * include/grub/term.h (grub_term_register_input,
31465 grub_term_register_output): Check return of terminal init()
31466 routines, and abort if errors are raised.
31467
31468 * commands/terminal.c: Update copyright year.
31469
31470 2010-01-18 Robert Millan <rmh.grub@aybabtu.com>
31471
31472 * commands/terminal.c (grub_cmd_terminal_input)
31473 (grub_cmd_terminal_output): Check return of terminal init()
31474 routines, and abort if errors are raised.
31475
31476 2010-01-18 Vladimir Serbinenko <phcoder@gmail.com>
31477
31478 * include/grub/i386/bsd.h: Fix include pathes.
31479
31480 2010-01-18 Vladimir Serbinenko <phcoder@gmail.com>
31481
31482 Add missing *BSD copyright headers.
31483
31484 * include/grub/aout.h: Add BSD licence.
31485 * include/grub/i386/bsd.h: Parts under different licences moved to ...
31486 * include/grub/i386/freebsd_linker.h: ... here,
31487 * include/grub/i386/freebsd_reboot.h: ... here,
31488 * include/grub/i386/netbsd_bootinfo.h: ... here,
31489 * include/grub/i386/netbsd_reboot.h: ... here,
31490 * include/grub/i386/openbsd_bootarg.h: ... here,
31491 * include/grub/i386/openbsd_reboot.h: ... and here. Added appropriate
31492 licence to each file.
31493
31494 2010-01-18 Robert Millan <rmh.grub@aybabtu.com>
31495
31496 * acinclude.m4: Remove `nop' assembly instruction; it's not
31497 implemented by all architectures.
31498
31499 2010-01-18 Robert Millan <rmh.grub@aybabtu.com>
31500
31501 * loader/i386/efi/linux.c (grub_cmd_linux): Stop pretending we're
31502 ELILO. This is no longer necessary.
31503
31504 2010-01-18 BVK Chaitanya <bvk.groups@gmail.com>
31505
31506 Added new tool, grub-scrit-check to verify grub.cfg syntax.
31507
31508 * util/grub-script-check.c: grub-script-check tool.
31509 * conf/common.rmk: Make rules for grub-script-check.
31510
31511 2010-01-18 Robert Millan <rmh.grub@aybabtu.com>
31512
31513 Fix annoying UI bug in rescue mode. Thanks to Tristan Gingold for
31514 spotting it back in 2008. Shame on me for forgetting he did.
31515
31516 * kern/rescue_reader.c (grub_rescue_run): Skip zero-length lines.
31517
31518 2010-01-18 Robert Millan <rmh.grub@aybabtu.com>
31519
31520 * include/grub/i386/linux.h (GRUB_VIDEO_TYPE_TEXT): Rename to ...
31521 (GRUB_VIDEO_LINUX_TYPE_TEXT): ... this. Update all users.
31522 (GRUB_VIDEO_TYPE_VLFB): Rename to ...
31523 (GRUB_VIDEO_LINUX_TYPE_VESA): ... this. Update all users.
31524 (GRUB_VIDEO_TYPE_EFI): Rename to ...
31525 (GRUB_VIDEO_LINUX_TYPE_SIMPLE): ... this. Update all users.
31526
31527 2010-01-17 Robert Millan <rmh.grub@aybabtu.com>
31528
31529 * include/grub/test.h: Add license header.
31530 * tests/example_functional_test.c: Likewise.
31531 * tests/example_unit_test.c: Likewise.
31532 * tests/lib/functional_test.c: Likewise.
31533 * tests/lib/test.c: Likewise.
31534 * tests/lib/unit_test.c: Likewise.
31535
31536 2010-01-17 Vladimir Serbinenko <phcoder@gmail.com>
31537
31538 Use flag-based instead of hook-based video mode selection and "auto"
31539 keyword.
31540
31541 * include/grub/video.h (grub_video_adapter): Changed 'setup' member.
31542 (grub_video_set_mode): Changed prototype. All users updated.
31543 (grub_video_check_mode_flag): New inline function.
31544 * video/video.c (parse_modespec): New function.
31545 (grub_video_set_mode): Parse flags and keywords.
31546
31547 2010-01-17 Carles Pina i Estany <carles@pina.cat>
31548
31549 * util/misc.c (grub_util_info): Fix the order of the parameters in a
31550 fprintf call.
31551
31552 2010-01-16 Grégoire Sutre <gregoire.sutre@gmail.com>
31553
31554 * genmk.rb (class SCRIPT): Replace option -i of sed by a pipe.
31555
31556 2010-01-16 Carles Pina i Estany <carles@pina.cat>
31557
31558 * util/grub-editenv.c (usage): Use `program_name' instead of hardcoded
31559 string.
31560 * util/grub-emu.c (usage): Likewise.
31561 * util/grub-mkpasswd-pbkdf2.c (usage): Likewise.
31562 * util/i386/efi/grub-mkimage.c (usage): Likewise.
31563 * util/i386/pc/grub-mkimage.c (usage): Likewise.
31564 * util/i386/pc/grub-setup.c (usage): Likewise.
31565
31566 2010-01-16 Carles Pina i Estany <carles@pina.cat>
31567
31568 * util/misc.c (grub_util_warn): Gettextizze, print full stop after
31569 the message.
31570 (grub_util_info): Likewise.
31571 (grub_util_error): Likewise.
31572 * util/elf/grub-mkimage.c: Fix capitalisation, quotes, full stops
31573 and/or new lines in `grub_util_warna', `grub_util_info',
31574 `grub_util_error' calls.
31575 * util/getroot.c: Likewise.
31576 * util/grub-editenv.c: Likewise.
31577 * util/grub-emu.c: Likewise.
31578 * util/grub-fstest.c: Likewise.
31579 * util/grub-mkdevicemap.c: Likewise.
31580 * util/grub-mkfont.c: Likewise.
31581 * util/grub-mkpasswd-pbkdf2.c: Likewise.
31582 * util/grub-mkrelpath.c: Likewise.
31583 * util/grub-pe2elf.c: Likewise.
31584 * util/grub-probe.c: Likewise.
31585 * util/hostdisk.c: Likewise.
31586 * util/i386/efi/grub-mkimage.c: Likewise.
31587 * util/i386/pc/grub-mkimage.c: Likewise.
31588 * util/i386/pc/grub-setup.c: Likewise.
31589 * util/ieee1275/ofpath.c: Likewise.
31590 * util/mkisofs/eltorito.c: Likewise.
31591 * util/mkisofs/rock.c: Likewise.
31592 * util/mkisofs/write.c: Likewise.
31593 * util/raid.c: Likewise.
31594 * util/sparc64/ieee1275/grub-mkimage.c: Likewise.
31595 * util/sparc64/ieee1275/grub-setup.c: Likewise.
31596
31597 2010-01-15 Vladimir Serbinenko <phcoder@gmail.com>
31598
31599 Enable multiboot on non-pc.
31600
31601 * conf/i386-coreboot.rmk, conf/i386-pc.rmk (pkglib_MODULES): Move
31602 multiboot.mod and multiboot2.mod to ...
31603 * conf/i386.rmk (pkglib_MODULES): ... here.
31604 * conf/i386-coreboot.rmk, conf/i386-pc.rmk (multiboot_mod_SOURCES):
31605 Moved to ...
31606 * conf/i386.rmk (multiboot_mod_SOURCES): .. here.
31607 * conf/i386-coreboot.rmk, conf/i386-pc.rmk (multiboot_mod_CFLAGS):
31608 Moved to ...
31609 * conf/i386.rmk (multiboot_mod_CFLAGS): .. here.
31610 * conf/i386-coreboot.rmk, conf/i386-pc.rmk (multiboot_mod_ASFLAGS):
31611 Moved to ...
31612 * conf/i386.rmk (multiboot_mod_ASFLAGS): .. here.
31613 * conf/i386-coreboot.rmk, conf/i386-pc.rmk (multiboot_mod_LDFLAGS):
31614 Moved to ...
31615 * conf/i386.rmk (multiboot_mod_LDFLAGS): .. here.
31616 * conf/x86_64-efi.rmk (pkglib_MODULES): Remove ata.mod and
31617 relocator.mod.
31618 (ata_mod_SOURCES): Removed.
31619 (ata_mod_CFLAGS): Likewise.
31620 (ata_mod_LDFLAGS): Likewise.
31621 (relocator_mod_SOURCES): Removed.
31622 (relocator_mod_CFLAGS): Likewise.
31623 (relocator_mod_ASFLAGS): Likewise.
31624 (relocator_mod_LDFLAGS): Likewise.
31625 Include i386.mk.
31626 * include/grub/x86_64/multiboot.h: New file.
31627 * loader/i386/multiboot.c (grub_multiboot_boot) [GRUB_MACHINE_EFI]:
31628 Terminate EFI.
31629
31630 2010-01-15 Vladimir Serbinenko <phcoder@gmail.com>
31631
31632 Video multiboot support.
31633
31634 * include/grub/multiboot.h (grub_multiboot_set_accepts_video):
31635 New prototype.
31636 * include/multiboot.h: Resynced with multiboot specification.
31637 * include/multiboot2.h: Likewise.
31638 * loader/i386/multiboot.c (UNSUPPORTED_FLAGS): Support video flags.
31639 (grub_multiboot): Parse MULTIBOOT_VIDEO_MODE fields.
31640 * loader/i386/multiboot_mbi.c (DEFAULT_VIDEO_MODE): New constant.
31641 (HAS_VGA_TEXT): Likewise.
31642 (accepts_video): New variable.
31643 (grub_multiboot_set_accepts_video): New function.
31644 (grub_multiboot_get_mbi_size): Account for video structures.
31645 (set_video_mode): New function.
31646 (retrieve_video_parameters): Likewise.
31647 (grub_multiboot_make_mbi): Fill video fields.
31648
31649 2010-01-15 Vladimir Serbinenko <phcoder@gmail.com>
31650
31651 Video driver ids.
31652
31653 * include/grub/video.h (grub_video_driver_id): New type.
31654 (grub_video_adapter): New member 'id'. All users updated.
31655 (grub_video_get_driver_id): New proto.
31656 * video/video.c (grub_video_get_driver_id): New function.
31657
31658 2010-01-14 Carles Pina i Estany <carles@pina.cat>
31659
31660 * util/grub.d/30_os-prober.in: Use `set var=val' rather than plain
31661 `var=val'.
31662
31663 2010-01-14 Carles Pina i Estany <carles@pina.cat>
31664
31665 * normal/cmdline.c (print_completion): Gettextizze.
31666
31667 2001-01-14 Carles Pina i Estany <carles@pina.cat>
31668
31669 * loader/i386/pc/chainloader.c: Include `<grub/mm.h>'.
31670
31671 2010-01-14 Carles Pina i Estany <carles@pina.cat>
31672
31673 * gettext/gettext.c (grub_gettext_translate): Push and pop
31674 grub_errno.
31675 (grub_gettext_delete_list): Change comment style.
31676 * kern/err.c (grub_error): Gettextizze.
31677 (grub_fatal): Gettextizze.
31678
31679 2010-01-14 Robert Millan <rmh.grub@aybabtu.com>
31680
31681 * include/grub/i386/loader.h (grub_linux16_boot): Renamed to ...
31682 (grub_linux16_real_boot): ... this.
31683 * kern/i386/loader.S: Likewise.
31684 * loader/i386/pc/linux.c: Include `<grub/video.h>' and `<grub/mm.h>'.
31685 (grub_linux16_boot): New function. Switches to text mode and calls
31686 grub_linux16_real_boot().
31687
31688 * loader/i386/bsd.c: Include `<grub/video.h>'.
31689 (grub_freebsd_boot, grub_openbsd_boot, grub_netbsd_boot): Switch to
31690 text mode before calling grub_unix_real_boot().
31691
31692 * loader/i386/multiboot.c: Include `<grub/video.h>'.
31693 (grub_multiboot_boot): Switch to text mode before calling
31694 grub_relocator32_boot().
31695
31696 * loader/i386/pc/chainloader.c: Include `<grub/video.h>'.
31697 (grub_chainloader_boot): Switch to text mode before calling
31698 grub_chainloader_real_boot().
31699
31700 2010-01-05 Jordan Uggla <jordan.uggla@gmail.com>
31701 2010-01-05 Colin Watson <cjwatson@ubuntu.com>
31702
31703 * util/grub-reboot.in: Make sure prev_saved_entry always gets a
31704 non-empty value.
31705
31706 2010-01-05 Jordan Uggla <jordan.uggla@gmail.com>
31707 2010-01-05 Colin Watson <cjwatson@ubuntu.com>
31708
31709 * util/grub.d/00_header.in: Define a "savedefault" function for use
31710 in menu entries.
31711 * util/grub-mkconfig_lib.in (save_default_entry): Use it.
31712
31713 2010-01-05 Jordan Uggla <jordan.uggla@gmail.com>
31714 2010-01-05 Colin Watson <cjwatson@ubuntu.com>
31715
31716 * util/grub-mkconfig_lib.in (save_default_entry): Only set
31717 saved_entry if boot_once is unset.
31718 * util/grub.d/00_header.in: Set boot_once to "true" if there was a
31719 previous saved entry (i.e. grub-reboot).
31720
31721 2009-12-08 Colin Watson <cjwatson@ubuntu.com>
31722
31723 * util/grub.d/30_os-prober.in: Call save_default_entry for hurd.
31724
31725 2009-12-08 Colin Watson <cjwatson@ubuntu.com>
31726
31727 * util/grub.d/00_header.in: Use `set var=val' rather than plain
31728 `var=val'.
31729 * util/grub-mkconfig_lib.in (save_default_entry): Likewise.
31730
31731 2009-12-08 Colin Watson <cjwatson@ubuntu.com>
31732
31733 * util/grub-reboot.in: Fix --version output.
31734 * util/grub-set-default.in: Likewise.
31735
31736 2009-12-08 Colin Watson <cjwatson@ubuntu.com>
31737
31738 * util/grub.d/00_header.in: Silently ignore zero-sized environment
31739 blocks.
31740
31741 2009-12-08 Colin Watson <cjwatson@ubuntu.com>
31742
31743 * util/grub.d/00_header.in: Quote the value assigned to `default',
31744 in case it contains spaces.
31745
31746 2009-12-08 Colin Watson <cjwatson@ubuntu.com>
31747
31748 * util/grub.d/30_os-prober.in: Fix merge error that moved a
31749 `save_default_entry' call from the macosx case to the linux case.
31750
31751 2009-10-25 Vladimir Serbinenko <phcoder@gmail.com>
31752 2009-10-25 Colin Watson <cjwatson@ubuntu.com>
31753
31754 * normal/menu.c (grub_menu_execute_entry): Save selected entry title
31755 in `chosen' environment variable.
31756 * normal/menu_text.c (get_entry_number): Check if the variable
31757 matches the title of a menu entry.
31758 (run_menu): Pass menu to get_entry_number.
31759
31760 * util/grub-reboot.in: New file.
31761 * util/grub-set-default.in: New file.
31762 * conf/common.rmk (grub-reboot): New utility.
31763 (grub-set-default): New utility.
31764
31765 * util/grub-mkconfig_lib.in (save_default_entry): New function.
31766 * util/grub.d/00_header.in: If GRUB_DEFAULT is `saved', set
31767 default to `${saved_entry}'. If `${prev_saved_entry}' is non-empty,
31768 move it to `saved_entry' for the next boot. Load environment on
31769 initialisation.
31770 * util/grub.d/10_kfreebsd.in: Call save_default_entry.
31771 * util/grub.d/10_hurd.in: Likewise.
31772 * util/grub.d/10_linux.in (linux_entry): Likewise.
31773 * util/grub.d/10_windows.in: Likewise.
31774 * util/grub.d/30_os-prober.in: Likewise.
31775
31776 * util/grub-install.in: Create environment block.
31777 * util/i386/efi/grub-install.in: Likewise.
31778 * util/ieee1275/grub-install.in: Likewise.
31779 * util/sparc64/ieee1275/grub-install.in: Likewise.
31780
31781 2010-01-14 BVK Chaitanya <bvk.groups@gmail.com>
31782
31783 Unit testing framework for GRUB.
31784
31785 * Makefile.in: Test framework build rules for 'make check'.
31786 * conf/tests.rmk: Build rules for individual tests and framework.
31787
31788 * include/grub/test.h: Header file for whitebox tests.
31789 * tests/lib/functional_test.c: Framework support for whitebox
31790 functional tests.
31791 * tests/lib/test.c: Common whitebox testing code for unit and
31792 functional tests.
31793 * tests/lib/unit_test.c: Framework support for whitebox unit
31794 tests.
31795
31796 * tests/util/grub-shell-tester.in: Support utility for grub-script
31797 tests.
31798 * tests/util/grub-shell.in: Utility to execute grub-script
31799 commands in a Qemu instance.
31800
31801 * tests/example_functional_test.c: Example whitebox functional
31802 test.
31803 * tests/example_grub_script_test.in: Example grub-script test.
31804 * tests/example_scripted_test.in: Example scripted test.
31805 * tests/example_unit_test.c: Example whitebox unit test.
31806
31807 2010-01-14 Vladimir Serbinenko <phcoder@gmail.com>
31808
31809 * conf/i386-coreboot.rmk (multiboot_mod_SOURCES):
31810 Add loader/i386/multiboot_mbi.c.
31811 (multiboot2_mod_SOURCES): Likewise.
31812 * conf/i386-pc.rmk (multiboot_mod_SOURCES): Likewise.
31813 (multiboot2_mod_SOURCES): Likewise.
31814 * include/grub/multiboot.h (grub_multiboot_get_mbi_size): New proto.
31815 (grub_multiboot_make_mbi): Likewise.
31816 (grub_multiboot_free_mbi): Likewise.
31817 (grub_multiboot_init_mbi): Likewise.
31818 (grub_multiboot_add_module): Likewise.
31819 (grub_multiboot_set_bootdev): Likewise.
31820 * loader/i386/multiboot.c (mbi): Removed.
31821 (mbi_dest): Likewise.
31822 (alloc_mbi): New variable.
31823 (grub_multiboot_payload_size): Removed. All users updated.
31824 (grub_multiboot_pure_size): New variable.
31825 (grub_multiboot_boot): Use grub_multiboot_make_mbi.
31826 (grub_multiboot_unload): Use grub_multiboot_free_mbi.
31827 (grub_get_multiboot_mmap_len): Moved to loader/i386/multiboot_mbi.c.
31828 (grub_fill_multiboot_mmap): Likewise.
31829 (grub_multiboot_get_bootdev): Likewise.
31830 (grub_multiboot): Use multiboot_mbi functions.
31831 * loader/i386/multiboot_mbi.c: New file.
31832
31833 2010-01-13 Vladimir Serbinenko <phcoder@gmail.com>
31834
31835 * kern/efi/init.c (grub_efi_fini): Don't call grub_efi_mm_fini as
31836 it would result in module crash.
31837
31838 2010-01-13 Vladimir Serbinenko <phcoder@gmail.com>
31839
31840 * term/ieee1275/ofconsole.c (grub_ofconsole_putchar): Handle '\r'.
31841 (grub_ofconsole_getwh): Split to ...
31842 (grub_ofconsole_getwh): ... this.
31843 (grub_ofconsole_dimensions): ...and this.
31844 (grub_ofconsole_init_output): Call grub_ofconsole_dimensions.
31845
31846 2010-01-13 Robert Millan <rmh.grub@aybabtu.com>
31847
31848 * util/mkisofs/rock.c (generate_rock_ridge_attributes): Fix a typo.
31849
31850 2010-01-12 Vladimir Serbinenko <phcoder@gmail.com>
31851
31852 * loader/i386/pc/multiboot2.c: Removed stalled file.
31853
31854 2010-01-12 Vladimir Serbinenko <phcoder@gmail.com>
31855
31856 * util/grub-mkpasswd-pbkdf2.c (main): Use grub_util_init_nls.
31857 Reported by: Grégoire Sutre
31858
31859 2010-01-11 Robert Millan <rmh.grub@aybabtu.com>
31860
31861 * util/misc.c (canonicalize_file_name): New function.
31862 (make_system_path_relative_to_its_root): Use canonicalize_file_name()
31863 instead of realpath().
31864
31865 2010-01-11 Colin Watson <cjwatson@ubuntu.com>
31866
31867 * util/grub-install.in (usage): Clarify meaning of --root-directory,
31868 and make it clearer that it's optional. Based on confusion
31869 witnessed on IRC.
31870
31871 2010-01-10 Vladimir Serbinenko <phcoder@gmail.com>
31872
31873 * term/i386/pc/vga_text.c (inc_y): Fix off-by-one error which resulted
31874 in premature implicit newline.
31875
31876 2010-01-10 Vladimir Serbinenko <phcoder@gmail.com>
31877
31878 * normal/cmdline.c (grub_cmdline_get): Fix off-by-one error
31879 which resulted in garbled command line at the end of screen.
31880
31881 2010-01-10 Robert Millan <rmh.grub@aybabtu.com>
31882
31883 * loader/i386/ieee1275/linux.c (grub_linux_boot): Rework video position
31884 initialization with similar approach as with other Linux loaders.
31885
31886 2010-01-10 Robert Millan <rmh.grub@aybabtu.com>
31887
31888 Fix i386-ieee1275 build.
31889
31890 * loader/i386/ieee1275/linux.c (grub_linux_boot): Use grub_term_width()
31891 and grub_term_height() for video_{width,height} initialization.
31892
31893 2010-01-10 Robert Millan <rmh.grub@aybabtu.com>
31894
31895 Fix grub-emu build.
31896
31897 * conf/any-emu.rmk (grub_emu_SOURCES): Remove `kern/reader.c'.
31898
31899 2010-01-07 Vladimir Serbinenko <phcoder@gmail.com>
31900 2010-01-09 Robert Millan <rmh.grub@aybabtu.com>
31901
31902 Support for multiple terminals.
31903
31904 * Makefile.in (pkglib_DATA): terminal.lst.
31905 (terminal.lst): New target.
31906 * commands/handler.c (grub_cmd_handler): Don't handle terminals.
31907 (GRUB_MOD_INIT(handler)): Likewise.
31908 (GRUB_MOD_FINI(handler)): Likewise.
31909 * commands/help.c (grub_cmd_help): Handle multiple terminals.
31910 * commands/keystatus.c (grub_cmd_keystatus): Likewise.
31911 * commands/sleep.c (do_print): Use grub_term_restore_pos.
31912 (grub_cmd_sleep): Use grub_term_save_pos.
31913 * commands/terminal.c: New file.
31914 * conf/any-emu.rmk (grub_emu_SOURCES): Add normal/term.c
31915 commands/terminal.c and lib/charset.c.
31916 * conf/common.rmk (normal_mod_SOURCES): Add normal/term.c.
31917 (pkglib_MODULES): Add terminal.mod.
31918 (terminal_mod_SOURCES): New variable.
31919 (terminal_mod_CFLAGS): Likewise.
31920 (terminal_mod_LDFLAGS): Likewise.
31921 * genhandlerlist.sh: Don't handle terminals.
31922 * genmk.rb: Generate terminal-*.lst.
31923 * genterminallist.sh: New file.
31924 * include/grub/charset.h (grub_ucs4_to_utf8_alloc): New proto.
31925 (grub_is_valid_utf8): Likewise.
31926 (grub_utf8_to_ucs4_alloc): Likewise.
31927 * include/grub/menu_viewer.h (grub_menu_viewer): Rewritten.
31928 (grub_menu_register_viewer): Changed argument.
31929 (grub_menu_try_text): New proto.
31930 (grub_gfxmenu_try_hook): New declaration.
31931 * include/grub/normal.h (grub_normal_exit_level): New declaration.
31932 (grub_menu_init_page): Additional argument term.
31933 (grub_normal_init_page): Likewise.
31934 (grub_cmdline_get): Arguments simplified.
31935 (grub_utf8_to_ucs4_alloc): Removed.
31936 (grub_print_ucs4): Additional argument term.
31937 (grub_getstringwidth): Likewise.
31938 (grub_print_message_indented): Likewise.
31939 (grub_menu_text_register_instances): New proto.
31940 (grub_show_menu): Likewise.
31941 (read_terminal_list): Likewise.
31942 (grub_set_more): Likewise.
31943 * include/grub/parser.h: Include handler.h.
31944 * include/grub/reader.h: Rewritten.
31945 * include/grub/term.h (GRUB_TERM_NEED_INIT): Removed.
31946 (GRUB_TERM_WIDTH): Changed to function.
31947 (GRUB_TERM_HEIGHT): Likewise.
31948 (GRUB_TERM_BORDER_WIDTH): Likewise.
31949 (GRUB_TERM_BORDER_HEIGHT): Likewise.
31950 (GRUB_TERM_NUM_ENTRIES): Likewise.
31951 (GRUB_TERM_ENTRY_WIDTH): Likewise.
31952 (GRUB_TERM_CURSOR_X): Likewise.
31953 (grub_term_input_class): Likewise.
31954 (grub_term_output_class): Likewise.
31955 (grub_term_outputs_disabled): New declaration.
31956 (grub_term_inputs_disabled): Likewise.
31957 (grub_term_outputs): Likewise.
31958 (grub_term_inputs): Likewise.
31959 (grub_term_register_input): Rewritten.
31960 (grub_term_register_output): Likewise.
31961 (grub_term_unregister_input): Likewise.
31962 (grub_term_unregister_output): Likewise.
31963 (FOR_ACTIVE_TERM_INPUTS): New macro.
31964 (FOR_DISABLED_TERM_INPUTS): Likewise.
31965 (FOR_ACTIVE_TERM_OUTPUTS): Likewise.
31966 (FOR_DISABLED_TERM_OUTPUTS): Likewise.
31967 * include/grub/terminfo.h: Add oterm argument to all protypes.
31968 * kern/main.c (grub_main): Don't call grub_register_rescue_reader.
31969 Use grub_rescue_run.
31970 * kern/misc.c (grub_utf8_to_ucs4): Put '?' for invalid characters.
31971 All users updated.
31972 * kern/reader.c: Removed. All users updated.
31973 * kern/rescue_reader.c (grub_rescue_init): Removed.
31974 (grub_rescue_reader): Likewise.
31975 (grub_register_rescue_reader): Likewise.
31976 (grub_rescue_run): New function based on kern/reader.c.
31977 * kern/term.c: Adapted for multiterm.
31978 * lib/charset.c (grub_ucs4_to_utf8_alloc): New function.
31979 (grub_is_valid_utf8): Likewise.
31980 (grub_utf8_to_ucs4_alloc): Moved from normal/menu_text.c.
31981 * loader/i386/efi/linux.c (grub_cmd_linux): Retrieve parameters of
31982 right terminal.
31983 * loader/i386/linux.c (grub_linux_boot): Likewise.
31984 * normal/auth.c (grub_username_get): New function.
31985 (grub_auth_check_authentication): Use grub_username_get.
31986 * normal/cmdline.c: Changed to UCS4. Adapted for multiterm.
31987 * normal/color.c: Adapt for multiterm.
31988 * normal/main.c (read_config_file): Don't use grub_reader_loop.
31989 (grub_normal_init_page): Additional argument term.
31990 (read_lists): Call read_terminal_lists.
31991 (grub_enter_normal_mode): Call grub_cmdline_run.
31992 Handle grub_normal_exit_level.
31993 (grub_cmd_normal): Make reentrant.
31994 (grub_cmd_normal_exit): New function.
31995 (grub_normal_reader_init): Additional argument nested. Handle multiterm.
31996 * normal/menu.c: Adapt for multiterm.
31997 * normal/menu_entry.c: Likewise.
31998 * normal/menu_text.c: Likewise.
31999 * normal/menu_viewer.c: Removed. All users updated.
32000 * normal/term.c: New file.
32001 * util/console.c: Change order of includes to workaround a bug in
32002 ncurses headers.
32003 * term/terminfo.c: New argument oterm on all exported functions.
32004 All users updated.
32005 * util/grub-editenv.c (grub_term_input_class): Removed.
32006 (grub_term_output_class): Likewise.
32007
32008 2010-01-09 Robert Millan <rmh.grub@aybabtu.com>
32009
32010 Make loader output a bit more user-friendly.
32011
32012 * util/grub.d/10_hurd.in: Print message indicating that GNU Mach
32013 is being loaded. Likewise for the Hurd.
32014
32015 * util/grub.d/10_kfreebsd.in (kfreebsd_entry): Print message indicating
32016 that kernel of FreeBSD ${version} is being loaded.
32017
32018 * loader/i386/linux.c (grub_cmd_linux): Move debug info to
32019 grub_dprintf().
32020 (grub_cmd_initrd): Likewise.
32021 * util/grub.d/10_linux.in (linux_entry): Print message indicating
32022 that Linux ${version} is being loaded. Likewise for initrd.
32023
32024 2010-01-09 Carles Pina i Estany <carles@pina.cat>
32025
32026 * gettext/gettext.c (GRUB_MOD_INIT): Gettextizze.
32027
32028 2010-01-08 Carles Pina i Estany <carles@pina.cat>
32029
32030 * loader/efi/appleloader.c: Include `<grub/i18n.h>'.
32031 (GRUB_MOD_INIT): Gettextizze.
32032 * loader/efi/chainloader.c: Include `<grub/i18n.h>'.
32033 (GRUB_MOD_INIT): Gettextizze.
32034 * loader/i386/efi/linux.c: Include `<grub/i18n.h>'.
32035 (grub_cmd_linux): Capitalise Linux.
32036 (GRUB_MOD_INIT): Gettextizze.
32037 * loader/i386/ieee1275/linux.c: Include `<grub/i18n.h>'.
32038 (grub_cmd_linux): Capitalise Linux.
32039 (GRUB_MOD_INIT): Gettextizze.
32040 * loader/i386/linux.c: Include `<grub/i18n.h>'.
32041 (grub_cmd_linux): Capitalise Linux.
32042 (GRUB_MOD_INIT): Gettextizze.
32043 * loader/i386/pc/chainloader.c: Include `<grub/i18n.h>'.
32044 (GRUB_MOD_INIT): Gettextizze.
32045 * loader/i386/pc/linux.c: Include `<grub/i18n.h>'.
32046 (grub_cmd_linux): Capitalise Linux.
32047 (GRUB_MOD_INIT): Gettextizze.
32048 * loader/i386/xnu.c: Include `<grub/i18n.h>'.
32049 (grub_cpu_xnu_init): Gettextizze.
32050 * loader/multiboot_loader.c: Include `<grub/i18n.h>'.
32051 (GRUB_MOD_INIT): Gettextizze.
32052 * loader/powerpc/ieee1275/linux.c: Include `<grub/i18n.h>'.
32053 (GRUB_MOD_INIT): Gettextizze.
32054 * loader/sparc64/ieee1275/linux.c: Include `<grub/i18n.h>'.
32055 (grub_linux_load64): Capitalise Linux.
32056 (GRUB_MOD_INIT): Gettextizze.
32057 * loader/xnu.c: Include `<grub/i18n.h>'.
32058 (GRUB_MOD_INIT): Gettextizze.
32059 * po/POTFILES: Add `loader/efi/appleloader.c',
32060 `loader/efi/chainloader.c', `loader/i386/efi/linux.c',
32061 `loader/i386/ieee1275/linux.c', `loader/i386/linux.c',
32062 `loader/i386/pc/chainloader.c', `loader/i386/pc/linux.c',
32063 `loader/i386/xnu.c', `loader/multiboot_loader.c',
32064 `loader/powerpc/ieee1275/linux.c', `loader/sparc64/ieee1275/linux.c'
32065 and `loader/xnu.c'.
32066
32067 2010-01-08 Robert Millan <rmh.grub@aybabtu.com>
32068
32069 * src/mkisofs.c: Remove `ifdef linux' portability kludge.
32070
32071 2010-01-08 Robert Millan <rmh.grub@aybabtu.com>
32072
32073 * util/mkisofs/defaults.h (APPID_DEFAULT): Redefine using PACKAGE_NAME.
32074 (SYSTEM_ID_DEFAULT): Set to "GNU" unconditionally.
32075 * util/mkisofs/mkisofs.c (main): Readjust --version output.
32076
32077 2010-01-07 Robert Millan <rmh.grub@aybabtu.com>
32078
32079 Reset Multiboot 2 support. New loader implements the draft in
32080 /branches/multiboot2 and shares as much code as possible with the
32081 production Multiboot 1 implementation.
32082
32083 * loader/ieee1275/multiboot2.c: Remove file. Update all users.
32084 * loader/multiboot2.c: Likewise.
32085 * loader/i386/multiboot_helper.S: Likewise.
32086 * include/multiboot2.h: Replace with latest version from the draft
32087 in /branches/multiboot2.
32088
32089 * conf/i386-coreboot.rmk (multiboot_mod_SOURCES): Remove
32090 `loader/i386/multiboot_helper.S', `loader/i386/pc/multiboot2.c'
32091 and `loader/multiboot2.c'.
32092 (pkglib_MODULES): Add `multiboot2.mod'.
32093 (multiboot2_mod_SOURCES): New variable.
32094 (multiboot2_mod_LDFLAGS): Likewise.
32095 (multiboot2_mod_CFLAGS): Likewise. Define `GRUB_USE_MULTIBOOT2'.
32096
32097 * conf/i386-pc.rmk: Likewise.
32098
32099 * conf/powerpc-ieee1275.rmk (pkglib_MODULES): Remove `multiboot.mod'.
32100 (multiboot_mod_SOURCES): Remove variable.
32101 (multiboot_mod_LDFLAGS): Likewise.
32102 (multiboot_mod_CFLAGS): Likewise.
32103
32104 * include/grub/multiboot.h [GRUB_USE_MULTIBOOT2]: Include
32105 `<multiboot2.h>' instead of `<multiboot.h>'.
32106 [GRUB_USE_MULTIBOOT2] (MULTIBOOT_BOOTLOADER_MAGIC)
32107 (MULTIBOOT_HEADER_MAGIC): New macros.
32108
32109 * loader/multiboot_loader.c (module_version_status): Remove variable.
32110 (find_multi_boot2_header): Remove function.
32111 (grub_cmd_multiboot_loader): Remove Multiboot 2 / Multiboot 1 selection
32112 logic. Always check for the Multiboot version we're compiling for.
32113 (grub_cmd_module_loader): Likewise.
32114 [GRUB_USE_MULTIBOOT2] (GRUB_MOD_INIT(multiboot)): Register `multiboot2'
32115 command instead of `multiboot'.
32116
32117 2010-01-07 Robert Millan <rmh.grub@aybabtu.com>
32118
32119 * include/multiboot.h (MULTIBOOT_UNSUPPORTED): Moved from here ...
32120 * loader/i386/multiboot.c (UNSUPPORTED_FLAGS): ... to here. Update
32121 all users.
32122
32123 2010-01-07 Robert Millan <rmh.grub@aybabtu.com>
32124 2010-01-07 Vladimir Serbinenko <phcoder@gmail.com>
32125
32126 Fix breakage introduced with previous commit.
32127
32128 * normal/dyncmd.c (read_command_list): Avoid unregistering kernel
32129 commands.
32130 * normal/handler.c (read_handler_list): Revert part of previous commit
32131 affecting this file.
32132 * normal/main.c (read_lists): Move read_handler_list() call back to ...
32133 (grub_normal_execute): ... here.
32134
32135 2010-01-07 Robert Millan <rmh.grub@aybabtu.com>
32136
32137 Merge prefix-redefinition-fix branch.
32138
32139 * normal/autofs.c (read_fs_list): Make function capable of being
32140 run multiple times, gracefuly replacing the previous data
32141 structures.
32142 * normal/dyncmd.c (read_command_list): Likewise.
32143 * normal/handler.c (read_handler_list): Likewise.
32144 * normal/main.c (read_lists): New function. Calls all the
32145 list reading functions.
32146 (grub_normal_execute): Use read_lists() instead of calling all
32147 list reading functions explicitly. Register read_lists() as a
32148 variable hook attached to ${prefix}.
32149
32150 2010-01-07 Vladimir Serbinenko <phcoder@gmail.com>
32151
32152 Merge crypto branch.
32153
32154 * Makefile.in (pkglib_DATA): Add crypto.lst.
32155 (crypto.lst): New target.
32156 * commands/hashsum.c: New file.
32157 * commands/password.c (check_password): Use grub_crypto_memcmp.
32158 * commands/password_pbkdf2.c: New file.
32159 * commands/xnu_uuid.c: Remove MD5. Use GRUB_MD_MD5.
32160 * conf/any-emu.rmk (grub_emu_SOURCES): Add lib/crypto.c,
32161 normal/crypto.c and lib/libgcrypt-grub/cipher/md5.c.
32162 (grub_emu_CFLAGS): Add -Wno-missing-field-initializers -Wno-error
32163 -I$(srcdir)/lib/libgcrypt_wrap.
32164 * conf/common.rmk (normal_mod_SOURCES): Add normal/crypto.c.
32165 (pkglib_MODULES): Add crypto.mod, hashsum.mod, pbkdf2.mod and
32166 password_pbkdf2.mod.
32167 (crypto_mod_SOURCES): New variable.
32168 (crypto_mod_CFLAGS): Likewise.
32169 (crypto_mod_LDFLAGS): Likewise.
32170 (hashsum_mod_SOURCES): New variable.
32171 (hashsum_mod_CFLAGS): Likewise.
32172 (hashsum_mod_LDFLAGS): Likewise.
32173 (pbkdf2_mod_SOURCES): New variable.
32174 (pbkdf2_mod_CFLAGS): Likewise.
32175 (pbkdf2_mod_LDFLAGS): Likewise.
32176 (password_pbkdf2_mod_SOURCES): New variable.
32177 (password_pbkdf2_mod_CFLAGS): Likewise.
32178 (password_pbkdf2_mod_LDFLAGS): Likewise.
32179 (bin_UTILITIES): Add grub-mkpasswd-pbkdf2.
32180 (grub_mkpasswd_pbkdf2_SOURCES): New variable.
32181 (grub_mkpasswd_pbkdf2_CFLAGS): Likewise.
32182 Include conf/gcry.rmk.
32183 * include/grub/auth.h: Rewritten.
32184 * include/grub/crypto.h: New file.
32185 * include/grub/disk.h (grub_disk_dev_id): Add GRUB_DISK_DEVICE_LUKS_ID.
32186 * include/grub/normal.h (read_crypto_list): New prototype.
32187 * lib/crypto.c: New file.
32188 * lib/libgcrypt_wrap/cipher_wrap.h: Likewise.
32189 * lib/pbkdf2.c: Likewise.
32190 * normal/auth.c (grub_auth_strcmp): Removed.
32191 (grub_iswordseparator): Likewise.
32192 (grub_auth_strword): Likewise.
32193 (is_authenticated): Use grub_strword.
32194 (grub_auth_check_authentication): Use grub_strcmp, grub_password_get
32195 and grub_strword. Pass entered password to authentication callback.
32196 * normal/crypto.c: New file.
32197 * normal/main.c: Call read_crypto_list.
32198 * util/grub-mkpasswd-pbkdf2.c: New file.
32199 * util/import_gcry.py: Generate crypto.lst. Add hash blocklen.
32200
32201 2010-01-06 Vladimir Serbinenko <phcoder@gmail.com>
32202
32203 Fix descent and ascent calculation.
32204
32205 * util/grub-mkfont.c (grub_font_info): New fields 'asce' and 'max_y'.
32206 (options): New option "asce".
32207 (usage): Likewise.
32208 (add_char): Ignore invalid glyphs for descent calculation.
32209 Calculate ascent from actual content.
32210 (print_glyphs): Use 'asce'.
32211 (write_font): Likewise. Allow ascent override.
32212 (main): Handle "asce" option.
32213
32214 2010-01-06 Carles Pina i Estany <carles@pina.cat>
32215
32216 * kern/err.c: Include `<grub/i18n.h>'.
32217 (grub_print_error): Add full stop. Gettextizze.
32218 * loader/i386/bsd.c (grub_netbsd_boot): Change grub_error description.
32219 (grub_bsd_load_elf): Capitalise ELF.
32220 (grub_cmd_freebsd_loadenv): Add `s' in error string.
32221 (grub_cmd_freebsd_module): Likewise.
32222 (grub_cmd_freebsd_module_elf): Likewise.
32223 * loader/i386/bsdXX.c (SUFFIX): Capitalise ELF.
32224
32225 2010-01-06 Carles Pina i Estany <carles@pina.cat>
32226
32227 * commands/search.c (GRUB_MOD_INIT): Use HELP_MESSAGE.
32228 * commands/search_file.c (HELP_MESSAGE): New macro.
32229 * commands/search_label.c (HELP_MESSAGE): Likewise.
32230 * commands/search_uuid.c (HELP_MESSAGE): Likewise.
32231 * po/POTFILES: Add `commands/search_file.c',
32232 `commands/search_label.c', `commands_uuid.c'. Remove duplicate
32233 `commands/search.c'.
32234
32235 2010-01-05 Robert Millan <rmh.grub@aybabtu.com>
32236
32237 * config.rpath: Update from Gnulib.
32238
32239 2010-01-05 Yves Blusseau <blusseau@zetam.org>
32240
32241 * commands/acpi.c (grub_acpi_create_ebda): fix incorrect message.
32242
32243 2010-01-05 Yves Blusseau <yves.blusseau@zetam.org>
32244
32245 * util/sparc64/ieee1275/grub-mkimage.c (main): Typo fix.
32246
32247 2010-01-05 Colin Watson <cjwatson@ubuntu.com>
32248
32249 * util/mkisofs/write.c (padblock_write): Switch size and nmemb
32250 arguments to fread so that we get a return value in bytes, rather
32251 than something that will normally be rounded down to 0.
32252 Adjust error handling to avoid producing garbage when size_t is not
32253 the same size as long long.
32254
32255 2010-01-05 Colin Watson <cjwatson@ubuntu.com>
32256
32257 * util/mkisofs/write.c (padblock_write): Check return value of
32258 fread.
32259
32260 2010-01-05 Robert Millan <rmh.grub@aybabtu.com>
32261
32262 Remove grub-mkfloppy. Images produced by grub-mkrescue are valid
32263 floppy images now.
32264
32265 * util/i386/pc/grub-mkfloppy.in: Remove. Update all users.
32266
32267 2010-01-04 Robert Millan <rmh.grub@aybabtu.com>
32268
32269 * disk/i386/pc/biosdisk.c (grub_biosdisk_rw): Use ALIGN_UP macro
32270 instead of manual alignment.
32271 * kern/disk.c (grub_disk_read): Remove grub_dprintf call (excessively
32272 verbose). Avoid attempts to read past end of the device
32273 (grub_disk_adjust_range() guarantees that we can read `size' bytes,
32274 but GRUB_DISK_CACHE_SIZE may exceed that).
32275
32276 2010-01-04 Robert Millan <rmh.grub@aybabtu.com>
32277
32278 * commands/crc.c (grub_cmd_crc): Abort on read errors.
32279 * fs/iso9660.c (grub_iso9660_read): Check for read error and pass
32280 it to upper layer.
32281
32282 2010-01-04 Vladimir Serbinenko <phcoder@gmail.com>
32283
32284 * include/grub/efi/api.h (GRUB_EFI_PIWG_DEVICE_PATH_SUBTYPE):
32285 New constant.
32286 (grub_efi_piwg_device_path): New structure
32287 (grub_efi_piwg_device_path_t): New type.
32288 * loader/efi/appleloader.c (piwg_full_device_path): New structure.
32289 (devpath_1): Transform to a structure. All users updated.
32290 (devpath_2): Likewise.
32291 (devpath_3): Likewise.
32292 (devpath_4): Likewise.
32293 (devpath_5): Likewise.
32294
32295 2010-01-04 Vladimir Serbinenko <phcoder@gmail.com>
32296
32297 * loader/efi/appleloader.c: Restored. Update all users.
32298
32299 2010-01-03 Robert Millan <rmh.grub@aybabtu.com>
32300
32301 * boot/i386/pc/diskboot.S: Fix inaccurate comment.
32302
32303 * util/i386/pc/grub-setup.c: Include `<assert.h>'.
32304 (struct boot_blocklist): Move from here ...
32305 * include/grub/i386/pc/boot.h [ASM_FILE]
32306 (struct grub_boot_blocklist): ... to here. Update all users.
32307 (setup): Only initialize `start' member of `first_block'
32308 structure. Add assert() calls to verify the other members.
32309
32310 * util/i386/pc/grub-mkimage.c: Include `<assert.h>'.
32311 (generate_image): Fix broken blocklist length initialization.
32312 Add assert() call to verify blocklist `segment' field.
32313
32314 2010-01-03 Robert Millan <rmh.grub@aybabtu.com>
32315
32316 * loader/efi/appleloader.c: Remove. Update all users.
32317
32318 2010-01-03 Robert Millan <rmh.grub@aybabtu.com>
32319
32320 * boot/i386/pc/boot.S: Update copyright year.
32321 * boot/i386/pc/cdboot.S: Likewise.
32322 * boot/i386/pc/diskboot.S: Likewise.
32323 * boot/i386/pc/lnxboot.S: Likewise.
32324 * boot/i386/pc/pxeboot.S: Likewise.
32325 * bus/pci.c: Likewise.
32326 * commands/cmp.c: Likewise.
32327 * commands/help.c: Likewise.
32328 * commands/hexdump.c: Likewise.
32329 * commands/i386/pc/halt.c: Likewise.
32330 * commands/i386/pc/play.c: Likewise.
32331 * commands/i386/pc/vbeinfo.c: Likewise.
32332 * commands/ls.c: Likewise.
32333 * commands/test.c: Likewise.
32334 * disk/dmraid_nvidia.c: Likewise.
32335 * disk/i386/pc/biosdisk.c: Likewise.
32336 * disk/ieee1275/nand.c: Likewise.
32337 * disk/ieee1275/ofdisk.c: Likewise.
32338 * disk/lvm.c: Likewise.
32339 * disk/raid.c: Likewise.
32340 * disk/raid6_recover.c: Likewise.
32341 * disk/scsi.c: Likewise.
32342 * fs/affs.c: Likewise.
32343 * fs/cpio.c: Likewise.
32344 * fs/ext2.c: Likewise.
32345 * fs/hfs.c: Likewise.
32346 * fs/iso9660.c: Likewise.
32347 * fs/ntfs.c: Likewise.
32348 * fs/sfs.c: Likewise.
32349 * fs/udf.c: Likewise.
32350 * fs/ufs.c: Likewise.
32351 * fs/xfs.c: Likewise.
32352 * gencmdlist.sh: Likewise.
32353 * genmk.rb: Likewise.
32354 * include/grub/disk.h: Likewise.
32355 * include/grub/efi/api.h: Likewise.
32356 * include/grub/efi/efi.h: Likewise.
32357 * include/grub/efi/pe32.h: Likewise.
32358 * include/grub/elf.h: Likewise.
32359 * include/grub/fs.h: Likewise.
32360 * include/grub/i386/at_keyboard.h: Likewise.
32361 * include/grub/i386/pc/memory.h: Likewise.
32362 * include/grub/i386/pc/vbe.h: Likewise.
32363 * include/grub/i386/pci.h: Likewise.
32364 * include/grub/i386/tsc.h: Likewise.
32365 * include/grub/ieee1275/ieee1275.h: Likewise.
32366 * include/grub/ntfs.h: Likewise.
32367 * include/grub/sparc64/ieee1275/ieee1275.h: Likewise.
32368 * include/grub/sparc64/libgcc.h: Likewise.
32369 * include/grub/symbol.h: Likewise.
32370 * include/grub/types.h: Likewise.
32371 * include/multiboot2.h: Likewise.
32372 * io/gzio.c: Likewise.
32373 * kern/device.c: Likewise.
32374 * kern/disk.c: Likewise.
32375 * kern/efi/efi.c: Likewise.
32376 * kern/efi/mm.c: Likewise.
32377 * kern/elf.c: Likewise.
32378 * kern/file.c: Likewise.
32379 * kern/i386/dl.c: Likewise.
32380 * kern/i386/pc/init.c: Likewise.
32381 * kern/i386/pc/startup.S: Likewise.
32382 * kern/ieee1275/ieee1275.c: Likewise.
32383 * kern/ieee1275/init.c: Likewise.
32384 * kern/main.c: Likewise.
32385 * kern/mm.c: Likewise.
32386 * kern/powerpc/dl.c: Likewise.
32387 * kern/sparc64/dl.c: Likewise.
32388 * kern/x86_64/dl.c: Likewise.
32389 * lib/hexdump.c: Likewise.
32390 * loader/efi/appleloader.c: Likewise.
32391 * loader/i386/ieee1275/linux.c: Likewise.
32392 * loader/i386/pc/chainloader.c: Likewise.
32393 * loader/i386/pc/linux.c: Likewise.
32394 * loader/i386/pc/multiboot2.c: Likewise.
32395 * loader/ieee1275/multiboot2.c: Likewise.
32396 * loader/multiboot2.c: Likewise.
32397 * loader/multiboot_loader.c: Likewise.
32398 * loader/powerpc/ieee1275/linux.c: Likewise.
32399 * normal/completion.c: Likewise.
32400 * normal/menu_entry.c: Likewise.
32401 * partmap/apple.c: Likewise.
32402 * util/grub.d/10_hurd.in: Likewise.
32403 * util/hostfs.c: Likewise.
32404 * video/readers/png.c: Likewise.
32405
32406 2010-01-03 Colin Watson <cjwatson@ubuntu.com>
32407
32408 * include/grub/misc.h (GNUC_PREREQ): New macro.
32409 (ATTRIBUTE_ERROR): New macro.
32410 * include/grub/list.h (grub_bad_type_cast_real): Use
32411 ATTRIBUTE_ERROR.
32412
32413 2010-01-03 Carles Pina i Estany <carles@pina.cat>
32414
32415 * normal/menu_text.c (print_message): Change messages.
32416
32417 2010-01-03 Carles Pina i Estany <carles@pina.cat>
32418
32419 * normal/menu_entry.c (store_completion): Gettextizze.
32420
32421 2010-01-03 Carles Pina i Estany <carles@pina.cat>
32422
32423 * kern/env.c (grub_env_unset): Set the variable to "" if has hooks.
32424
32425 2010-01-03 Carles Pina i Estany <carles@pina.cat>
32426
32427 * po/POTFILES: Sort correctly.
32428
32429 2010-01-03 Carles Pina i Estany <carles@pina.cat>
32430
32431 * commands/acpi.c (GRUB_MOD_INIT): Capitalise some words from help.
32432 * commands/efi/loadbios.c (GRUB_MOD_INIT): Capitalise BIOS.
32433 * commands/i386/pc/drivemap.c (GRUB_MOD_INIT): Remove space. Add
32434 full stop.
32435 * commands/loadenv.c (GRUB_MOD_INIT): Remove command name from
32436 summary. Gettextizze the strings.
32437 * commands/probe.c (grub_cmd_probe): Capitalise UUID and FS.
32438 * commands/xnu_uuid.c (GRUB_MOD_INIT): Capitalise XNU.
32439 * disk/loopback.c (grub_arg_options): Capitalise first letter. Add
32440 full stop.
32441 (GRUB_MOD_INIT): Remove command name from summary.
32442 * hello/hello.c (GRUD_MOT_INIT): Add missing full stop. Improve the
32443 summary.
32444 * loader/i386/bsd.c (grub_arg_option): Capitalise CDROM.
32445 * term/i386/pc/serial.c (options): Add full stops.
32446 (GRUB_MOD_INIT): Remove command name from the summary.
32447
32448 2010-01-03 Carles Pina i Estany <carles@pina.cat>
32449
32450 * commands/acpi.c: Gettextizze help strings and/or options. Include
32451 `grub/i18n.h' if needed.
32452 * commands/blocklist.c: Likewise.
32453 * commands/boot.c: Likewise.
32454 * commands/cat.c: Likewise.
32455 * commands/cmp.c: Likewise.
32456 * commands/configfile.c: Likewise.
32457 * commands/crc.c: Likewise.
32458 * commands/date.c: Likewise.
32459 * commands/echo.c: Likewise.
32460 * commands/efi/fixvideo.c: Likewise.
32461 * commands/efi/loadbios.c: Likewise.
32462 * commands/gptsync.c: Likewise.
32463 * commands/halt.c: Likewise.
32464 * commands/handler.c: Likewise.
32465 * commands/hdparm.c: Likewise.
32466 * commands/hexdump.c: Likewise.
32467 * commands/i386/cpuid.c: Likewise.
32468 * commands/i386/pc/drivemap.c: Likewise.
32469 * commands/i386/pc/halt.c: Likewise.
32470 * commands/i386/pc/pxecmd.c: Likewise.
32471 * commands/i386/pc/vbeinfo.c: Likewise.
32472 * commands/i386/pc/vbetest.c: Likewise.
32473 * commands/ieee1275/suspend.c: Likewise.
32474 * commands/keystatus.c: Likewise.
32475 * commands/loadenv.c: Likewise.
32476 * commands/ls.c: Likewise.
32477 * commands/lsmmap.c: Likewise.
32478 * commands/lspci.c: Likewise.
32479 * commands/memrw.c: Likewise.
32480 * commands/minicmd.c: Likewise.
32481 * commands/parttool.c: Likewise.
32482 * commands/password.c: Likewise.
32483 * commands/probe.c: Likewise.
32484 * commands/read.c: Likewise.
32485 * commands/reboot.c: Likewise.
32486 * commands/search.c: Likewise.
32487 * commands/sleep.c: Likewise.
32488 * commands/test.c: Likewise.
32489 * commands/true.c: Likewise.
32490 * commands/usbtest.c: Likewise.
32491 * commands/videotest.c: Likewise.
32492 * commands/xnu_uuid.c: Likewise.
32493 * disk/loopback.c: Likewise.
32494 * hello/hello.c: Likewise.
32495 * loader/i386/bsd.c: Likewise.
32496 * term/i386/pc/serial.c: Likewise.
32497 * po/POTFILES: Add new files.
32498
32499 2010-01-02 Colin Watson <cjwatson@ubuntu.com>
32500
32501 * term/i386/pc/at_keyboard.c
32502 (keyboard_controller_wait_untill_ready): Rename to ...
32503 (keyboard_controller_wait_until_ready): ... this. Update all users.
32504
32505 2010-01-01 Carles Pina i Estany <carles@pina.cat>
32506
32507 * commands/help.c: Include `grub/mm.h' and `grub/normal.h'.
32508 (grub_cmd_help): Print the cmd->name before the cmd->summary. Cut the
32509 string using string width.
32510 * normal/menu_text.c (grub_print_message_indented): Use
32511 grub_print_spaces and not print_spaces.
32512 (print_timeout): Likewise.
32513 (print_spaces): Move to...
32514 * include/grub/term.h: ... here. Change the name to grub_print_spaces.
32515
32516 2010-01-01 Robert Millan <rmh.grub@aybabtu.com>
32517
32518 Import from Gnulib.
32519
32520 * gnulib/getdelim.c: New file.
32521 * gnulib/getline.c: Likewise.
32522
32523 2009-12-31 BVK Chaitanya <bvk.groups@gmail.com>
32524
32525 * include/grub/list.h (grub_assert_fail): Removed.
32526 (grub_bad_type_cast_real): New function.
32527 (grub_bad_type_cast): New macro.
32528 (GRUB_AS_LIST): Use grub_bad_type_cast.
32529 (GRUB_AS_LIST_P): Likewise.
32530 (GRUB_AS_NAMED_LIST): Likewise.
32531 (GRUB_AS_NAMED_LIST_P): Likewise.
32532 (GRUB_AS_PRIO_LIST): Likewise.
32533 (GRUB_AS_PRIO_LIST_P): Likewise.
32534 * include/grub/handler.h (GRUB_AS_HANDLER): Likewise.
32535
32536 2009-12-29 Vladimir Serbinenko <phcoder@gmail.com>
32537
32538 * loader/sparc64/ieee1275/linux.c (GRUB_MOD_INIT (linux)):
32539 Fix syntax error.
32540
32541 2009-12-29 Robert Millan <rmh.grub@aybabtu.com>
32542
32543 * configure.ac: Check for TARGET_CFLAGS initialization before we
32544 initialize it ourselves (sigh).
32545 Move a few modifications to TARGET_CFLAGS to be unconditional
32546 (extra warning flags, loop alignment, i386 CPU extensions, GCC 4.4
32547 eh_frame)
32548
32549 * gettext/gettext.c (grub_gettext_delete_list): Add `void' argument.
32550 * term/i386/pc/at_keyboard.c
32551 (keyboard_controller_wait_untill_ready): Likewise.
32552 (keyboard_controller_led): Rename `led_status' paramter to avoid
32553 name conflict.
32554
32555 2009-12-28 Carles Pina i Estany <carles@pina.cat>
32556
32557 * normal/misc.c (grub_normal_print_device_info): Add spaces and double
32558 quotes.
32559
32560 2009-12-27 Vladimir Serbinenko <phcoder@gmail.com>
32561
32562 * kern/parser.c (grub_parser_split_cmdline): Don't dereference NULL.
32563
32564 2009-12-27 Vladimir Serbinenko <phcoder@gmail.com>
32565
32566 * normal/menu_text.c (grub_print_message_indented): Prevent
32567 past-the-end-of-array dereference.
32568
32569 2009-12-27 Vladimir Serbinenko <phcoder@gmail.com>
32570
32571 * video/readers/jpeg.c (GRUB_MOD_FINI (grub_cmd_jpegtest)): Rename to ..
32572 (GRUB_MOD_FINI (video_reader_jpeg)): ...this
32573
32574 2009-12-27 Carles Pina i Estany <carles@pina.cat>
32575
32576 * normal/cmdline.c (grub_cmdline_get): Print a space after prompt.
32577 * normal/main.c (grub_normal_read_line): Remove a space from the
32578 default prompt.
32579
32580 2009-12-27 Carles Pina i Estany <carles@pina.cat>
32581
32582 * loader/i386/efi/linux.c (GRUB_MOD_INIT): Improve command summary.
32583 * loader/i386/ieee1275/linux.c (GRUB_MOD_INIT): Likewise.
32584 * loader/i386/linux.c (GRUB_MOD_INIT): Likewise.
32585 * loader/i386/pc/linux.c (GRUB_MOD_INIT): Likewise.
32586 * loader/powerpc/ieee1275/linux.c (GRUB_MOD_INIT): Likewise.
32587 * loader/sparc64/ieee1275/linux.c (GRUB_MOD_INIT): Likewise.
32588 * loader/xnu.c (GRUB_MOD_INIT): Likewise.
32589
32590 2009-12-26 Carles Pina i Estany <carles@pina.cat>
32591
32592 * video/readers/jpeg.c (cmd): Declare.
32593 (grub_cmd_jpegtest): Use `grub_command_t' type.
32594 (GRUB_MOD_INIT): Fix arguments passed to `grub_register_command'.
32595 Assign to `cmd'.
32596 (GRUB_MOD_FINI): Use `cmd' to unregister.
32597 * video/readers/png.c (cmd): Declare.
32598 (grub_cmd_pngtest): Use `grub_command_t' type.
32599 (GRUB_MOD_INIT): Fix arguments passed to `grub_register_command'.
32600 Assign to `cmd'.
32601 (GRUB_MOD_FINI): Use `cmd' to unregister.
32602 * video/readers/tga.c (cmd): Declare.
32603 (grub_cmd_tgatest): Use `grub_command_t' type.
32604 (GRUB_MOD_INIT): Fix arguments passed to `grub_register_command'.
32605 Assign to `cmd'.
32606 (GRUB_MOD_FINI): Use `cmd' to unregister.
32607
32608 2009-12-26 Carles Pina i Estany <carles@pina.cat>
32609
32610 * efiemu/main.c (GRUB_MOD_INIT): Fix capitalizations and/or full
32611 stops.
32612 * kern/corecmd.c (grub_register_core_commands): Likewise.
32613 * loader/efi/chainloader.c (GRUB_MOD_INIT): Likewise.
32614 * loader/i386/bsd.c (GRUB_MOD_INIT): Likewise.
32615 * loader/i386/efi/linux.c (GRUB_MOD_INIT): Likewise.
32616 * loader/i386/ieee1275/linux.c (GRUB_MOD_INIT): Likewise.
32617 * loader/i386/linux.c (GRUB_MOD_INIT): Likewise.
32618 * loader/i386/pc/chainloader.c (GRUB_MOD_INIT): Likewise.
32619 * loader/i386/pc/linux.c (GRUB_MOD_INIT): Likewise.
32620 * loader/multiboot_loader.c (GRUB_MOD_INIT): Likewise.
32621 * loader/powerpc/ieee1275/linux.c (GRUB_MOD_INIT): Likewise.
32622 * loader/sparc64/ieee1275/linux.c (GRUB_MOD_INIT): Likewise.
32623 * loader/xnu.c (GRUB_MOD_INIT): Likewise.
32624 * mmap/mmap.c (GRUB_MOD_INIT): Likewise.
32625 * normal/handler.c (insert_handler): Likewise.
32626 * normal/main.c (GRUB_MOD_INIT): Likewise.
32627 * term/gfxterm.c (GRUB_MOD_INIT): Likewise.
32628
32629 2009-12-26 Carles Pina i Estany <carles@pina.cat>
32630
32631 * commands/help.c (grub_cmd_help): Print the command name before the
32632 summary.
32633 (GRUB_MOD_INIT): Remove command name from the summary.
32634 * kern/command.c (GRUB_MOD_INIT): If summary is null assign an empty
32635 string as summary.
32636 * lib/arg.c (find_long): Print the command name before the summary.
32637 * commands/acpi.c (GRUB_MOD_INIT): Remove command name from the
32638 summary.
32639 * commands/blocklist.c (GRUB_MOD_INIT): Likewise.
32640 * commands/cat.c (GRUB_MOD_INIT): Likewise.
32641 * commands/cmp.c (GRUB_MOD_INIT): Likewise.
32642 * commands/configfile.c (GRUB_MOD_INIT): Likewise.
32643 * commands/crc.c (GRUB_MOD_INIT): Likewise.
32644 * commands/date.c (GRUB_MOD_INIT): Likewise.
32645 * commands/echo.c (GRUB_MOD_INIT): Likewise.
32646 * commands/efi/loadbios.c (GRUB_MOD_INIT): Likewise.
32647 * commands/gptsync.c (GRUB_MOD_INIT): Likewise.
32648 * commands/handler.c (GRUB_MOD_INIT): Likewise.
32649 * commands/hdparm.c (GRUB_MOD_INIT): Likewise.
32650 * commands/hexdump.c (GRUB_MOD_INIT): Likewise.
32651 * commands/i386/cpuid.c (GRUB_MOD_INIT): Likewise.
32652 * commands/i386/pc/halt.c (GRUB_MOD_INIT): Likewise.
32653 * commands/i386/pc/play.c (GRUB_MOD_INIT): Likewise.
32654 * commands/i386/pc/pxecmd.c (GRUB_MOD_INIT): Likewise.
32655 * commands/keystatus.c (GRUB_MOD_INIT): Likewise.
32656 * commands/loadenv.c (GRUB_MOD_INIT): Likewise.
32657 * commands/ls.c (GRUB_MOD_INIT): Likewise.
32658 * commands/lspci.c (GRUB_MOD_INIT): Likewise.
32659 * commands/memrw.c (GRUB_MOD_INIT): Likewise.
32660 * commands/minicmd.c (GRUB_MOD_INIT): Likewise.
32661 * commands/parttool.c (GRUB_MOD_INIT): Likewise.
32662 * commands/password.c (GRUB_MOD_INIT): Likewise.
32663 * commands/probe.c (GRUB_MOD_INIT): Likewise.
32664 * commands/read.c (GRUB_MOD_INIT): Likewise.
32665 * commands/search.c (GRUB_MOD_INIT): Likewise.
32666 * commands/sleep.c (GRUB_MOD_INIT): Likewise.
32667 * commands/test.c (GRUB_MOD_INIT): Likewise.
32668 * commands/xnu_uuid.c (GRUB_MOD_INIT): Likewise.
32669 * efiemu/main.c (GRUB_MOD_INIT): Likewise.
32670 * font/font_cmd.c (GRUB_MOD_INIT): Likewise.
32671 * gettext/gettext.c (GRUB_MOD_INIT): Likewise.
32672 * kern/corecmd.c (GRUB_MOD_INIT): Likewise.
32673 * lib/arg.c (GRUB_MOD_INIT): Likewise.
32674 * loader/efi/appleloader.c (GRUB_MOD_INIT): Likewise.
32675 * loader/i386/bsd.c (GRUB_MOD_INIT): Likewise.
32676 * loader/xnu.c (GRUB_MOD_INIT): Likewise.
32677 * mmap/mmap.c (GRUB_MOD_INIT): Likewise.
32678 * term/terminfo.c (GRUB_MOD_INIT): Likewise.
32679 * video/readers/jpeg.c (GRUB_MOD_INIT): Likewise.
32680 * video/readers/png.c (GRUB_MOD_INIT): Likewise.
32681 * video/readers/tga.c (GRUB_MOD_INIT): Likewise.
32682
32683 2009-12-25 Vladimir Serbinenko <phcoder@gmail.com>
32684
32685 Use search command for preliminar UUID search.
32686
32687 * commands/search.c: Split into ...
32688 * commands/search_wrap.c: ...this
32689 * commands/search.c: ...and this.
32690 * commands/search_file.c: New file.
32691 * commands/search_label.c: New file.
32692 * commands/search_uuid.c: New file.
32693 * conf/any-emu.rmk (grub_emu_SOURCES): Remove commands/search.c.
32694 Add commands/search_wrap.c, commands/search_file.c,
32695 commands/search_label.c and commands/search_uuid.c.
32696 * conf/common.rmk (pkglib_MODULES): Remove fs_uuid.mod and fs_file.mod.
32697 (search_mod_SOURCES): Set to commands/search_wrap.c.
32698 (pkglib_MODULES): Add search_fs_file.mod, search_fs_uuid.mod and
32699 search_label.mod.
32700 (search_fs_file_mod_SOURCES): New variable.
32701 (search_fs_file_mod_CFLAGS): Likewise.
32702 (search_fs_file_mod_LDFLAGS): Likewise.
32703 (search_label_mod_SOURCES): Likewise.
32704 (search_label_mod_CFLAGS): Likewise.
32705 (search_label_mod_LDFLAGS): Likewise.
32706 (search_fs_uuid_mod_SOURCES): New variable.
32707 (search_fs_uuid_mod_CFLAGS): Likewise.
32708 (search_fs_uuid_mod_LDFLAGS): Likewise.
32709 (fs_file_mod_SOURCES): Removed.
32710 (fs_file_mod_CFLAGS): Likewise.
32711 (fs_file_mod_LDFLAGS): Likewise.
32712 (fs_uuid_mod_SOURCES): Removed.
32713 (fs_uuid_mod_CFLAGS): Likewise.
32714 (fs_uuid_mod_LDFLAGS): Likewise.
32715 * conf/sparc64-ieee1275.rmk (grub_install_SOURCES):
32716 Set to util/grub-install.in.
32717 * disk/fs_file.c: Removed.
32718 * disk/fs_uuid.c: Likewise.
32719 * include/grub/search.h: New file.
32720 * util/grub-install.in: Handle sparc64.
32721 Create and use load.cfg.
32722 * util/sparc64/ieee1275/grub-install.in: Removed.
32723
32724 2009-12-25 Vladimir Serbinenko <phcoder@gmail.com>
32725
32726 * kern/i386/pc/startup.S (grub_biosdisk_get_diskinfo_int13_extensions):
32727 Ignore return status if CF is cleared.
32728 (grub_biosdisk_get_diskinfo_standard): Likewise.
32729
32730 2009-12-25 Robert Millan <rmh.grub@aybabtu.com>
32731
32732 * term/i386/pc/at_keyboard.c
32733 (keyboard_controller_wait_untill_ready): New function.
32734 (grub_keyboard_controller_write, grub_keyboard_controller_read)
32735 (keyboard_controller_led): Use keyboard_controller_wait_untill_ready()
32736 for keyboard polling, rather than duplicate the same loop. This
32737 saves a few bytes in code size.
32738
32739 2009-12-25 Vladimir Serbinenko <phcoder@gmail.com>
32740
32741 Support for (pxe[:server[:gateway]]) syntax and
32742 use environment variable for PXE.
32743
32744 * commands/i386/pc/pxecmd.c (options): Removed.
32745 (print_ip): Removed.
32746 (grub_cmd_pxe): Removed
32747 (grub_cmd_pxe_unload): New function.
32748 * fs/i386/pc/pxe.c (grub_pxe_disk_data): New structure.
32749 (grub_pxe_your_ip): Made static.
32750 (grub_pxe_default_server_ip): Likewise.
32751 (grub_pxe_default_gateway_ip): Likewise.
32752 (grub_pxe_blksize): Likewise.
32753 (parse_ip): New function.
32754 (grub_pxe_open): Support server and gateway specification.
32755 (grub_pxe_close): Free disk->data.
32756 (grub_pxefs_open): Use disk->data.
32757 (grub_pxefs_read): Likewise.
32758 (grub_env_write_readonly): New function.
32759 (set_mac_env): Likewise.
32760 (set_env_limn_ro): Likewise.
32761 (parse_dhcp_vendor): Likewise.
32762 (grub_pxe_detect): Set the environment variables.
32763 (set_ip_env): New function.
32764 (write_ip_env): Likewise.
32765 (grub_env_write_pxe_default_server): Likewise.
32766 (grub_env_write_pxe_default_gateway): Likewise.
32767 (grub_env_write_pxe_blocksize): Likewise.
32768 (GRUB_MOD_INIT(pxe)): Set environment variables.
32769 * include/grub/i386/pc/pxe.h (grub_pxe_mac_addr): Rename to ...
32770 (grub_pxe_mac_addr_t): ... this. All users updated.
32771 (grub_pxe_your_ip): Removed.
32772 (grub_pxe_server_ip): Likewise.
32773 (grub_pxe_gateway_ip): Likewise.
32774 (grub_pxe_blksize): Likewise.
32775
32776 2009-12-25 Carles Pina i Estany <carles@pina.cat>
32777
32778 * commands/help.c: Include `<grub/i18n.h>'.
32779 (grub_cmd_help): Gettextizze.
32780 (GRUB_MOD_INIT): Likewise.
32781 * commands/i386/pc/play.c: Include `<grub/i18n.h>'.
32782 (GRUB_MOD_INIT): Gettextizze.
32783 * commands/search.c: Include `<grub/i18n.h>'.
32784 (options): Gettextizze.
32785 (GRUB_MOD_INIT): Gettextizze.
32786 * lib/arg.c: Include `<grub/i18n.h>'.
32787 (help_options): Gettextizze.
32788 (find_long): Likewise.
32789 (grub_arg_show_help): Likewise.
32790 * normal/dyncmd.c: Include `<grub/i18n.h>'.
32791 (read_command_list): Gettextizze.
32792 * po/POTFILES: Add `commands/i386/pc/play.c', `commands/search.c',
32793 `commands/help.c', `lib/arg.c' and `normal/dyncmd.c'.
32794
32795 2009-12-25 Robert Millan <rmh.grub@aybabtu.com>
32796
32797 * include/grub/i386/at_keyboard.h (NUM_LOCK, SCROLL_LOCK): New macros.
32798 * term/i386/pc/at_keyboard.c (KEYBOARD_STATUS_NUM_LOCK)
32799 (KEYBOARD_LED_SCROLL, KEYBOARD_LED_NUM, KEYBOARD_LED_CAPS): New macros.
32800 (led_status): New variable.
32801 (keyboard_controller_led): New function.
32802 (grub_at_keyboard_getkey_noblock): Handle num lock and scroll lock,
32803 update led status for caps lock, num lock and scroll lock.
32804
32805 2009-12-25 Felix Zielcke <fzielcke@z-51.de>
32806
32807 * util/hostdisk.c (open_device): Fix a comment.
32808
32809 2009-12-24 Robert Millan <rmh.grub@aybabtu.com>
32810
32811 * util/grub-install.in (host_os): New variable.
32812 * util/i386/efi/grub-install.in (host_os): Likewise.
32813
32814 2009-12-24 Robert Millan <rmh.grub@aybabtu.com>
32815
32816 * util/mkisofs/write.c (padblock_write): Abort when given an
32817 excedingly large embed image, instead of silently truncating it.
32818
32819 2009-12-24 Robert Millan <rmh.grub@aybabtu.com>
32820
32821 * include/multiboot.h: Indentation fixes.
32822
32823 2009-12-24 Robert Millan <rmh.grub@aybabtu.com>
32824
32825 * include/multiboot.h (struct multiboot_aout_symbol_table)
32826 (struct multiboot_elf_section_header_table): New structure
32827 declarations (stolen from GRUB Legacy).
32828 (struct multiboot_info): Replace opaque `syms' with a.out and ELF
32829 table information.
32830
32831 (multiboot_aout_symbol_table_t, multiboot_elf_section_header_table_t)
32832 (multiboot_info_t, multiboot_memory_map_t, multiboot_module_t): New
32833 type aliases.
32834
32835 2009-12-24 Robert Millan <rmh.grub@aybabtu.com>
32836
32837 * include/multiboot.h: Make comments src2texi-friendly.
32838
32839 2009-12-24 Robert Millan <rmh.grub@aybabtu.com>
32840
32841 For consistency with [multiboot]/docs/boot.S.
32842
32843 * include/multiboot.h (MULTIBOOT_MAGIC): Rename from this ...
32844 (MULTIBOOT_HEADER_MAGIC): ... to this. Update all users.
32845 (MULTIBOOT_MAGIC2): Rename from this ...
32846 (MULTIBOOT_BOOTLOADER_MAGIC): ... to this. Update all users.
32847
32848 2009-12-24 Robert Millan <rmh.grub@aybabtu.com>
32849
32850 * include/multiboot.h: Remove `<grub/types.h>'.
32851 (multiboot_uint16_t, multiboot_uint32_t, multiboot_uint64_t): New
32852 types. Update all users.
32853
32854 2009-12-25 Carles Pina i Estany <carles@pina.cat>
32855
32856 * commands/efi/loadbios.c: Capitalize acronyms, replace `could not' by
32857 `couldn't' and `can not' by `cannot'.
32858 * commands/i386/pc/drivemap.c: Likewise.
32859 * disk/ata.c: Likewise.
32860 * disk/ieee1275/nand.c: Likewise.
32861 * fs/affs.c: Likewise.
32862 * fs/fat.c: Likewise.
32863 * fs/hfs.c: Likewise.
32864 * fs/hfsplus.c: Likewise.
32865 * fs/iso9660.c: Likewise.
32866 * fs/jfs.c: Likewise.
32867 * fs/minix.c: Likewise.
32868 * fs/reiserfs.c: Likewise.
32869 * fs/sfs.c: Likewise.
32870 * fs/udf.c: Likewise.
32871 * fs/ufs.c: Likewise.
32872 * fs/xfs.c: Likewise.
32873 * loader/powerpc/ieee1275/linux.c: Likewise.
32874 * loader/sparc64/ieee1275/linux.c: Likewise.
32875 * util/grub-probe.c: Likewise.
32876 * util/misc.c: Likewise.
32877
32878 2009-12-24 Carles Pina i Estany <carles@pina.cat>
32879
32880 * bus/usb/usbhub.c: Fix capitalization, fullstop and newlines in
32881 grub_errno calls.
32882 * commands/acpi.c: Likewise.
32883 * commands/blocklist.c: Likewise.
32884 * commands/efi/loadbios.c: Likewise.
32885 * commands/i386/pc/drivemap.c: Likewise.
32886 * commands/loadenv.c: Likewise.
32887 * commands/memrw.c: Likewise.
32888 * commands/password.c: Likewise.
32889 * commands/videotest.c: Likewise.
32890 * disk/ata.c: Likewise.
32891 * disk/ata_pthru.c: Likewise.
32892 * disk/dmraid_nvidia.c: Likewise.
32893 * disk/ieee1275/nand.c: Likewise.
32894 * disk/ieee1275/ofdisk.c: Likewise.
32895 * disk/loopback.c: Likewise.
32896 * disk/lvm.c: Likewise.
32897 * disk/mdraid_linux.c: Likewise.
32898 * disk/raid.c: Likewise.
32899 * disk/raid6_recover.c: Likewise.
32900 * disk/scsi.c: Likewise.
32901 * efiemu/main.c: Likewise.
32902 * efiemu/mm.c: Likewise.
32903 * efiemu/pnvram.c: Likewise.
32904 * efiemu/symbols.c: Likewise.
32905 * font/font.c: Likewise.
32906 * fs/cpio.c: Likewise.
32907 * fs/hfsplus.c: Likewise.
32908 * fs/iso9660.c: Likewise.
32909 * fs/jfs.c: Likewise.
32910 * fs/minix.c: Likewise.
32911 * fs/ntfs.c: Likewise.
32912 * fs/ntfscomp.c: Likewise.
32913 * fs/reiserfs.c: Likewise.
32914 * fs/ufs.c: Likewise.
32915 * fs/xfs.c: Likewise.
32916 * gettext/gettext.c: Likewise.
32917 * include/grub/auth.h: Likewise.
32918 * kern/elf.c: Likewise.
32919 * kern/file.c: Likewise.
32920 * kern/ieee1275/init.c: Likewise.
32921 * kern/ieee1275/mmap.c: Likewise.
32922 * kern/ieee1275/openfw.c: Likewise.
32923 * kern/powerpc/dl.c: Likewise.
32924 * kern/sparc64/dl.c: Likewise.
32925 * lib/arg.c: Likewise.
32926 * loader/i386/bsd.c: Likewise.
32927 * loader/i386/bsdXX.c: Likewise.
32928 * loader/i386/efi/linux.c: Likewise.
32929 * loader/i386/efi/xnu.c: Likewise.
32930 * loader/i386/ieee1275/linux.c: Likewise.
32931 * loader/i386/linux.c: Likewise.
32932 * loader/i386/multiboot.c: Likewise.
32933 * loader/i386/pc/linux.c: Likewise.
32934 * loader/i386/pc/multiboot2.c: Likewise.
32935 * loader/i386/xnu.c: Likewise.
32936 * loader/ieee1275/multiboot2.c: Likewise.
32937 * loader/macho.c: Likewise.
32938 * loader/machoXX.c: Likewise.
32939 * loader/multiboot2.c: Likewise.
32940 * loader/multiboot_loader.c: Likewise.
32941 * loader/powerpc/ieee1275/linux.c: Likewise.
32942 * loader/sparc64/ieee1275/linux.c: Likewise.
32943 * loader/xnu.c: Likewise.
32944 * loader/xnu_resume.c: Likewise.
32945 * mmap/i386/pc/mmap.c: Likewise.
32946 * normal/menu_viewer.c: Likewise.
32947 * partmap/acorn.c: Likewise.
32948 * partmap/amiga.c: Likewise.
32949 * partmap/apple.c: Likewise.
32950 * script/lexer.c: Likewise.
32951 * term/gfxterm.c: Likewise.
32952 * term/i386/pc/serial.c: Likewise.
32953 * term/i386/pc/vga.c: Likewise.
32954 * term/ieee1275/ofconsole.c: Likewise.
32955 * term/terminfo.c: Likewise.
32956 * video/bitmap.c: Likewise.
32957 * video/efi_gop.c: Likewise.
32958 * video/efi_uga.c: Likewise.
32959 * video/fb/video_fb.c: Likewise.
32960 * video/i386/pc/vbe.c: Likewise.
32961 * video/readers/tga.c: Likewise.
32962 * video/video.c: Likewise.
32963
32964 2009-12-23 Felix Zielcke <fzielcke@z-51.de>
32965
32966 * commands/i386/pc/drivemap.c: Remove all trailing whitespace.
32967 * commands/lspci.c: Likewise.
32968 * commands/probe.c: Likewise.
32969 * commands/xnu_uuid.c: Likewise.
32970 * conf/i386-coreboot.rmk: Likewise.
32971 * conf/i386-efi.rmk: Likewise.
32972 * conf/i386-ieee1275.rmk: Likewise.
32973 * conf/i386-pc.rmk: Likewise.
32974 * conf/powerpc-ieee1275.rmk: Likewise.
32975 * conf/sparc64-ieee1275.rmk: Likewise.
32976 * conf/x86_64-efi.rmk: Likewise.
32977 * fs/i386/pc/pxe.c: Likewise.
32978 * gettext/gettext.c: Likewise.
32979 * include/grub/efi/graphics_output.h: Likewise.
32980 * include/grub/i386/pc/memory.h: Likewise.
32981 * kern/env.c: Likewise.
32982 * kern/i386/qemu/startup.S: Likewise.
32983 * lib/i386/pc/biosnum.c: Likewise.
32984 * lib/i386/relocator.c: Likewise.
32985 * lib/i386/relocator_asm.S: Likewise.
32986 * lib/relocator.c: Likewise.
32987 * loader/i386/bsd.c: Likewise.
32988 * loader/i386/multiboot.c: Likewise.
32989 * loader/i386/pc/chainloader.c: Likewise.
32990 * loader/i386/xnu.c: Likewise.
32991 * loader/xnu.c: Likewise.
32992 * normal/main.c: Likewise.
32993 * normal/menu_text.c: Likewise.
32994 * util/getroot.c: Likewise.
32995 * util/grub-mkconfig_lib.in: Likewise.
32996 * util/grub.d/00_header.in: Likewise.
32997 * util/i386/pc/grub-mkimage.c: Likewise.
32998 * util/mkisofs/eltorito.c: Likewise.
32999 * util/mkisofs/exclude.h: Likewise.
33000 * util/mkisofs/hash.c: Likewise.
33001 * util/mkisofs/iso9660.h: Likewise.
33002 * util/mkisofs/joliet.c: Likewise.
33003 * util/mkisofs/mkisofs.c: Likewise.
33004 * util/mkisofs/mkisofs.h: Likewise.
33005 * util/mkisofs/multi.c: Likewise.
33006 * util/mkisofs/name.c: Likewise.
33007 * util/mkisofs/rock.c: Likewise.
33008 * util/mkisofs/tree.c: Likewise.
33009 * util/mkisofs/write.c: Likewise.
33010 * video/efi_gop.c: Likewise.
33011
33012 2009-12-23 Vladimir Serbinenko <phcoder@gmail.com>
33013
33014 * video/efi_gop.c (grub_video_gop_get_bitmask): Fix off-by-one in mask
33015 size counting.
33016
33017 2009-12-22 Felix Zielcke <fzielcke@z-51.de>
33018
33019 * util/grub-mkrescue.in (pkglib_DATA): Set to @pkglib_DATA@.
33020 * genmk.rb (class SCRIPT): Modify the target file instead of source.
33021
33022 2009-12-22 Vladimir Serbinenko <phcoder@gmail.com>
33023
33024 * commands/memrw.c (grub_cmd_write): Support for mask parameter.
33025 (GRUB_MOD_INIT(memrw)): Update help line.
33026
33027 2009-12-22 Vladimir Serbinenko <phcoder@gmail.com>
33028
33029 * commands/memrw.c (cmd_read_byte, cmd_read_word, cmd_read_dword):
33030 Use grub_extcmd_t. All users updated.
33031 (options): New variable.
33032 (grub_cmd_read): Restructure for readability. Support "-v" option.
33033 (grub_cmd_write): Restructure for readability.
33034
33035 2009-12-22 Felix Zielcke <fzielcke@z-51.de>
33036
33037 * genmk.rb (class SCRIPT): Prepend #{src} path with $(srcdir).
33038
33039 2009-12-22 Felix Zielcke <fzielcke@z-51.de>
33040
33041 * genmk.rb (class SCRIPT): Use sed to substitute @pkglib_DATA@
33042 with the actual contents of the correspondending make variable.
33043 * util/grub-mkrescue.in (pkglib_DATA): New variable.
33044 (process_input_dir): Copy all $pkglib_DATA files instead of explicitly
33045 specifying `*.lst' and `efiemu??.o'
33046
33047 2009-12-22 Felix Zielcke <fzielcke@z-51.de>
33048
33049 * util/grub.d/30_os-prober.in (osx_entry): Add round brackets
33050 after function name.
33051 Noticed by Rene Engelhard <rene@debian.org>.
33052
33053 2009-12-22 Vladimir Serbinenko <phcoder@gmail.com>
33054
33055 * commands/lspci.c (grub_pci_classes): Add "USB Controller".
33056 (options): New variable.
33057 (iospace): Likewise.
33058 (grub_lspci_iter): List IO spaces if "-i" was given.
33059 (grub_cmd_lspci): Parse options.
33060 (GRUB_MOD_INIT(lspci)): Use extcmd.
33061 (GRUB_MOD_FINI(lspci)): Likewise.
33062
33063 2009-12-22 Felix Zielcke <fzielcke@z-51.de>
33064
33065 * util/grub.d/30_os-prober.in (osx_entry): Remove non POSIX compliant
33066 `function' keyword.
33067 Patch by Tony Mancill <tmancill@debian.org>.
33068
33069 2009-12-22 Vladimir Serbinenko <phcoder@gmail.com>
33070
33071 * bus/usb/uhci.c (grub_uhci_transfer): Set a limit transaction time.
33072 (grub_uhci_portstatus): Likewise.
33073 (grub_uhci_portstatus): Add necessary delay.
33074 * bus/usb/usbhub.c (grub_usb_hub_add_dev): Fix loop-break condition.
33075
33076 2009-12-21 Carles Pina i Estany <carles@pina.cat>
33077
33078 * commands/acpi.c (options): Fix capitalizations and/or full stops.
33079 (GRUB_MOD_INIT): Likewise.
33080 * commands/boot.c (GRUB_MOD_INIT): Likewise.
33081 * commands/cmp.c (grub_cmd_cmp): Improve the help message.
33082 * commands/echo.c (options): Fix capitalizations and/or full stops.
33083 * commands/efi/loadbios.c (enable_rom_area): Likewise.
33084 (enable_rom_area): Likewise.
33085 (GRUB_MOD_INIT): Likewise.
33086 * commands/gptsync.c (GRUB_MOD_INIT): Likewise.
33087 * commands/halt.c (GRUB_MOD_INIT): Improve the help message.
33088 * commands/handler.c (GRUB_MOD_INIT): Likewise.
33089 * commands/hdparm.c (options): Fix capitalizations and/or full stops.
33090 * commands/hexdump.c (options): Likewise.
33091 * commands/i386/cpuid.c (options): Likewise.
33092 (GRUB_MOD_INIT): Likewise.
33093 * commands/i386/pc/drivemap.c (options): Likewise.
33094 (GRUB_MOD_INIT): Likewise.
33095 * commands/i386/pc/halt (options): Likewise.
33096 (GRUB_MOD_INIT): Likewise.
33097 * commands/i386/pc/play.c (GRUB_MOD_INIT): Likewise.
33098 * commands/i386/pc/pxecmd.c (options): Likewise.
33099 * commands/i386/pc/vbetest.c (GRUB_MOD_INIT): Likewise.
33100 * commands/ieee1275/suspend.c (GRUB_MOD_INIT): Likewise.
33101 * commands/keystatus.c (options): Likewise.
33102 (GRUB_MOD_INIT): Likewise.
33103 * commands/loadenv.c (options): Likewise.
33104 * commands/ls.c (options): Likewise.
33105 * commands/lspci.c (GRUB_MOD_INIT): Likewise.
33106 * commands/memrw.c (GRUB_MOD_INIT): Likewise.
33107 * commands/minicmd.c (GRUB_MOD_INIT): Likewise.
33108 * commands/parttool.c (helpmsg): Likewise.
33109 * commands/probe.c (options): Likewise.
33110 * commands/read.c (GRUB_MOD_INIT): Likewise.
33111 * commands/reboot.c (GRUB_MOD_INIT): Likewise.
33112 * commands/search.c (options): Likewise.
33113 * commands/sleep.c (options): Likewise.
33114 * commands/test.c (GRUB_MOD_INIT): Likewise.
33115 * commands/true.c (GRUB_MOD_INIT): Likewise.
33116 * commands/usbtest.c (GRUB_MOD_INIT): Likewise.
33117 * commands/videotest.c (GRUB_MOD_INIT): Likewise.
33118 * lib/arg.c (help_options): Likewise.
33119 * Makefile.in ($(srcdir)/po/$(PACKAGE).pot): Pass -ctranslate to
33120 `$(XGETTEXT)'.
33121 * po/POTFILES: Add `commands/loadenv.c'.
33122
33123 2009-12-21 Felix Zielcke <fzielcke@z-51.de>
33124
33125 * util/grub-mkrescue.in (process_input_dir): Copy `*.lst' files
33126 instead of specifying them explicit.
33127
33128 2009-12-21 Robert Millan <rmh.grub@aybabtu.com>
33129
33130 * NEWS: Add grub-probe support for GNU/Hurd.
33131
33132 2009-12-21 Robert Millan <rmh.grub@aybabtu.com>
33133
33134 * NEWS: gettext was added after 1.97.
33135
33136 2009-12-21 Robert Millan <rmh.grub@aybabtu.com>
33137
33138 * util/mkisofs/msdos_partition.h: New file (based on
33139 include/grub/msdos_partition.h).
33140 * util/mkisofs/mkisofs.c (use_protective_msdos_label): New variable.
33141 (OPTION_PROTECTIVE_MSDOS_LABEL): New macro.
33142 (ld_options, main): Recognize --protective-msdos-label.
33143 * util/mkisofs/mkisofs.h (use_protective_msdos_label): New declaration.
33144 * util/mkisofs/write.c: Include `"msdos_partition.h"'.
33145 (padblock_write): If `use_protective_msdos_label' is set, patch a
33146 protective DOS-style label in the output image.
33147
33148 * util/grub-mkrescue.in: Use --protective-msdos-label.
33149
33150 2009-12-21 Robert Millan <rmh.grub@aybabtu.com>
33151
33152 * util/grub-mkrescue.in: Do not zero-pad image for BIOS-based disk
33153 boot.
33154
33155 2009-12-21 Robert Millan <rmh.grub@aybabtu.com>
33156
33157 * util/mkisofs/mkisofs.c (use_embedded_boot, boot_image_embed): New
33158 variables.
33159 (ld_options, main): Recognize `--embedded-boot'.
33160 * util/mkisofs/mkisofs.h (use_embedded_boot, boot_image_embed): New
33161 declarations.
33162 * util/mkisofs/write.c (PADBLOCK_SIZE): New variable.
33163 (padblock_size): Use `PADBLOCK_SIZE' instead of hardcoding 16.
33164 (padblock_write): Likewise. Rewrite to support embedded boot image.
33165
33166 * util/grub-mkrescue.in: When building i386-pc images, embed core.img
33167 for BIOS-based disk boot instead of only ElTorito.
33168
33169 2009-12-21 Robert Millan <rmh.grub@aybabtu.com>
33170
33171 * util/grub-mkrescue.in: Remove `configfile' and `sh' from i386-pc
33172 build (not needed for bootstrap).
33173
33174 2009-12-21 Robert Millan <rmh.grub@aybabtu.com>
33175
33176 * util/grub-mkrescue.in: Remove `memdisk', `tar' and `search' modules
33177 from i386-pc build (not needed for bootstrap).
33178 Rewrite a pair of strings.
33179
33180 2009-12-21 Robert Millan <rmh.grub@aybabtu.com>
33181
33182 * normal/main.c (grub_normal_reader_init): Set left margin back to 3.
33183
33184 2009-12-21 Vladimir Serbinenko <phcoder@gmail.com>
33185
33186 * video/i386/pc/vbe.c (grub_video_vbe_fini): Set 'last_set_mode'.
33187
33188 2009-12-21 Andreas Born <futur.andy@googlemail.com>
33189
33190 * kern/env.c (grub_env_context_open): Mark exported variable for
33191 reexport.
33192
33193 2009-12-21 Andreas Born <futur.andy@googlemail.com>
33194
33195 * kern/env.c (grub_env_export): Create nonexistent variables before
33196 exporting.
33197
33198 2009-12-20 Carles Pina i Estany <carles@pina.cat>
33199
33200 * include/grub/auth.h: Include `<grub/i18n.h>'.
33201 (GRUB_GET_PASSWORD): Gettextizze string.
33202 * include/grub/normal.h (STANDARD_MARGIN): New macro, moved from
33203 menu_text.c.
33204 (grub_utf8_to_ucs4_alloc): Fix indentation.
33205 (grub_print_ucs4): Likewise.
33206 (grub_getstringwidth): Likewise.
33207 (print_message_indented): New declaration.
33208 * normal/auth.c: Include `<grub/i18n.h>'.
33209 (grub_auth_check_authentication): Gettexttize string.
33210 * normal/cmdline.c: Include `<grub/i18n.h>'.
33211 (grub_cmdline_get): Gettextizze.
33212 * normal/color.c: Include `<grub/i18n.h>'.
33213 (grub_parse_color_name_pair): Gettexttize strings.
33214 * normal/main.c (grub_normal_reader_init): Cleanup gettexttized
33215 string (use `print_message_indented').
33216 * normal/menu_text.c (STANDARD_MARGIN): Moved from here to
33217 `include/grub/normal.h'.
33218 (print_message_indented): Renamed to ...
33219 (grub_print_message_indented): ... this. Remove `static' qualifer (now
33220 used in normal/main.c).
33221 (print_message): Use `grub_print_message_indented' instead of
33222 `print_message_indented'.
33223 (print_timeout): Likewise.
33224 * normal/misc.c: Include `<grub/term.h>' and `<grub/i18n.h>'.
33225 (grub_normal_print_device_info): Gettexttize strings.
33226 * po/POTFILES: Add `auth.c', `color.c' and `misc.c'.
33227
33228 2009-12-20 Vladimir Serbinenko <phcoder@gmail.com>
33229
33230 * kern/parser.c (grub_parser_split_cmdline): Fix incorrect counting
33231 of arguments. Return number of tokens and not arguments. All users
33232 updated.
33233
33234 2009-12-20 Vladimir Serbinenko <phcoder@gmail.com>
33235
33236 * util/i386/pc/grub-setup.c (setup): Don't install on non-GPT,
33237 non-MSDOS paritions.
33238
33239 2009-12-19 Vladimir Serbinenko <phcoder@gmail.com>
33240
33241 * include/grub/types.h (UNUSED): Removed since it conflicts with
33242 NetBSD headers. All users changed to direct __attribute__ ((unused)).
33243 Reported by Grégoire Sutre.
33244
33245 2009-12-19 Carles Pina i Estany <carles@pina.cat>
33246
33247 * include/grub/normal.h (grub_utf8_to_ucs4): New declaration.
33248 (grub_print_ucs4_alloc): Likewise.
33249 (grub_getstringwidth): Likewise.
33250 * normal/main.c (grub_normal_init_page): Gettextize version string.
33251 * normal/menu_text.c (grub_utf8_to_ucs4_alloc): New definition.
33252 (getstringwidth): Renamed to ...
33253 (grub_getstringwidth): ... this. Remove `static' qualifier (now used
33254 in normal/main.c). Use `grub_utf8_to_ucs4_alloc'.
33255 (grub_print_ucs4): Remove `static' qualifer (now used in
33256 normal/main.c).
33257 * po/POTFILES: Add normal/main.c.
33258
33259 2009-12-19 Carles Pina i Estany <carles@pina.cat>
33260
33261 * normal/menu_text.c (STANDARD_MARGIN): New macro.
33262 (print_message_indented): Add `margin_left' and `margin_right'
33263 parameters.
33264 (print_message): Update `print_message_indented' calls. Adds '\n' to the
33265 strings.
33266 (print_timeout): Use `print_message_indented' to print the message.
33267 Deletes `second_stage' parameter.
33268 (run_menu): Update `print_timeout' calls.
33269
33270 2009-12-18 Vladimir Serbinenko <phcoder@gmail.com>
33271
33272 Fix console palette on OpenFirmware.
33273
33274 * term/ieee1275/ofconsole.c (MAX): Removed.
33275 (colors): Redone based on VGA palette.
33276 (grub_ofconsole_setcolor): Discard brightness bit since only 8
33277 colors are supported.
33278 (grub_ofconsole_init_output): Use ARRAY_SIZE instead of hardcoded size.
33279
33280 2009-12-18 Vladimir Serbinenko <phcoder@gmail.com>
33281
33282 Fix potential EfiEmu double prepare.
33283
33284 * efiemu/main.c (prepared): New variable
33285 (grub_efiemu_unload): Set prepare to '0'.
33286 (grub_efiemu_prepare): Return if already prepared. Set prepared.
33287
33288 set_virtual_address_map support.
33289
33290 * include/grub/efi/efi.h (grub_efi_set_virtual_address_map): New
33291 prototype.
33292 * include/grub/efiemu/efiemu.h (grub_efiemu_write_sym_markers): New
33293 prototype.
33294 (grub_efiemu_crc32): Likewise.
33295 (grub_efiemu_crc64): Likewise.
33296 (grub_efiemu_set_virtual_address_map): Likewise.
33297 * include/grub/autoefi.h (grub_autoefi_exit_boot_services):
33298 New definition.
33299 (grub_autoefi_set_virtual_address_map): Likewise.
33300 * kern/efi/efi.c (grub_efi_set_virtual_address_map): New function.
33301 * loader/i386/xnu.c (grub_xnu_boot): Call set_virtual_address_map.
33302 Restructure flow to accomodate it.
33303 * efiemu/prepare.c (grub_efiemu_prepare): Support set_virtual_address_map.
33304 (grub_efiemu_crc): Recompute CRC32.
33305 * efiemu/runtime/efiemu.c (ptv_relocated): Renamed to ...
33306 (efiemu_ptv_relocated): ... this. Made global. All users updated.
33307 * efiemu/symbols.c (relocated_handle): New variable.
33308 (grub_efiemu_free_syms): Free relocated_handle.
33309 (grub_efiemu_alloc_syms): Allocate relocated_handle.
33310 (grub_efiemu_write_sym_markers): New function.
33311 (grub_efiemu_set_virtual_address_map): Likewise.
33312
33313 Newer XNU parameters.
33314
33315 * include/grub/i386/xnu.h (GRUB_XNU_BOOTARGS_VERMINOR): Change to 5.
33316 * include/grub/xnu.h (grub_xnu_extheader): Add nameaddr and namesize.
33317 (grub_xnu_fill_devicetree): New prototype.
33318 (grub_xnu_heap_real_start): New variable.
33319 * loader/xnu.c (get_name_ptr): New function.
33320 (grub_xnu_load_driver): Fill namelen and name.
33321
33322 64-bit xnu support.
33323
33324 * conf/i386-efi.rmk (xnu_mod_SOURCES): Add 'loader/macho32.c'
33325 and 'loader/macho64.c'.
33326 * conf/i386-pc.rmk: Likewise.
33327 * conf/x86_64-efi.rmk: Likewise.
33328 * include/grub/i386/macho.h (grub_macho_thread64): New structure.
33329 * include/grub/xnu.h (grub_xnu_is_64bit): New variable.
33330 * include/grub/macho.h (grub_macho_segment64): New structure.
33331 * include/grub/machoload.h (grub_macho32_size): Renamed from ...
33332 (grub_macho_size32): ... to this.
33333 (grub_macho32_get_entry_point): Renamed from ...
33334 (grub_macho_get_entry_point32): ... to this.
33335 (grub_macho_contains_macho64): New prototype.
33336 (grub_macho_size64): Likewise.
33337 (grub_macho_get_entry_point64): Likewise.
33338 (grub_macho32_load): Renamed from ...
33339 (grub_macho_load32): ... to this.
33340 (grub_macho32_filesize): Renamed from ...
33341 (grub_macho_filesize32): ... to this.
33342 (grub_macho32_readfile): Renamed from ...
33343 (grub_macho_readfile32): ... to this.
33344 (grub_macho_filesize64): New prototype.
33345 (grub_macho_readfile64): Likewise.
33346 (grub_macho_parse32): Likewise.
33347 (grub_macho_parse64): Likewise.
33348 * loader/macho.c: Split into ...
33349 * loader/machoXX.c: ... and this. Replace 32 with XX.
33350 * loader/macho32.c: New file.
33351 * loader/macho64.c: Likewise.
33352 * loader/xnu.c (grub_xnu_is_64bit): New variable.
33353 (grub_cmd_xnu_kernel): Make 32-bit only.
33354 (grub_cmd_xnu_kernel64): New function.
33355 (grub_xnu_load_driver): Support Mach-O 64.
33356 (grub_cmd_xnu_mkext): Likewise.
33357 * util/grub.d/30_os-prober.in (osx_entry): New function.
33358 Generate entries for 64-bit boot too.
33359
33360 Eliminate ad-hoc tree format in XNU and EfiEmu.
33361
33362 * efiemu/main.c (grub_efiemu_prepare): Update comment.
33363 * efiemu/pnvram.c: Rewritten to use environment variables.
33364 All users updated.
33365
33366 Inline utf16_to_utf8.
33367
33368 * kern/misc.c (grub_utf16_to_utf8): Move from here ...
33369 * include/grub/charset.h (grub_utf16_to_utf8): ... to here. Inlined.
33370 All users updated.
33371 * include/grub/misc.h (grub_utf16_to_utf8): Removed.
33372
33373 * bus/usb/usb.c (grub_usb_get_string): Move from here ...
33374 * commands/usbtest.c (grub_usb_get_string): ... move here.
33375 (usb_print_str): Fix error handling.
33376 * include/grub/usb.h (grub_usb_get_string): Remove.
33377
33378 UTF-8 to UTF-16 transformation.
33379
33380 * conf/common.rmk (pkglib_MODULES): Add charset.mod
33381 (charset_mod_SOURCES): New variable.
33382 (charset_mod_CFLAGS): Likewise.
33383 (charset_mod_LDFLAGS): Likewise.
33384 * include/grub/utf.h: New file.
33385 * lib/utf.c: New file. (Based on grub_utf8_to_ucs4 from kern/misc.c)
33386
33387 Support for device properties.
33388
33389 * include/grub/i386/xnu.h (grub_xnu_devprop_header): New structure.
33390 (grub_xnu_devprop_device_header): Likewise.
33391 (grub_xnu_devprop_device_descriptor): Likewise.
33392 (grub_xnu_devprop_add_device): New prototype.
33393 (grub_xnu_devprop_remove_device): Likewise.
33394 (grub_xnu_devprop_remove_property): Likewise.
33395 (grub_xnu_devprop_add_property_utf8): Likewise.
33396 (grub_xnu_devprop_add_property_utf16): Likewise.
33397 (grub_cpu_xnu_init): Likewise.
33398 (grub_cpu_xnu_fini): Likewise.
33399 (grub_cpu_xnu_unload): Likewise.
33400 * loader/i386/xnu.c (grub_xnu_devprop_device_descriptor): New structure.
33401 (property_descriptor): Likewise.
33402 (devices): New variable.
33403 (grub_xnu_devprop_remove_property): New function.
33404 (grub_xnu_devprop_add_device): Likewise.
33405 (grub_xnu_devprop_remove_device): Likewise.
33406 (grub_xnu_devprop_add_property): Likewise.
33407 (grub_xnu_devprop_add_property_utf8): Likewise.
33408 (grub_xnu_devprop_add_property_utf16): Likewise.
33409 (hextoval): Likewise.
33410 (grub_cpu_xnu_fill_devprop): Likewise.
33411 (grub_cmd_devprop_load): Likewise.
33412 (grub_xnu_boot): Call grub_cpu_xnu_fill_devprop,
33413 grub_xnu_fill_devicetree, grub_xnu_fill_devicetree
33414 (cmd_devprop_load): New variable.
33415 (grub_cpu_xnu_init): New function.
33416 (grub_cpu_xnu_fini): Likewise.
33417 * loader/i386/xnu.c (grub_xnu_unload): Call grub_cpu_xnu_unload.
33418 * loader/xnu.c (grub_xnu_parse_devtree): Remove.
33419 (grub_cmd_xnu_devtree): Likewise.
33420 (hextoval): New function.
33421 (unescape): Likewise.
33422 (grub_xnu_fill_devicetree): Likewise.
33423
33424 * util/grub.d/30_os-prober.in: Load devprop.bin. Don't load devtree.txt.
33425 * util/i386/efi/grub-dumpdevtree: Generate devprop.bin.
33426
33427 2009-12-18 Vladimir Serbinenko <phcoder@gmail.com>
33428
33429 Workaround for broken ATI VBE.
33430
33431 * video/i386/pc/vbe.c (last_set_mode): New variable.
33432 (grub_vbe_set_video_mode): Set 'last_set_mode'.
33433 (grub_vbe_get_video_mode): Use 'last_set_mode' if get_mode fails.
33434 (grub_video_vbe_setup): Don't check for reserved flag.
33435
33436 2009-12-17 Felix Zielcke <fzielcke@z-51.de>
33437
33438 * gendistlist.sh: Use POSIX compliant `!' instead of `-not' in
33439 the `find' command.
33440
33441 2009-12-16 Vladimir Serbinenko <phcoder@gmail.com>
33442
33443 UUID support for HFS.
33444
33445 * fs/hfs.c (grub_hfs_uuid): New function.
33446 (grub_hfs_fs): New value .uuid.
33447 * include/grub/hfs.h (grub_hfs_sblock): New field 'num_serial'.
33448
33449 2009-12-14 Felix Zielcke <fzielcke@z-51.de>
33450
33451 Fix a segfault with parsing unknown long options.
33452
33453 * util/grub-mkrelpath.c (options): Zero terminate it.
33454
33455 2009-12-13 Carles Pina i Estany <carles@pina.cat>
33456
33457 * include/grub/misc.h (grub_puts): New declaration.
33458 (grub_puts_): Likewise.
33459 * kern/misc.c (grub_puts): New definition.
33460 (grub_puts_): Likewise.
33461
33462 2009-12-13 Robert Millan <rmh.grub@aybabtu.com>
33463
33464 * util/grub-probe.c (probe): Improve error message.
33465
33466 2009-12-13 Robert Millan <rmh.grub@aybabtu.com>
33467
33468 * loader/i386/multiboot_elfxx.c
33469 (CONCAT(grub_multiboot_load_elf, XX)): Fix `grub_multiboot_payload_eip'
33470 initialization.
33471
33472 2009-12-13 Vladimir Serbinenko <phcoder@gmail.com>
33473
33474 Relocator framework
33475
33476 * loader/i386/xnu_helper.S: Removed. All users updated.
33477 * conf/i386.rmk (pkglib_MODULES): Add relocator.mod.
33478 (relocator_mod_SOURCES): New variable.
33479 (relocator_mod_CFLAGS): Likewise.
33480 (relocator_mod_LDFLAGS): Likewise.
33481 (relocator_mod_ASFLAGS): Likewise.
33482 * conf/x86_64.rmk: Likewise.
33483 * include/grub/i386/multiboot.h (grub_multiboot_payload_orig): Removed.
33484 (grub_multiboot_payload_entry_offset): Likewise.
33485 (grub_multiboot_forward_relocator): Likewise.
33486 (grub_multiboot_forward_relocator_end): Likewise.
33487 (grub_multiboot_backward_relocator): Likewise.
33488 (grub_multiboot_backward_relocator_end): Likewise.
33489 (grub_multiboot_payload_eip): New variable.
33490 (grub_multiboot_payload_orig): Likewise.
33491 * include/grub/i386/pc/memory.h: Include grub/i386/memory.h.
33492 (GRUB_MEMORY_MACHINE_CR0_PE_ON): Move from here ...
33493 * include/grub/i386/memory.h
33494 (GRUB_MEMORY_CPU_CR0_PE_ON): ... to here
33495 (GRUB_MEMORY_CPU_CR4_PAE_ON): New definition.
33496 (GRUB_MEMORY_CPU_CR0_PAGING_ON): Likewise.
33497 (GRUB_MEMORY_CPU_AMD64_MSR): Likewise.
33498 (GRUB_MEMORY_CPU_AMD64_MSR_ON): Likewise.
33499 * include/grub/i386/relocator.h: New file.
33500 * include/grub/x86_64/relocator.h: Likewise.
33501 * include/grub/i386/xnu.h: Include grub/cpu/relocator.h.
33502 (XNU_RELOCATOR): New macro.
33503 (grub_xnu_launcher_start): Remove.
33504 (grub_xnu_launcher_end): Likewise.
33505 * include/grub/xnu.h (grub_xnu_boot_resume): New prototype.
33506 (grub_xnu_heap_real_start): Remove.
33507 (grub_xnu_heap_start): Change to void *. All users updated.
33508 * kern/i386/realmode.S (real_to_prot): Use GRUB_MEMORY_CPU_CR0_PE_ON.
33509 * lib/i386/relocator.c: New file.
33510 * lib/i386/relocator_asm.S: Likewise.
33511 * lib/i386/relocator_backward.S: Likewise.
33512 * lib/mips/relocator.c: Likewise.
33513 * lib/mips/relocator_asm.S: Likewise.
33514 * lib/relocator.c: Likewise.
33515 * loader/i386/multiboot.c: Include grub/i386/relocator.h.
33516 (entry): Removed.
33517 (playground): Likewise.
33518 (grub_multiboot_payload_orig): New variable.
33519 (grub_multiboot_payload_dest): Likewise.
33520 (grub_multiboot_payload_size): Likewise.
33521 (grub_multiboot_payload_eip): Likewise.
33522 (grub_multiboot_payload_esp): Likewise.
33523 (grub_multiboot_boot): Use grub_relocator32_boot.
33524 (grub_multiboot_unload): Free relocators.
33525 (grub_multiboot): Setup stack. Use relocators.
33526 * loader/i386/multiboot_elfxx.c: Include grub/i386/relocator.h.
33527 (grub_multiboot_load_elfXX): Use relocators.
33528 * loader/i386/multiboot_helper.S (grub_multiboot_payload_orig): Removed.
33529 (grub_multiboot_payload_size): Likewise.
33530 (grub_multiboot_payload_dest): Likewise.
33531 (grub_multiboot_payload_entry_offset): Likewise.
33532 (grub_multiboot_forward_relocator): Likewise.
33533 (grub_multiboot_backward_relocator): Likewise.
33534 (grub_multiboot_real_boot): Likewise.
33535 * loader/i386/xnu.c (grub_xnu_heap_will_be_at): New variable.
33536 (grub_xnu_entry_point): Likewise.
33537 (grub_xnu_arg1): Likewise.
33538 (grub_xnu_stack): Likewise.
33539 (grub_xnu_launch): Removed.
33540 (grub_xnu_boot_resume): New function.
33541 (grub_xnu_boot): Use relocators.
33542 * loader/i386/xnu_helper.S: Removed.
33543 * loader/xnu.c (grub_xnu_heap_start): New variable.
33544 (grub_xnu_heap_size): Likewise.
33545 (grub_xnu_heap_malloc): Use relocators.
33546 * loader/xnu_resume.c (grub_xnu_resume): Use relocators.
33547
33548 2009-12-13 Vladimir Serbinenko <phcoder@gmail.com>
33549
33550 * kern/i386/pc/startup.S (multiboot_entry): Setup stack before calling
33551 anything.
33552
33553 2009-12-13 Carles Pina i Estany <carles@pina.cat>
33554
33555 * script/execute.c (grub_script_execute_cmdline): Set grub_errno to
33556 GRUB_ERR_NONE before calling grub_env_set.
33557
33558 2009-12-12 Robert Millan <rmh@aybabtu.com>
33559
33560 * gendistlist.sh (EXTRA_DISTFILES): Add `genvideolist.sh'.
33561 * genmk.rb (video): New variable.
33562 (CLEANFILES, VIDEOFILES): Add #{video}.
33563 (#{video}): New target rule.
33564 * genvideolist.sh: New file.
33565 * Makefile.in (pkglib_DATA): Add video.lst.
33566 (video.lst): New target rule.
33567 * util/grub-mkconfig.in: Initialize ${GRUB_VIDEO_BACKEND} using
33568 `video.lst'.
33569 * util/grub.d/30_os-prober.in: Replace `vbe' with
33570 ${GRUB_VIDEO_BACKEND}.
33571
33572 2009-12-11 Robert Millan <rmh.grub@aybabtu.com>
33573
33574 * THANKS: Add David Miller.
33575
33576 2009-12-11 Vladimir Serbinenko <phcoder@gmail.com>
33577
33578 libpciaccess support.
33579
33580 * Makefile.in (LIBPCIACCESS): New variable.
33581 (enable_grub_emu_pci): Likewise.
33582 * conf/any-emu.rmk (grub_emu_SOURCES) [enable_grub_emu_pci]: Add
33583 util/pci.c and commands/lspci.c.
33584 (grub_emu_LDFLAGS) [enable_grub_emu_pci]: Add $(LIBPCIACCESS).
33585 * configure.ac (grub-emu-pci): New option.
33586 * include/grub/i386/pci.h (grub_pci_device_map_range): New function.
33587 (grub_pci_device_unmap_range): Likewise.
33588 * include/grub/pci.h [GRUB_UTIL]: Include grub/pciutils.h.
33589 (grub_pci_device) [!GRUB_UTIL]: New structure. All users updated.
33590 (grub_pci_address_t) [!GRUB_UTIL]: New type.
33591 (grub_pci_device_t) [!GRUB_UTIL]: Likewise.
33592 (grub_pci_get_bus) [!GRUB_UTIL]: New function.
33593 (grub_pci_get_device) [!GRUB_UTIL]: Likewise.
33594 (grub_pci_get_function) [!GRUB_UTIL]: Likewise.
33595 * include/grub/pciutils.h: New file.
33596 * util/pci.c: Likewise.
33597
33598 2009-12-11 Felix Zielcke <fzielcke@z-51.de>
33599
33600 * util/misc.c: Don't include <errno.h> twice.
33601
33602 2009-12-10 Felix Zielcke <fzielcke@z-51.de>
33603
33604 * disk/i386/pc/biosdisk.c (grub_biosdisk_open): Show the disk
33605 name in an error message.
33606 (grub_biosdisk_rw): Likewise.
33607
33608 2009-12-10 Vladimir Serbinenko <phcoder@gmail.com>
33609
33610 Eliminate NTFS 4Gib barrier.
33611
33612 * fs/ntfs.c (read_attr): Use grub_disk_addr_t and grub_size_t.
33613 (read_run_data): Likewise.
33614 (grub_ntfs_read_run_list): Likewise.
33615 (grub_ntfs_read_block): Likewise.
33616 (grub_ntfs_iterate_dir): Likewise.
33617 (read_mft): Likewise.
33618 (read_data): Likewise.
33619 Use COM_LOG_LEN.
33620 * fs/ntfscomp.c (read_block): Cast ctx->target_vcn & 0xF to unsigned
33621 to avoid 64-bit division
33622 * include/grub/ntfs.h (COM_LOG_LEN): New definition.
33623 (grub_ntfs_rlst): Use grub_disk_addr_t.
33624
33625 2009-12-10 Vladimir Serbinenko <phcoder@gmail.com>
33626
33627 Eliminate grub-fstest 4Gib barrier.
33628
33629 * util/grub-fstest.c (skip, leng): Use grub_disk_addr_t.
33630 (read_file): Fix error reporting.
33631
33632 2009-12-10 Vladimir Serbinenko <phcoder@gmail.com>
33633
33634 Eliminate hexdump 4Gib barrier.
33635
33636 * commands/hexdump.c (grub_cmd_hexdump): Use grub_disk_addr_t.
33637 * lib/arg.c (grub_arg_parse): Use grub_strtoull.
33638
33639 2009-12-10 Vladimir Serbinenko <phcoder@gmail.com>
33640
33641 * kern/device.c (grub_device_iterate): Ignore errors during first scan.
33642 Fixes amarsh bug.
33643
33644 2009-12-09 Bruce Dubbs <bruce.dubbs@gmail.com>
33645
33646 Remove miscellaneous files in distclean target.
33647
33648 * Makefile.in: Remove docs/{grub.info,version.texi,stamp-vti}
33649
33650 2009-12-09 Colin Watson <cjwatson@ubuntu.com>
33651
33652 * util/grub-mkconfig_lib.in: Don't set grub_probe or grub_mkrelpath
33653 if they're already set. This resolves the conflict between my
33654 grub-install change on 2009-10-06 and Felix' change on 2009-11-11,
33655 fixing the --grub-probe option again.
33656 * util/sparc64/ieee1275/grub-install.in: Revert the last piece of my
33657 change on 2009-10-06, so that we now once again source
33658 `${libdir}/grub/grub-mkconfig_lib' after options have been parsed.
33659
33660 2009-12-08 Robert Millan <rmh.grub@aybabtu.com>
33661
33662 * conf/common.rmk [sparc64-ieee1275] (grub_mkdevicemap_SOURCES): Use
33663 `util/ieee1275/ofpath.c' and `util/ieee1275/devicemap.c' instead of
33664 `util/devicemap.c'.
33665
33666 2009-12-08 Carles Pina i Estany <carles@pina.cat>
33667
33668 * include/grub/misc.h (grub_printf_): New declaration.
33669 * kern/misc.c (grub_printf_): New definition.
33670 * normal/main.c (grub_normal_reader_init): Use `grub_printf_' and `N_'
33671 instead of `grub_printf' and `_'.
33672 * normal/menu_entry.c (store_completion): Likewise.
33673 (run): Likewise.
33674 (grub_menu_entry_run): Likewise.
33675 * normal/menu_text.c (grub_wait_after_message): Likewise.
33676 (notify_booting): Likewise.
33677 (notify_fallback): Likewise.
33678 (notify_execution_failure): Likewise.
33679
33680 2009-12-07 Colin Watson <cjwatson@ubuntu.com>
33681
33682 * configure.ac: Check for vasprintf.
33683 * util/misc.c (asprintf): Move allocation from here ...
33684 (vasprintf): ... to here. New function.
33685 (xasprintf): New function.
33686 * include/grub/util/misc.h (vasprintf, xasprintf): Add
33687 prototypes.
33688 * util/getroot.c (grub_util_get_grub_dev): Use xasprintf.
33689 * util/grub-mkfont.c (write_font): Likewise.
33690 * util/grub-probe.c (probe): Likewise.
33691 * util/hostdisk.c (make_device_name): Likewise.
33692
33693 2009-12-06 David S. Miller <davem@sunset.davemloft.net>
33694
33695 * disk/ieee1275/ofdisk.c (grub_ofdisk_iterate): Recognize
33696 anything even prefixed with 'cdrom' as a cdrom.
33697
33698 2009-12-06 Felix Zielcke <fzielcke@z-51.de>
33699
33700 * util/misc.c (make_system_path_relative_to_its_root): Correctly cope with
33701 mount points.
33702
33703 2009-12-05 Carles Pina i Estany <carles@pina.cat>
33704
33705 * gettext/gettext.c: Include `<grub/list.h>'. Define grub_gettext_msg,
33706 grub_gettext_msg_list.
33707 (grub_gettext_gettranslation_from_position): Return const char *
33708 and not char *.
33709 (grub_gettext_translate): Add the translated strings into a list,
33710 returns from the list if existing there.
33711 (grub_gettext_init_ext): Add \n at the end of grub_dprintf string.
33712 (grub_gettext_delete_list): Delete the list.
33713 (grub_gettext_env_write_lang): Call grub_gettext_delete_list when
33714 lang environment variable is changed.
33715 (GRUB_MOD_FINI): Call grub_gettext_delete_list.
33716
33717 2009-12-05 Vladimir Serbinenko <phcoder@gmail.com>
33718
33719 Rename kernel.mod to kernel.img.
33720
33721 * conf/i386-efi.rmk (pkglib_MODULES): Change kernel.mod to kernel.img.
33722 (kernel_mod_EXPORTS): Rename to ...
33723 (kernel_img_EXPORTS): ... this.
33724 (kernel_mod_SOURCES): Rename to ...
33725 (kernel_img_SOURCES): ... this.
33726 (kernel_mod_HEADERS): Rename to ...
33727 (kernel_img_HEADERS): ... this. All users updated.
33728 (kernel_mod_CFLAGS): Rename to ...
33729 (kernel_img_CFLAGS): ... this.
33730 (kernel_mod_ASFLAGS): Rename to ...
33731 (kernel_img_ASFLAGS): ... this.
33732 (kernel_mod_LDFLAGS): Rename to ...
33733 (kernel_img_LDFLAGS): ... this.
33734 * conf/x86_64-efi.rmk: Likewise.
33735 * util/i386/efi/grub-mkimage.c (read_kernel_module): Rename to ...
33736 (read_kernel_image): ... this. All users updated.
33737 (read_kernel_image): Read "kernel.img" instead of "kernel.mod".
33738
33739 2009-12-05 Carles Pina i Estany <carles@pina.cat>
33740
33741 * normal/menu_text.c (grub_color_menu_high): Gettexttize string.
33742 (print_spaces): New function.
33743 (grub_print_ucs4): New function.
33744 (getstringwidth): New function.
33745 (print_message_indented): New function.
33746 (print_message): Gettexttize strings using print_message_indented.
33747 (run_menu): Replaces grub_printf by print_spaces and dynamic terminal
33748 width.
33749 (get_entry_number): Gettextize and uses dynamic terminal width.
33750 (notify_booting, notify_fallback, notify_execution_failure):
33751 Gettextize.
33752 * normal/menu_entry.c (store_completion): Cleanup the gettextized
33753 string.
33754 (run): Likewise.
33755 (grub_menu_entry_run): Likewise.
33756 * PO/POTFILES: Add normal/menu_entry.c.
33757
33758 2009-12-05 Vladimir Serbinenko <phcoder@gmail.com>
33759
33760 * configure.ac (TARGET_ASFLAGS): Add "-D<MACHINE>".
33761
33762 2009-12-05 Carles Pina i Estany <carles@pina.cat>
33763
33764 * util/grub-install.in: Install gettext .mo files.
33765 * util/grub-mkrescue.in (process_input_dir): Copy gettext .mo files.
33766
33767 2009-12-05 Carles Pina i Estany <carles@pina.cat>
33768
33769 * gettext/gettext.c (grub_gettext_init_ext): Replace grub_printf with
33770 grub_dprintf.
33771
33772 2009-12-05 Robert Millan <rmh.grub@aybabtu.com>
33773
33774 * kern/ieee1275/openfw.c (grub_reboot): Disable for i386. The
33775 non-firmware-dependant one in realmode.S takes precedence.
33776
33777 2009-12-04 Robert Millan <rmh.grub@aybabtu.com>
33778
33779 * commands/halt.c: Replace misc arch-specific headers with
33780 `<grub/misc.h>'.
33781 * commands/reboot.c: Likewise.
33782 * commands/i386/pc/halt.c: Replace `<grub/machine/init.h>' with
33783 `<grub/misc.h>'.
33784 * conf/i386-coreboot.rmk (kernel_img_HEADERS): Remove `cpu/reboot.h'.
33785 (halt_mod_SOURCES): Move `kern/i386/halt.c' from here ...
33786 (kernel_img_SOURCES): ... to here.
33787
33788 * include/grub/efi/efi.h (grub_reboot, grub_halt): Remove prototypes.
33789 * include/grub/i386/pc/init.h: Likewise.
33790 * include/grub/powerpc/ieee1275/kernel.h: Likewise.
33791 * include/grub/sparc64/ieee1275/kernel.h: Likewise.
33792
33793 * include/grub/misc.h (grub_reboot, grub_halt): New prototypes.
33794
33795 * include/grub/i386/halt.h: Remove.
33796 * include/grub/i386/reboot.h: Likewise.
33797
33798 * kern/i386/halt.c: Remove `<grub/cpu/halt.h>'.
33799
33800 2009-12-03 David S. Miller <davem@sunset.davemloft.net>
33801
33802 * conf/sparc64-ieee1275.rmk (grub_mkimage_SOURCES,
33803 grub_setup_SOURCES, grub_ofpathname_SOURCES): Add gnulib/progname.c
33804 * util/sparc64/ieee1275/grub-mkimage.c: Include <grub/i18n.h> and
33805 "progname.h"
33806 * util/sparc64/ieee1275/grub-ofpathname.c: Likewise.
33807 * util/sparc64/ieee1275/grub-setup.c: Likewise.
33808 (usage): Add missing comma in printf.
33809
33810 2009-12-02 Robert Millan <rmh.grub@aybabtu.com>
33811
33812 Use the same reboot approach on i386 coreboot and qemu as we do on
33813 BIOS.
33814
33815 * conf/i386-coreboot.rmk (kernel_img_HEADERS): Add `cpu/reboot.h'.
33816 (reboot_mod_SOURCES): Remove `kern/i386/reboot.c'.
33817 * kern/i386/reboot.c: Remove.
33818 * include/grub/i386/reboot.h (grub_reboot): Export function.
33819 * kern/i386/pc/startup.S (grub_reboot): Move from here ...
33820 * kern/i386/realmode.S (grub_reboot): ... to here. Jump to
33821 0xf000:0xfff0 instead of 0xffff:0x0000.
33822 [!GRUB_MACHINE_PCBIOS] (prot_to_real): Do not restore interrupts.
33823 * kern/i386/qemu/startup.S: Include `"../realmode.S"'.
33824
33825 2009-11-30 Robert Millan <rmh.grub@aybabtu.com>
33826
33827 Fix $srcdir != $objdir build.
33828
33829 * Makefile.in (po/%.po): Rewrite as ...
33830 ($(foreach lang, $(LINGUAS), $(srcdir)/po/$(lang).po)): ... this.
33831
33832 2009-11-29 Samuel Thibault <samuel.thibault@ens-lyon.org>
33833
33834 Fix GNU/Hurd grub-install crash.
33835 * util/grub-probe.c (probe): Try to access `path' only when it is not
33836 NULL.
33837
33838 2009-11-28 Vladimir Serbinenko <phcoder@gmail.com>
33839
33840 Correct module naming.
33841
33842 * video/efi_uga.c (GRUB_MOD_INIT(efi_fb)): Renamed from this ...
33843 (GRUB_MOD_INIT(efi_uga)): ... to this
33844 (GRUB_MOD_FINI(efi_fb)): Renamed from this ...
33845 (GRUB_MOD_FINI(efi_uga)): ... to this
33846 * video/efi_gop.c (GRUB_MOD_INIT(efi_fb)): Renamed from this ...
33847 (GRUB_MOD_INIT(efi_gop)): ... to this
33848 (GRUB_MOD_FINI(efi_fb)): Renamed from this ...
33849 (GRUB_MOD_FINI(efi_gop)): ... to this
33850
33851 2009-11-28 Robert Millan <rmh.grub@aybabtu.com>
33852
33853 * util/mkisofs/mkisofs.c (ld_options): Mark all `arg' strings as
33854 translatable.
33855 (usage): Translate `arg' strings using gettext().
33856 Thanks to Jordi Mallach for the suggestion.
33857
33858 2009-11-28 Vladimir Serbinenko <phcoder@gmail.com>
33859
33860 GOP support. Based on patch from Bean
33861 (http://lists.gnu.org/archive/html/grub-devel/2009-08/msg00384.html)
33862
33863 * video/efi_gop.c: New file.
33864 * include/grub/efi/graphics_output.h: Likewise.
33865 * conf/i386-efi.rmk (pkglib_MODULES): Add `efi_gop.mod'.
33866 (efi_fb_mod_SOURCES, efi_fb_mod_CFLAGS, efi_fb_mod_LDFLAGS): New
33867 variables.
33868 * conf/x86_64-efi.rmk: Likewise.
33869
33870 2009-11-28 Vladimir Serbinenko <phcoder@gmail.com>
33871
33872 Rename efi_fb to efi_uga.
33873
33874 * conf/i386-efi.rmk (pkglib_MODULES): Rename 'efi_fb.mod' to
33875 'efi_uga.mod'.
33876 (efi_fb_mod_SOURCES): Rename this ...
33877 (efi_uga_mod_SOURCES): ... to this.
33878 (efi_fb_mod_CFLAGS): Rename this ...
33879 (efi_uga_mod_CFLAGS): ... to this.
33880 (efi_fb_mod_LDFLAGS): Rename this ...
33881 (efi_uga_mod_LDFLAGS): ... to this.
33882 * conf/x86_64-efi.rmk (pkglib_MODULES): Rename 'efi_fb.mod' to
33883 'efi_uga.mod'.
33884 (efi_fb_mod_SOURCES): Rename this ...
33885 (efi_uga_mod_SOURCES): ... to this.
33886 (efi_fb_mod_CFLAGS): Rename this ...
33887 (efi_uga_mod_CFLAGS): ... to this.
33888 (efi_fb_mod_LDFLAGS): Rename this ...
33889 (efi_uga_mod_LDFLAGS): ... to this.
33890 * video/efi_fb.c: Move this ...
33891 * video/efi_uga.c: ... to this. Change prefix to 'grub_video_uga_'.
33892
33893 2009-11-27 Robert Millan <rmh.grub@aybabtu.com>
33894
33895 * po/README: New file. Explain our PO file workflow.
33896
33897 2009-11-27 Robert Millan <rmh.grub@aybabtu.com>
33898
33899 * po/ChangeLog: Remove. Move relevant entries back to ...
33900 * ChangeLog: ... here.
33901 * po/ca.po: Remove (now handled by TLP).
33902 * po/id.po: Likewise.
33903 * po/zh_CN.po: Likewise.
33904 * Makefile.in (LINGUAS): Initialize in a way that supports
33905 empty set.
33906
33907 2009-11-27 Robert Millan <rmh.grub@aybabtu.com>
33908
33909 * Makefile.in (LINGUAS): Rewrite by scanning po/ directory instead of
33910 reliing on po/LINGUAS.
33911 ($(foreach lang, $(LINGUAS), $(srcdir)/po/$(lang).po)): Rewrite as ...
33912 (po/%.po): ... this.
33913
33914 2009-11-26 Felix Zielcke <fzielcke@z-51.de>
33915
33916 * util/i386/efi/grub-mkimage.c: Include "progname.h".
33917 (main): Use `program_name' instead of nonexistent `progname'.
33918
33919 2009-11-26 Felix Zielcke <fzielcke@z-51.de>
33920
33921 * conf/i386-efi.rmk (grub_mkimage_SOURCES): Add `gnulib/progname.c'.
33922 * conf/x86_64-efi.rmk (grub_mkimage_SOURCES): Likewise.
33923
33924 2009-11-26 Robert Millan <rmh.grub@aybabtu.com>
33925
33926 * conf/i386-coreboot.rmk: Cleanup stale filenames from my previous
33927 commit.
33928 * conf/i386-efi.rmk: Likewise.
33929 * conf/i386-ieee1275.rmk: Likewise.
33930 * conf/powerpc-ieee1275.rmk: Likewise.
33931 * conf/sparc64-ieee1275.rmk: Likewise.
33932 * conf/x86_64-efi.rmk: Likewise.
33933
33934 2009-11-26 Felix Zielcke <fzielcke@z-51.de>
33935
33936 * conf/any-emu.rmk (grub_emu_SOURCES): Add `gnulib/progname.c'.
33937
33938 2009-11-26 Felix Zielcke <fzielcke@z-51.de>
33939
33940 * conf/any-emu.rmk (grub_mkfont_SOURCES): Add `gnulib/progname.c'.
33941
33942 2009-11-26 Robert Millan <rmh.grub@aybabtu.com>
33943
33944 * conf/common.rmk (sbin_UTILITIES): Add `grub-mkdevicemap'.
33945 (grub_mkdevicemap_SOURCES): New variable.
33946 (grub_probe_SOURCES, grub_fstest_SOURCES, grub_mkfont_SOURCES)
33947 (grub_mkrelpath_SOURCES, grub_editenv_SOURCES)
33948 (grub_pe2elf_SOURCES): Add `gnulib/progname.c'.
33949 * conf/i386-coreboot.rmk (sbin_UTILITIES): Remove `grub-mkdevicemap'.
33950 (grub_mkdevicemap_SOURCES): Remove.
33951 * conf/i386-efi.rmk: Likewise.
33952 * conf/i386-ieee1275.rmk: Likewise.
33953 * conf/i386-pc.rmk: Likewise.
33954 * conf/powerpc-ieee1275.rmk: Likewise.
33955 * conf/sparc64-ieee1275.rmk: Likewise.
33956 * conf/x86_64-efi.rmk: Likewise.
33957 * util/elf/grub-mkimage.c: Include `<grub/i18n.h>' and `"progname.h"'.
33958 (usage): Fix strings to use `program_name'.
33959 (main): Initialize gettext.
33960 * util/grub-editenv.c: Likewise.
33961 * util/grub-emu.c: Likewise.
33962 * util/grub-fstest.c: Likewise.
33963 * util/grub-mkdevicemap.c: Likewise.
33964 * util/grub-mkfont.c: Likewise.
33965 * util/grub-mkrelpath.c: Likewise.
33966 * util/grub-pe2elf.c: Likewise.
33967 * util/grub-probe.c: Likewise.
33968 * util/sparc64/ieee1275/grub-mkimage.c: Likewise.
33969 * util/sparc64/ieee1275/grub-ofpathname.c: Likewise.
33970 * util/sparc64/ieee1275/grub-setup.c: Likewise.
33971
33972 * util/misc.c: Include `"progname.h"'.
33973 (progname): Remove variable.
33974 (grub_util_warn, grub_util_info, grub_util_error): Use `program_name'.
33975
33976 2009-11-25 Felix Zielcke <fzielcke@z-51.de>
33977
33978 * util/grub.d/10_linux.in (linux_entry): Quote the arguments to
33979 printf and print a newline after the menuentry header line.
33980 * util/grub.d/10_kfreebsd.in (kfreebsd_entry): Likewise.
33981
33982 2009-11-25 Felix Zielcke <fzielcke@z-51.de>
33983
33984 autoconf >= 2.60 support $(localedir).
33985
33986 * INSTALL: Note that autoconf 2.60 is required.
33987 * configure.ac (AC_PREREQ): Bump to 2.60.
33988 * util/grub.d/10_kfreebsd.in (TEXTDOMAINDIR): Set to lowercased @localedir@.
33989 * util/grub.d/10_linux.in (TEXTDOMAINDIR): Likewise.
33990
33991 2009-11-25 Yves Blusseau <yves.blusseau@zetam.org>
33992
33993 * configure.ac: move the call to AM_GNU_GETTEXT to avoid warnings when
33994 aclocal is run.
33995
33996 2009-11-25 Robert Millan <rmh.grub@aybabtu.com>
33997
33998 * normal/main.c (grub_normal_read_line): Fix off-by-one
33999 buffer overflow.
34000
34001 2009-11-25 Robert Millan <rmh.grub@aybabtu.com>
34002
34003 * normal/main.c (grub_normal_execute): Replace "parser.sh" with
34004 "parser.grub" in grub_command_execute() call.
34005
34006 2009-11-24 Carles Pina i Estany <carles@pina.cat>
34007
34008 * conf/i386-coreboot.rmk (kernel_img_HEADERS): Add i18n.h.
34009 * conf/i386-efi.rmk: Likewise.
34010 * conf/i386-ieee1275.rmk: Likewise.
34011 * conf/i386-pc.rmk: Likewise.
34012 * conf/powerpc-ieee1275.rmk: Likewise.
34013 * conf/sparc64-ieee1275.rmk: Likewise.
34014 * conf/x86_64-efi.rmk: Likewise.
34015 * gettext/gettex.c: Include <grub/i18n.h>.
34016 * include/grub/misc.h (grub_gettext_dummy, grub_gettext): Move from
34017 here ...
34018 * include/grub/i18n.h: ... to here
34019 * include/grub/i18n.h: ... to here.
34020 * kern/misc.c: Include <grub/i18n.h>
34021 (grub_gettext_dummy): Move above user.
34022
34023 2009-11-24 Felix Zielcke <fzielcke@z-51.de>
34024
34025 * util/Makefile.in (install-local): Convert a `for' into a normal
34026 shell expansion.
34027
34028 2009-11-24 Robert Millan <rmh.grub@aybabtu.com>
34029
34030 * autogen.sh: Add automake call.
34031 * config.guess: Remove.
34032 * config.sub: Likewise.
34033 * install-sh: Likewise.
34034
34035 2009-11-24 Felix Zielcke <fzielcke@z-51.de>
34036
34037 * util/Makefile.in (install-local): Fix the use of $lang shell variable.
34038
34039 2009-11-24 Felix Zielcke <fzielcke@z-51.de>
34040
34041 * util/Makefile.in (install-local): Convert a make `$(foreach)'
34042 function to a normal shell `for'.
34043
34044 2009-11-24 Felix Zielcke <fzielcke@z-51.de>
34045
34046 * conf/i386-coreboot.rmk (grub_mkimage_SOURCES): Add `gnulib/progname.c'.
34047
34048 2009-11-24 Felix Zielcke <fzielcke@z-51.de>
34049
34050 * util/grub-mkrelpath.c: New file.
34051 * conf/common.rmk (bin_UTILITIES): Add grub-mkrelpath.
34052 (grub_mkrelpath_SOURCES): New variable.
34053 * include/grub/util/misc.h: New function prototype.
34054 * util/misc.c (make_system_path_relative_to_its_root): New function.
34055
34056 * util/grub-mkconfig_lib.in (bindir): New variable.
34057 (grub_mkrelpath): Likewise.
34058 (make_system_path_relative_to_its_root): Use grub-mkrelpath.
34059
34060 * util/probe.c (probe): Make the file path relative to its root.
34061 Change a info message to use the GRUB path. Enable again the
34062 check if we can read the file with GRUB facilities.
34063
34064 * util/i386/pc/grub-setup.c (setup): Make core.img path relative
34065 to its root.
34066
34067 2009-11-24 Felix Zielcke <fzielcke@z-51.de>
34068
34069 * Makefile.in: Don't include GRUB_CONTRIB makefiles with emu
34070 platform.
34071
34072 2009-11-24 Felix Zielcke <fzielcke@z-51.de>
34073
34074 * util/getroot.c (grub_util_get_dev_abstraction): Properly use
34075 strncmp().
34076
34077 2009-11-24 Felix Zielcke <fzielcke@z-51.de>
34078
34079 * util/getroot.c (grub_util_is_dmraid): New function.
34080 (grub_util_get_dev_abstraction): Treat dmraid and multipath
34081 devices as normal ones, not as LVM.
34082
34083 2009-11-23 Carles Pina i Estany <carles@pina.cat>
34084
34085 * conf/common.rmk: Add grub-gettext_lib target and updates
34086 lib_DATA and CLEANFILES. Adds gettext.mod SOURCES, CFLAGS,
34087 LDFLAGS.
34088 * gettext/gettext.c: New file. (Reads mo files).
34089 * include/grub/file.h (grub_file_pread): New prototype.
34090 * include/grub/i18n.h (_): New prototype.
34091 * include/grub/misc.h (grub_gettext_dummy, grub_gettext): New
34092 prototypes.
34093 * kern/misc.c (grub_gettext_dummy): New function.
34094 * normal/menu_text.c: Include <grub/i18n.h>.
34095 * normal/menu_text.c (print_timeout): Gettexttize string.
34096 * normal/menu_text.c (print_message): Gettexttize string.
34097 * po/POTFILES: Add `normal/menu_text.c'.
34098 * po/ca.po: Add new translations.
34099 * util/grub.d/00_header.in: Define locale_dir and lang. insmod
34100 gettext module and defines locale_dir and lang in grub.cfg.
34101 * NEWS: Add gettext support.
34102
34103 2009-11-23 Robert Millan <rmh.grub@aybabtu.com>
34104
34105 * util/hostdisk.c: Include `<grub/i18n.h>'.
34106 (find_grub_drive): Use ARRAY_SIZE for map size calculation.
34107 (make_device_name): Rewrite using asprintf.
34108 (convert_system_partition_to_system_disk): Replace 0 with NULL.
34109 (find_system_device): If a device is not found, generate one just
34110 by reusing the OS path name.
34111 (read_device_map): Make it permissible for device.map not to exist.
34112
34113 2009-11-23 Robert Millan <rmh.grub@aybabtu.com>
34114
34115 * script/sh/execute.c: Move from here ...
34116 * script/execute.c: ... to here. Update all users.
34117 * script/sh/function.c: Move from here ...
34118 * script/function.c: ... to here. Update all users.
34119 * script/sh/lexer.c: Move from here ...
34120 * script/lexer.c: ... to here. Update all users.
34121 * script/sh/main.c: Move from here ...
34122 * script/main.c: ... to here. Update all users.
34123 * script/sh/parser.y: Move from here ...
34124 * script/parser.y: ... to here. Update all users.
34125 * script/sh/script.c: Move from here ...
34126 * script/script.c: ... to here. Update all users.
34127
34128 2009-11-23 Robert Millan <rmh.grub@aybabtu.com>
34129
34130 * configure.ac: Detect all `emu' platforms. Define
34131 GRUB_MACHINE_* macros in TARGET_CFLAGS. Remove
34132 --enable-grub-emu logic. Disable include/grub/machine
34133 symlink on `emu' platforms.
34134
34135 * genkernsyms.sh.in: Use @TARGET_CFLAGS@ during symbol generation.
34136 * gensymlist.sh.in: Likewise.
34137
34138 * include/grub/i386/coreboot/machine.h: Remove file.
34139 * include/grub/i386/efi/machine.h: Likewise.
34140 * include/grub/i386/ieee1275/machine.h: Likewise.
34141 * include/grub/i386/pc/machine.h: Likewise.
34142 * include/grub/i386/qemu/machine.h: Likewise.
34143 * include/grub/powerpc/ieee1275/machine.h: Likewise.
34144 * include/grub/sparc64/ieee1275/machine.h: Likewise.
34145 * include/grub/x86_64/efi/machine.h: Likewise.
34146
34147 * commands/acpi.c: Remove `<grub/machine/machine.h>'.
34148 * commands/halt.c: Likewise.
34149 * commands/reboot.c: Likewise.
34150 * include/grub/autoefi.h: Likewise.
34151 * include/grub/i386/at_keyboard.h: Likewise.
34152 * include/grub/i386/kernel.h: Likewise.
34153 * include/grub/i386/loader.h: Likewise.
34154 * include/grub/i386/pc/memory.h: Likewise.
34155 * kern/dl.c: Likewise.
34156 * kern/i386/coreboot/init.c: Likewise.
34157 * loader/i386/bsd.c: Likewise.
34158 * loader/i386/linux.c: Likewise.
34159 * loader/multiboot_loader.c: Likewise.
34160 * term/i386/pc/serial.c: Likewise.
34161 * term/usb_keyboard.c: Likewise.
34162
34163 * include/grub/time.h [!GRUB_MACHINE_EMU]: Remove
34164 `<grub/machine/machine.h>'
34165 [!GRUB_MACHINE_EMU] (GRUB_TICKS_PER_SECOND): New macro.
34166 * util/misc.c: Remove `<grub/machine/machine.h>' and
34167 `<grub/machine/time.h>'.
34168
34169 * Makefile.in (enable_grub_emu): Remove variable.
34170 Include $(srcdir)/conf/any-emu.mk for the `emu' platform.
34171
34172 * conf/any-emu.rmk: New file.
34173 * conf/common.rmk (grub_emu_init.lst, grub_emu_init.h)
34174 (grub_emu_init.c): Move from here ...
34175 * conf/any-emu.rmk: ... to here.
34176
34177 * conf/i386-coreboot.rmk (sbin_UTILITIES): Remove `grub-emu'.
34178 (grub_emu_SOURCES, grub_emu_LDFLAGS): Move from here ...
34179 * conf/any-emu.rmk: ... to here.
34180
34181 2009-11-23 Robert Millan <rmh.grub@aybabtu.com>
34182
34183 * include/grub/parser.h (grub_parser_register): Document need
34184 of `name' parameter.
34185 * normal/main.c (grub_normal_read_line): Simplify prompt string.
34186 * script/sh/main.c (grub_sh_parser, GRUB_MOD_INIT(sh)): Rename
34187 "sh" to "grub".
34188
34189 2009-11-23 Robert Millan <rmh.grub@aybabtu.com>
34190
34191 * Makefile.in ($(srcdir)/po/$(PACKAGE).pot): Pass --keyword=N_ to
34192 `$(XGETTEXT)'.
34193 * include/grub/i18n.h (N_): New macro.
34194 * util/mkisofs/mkisofs.h: Likewise.
34195 * util/mkisofs/mkisofs.c (ld_options): Wrap all translatable strings
34196 around N_().
34197 (usage): Use gettext() to translate help strings when printing them.
34198
34199 2009-11-23 Robert Millan <rmh.grub@aybabtu.com>
34200
34201 Based on patch from Bean
34202 (http://lists.gnu.org/archive/html/grub-devel/2009-08/msg00384.html)
34203
34204 * video/efi_fb.c: New file.
34205 * conf/i386-efi.rmk (pkglib_MODULES): Add `efi_fb.mod'.
34206 (efi_fb_mod_SOURCES, efi_fb_mod_CFLAGS, efi_fb_mod_LDFLAGS): New
34207 variables.
34208 * conf/x86_64-efi.rmk: Likewise.
34209
34210 2009-11-22 Robert Millan <rmh.grub@aybabtu.com>
34211
34212 * util/i386/pc/grub-mkimage.c: Ungettextize grub_util_info() strings.
34213 * util/i386/pc/grub-setup.c: Likewise.
34214
34215 2009-11-21 Samuel Thibault <samuel.thibault@ens-lyon.org>
34216
34217 * util/getroot.c [__GNU__]: Include <hurd.h>, <hurd/lookup.h>, and
34218 <hurd/fs.h>
34219 [__GNU__] (grub_guess_root_device): Call file_name_lookup and
34220 file_get_storage_info to implement grub_guess_root_device.
34221
34222 2009-11-21 Felix Zielcke <fzielcke@z-51.de>
34223
34224 * Makefile.in (target): Use make's builtin $(shell) function
34225 instead of calling directly $(SHELL) to create the locale directories,
34226 inside the $(foreach) function.
34227
34228 2009-11-21 Felix Zielcke <fzielcke@z-51.de>
34229
34230 * util/grub-mkrescue.in: Print an error and usage if output option
34231 has not been given.
34232
34233 2009-11-21 Felix Zielcke <fzielcke@z-51.de>
34234
34235 Patch from Loïc Minier <loic.minier@ubuntu.com>.
34236 * util/grub.d/30_os-prober.in: Cope with Linux entries where
34237 root and /boot are on different devices.
34238
34239 2009-11-21 Robert Millan <rmh.grub@aybabtu.com>
34240
34241 Fix build for srcdir != objdir.
34242
34243 * Makefile.in (po/$(PACKAGE).pot): Rename to ...
34244 ($(srcdir)/po/$(PACKAGE).pot): ... this. Run $(XGETTEXT) from
34245 $(srcdir).
34246 ($(foreach lang, $(LINGUAS), po/$(lang).po)): Rename to ...
34247 ($(foreach lang, $(LINGUAS), $(srcdir)/po/$(lang).po): ... this. Use $^
34248 reference for input.
34249
34250 2009-11-21 Robert Millan <rmh.grub@aybabtu.com>
34251
34252 * util/grub-mkrescue.in: Use source directory direcly (without copiing
34253 or hardlinking it). Remove -J option, Joliet is not compatible with
34254 multiple source directories.
34255
34256 2009-11-21 Carles Pina i Estany <carles@pina.cat>
34257 2009-11-21 Robert Millan <rmh.grub@aybabtu.com>
34258
34259 * util/grub-mkrescue.in: Recognize `--override-directory' option.
34260 (process_input_dir): New function. Process an arbitrary input
34261 directory.
34262 Misc adjustments to support both "override mode" and system-wide mode.
34263
34264 2009-11-20 Felix Zielcke <fzielcke@z-51.de>
34265
34266 * configure.ac (UNIFONT_BDF): Rename to ...
34267 (FONT_SOURCE): ... this. Update all users.
34268
34269 2009-11-20 Felix Zielcke <fzielcke@z-51.de>
34270
34271 * configure.ac: Add `/usr/share/fonts/X11/misc/unifont.pcf.gz'
34272 to the list of unifont files to look for.
34273
34274 2009-11-19 Robert Millan <rmh.grub@aybabtu.com>
34275
34276 Patch from Joe Auricchio <jauricchio@gmail.com>
34277 * commands/minicmd.c (grub_mini_cmd_clear): New function.
34278 (GRUB_MOD_INIT(minicmd)): Register grub_mini_cmd_clear().
34279 (GRUB_MOD_FINI(minicmd)): Unregister grub_mini_cmd_clear().
34280
34281 2009-11-19 Felix Zielcke <fzielcke@z-51.de>
34282
34283 * Makefile.in (install-local): Add a missing backslash.
34284
34285 2009-11-19 Felix Zielcke <fzielcke@z-51.de>
34286
34287 * include/grub/x86_64/io.h: New file.
34288
34289 2009-11-19 Robert Millan <rmh.grub@aybabtu.com>
34290
34291 * conf/i386-pc.rmk (grub_setup_SOURCES): Add `gnulib/progname.c'.
34292 * util/i386/pc/grub-setup.c: Include `<grub/i18n.h>'.
34293 Include `"progname.h"'.
34294 (main): Initialize gettext.
34295 * util/i386/pc/grub-setup.c: Gettexttize.
34296 * util/i386/pc/grub-mkimage.c: Likewise.
34297
34298 * Makefile.in (po/*.po): Redefine as ...
34299 ($(foreach lang, $(LINGUAS), po/$(lang).po)): ... this.
34300
34301 * po/POTFILES: Add `util/i386/pc/grub-setup.c'.
34302
34303 2009-11-19 Robert Millan <rmh.grub@aybabtu.com>
34304
34305 * conf/common.rmk (grub_mkisofs_SOURCES): Add `gnulib/progname.c'.
34306 * util/mkisofs/mkisofs.c: Include `"progname.h"'.
34307 (program_name): Remove.
34308 (main): Initialize gettext support.
34309 * util/mkisofs/mkisofs.h: Include `<locale.h>'.
34310 Include `<libintl.h>'.
34311 (_): New macro.
34312
34313 * util/mkisofs/eltorito.c: Gettexttize.
34314 * util/mkisofs/joliet.c: Likewise.
34315 * util/mkisofs/mkisofs.c: Likewise.
34316 * util/mkisofs/multi.c: Likewise.
34317 * util/mkisofs/rock.c: Likewise.
34318 * util/mkisofs/tree.c: Likewise.
34319 * util/mkisofs/write.c: Likewise.
34320
34321 * po/POTFILES: Update with new files.
34322
34323 2009-11-18 Robert Millan <rmh.grub@aybabtu.com>
34324
34325 * util/mkisofs/eltorito.c: Fix minor mistake in license text.
34326 * util/mkisofs/iso9660.h: Likewise.
34327 * util/mkisofs/joliet.c: Likewise.
34328 * util/mkisofs/mkisofs.c: Likewise.
34329 * util/mkisofs/mkisofs.h: Likewise.
34330 * util/mkisofs/rock.c: Likewise.
34331 * util/mkisofs/tree.c: Likewise.
34332 * util/mkisofs/write.c: Likewise.
34333
34334 * util/mkisofs/eltorito.c (rcsid): Remove.
34335 * util/mkisofs/hash.c: Likewise.
34336 * util/mkisofs/joliet.c: Likewise.
34337 * util/mkisofs/name.c: Likewise.
34338 * util/mkisofs/rock.c: Likewise.
34339 * util/mkisofs/tree.c: Likewise.
34340 * util/mkisofs/write.c: Likewise.
34341
34342 2009-11-18 Robert Millan <rmh.grub@aybabtu.com>
34343
34344 * util/mkisofs/match.c: Rewrite from scratch, using a linked list
34345 instead of static allocation.
34346 * util/mkisofs/match.h: Likewise.
34347
34348 2009-11-18 Robert Millan <rmh.grub@aybabtu.com>
34349
34350 * po/POTFILES-shell: New file. List `util/grub.d/10_kfreebsd.in'
34351 and `util/grub.d/10_linux.in'.
34352 * Makefile.in (po/$(PACKAGE).pot): Process `po/POTFILES-shell' for
34353 translatable Shell files.
34354
34355 2009-11-18 Robert Millan <rmh.grub@aybabtu.com>
34356
34357 * Makefile.in ($(srcdir)/aclocal.m4): New target.
34358
34359 2009-11-17 Robert Millan <rmh.grub@aybabtu.com>
34360
34361 * INSTALL: Document Automake is needed for bootstrap.
34362 * po/ca.po: Fix PO-Revision-Date and Language-Team fields.
34363 * util/grub.d/10_kfreebsd.in (bindir): New variable.
34364 Add gettext initialization.
34365 (kfreebsd_entry): Make menuentry output translatable.
34366
34367 2009-11-17 Robert Millan <rmh.grub@aybabtu.com>
34368
34369 * Makefile.in (XGETTEXT, MSGMERGE, MSGFMT): New variables.
34370 (po/$(PACKAGE).pot): Replace `xgettext' with `$(XGETTEXT)'.
34371 (po/*.po): Replace `msgmerge' with `$(MSGMERGE)'.
34372 (po/%.mo): Replace `msgfmt' with `$(MSGFMT)'.
34373 (LINGUAS): Auto-generate using `po/LINGUAS'.
34374 * po/LINGUAS: New file.
34375
34376 2009-11-17 Robert Millan <rmh.grub@aybabtu.com>
34377
34378 * configure.ac: Call AM_GNU_GETTEXT() (defines localedir, among
34379 other things).
34380 * Makefile.in (CPPFLAGS): Add `-DLOCALEDIR=\"$(localedir)\"'.
34381 * util/i386/pc/grub-mkimage.c (main): Issue setlocale() and
34382 bindtextdomain() calls for gettext initialization.
34383
34384 2009-11-17 Robert Millan <rmh.grub@aybabtu.com>
34385
34386 * gnulib/progname.c: New file (imported from Gnulib).
34387 * gnulib/progname.h: Likewise.
34388 * conf/i386-pc.rmk (grub_mkimage_SOURCES): Add `gnulib/progname.c'.
34389 * util/i386/pc/grub-mkimage.c: Include `"progname.h"'.
34390 (usage): Replace `progname' with `program_name'.
34391 (main): Use set_program_name() for program name initialization.
34392
34393 2009-11-17 Robert Millan <rmh.grub@aybabtu.com>
34394
34395 * conf/common.rmk (grub_mkisofs_CFLAGS): Move `-I$(srcdir)/gnulib'
34396 from here ...
34397 * Makefile.in (CPPFLAGS): ... to here.
34398
34399 2009-11-16 Robert Millan <rmh.grub@aybabtu.com>
34400
34401 * aclocal.m4: Move from here ...
34402 * acinclude.m4: ... to here.
34403 * autogen.sh: Add call to `aclocal'.
34404 * configure.ac: Add AM_INIT_AUTOMAKE() after AC_INIT() call.
34405
34406 2009-11-16 Robert Millan <rmh.grub@aybabtu.com>
34407
34408 * Makefile.in (CLEANFILES): Add `po/*.mo'.
34409 (LINGUAS): New variable.
34410 (all-local): Add `$(foreach lang, $(LINGUAS), po/$(lang).mo)'.
34411 (install-local): Install MO files.
34412 (po/$(PACKAGE).pot, po/*.po, po/%.mo): New rules.
34413 * include/grub/i18n.h: New file.
34414 * po/POTFILES: New file.
34415 * po/ca.po: New file.
34416 * util/grub.d/10_linux.in (bindir): New variable.
34417 Add gettext initialization.
34418 (linux_entry): Make menuentry output translatable.
34419 * util/i386/pc/grub-mkimage.c: Include `<grub/i18n.h>'.
34420 (usage): Make --help output translatable.
34421 (main): Initialize gettext.
34422
34423 2009-11-17 Robert Millan <rmh.grub@aybabtu.com>
34424
34425 * import_gcry.py: New file (written by Vladimir with minor
34426 adjustments).
34427 * autogen.sh: Use import_gcry.py to auto-generate GRUB-ified
34428 ciphers.
34429 * INSTALL: Document that Python is required for bootstrap.
34430
34431 2009-11-17 Robert Millan <rmh.grub@aybabtu.com>
34432
34433 Import ciphers from libgcrypt 1.4.4.
34434
34435 * lib/libgcrypt/cipher/ChangeLog
34436 * lib/libgcrypt/cipher/ac.c
34437 * lib/libgcrypt/cipher/arcfour.c
34438 * lib/libgcrypt/cipher/bithelp.h
34439 * lib/libgcrypt/cipher/blowfish.c
34440 * lib/libgcrypt/cipher/camellia-glue.c
34441 * lib/libgcrypt/cipher/camellia.c
34442 * lib/libgcrypt/cipher/camellia.h
34443 * lib/libgcrypt/cipher/cast5.c
34444 * lib/libgcrypt/cipher/cipher.c
34445 * lib/libgcrypt/cipher/crc.c
34446 * lib/libgcrypt/cipher/des.c
34447 * lib/libgcrypt/cipher/dsa.c
34448 * lib/libgcrypt/cipher/ecc.c
34449 * lib/libgcrypt/cipher/elgamal.c
34450 * lib/libgcrypt/cipher/hash-common.c
34451 * lib/libgcrypt/cipher/hash-common.h
34452 * lib/libgcrypt/cipher/hmac-tests.c
34453 * lib/libgcrypt/cipher/md.c
34454 * lib/libgcrypt/cipher/md4.c
34455 * lib/libgcrypt/cipher/md5.c
34456 * lib/libgcrypt/cipher/primegen.c
34457 * lib/libgcrypt/cipher/pubkey.c
34458 * lib/libgcrypt/cipher/rfc2268.c
34459 * lib/libgcrypt/cipher/rijndael-tables.h
34460 * lib/libgcrypt/cipher/rijndael.c
34461 * lib/libgcrypt/cipher/rmd.h
34462 * lib/libgcrypt/cipher/rmd160.c
34463 * lib/libgcrypt/cipher/rsa.c
34464 * lib/libgcrypt/cipher/seed.c
34465 * lib/libgcrypt/cipher/serpent.c
34466 * lib/libgcrypt/cipher/sha1.c
34467 * lib/libgcrypt/cipher/sha256.c
34468 * lib/libgcrypt/cipher/sha512.c
34469 * lib/libgcrypt/cipher/tiger.c
34470 * lib/libgcrypt/cipher/twofish.c
34471 * lib/libgcrypt/cipher/whirlpool.c
34472
34473 2009-11-16 Robert Millan <rmh.grub@aybabtu.com>
34474
34475 Fix build for systems without error().
34476
34477 * gnulib/error.c: New file (imported from Gnulib).
34478 * gnulib/error.h: Likewise.
34479 * conf/common.rmk (grub_mkisofs_SOURCES): Add `gnulib/error.c'.
34480 * util/mkisofs/mkisofs.c (program_name): Remove `static' qualifier
34481 (this variable is now used by error()).
34482
34483 2009-11-16 Felix Zielcke <fzielcke@z-51.de>
34484
34485 * util/mkisofs/name.c (iso9660_file_length): Use isascii macro
34486 instead of relying that char is signed.
34487
34488 2009-11-16 Vladimir Serbinenko <phcoder@gmail.com>
34489
34490 * fs/i386/pc/pxe.c (grub_pxefs_open): Correctly handle PXE choosing
34491 blocksize different from specified.
34492 (grub_pxefs_read): Likewise.
34493
34494 2009-11-16 Felix Zielcke <fzielcke@z-51.de>
34495
34496 Enable ata.mod on x86_64-efi, i386-efi and i386-ieee1275.
34497
34498 * disk/ata.c (grub_ata_dumpinfo): Add a cast.
34499 (grub_ata_readwrite): Likewise. Update 2 format strings.
34500 (grub_atapi_read): Likewise.
34501
34502 * conf/i386-coreboot.rmk (pkglib_MODULES): Move `ata.mod' from here ...
34503 * conf/i386.rmk (pkglib_MODULES): ... to here ...
34504 * conf/x86_64-efi.rmk (pkglib_MODULES): ... and here.
34505 * conf/i386-coreboot.rmk (ata_mod_SOURCES, ata_mod_CFLAGS)
34506 (ata_mod_LDFLAGS): Move from here ...
34507 * conf/i386.rmk: ... to here ...
34508 * conf/x86_64-efi.rmk: ... and here.
34509 * conf/i386-pc.rmk (pkglib_MODULES): Remove `ata.mod'
34510 (ata_mod_SOURCES, ata_mod_CFLAGS, ata_mod_LDFLAGS): Remove.
34511
34512 2009-11-16 Robert Millan <rmh.grub@aybabtu.com>
34513
34514 Relicense multiboot.h, with RMS' blessing.
34515
34516 * include/multiboot.h: Change to X11 license.
34517
34518 2009-11-15 Robert Millan <rmh.grub@aybabtu.com>
34519
34520 Support --version in grub-mkisofs.
34521
34522 * util/mkisofs/mkisofs.c (rcsid): Remove variable.
34523 (OPTION_VERSION): New macro.
34524 (ld_options): Recognize --version.
34525 (usage): Move `program_name' from here ...
34526 (program_name): ... to here. Add `static' qualifier.
34527 (main): Recognize `OPTION_VERSION'.
34528
34529 2009-11-15 Felix Zielcke <fzielcke@z-51.de>
34530
34531 * Makefile.in (TARGET_CPPFLAGS): Replace `-isystem=$(srcdir)/include'
34532 with `-nostdinc -isystem $(shell $(TARGET_CC) -print-file-name=include)'.
34533
34534 2009-11-14 Robert Millan <rmh.grub@aybabtu.com>
34535
34536 Fix help2man generation for mkisofs.
34537
34538 * util/mkisofs/mkisofs.c (ld_options): Recognize --help.
34539 (usage): Send output to stdout (rather than stderr).
34540
34541 2009-11-14 Robert Millan <rmh.grub@aybabtu.com>
34542
34543 * conf/i386-coreboot.rmk (grub_mkrescue_SOURCES): Replace
34544 `util/i386/coreboot/grub-mkrescue.in' with `util/grub-mkrescue.in'.
34545 * conf/i386-pc.rmk (grub_mkrescue_SOURCES): Replace
34546 `util/i386/pc/grub-mkrescue.in' with `util/grub-mkrescue.in'.
34547 (bin_SCRIPTS): Add `grub-mkfloppy'.
34548 (grub_mkfloppy_SOURCES): New variable.
34549
34550 * util/grub-mkrescue.in: New file.
34551 * util/i386/pc/grub-mkfloppy.in: New file.
34552
34553 * util/i386/coreboot/grub-mkrescue.in: Remove.
34554 * util/i386/pc/grub-mkrescue.in: Remove.
34555
34556 2009-11-13 Robert Millan <rmh.grub@aybabtu.com>
34557
34558 * include/grub/multiboot.h (struct grub_multiboot_header): Move
34559 from here ...
34560 * include/multiboot.h (struct multiboot_header): ... to here. Update
34561 all users.
34562 * include/grub/multiboot.h (struct grub_multiboot_info): Move
34563 from here ...
34564 * include/multiboot.h (struct multiboot_info): ... to here. Update
34565 all users.
34566 * include/grub/multiboot.h (struct grub_multiboot_mmap_entry): Move
34567 from here ...
34568 * include/multiboot.h (struct multiboot_mmap_entry): ... to here.
34569 Update all users.
34570 * include/grub/multiboot.h (struct grub_mod_list): Move
34571 from here ...
34572 * include/multiboot.h (struct multiboot_mod_list): ... to here.
34573 Update all users.
34574
34575 2009-11-13 Robert Millan <rmh.grub@aybabtu.com>
34576
34577 * include/multiboot2.h (multiboot_word): Rename from this ...
34578 (multiboot2_word): ... to this. Update all users.
34579 (multiboot_header): Rename from this ...
34580 (multiboot2_header): ... to this. Update all users.
34581 (multiboot_tag_header): Rename from this ...
34582 (multiboot2_tag_header): ... to this. Update all users.
34583 (multiboot_tag_start): Rename from this ...
34584 (multiboot2_tag_start): ... to this. Update all users.
34585 (multiboot_tag_name): Rename from this ...
34586 (multiboot2_tag_name): ... to this. Update all users.
34587 (multiboot_tag_module): Rename from this ...
34588 (multiboot2_tag_module): ... to this. Update all users.
34589 (multiboot_tag_memory): Rename from this ...
34590 (multiboot2_tag_memory): ... to this. Update all users.
34591 (multiboot_tag_unused): Rename from this ...
34592 (multiboot2_tag_unused): ... to this. Update all users.
34593 (multiboot_tag_end): Rename from this ...
34594 (multiboot2_tag_end): ... to this. Update all users.
34595
34596 2009-11-13 Robert Millan <rmh.grub@aybabtu.com>
34597
34598 Disable Multiboot2 in i386-ieee1275. It didn't actually work, and on
34599 this platform we should support Multiboot1 first.
34600
34601 * conf/i386-ieee1275.rmk (pkglib_MODULES): Remove `multiboot.mod'.
34602 (multiboot_mod_SOURCES, multiboot_mod_CFLAGS)
34603 (multiboot_mod_LDFLAGS, multiboot_mod_ASFLAGS): Remove.
34604
34605 2009-11-12 Robert Millan <rmh.grub@aybabtu.com>
34606
34607 * util/mkisofs/eltorito.c (init_boot_catalog): Handle return code
34608 of write calls (converting them to fwrite() if they aren't already).
34609 (get_torito_desc): Likewise.
34610 * util/mkisofs/rock.c (generate_rock_ridge_attributes): Likewise.
34611
34612 2009-11-12 Robert Millan <rmh.grub@aybabtu.com>
34613
34614 * util/i386/pc/grub-install.in: Move from here ...
34615 * util/grub-install.in: ... to here. Update all users.
34616
34617 2009-11-11 Colin Watson <cjwatson@ubuntu.com>
34618
34619 * util/powerpc/ieee1275/grub-mkrescue.in: Fix --version output.
34620
34621 2009-11-11 Robert Millan <rmh.grub@aybabtu.com>
34622
34623 Support for El Torito without floppy emulation.
34624
34625 * util/mkisofs/eltorito.c: Include `<errno.h>'.
34626 (init_boot_catalog): Improve error handling.
34627 (get_torito_desc): Don't use floppy emulation unless requested by
34628 user. Patch boot information table when requested via
34629 `-boot-info-table'.
34630 * util/mkisofs/iso9660.h (struct eltorito_boot_info): New struct.
34631 * util/mkisofs/mkisofs.c (use_eltorito_emul_floppy)
34632 (use_boot_info_table): New variables.
34633 (OPTION_BOOT_INFO_TABLE, OPTION_NO_EMUL_BOOT)
34634 (OPTION_ELTORITO_EMUL_FLOPPY): New macros.
34635 (ld_options): Handle `-boot-info-table', `-no-emul-boot' and
34636 `--eltorito-emul-floppy'.
34637 (main): Handle `OPTION_BOOT_INFO_TABLE', `OPTION_NO_EMUL_BOOT'
34638 and `OPTION_ELTORITO_EMUL_FLOPPY'.
34639 * util/mkisofs/mkisofs.h (use_eltorito_emul_floppy)
34640 (use_boot_info_table, get_731): New prototypes.
34641 * util/mkisofs/write.c (get_731): New function.
34642
34643 2009-11-11 Felix Zielcke <fzielcke@z-51.de>
34644
34645 Fix the generation of the man page.
34646
34647 * util/pc/i386/grub-install.in: Source
34648 `${libdir}/grub/grub-mkconfig_lib' after options have been parsed.
34649
34650 2009-11-11 Robert Millan <rmh.grub@aybabtu.com>
34651
34652 Large file support for grub-mkisofs.
34653
34654 * conf/common.rmk (grub_mkisofs_CFLAGS): Add `-D_FILE_OFFSET_BITS=64'.
34655 * util/mkisofs/mkisofs.c (next_extent, last_extent)
34656 (session_start): Upgrade type to `uint64_t'. Update all users.
34657 * util/mkisofs/mkisofs.h: Include `<stdint.h>'.
34658 (struct directory_entry): Upgrade type of `starting_block' and
34659 `size' to `uint64_t'. Update all users.
34660 (struct deferred): Remove unused structure.
34661 (xfwrite): Upgrade type of `count' and `size' to `uint64_t'.
34662 Update all users.
34663 * util/mkisofs/tree.c (stat_filter, lstat_filter): Return -1 when
34664 file is larger than `UINT32_MAX'.
34665 * util/mkisofs/write.c (xfwrite): Upgrade type of `count' and
34666 `size' to `uint64_t'. Update all users. Fix handling of fwrite()
34667 return value.
34668 (struct deferred_write): Upgrade type of `extent' and `size' to
34669 `uint64_t'. Update all users.
34670 (last_extent_written): Upgrade type to `uint64_t'. Update all
34671 users.
34672 (write_one_file): Upgrade type of `count' and `size' to `uint64_t'.
34673 Update all users. Upgrade type of `remain' to `int64_t' and
34674 `use' to `size_t'. Use error() to handle fread() errors.
34675 (write_files): Rely on write_one_file() rather than calling
34676 xfwrite() directly.
34677
34678 2009-11-09 Felix Zielcke <fzielcke@z-51.de>
34679
34680 * util/mkisofs/mkisofs.c (ld_options): Fix a spelling mistake.
34681
34682 2009-11-09 Robert Millan <rmh.grub@aybabtu.com>
34683
34684 * util/mkisofs/fnmatch.c: Remove.
34685 * util/mkisofs/getopt1.c: Likewise.
34686 * util/mkisofs/getopt.c: Likewise.
34687 * conf/common.rmk (grub_mkisofs_SOURCES): Replace
34688 `util/mkisofs/fnmatch.c', `util/mkisofs/getopt1.c' and
34689 `util/mkisofs/getopt.c' with `gnulib/fnmatch.c',
34690 `gnulib/getopt1.c' and `gnulib/getopt.c'.
34691 (grub_mkisofs_CFLAGS): Add `-I$(srcdir)/gnulib'.
34692
34693 * configure.ac: Detect `mingw32msvc' host_os.
34694 Check for lstat(), getuid() and getgid().
34695
34696 * util/mkisofs/joliet.c: Include `<stdint.h>'. Replace all
34697 instances of `u_char' with `uint8_t'.
34698
34699 * util/mkisofs/mkisofs.h: Include `<sys/stat.h>'.
34700 [!HAVE_GETUID] (getuid): New function (stub).
34701 [!HAVE_GETGID] (getgid): Likewise.
34702 [!HAVE_LSTAT] (lstat): Likewise.
34703 [!S_IROTH] (S_IROTH): New macro (dummy).
34704 [!S_IRGRP] (S_IRGRP): Likewise.
34705
34706 2009-11-09 Robert Millan <rmh.grub@aybabtu.com>
34707
34708 * gnulib/fnmatch_loop.c (EXT): Fix warning (signed and unsigned type in
34709 conditional expression).
34710
34711 2009-11-09 Robert Millan <rmh.grub@aybabtu.com>
34712
34713 Import from Gnulib.
34714
34715 * gnulib/fnmatch.c: New file.
34716 * gnulib/fnmatch.h: Likewise.
34717 * gnulib/fnmatch_loop.c: Likewise.
34718 * gnulib/getopt.c: Likewise.
34719 * gnulib/getopt.h: Likewise.
34720 * gnulib/getopt1.c: Likewise.
34721 * gnulib/getopt_int.h: Likewise.
34722 * gnulib/gettext.h: Likewise.
34723
34724 2009-11-09 Robert Millan <rmh.grub@aybabtu.com>
34725
34726 * normal/dyncmd.c (read_command_list): Replace `0' with `NULL'.
34727 * normal/handler.c (read_handler_list): Likewise.
34728
34729 2009-11-09 Robert Millan <rmh.grub@aybabtu.com>
34730
34731 Misc cleanup.
34732
34733 * kern/command.c (grub_register_command_prio): Use
34734 grub_zalloc() instead of explicitly zeroing data.
34735 * kern/list.c: Include `<grub/mm.h>'.
34736 (grub_named_list_find): Replace `0' with `NULL'.
34737 * normal/autofs.c (struct grub_fs_module_list): Remove ad-hoc type.
34738 (fs_module_list): Change type to `grub_named_list_t'. Update all
34739 users.
34740 * normal/dyncmd.c (read_command_list): Add space between function
34741 call and parenthesis.
34742 * normal/handler.c (read_handler_list): Likewise.
34743
34744 2009-11-09 Robert Millan <rmh.grub@aybabtu.com>
34745
34746 * normal/auth.c (punishment_delay): Moved from here ...
34747 (grub_auth_strcmp): ... to here (inside function).
34748
34749 2009-11-09 Robert Millan <rmh.grub@aybabtu.com>
34750
34751 * include/grub/list.h (struct grub_named_list): Remove `const'
34752 qualifier from `name'.
34753 (struct grub_prio_list): Likewise.
34754
34755 2009-11-09 Robert Millan <rmh.grub@aybabtu.com>
34756
34757 * normal/auth.c: Include `<grub/time.h>'.
34758 (grub_auth_strcmp): Replace `strcmp' with `grub_strcmp'.
34759
34760 2009-11-09 Robert Millan <rmh.grub@aybabtu.com>
34761
34762 * normal/auth.c (punishment_delay): New variable.
34763 (grub_auth_strcmp): Rewrite using grub_get_time_ms ().
34764 (grub_auth_check_authentication): Punish failed login attempts with
34765 an incremental (2^N) delay.
34766
34767 2009-11-09 Robert Millan <rmh.grub@aybabtu.com>
34768
34769 * conf/common.rmk (grub_mkisofs_CFLAGS): Prefix include
34770 path with $(srcdir).
34771
34772 2009-11-09 Vladimir Serbinenko <phcoder@gmail.com>
34773
34774 * normal/auth.c (grub_auth_strcmp): Fixed incorrect variable usage.
34775
34776 2009-11-09 Robert Millan <rmh.grub@aybabtu.com>
34777
34778 * util/i386/coreboot/grub-mkrescue.in: New file.
34779 * conf/i386-coreboot.rmk (bin_SCRIPTS, grub_mkrescue_SOURCES): New
34780 variables.
34781
34782 * conf/common.rmk (bin_UTILITIES): Add `grub-mkisofs'.
34783 (grub_mkisofs_SOURCES, grub_mkisofs_CFLAGS): New variables.
34784 * configure.ac: Add header and function checks to satisfy grub-mkisofs
34785 requirements.
34786 * util/mkisofs/defaults.h: New file.
34787 * util/mkisofs/eltorito.c: Likewise.
34788 * util/mkisofs/exclude.h: Likewise.
34789 * util/mkisofs/fnmatch.c: Likewise.
34790 * util/mkisofs/getopt.c: Likewise.
34791 * util/mkisofs/getopt1.c: Likewise.
34792 * util/mkisofs/hash.c: Likewise.
34793 * util/mkisofs/include/fctldefs.h: Likewise.
34794 * util/mkisofs/include/mconfig.h: Likewise.
34795 * util/mkisofs/include/prototyp.h: Likewise.
34796 * util/mkisofs/include/statdefs.h: Likewise.
34797 * util/mkisofs/iso9660.h: Likewise.
34798 * util/mkisofs/joliet.c: Likewise.
34799 * util/mkisofs/match.c: Likewise.
34800 * util/mkisofs/match.h: Likewise.
34801 * util/mkisofs/mkisofs.c: Likewise.
34802 * util/mkisofs/mkisofs.h: Likewise.
34803 * util/mkisofs/multi.c: Likewise.
34804 * util/mkisofs/name.c: Likewise.
34805 * util/mkisofs/rock.c: Likewise.
34806 * util/mkisofs/tree.c: Likewise.
34807 * util/mkisofs/write.c: Likewise.
34808
34809 2009-11-09 Vladimir Serbinenko <phcoder@gmail.com>
34810
34811 * normal/auth.c (grub_auth_strcmp): Fix bug which resulted in function
34812 being insecure.
34813
34814 2009-11-08 Robert Millan <rmh.grub@aybabtu.com>
34815
34816 * util/i386/pc/grub-mkrescue.in: Fix miss-identification as
34817 `grub-mkimage' (and use $0 when possible).
34818
34819 2009-11-08 Robert Millan <rmh.grub@aybabtu.com>
34820
34821 * kern/i386/multiboot_mmap.c (grub_machine_mmap_init): Improve
34822 error message for excessively large memory map.
34823
34824 2009-11-08 Robert Millan <rmh.grub@aybabtu.com>
34825
34826 * autogen.sh: Use `sh gendistlist.sh' to avoid reliing on
34827 executable bit.
34828
34829 2009-11-08 Robert Millan <rmh.grub@aybabtu.com>
34830
34831 * kern/i386/multiboot_mmap.c (grub_machine_mmap_init): Improve error
34832 message for coreboot users.
34833
34834 2009-11-07 Robert Millan <rmh.grub@aybabtu.com>
34835
34836 Fix build with GNU gold.
34837
34838 * conf/i386-pc.rmk (boot_img_LDFLAGS, pxeboot_img_LDFLAGS)
34839 (diskboot_img_LDFLAGS, lnxboot_img_LDFLAGS)
34840 (cdboot_img_LDFLAGS): Prepend `0x' qualifier to hexadecimal
34841 link addresses.
34842 * aclocal.m4: Likewise.
34843
34844 2009-11-04 Felix Zielcke <fzielcke@z-51.de>
34845
34846 * configure.ac (AC_PREREQ): Bump to 2.59d.
34847 * INSTALL: Make it more clear when Autoconf and Ruby are
34848 needed and when to run `./autogen.sh'.
34849
34850 2009-11-03 Samuel Thibault <samuel.thibault@ens-lyon.org>
34851
34852 * util/grub.d/30_os-prober.in: Restore default behavior for unsupported
34853 OSes.
34854
34855 2009-11-02 Samuel Thibault <samuel.thibault@ens-lyon.org>
34856
34857 * util/grub.d/30_os-prober.in: Add GNU/Hurd support
34858
34859 2009-11-02 Samuel Thibault <samuel.thibault@ens-lyon.org>
34860
34861 * util/grub.d/10_hurd.in: Drop /dev/ prefix from root device path before
34862 giving it to GNU Mach.
34863
34864 2009-11-02 Samuel Thibault <samuel.thibault@ens-lyon.org>
34865
34866 * util/hostdisk.c (grub_util_biosdisk_get_grub_dev): Subtract 1 from
34867 GNU partition number to get internal GRUB partition number.
34868
34869 2009-11-02 Samuel Thibault <samuel.thibault@ens-lyon.org>
34870
34871 * util/grub.d/10_hurd.in: Call prepare_grub_to_access_device
34872 ${GRUB_DEVICE_BOOT} before loading /boot kernel.
34873
34874 2009-11-01 Robert Millan <rmh.grub@aybabtu.com>
34875
34876 Based on patch from BVK Chaitanya <bvk.groups@gmail.com>
34877 * kern/misc.c (grub_strchr, grub_strrchr): Fix to handle c == '\0'
34878 case.
34879
34880 2009-11-01 Felix Zielcke <fzielcke@z-51.de>
34881
34882 * Makefile.in (TARGET_CPPFLAGS): Add `-I$(srcdir)/include'.
34883
34884 2009-10-30 Robert Millan <rmh.grub@aybabtu.com>
34885
34886 Fix build problem.
34887
34888 * Makefile.in (TARGET_CPPFLAGS): Replace `-nostdinc' with
34889 `-isystem=$(srcdir)/include'.
34890
34891 2009-10-30 Robert Millan <rmh.grub@aybabtu.com>
34892
34893 * util/i386/pc/grub-install.in: Remove hint that device.map should be
34894 checked (grub-install doesn't currently rely on it).
34895
34896 2009-10-29 Robert Millan <rmh.grub@aybabtu.com>
34897
34898 Revert SVN r2660.
34899
34900 * conf/common.rmk (script/sh/lexer.c_DEPENDENCIES): Moved from here ...
34901 * conf/i386-coreboot.rmk (script/sh/lexer.c_DEPENDENCIES): ... to here.
34902 * conf/i386-efi.rmk (script/sh/lexer.c_DEPENDENCIES): ... and here.
34903 * conf/i386-ieee1275.rmk: Likewise.
34904 * conf/i386-pc.rmk: Likewise.
34905 * conf/powerpc-ieee1275.rmk: Likewise.
34906 * conf/sparc64-ieee1275.rmk: Likewise.
34907 * conf/x86_64-efi.rmk: Likewise.
34908
34909 2009-10-28 Robert Millan <rmh.grub@aybabtu.com>
34910
34911 * Makefile.in (TARGET_CPPFLAGS): Add `-nostdinc'.
34912
34913 2009-10-28 Robert Millan <rmh.grub@aybabtu.com>
34914
34915 * include/grub/misc.h: Stop checking for APPLE_CC.
34916
34917 2009-10-28 Robert Millan <rmh.grub@aybabtu.com>
34918
34919 * kern/i386/coreboot/init.c (grub_exit): Reimplement in a way that
34920 doesn't cause an infinite call loop.
34921
34922 2009-10-28 Felix Zielcke <fzielcke@z-51.de>
34923
34924 * commands/acpi.c (grub_cmd_acpi): Fix the out of memory error
34925 strings.
34926
34927 2009-10-26 Robert Millan <rmh.grub@aybabtu.com>
34928
34929 * autogen.sh: Support addition of external modules via `GRUB_CONTRIB'
34930 variable.
34931 * Makefile.in: Likewise.
34932
34933 2009-10-26 Robert Millan <rmh.grub@aybabtu.com>
34934
34935 * gendistlist.sh: Simplify .svn check. Skip .bzr as well.
34936
34937 2009-10-26 Robert Millan <rmh.grub@aybabtu.com>
34938
34939 * Makefile.in (RMKFILES): Rewrite using $(wildcard).
34940
34941 2009-10-26 Robert Millan <rmh.grub@aybabtu.com>
34942
34943 * disk/scsi.c: Remove `<grub/machine/kernel.h>' (not needed).
34944
34945 2009-10-26 Robert Millan <rmh.grub@aybabtu.com>
34946
34947 * gensymlist.sh.in (COMPILE_TIME_ASSERT): Copy macro declaration
34948 from here ...
34949 * include/grub/misc.h (COMPILE_TIME_ASSERT): ... to here.
34950
34951 2009-10-26 Robert Millan <rmh.grub@aybabtu.com>
34952
34953 * Makefile.in (docs/grub.info): Use make syntax to ignore errors
34954 in $(MAKEINFO) invocation. This makes it clear in output that
34955 errors are being ignored.
34956
34957 2009-10-26 Robert Millan <rmh.grub@aybabtu.com>
34958
34959 * conf/i386-coreboot.rmk (script/sh/lexer.c_DEPENDENCIES): Moved
34960 from here ...
34961 * conf/common.rmk (script/sh/lexer.c_DEPENDENCIES): ... to here.
34962 * conf/i386-efi.rmk (script/sh/lexer.c_DEPENDENCIES): Remove.
34963 * conf/i386-ieee1275.rmk: Likewise.
34964 * conf/i386-pc.rmk: Likewise.
34965 * conf/powerpc-ieee1275.rmk: Likewise.
34966 * conf/sparc64-ieee1275.rmk: Likewise.
34967 * conf/x86_64-efi.rmk: Likewise.
34968
34969 2009-10-26 Colin Watson <cjwatson@ubuntu.com>
34970
34971 * util/grub-editenv.c (main): If only a command is given, use
34972 DEFAULT_DIRECTORY "/" GRUB_ENVBLK_DEFCFG as a default file name.
34973 (usage): FILENAME is now optional and has a default.
34974
34975 2009-10-26 Colin Watson <cjwatson@ubuntu.com>
34976
34977 Improve grub-mkconfig performance when there are several menu
34978 entries on a single filesystem.
34979
34980 * util/grub.d/10_linux.in (linux_entry): Cache the output of
34981 prepare_grub_to_access_device.
34982 * util/grub.d/10_kfreebsd.in (kfreebsd_entry): Likewise.
34983 * util/grub.d/30_os-prober.in: Likewise.
34984
34985 2009-10-26 Robert Millan <rmh.grub@aybabtu.com>
34986
34987 * util/grub.d/10_freebsd.in: Remove.
34988 * util/grub.d/10_kfreebsd.in: New file (based on 10_linux.in).
34989 * configure.ac: Set host_kernel=kfreebsd for FreeBSD and GNU/kFreeBSD.
34990
34991 2009-10-26 Robert Millan <rmh.grub@aybabtu.com>
34992
34993 * docs/grub.cfg: Fix example usage of *BSD loaders.
34994
34995 2009-10-25 Robert Millan <rmh.grub@aybabtu.com>
34996
34997 * util/i386/pc/grub-setup.c (setup): Add missing parameter to
34998 grub_util_error() call.
34999
35000 2009-10-25 Robert Millan <rmh.grub@aybabtu.com>
35001
35002 * include/grub/fs.h [GRUB_UTIL] (struct grub_fs): Add
35003 `reserved_first_sector' member.
35004 * fs/ext2.c [GRUB_UTIL] (grub_ext2_fs): Initialize
35005 `reserved_first_sector' to 1.
35006 * fs/fat.c [GRUB_UTIL] (grub_fat_fs): Likewise.
35007 * fs/ntfs.c [GRUB_UTIL] (grub_ntfs_fs): Likewise.
35008 * fs/hfsplus.c [GRUB_UTIL] (grub_hfsplus_fs): Likewise.
35009 * util/i386/pc/grub-setup.c (setup): Add safety check that probes for
35010 filesystems which begin at first sector.
35011 (options): New option --skip-fs-probe.
35012 (main): Handle --skip-fs-probe and pass it to setup().
35013
35014 2009-10-25 Robert Millan <rmh.grub@aybabtu.com>
35015
35016 * include/grub/misc.h: Fix wrong evaluation of APPLE_CC.
35017 (memset): Fix function prototype.
35018
35019 2009-10-25 Robert Millan <rmh.grub@aybabtu.com>
35020 2009-10-25 Vasily Averin <vvs@parallels.com>
35021
35022 * fs/ext2.c (grub_ext2_iterate_dir): Avoid infinite loop when
35023 `dirent.direntlen == 0'.
35024
35025 2009-10-25 Robert Millan <rmh.grub@aybabtu.com>
35026
35027 * fs/cpio.c [MODE_USTAR]: Initialize `tar' module instead of
35028 `cpio'.
35029 [! MODE_USTAR]: Initialize `cpio' module instead of `tar'.
35030
35031 2009-10-25 Robert Millan <rmh.grub@aybabtu.com>
35032
35033 * configure.ac: Check for `__ashldi3', `__ashrdi3', `__lshrdi3',
35034 `__trampoline_setup' and `__ucmpdi2'.
35035 * include/grub/powerpc/libgcc.h: Only export symbols for functions
35036 that libgcc provides.
35037
35038 2009-10-25 Robert Millan <rmh.grub@aybabtu.com>
35039
35040 * include/grub/powerpc/libgcc.h (memset): Remove function prototype.
35041 * include/grub/sparc64/libgcc.h (memset): Likewise.
35042 * include/grub/misc.h (memset, memcmp): New function prototypes.
35043
35044 2009-10-25 Robert Millan <rmh.grub@aybabtu.com>
35045
35046 * fs/cpio.c [MODE_USTAR]: Finish `tar' module instead of
35047 `cpio'.
35048 [! MODE_USTAR]: Finish `cpio' module instead of `tar'.
35049
35050 2009-10-25 Robert Millan <rmh.grub@aybabtu.com>
35051
35052 Patch from Samuel Thibault <samuel.thibault@ens-lyon.org>
35053 * docs/grub.cfg: Compensate for recent change in multiboot
35054 loader (since 2009-08-14 it won't pass filename to payload).
35055 * util/grub.d/10_hurd.in: Likewise.
35056
35057 2009-10-21 Felix Zielcke <fzielcke@z-51.de>
35058
35059 * config.guess: Update to latest version from config git
35060 repository.
35061 * config.sub: Likewise.
35062
35063 2009-10-20 Robert Millan <rmh.grub@aybabtu.com>
35064
35065 Fix build on sparc64.
35066
35067 * configure.ac: Perform checks for libgcc symbols before
35068 adding `-nostdlib' to LDFLAGS.
35069
35070 2009-10-16 Vladimir Serbinenko <phcoder@gmail.com>
35071
35072 Let user specify OpenBSD root device.
35073
35074 * loader/i386/bsd.c (openbsd_root): New variable.
35075 (openbsd_opts): New option 'root'.
35076 (OPENBSD_ROOT_ARG): New macro.
35077 (grub_openbsd_boot): Use 'openbsd_root'.
35078 (grub_cmd_openbsd): Fill 'openbsd_root'.
35079
35080 2009-10-16 Robert Millan <rmh.grub@aybabtu.com>
35081
35082 * NEWS: Misc adjustments.
35083
35084 2009-10-16 Vladimir Serbinenko <phcoder@gmail.com>
35085
35086 * NEWS: Mentioned XNU, ACPI, gptsync, password and parttool.
35087
35088 2009-10-16 Robert Millan <rmh.grub@aybabtu.com>
35089
35090 * configure.ac: Bump version to 1.97.
35091
35092 2009-10-16 Colin Watson <cjwatson@ubuntu.com>
35093
35094 * configure.ac (TARGET_CFLAGS): Add -mno-mmx -mno-sse -mno-sse2
35095 -mno-3dnow on x86 architectures. Some toolchains enable these
35096 features by default, but they rely on registers that aren't enabled
35097 in GRUB. Thanks to Vladimir Serbinenko for the suggestion.
35098
35099 2009-10-15 Robert Millan <rmh.grub@aybabtu.com>
35100
35101 Make entry text a bit more readable.
35102
35103 * util/grub.d/10_linux.in: Add `with' before `Linux'.
35104
35105 2009-10-15 Vladimir Serbinenko <phcoder@gmail.com>
35106
35107 * loader/i386/pc/xnu.c (grub_xnu_set_video): Fix loading splash image.
35108
35109 2009-10-15 Vladimir Serbinenko <phcoder@gmail.com>
35110
35111 * commands/xnu_uuid.c (grub_cmd_xnu_uuid): Remove duplicated bitwise
35112 operations.
35113
35114 2009-10-15 Vladimir Serbinenko <phcoder@gmail.com>
35115
35116 * configure.ac: Add missing dollar.
35117
35118 2009-10-15 Vladimir Serbinenko <phcoder@gmail.com>
35119
35120 Revert 2009-06-10 Pavel Roskin <proski@gnu.org>
35121
35122 * configure.ac: Put checks for __bswapsi2 and __bswapdi2.
35123 * include/grub/powerpc/libgcc.h: Don't use weak attribute for all
35124 exports.
35125 * include/grub/sparc64/libgcc.h: Likewise. Use
35126 preprocessor conditionals.
35127
35128 2009-10-14 Robert Millan <rmh.grub@aybabtu.com>
35129
35130 * conf/common.rmk (grub-dumpbios): Remove rule.
35131 (sbin_SCRIPTS, CLEANFILES): Remove `grub-dumpbios'.
35132 * util/grub-dumpbios.in: Remove file.
35133
35134 2009-10-14 Robert Millan <rmh.grub@aybabtu.com>
35135
35136 Refer to kernel of FreeBSD "kFreeBSD" to avoid confusion between
35137 the Operating System (FreeBSD) and its kernel (kernel of FreeBSD).
35138
35139 * loader/i386/bsd.c (grub_freebsd_boot): Read kernel environment
35140 from "kFreeBSD" namespace (rather than "FreeBSD"). Update all
35141 users.
35142
35143 (GRUB_MOD_INIT (bsd)): Rename "freebsd" command to "kfreebsd",
35144 "openbsd" to "kopenbsd", "netbsd" to "knetbsd", "freebsd_loadenv"
35145 to "kfreebsd_loadenv", "freebsd_module" to "kfreebsd_module",
35146 and "freebsd_module_elf" to "kfreebsd_module_elf". Update all
35147 users.
35148
35149 2009-10-12 Robert Millan <rmh.grub@aybabtu.com>
35150
35151 * term/tparm.c: Switch to GPLv3.
35152
35153 2009-10-09 Robert Millan <rmh.grub@aybabtu.com>
35154
35155 * include/grub/i386/cpuid.h: Add header protection.
35156
35157 2009-10-09 Robert Millan <rmh.grub@aybabtu.com>
35158
35159 Fail gracefuly when attempting to load 64-bit kFreeBSD on IA32 CPU.
35160
35161 * include/grub/i386/cpuid.h: New file.
35162 * commands/i386/cpuid.c: Include `<grub/i386/cpuid.h>'.
35163 (has_longmode): Rename to ...
35164 (grub_cpuid_has_longmode): ... this. Update all users. Remove
35165 `static' attribute.
35166 * loader/i386/bsd.c: Include `<grub/i386/cpuid.h>'.
35167 (grub_bsd_load_elf): Fail if load of 64-bit kernel was requested
35168 on a CPU that doesn't implement AMD64 instruction set.
35169
35170 2009-10-06 Colin Watson <cjwatson@ubuntu.com>
35171
35172 * Makefile.in (docs/stamp-vti): Depend on configure.ac as well, so
35173 that version.texi is rebuilt on version number changes.
35174
35175 2009-10-06 Colin Watson <cjwatson@ubuntu.com>
35176
35177 * Makefile.in: Don't set info_INFOS unless makeinfo was found.
35178 Fixes bug #27602.
35179
35180 2009-10-06 Colin Watson <cjwatson@ubuntu.com>
35181
35182 * util/i386/pc/grub-install.in: Source
35183 ${libdir}/grub/grub-mkconfig_lib before option processing, in order
35184 that the --grub-probe option will work.
35185 * util/sparc64/ieee1275/grub-install.in: Likewise.
35186
35187 2009-10-05 Robert Millan <rmh.grub@aybabtu.com>
35188
35189 * configure.ac: Bump version to 1.97~beta4.
35190
35191 2009-10-03 Robert Millan <rmh.grub@aybabtu.com>
35192
35193 Resync grub-mkdevicemap in x86_64-efi.
35194
35195 * conf/x86_64-efi.rmk (sbin_UTILITIES): Enable `grub-mkdevicemap'.
35196 (grub_mkdevicemap_SOURCES): Add missing `util/deviceiter.c' and
35197 `util/devicemap.c'.
35198
35199 2009-10-01 Colin Watson <cjwatson@ubuntu.com>
35200
35201 * util/grub-editenv.c (create_envblk_file): Write new block with a
35202 .new suffix and then rename it into place, to ensure atomic
35203 creation.
35204
35205 2009-09-28 Robert Millan <rmh.grub@aybabtu.com>
35206
35207 Do not automatically install headers.
35208
35209 * Makefile.in (include_DATA): Remove. Update all users.
35210
35211 2009-09-26 Robert Millan <rmh.grub@aybabtu.com>
35212
35213 * conf/common.rmk (pkglib_MODULES): Remove `lua.mod'.
35214 (lua_mod_SOURCES, lua_mod_CFLAGS, lua_mod_LDFLAGS): Remove.
35215
35216 * util/osdetect.lua: Remove.
35217 * script/lua/lauxlib.c: Likewise.
35218 * script/lua/ldebug.c: Likewise.
35219 * script/lua/grub_main.c: Likewise.
35220 * script/lua/lauxlib.h: Likewise.
35221 * script/lua/ldebug.h: Likewise.
35222 * script/lua/ltablib.c: Likewise.
35223 * script/lua/liolib.c: Likewise.
35224 * script/lua/lstrlib.c: Likewise.
35225 * script/lua/lualib.h: Likewise.
35226 * script/lua/ldo.c: Likewise.
35227 * script/lua/ldump.c: Likewise.
35228 * script/lua/ldo.h: Likewise.
35229 * script/lua/loslib.c: Likewise.
35230 * script/lua/lundump.c: Likewise.
35231 * script/lua/grub_lib.c: Likewise.
35232 * script/lua/ldblib.c: Likewise.
35233 * script/lua/lundump.h: Likewise.
35234 * script/lua/lmem.c: Likewise.
35235 * script/lua/grub_lib.h: Likewise.
35236 * script/lua/lmathlib.c: Likewise.
35237 * script/lua/lstate.c: Likewise.
35238 * script/lua/ltm.c: Likewise.
35239 * script/lua/lvm.c: Likewise.
35240 * script/lua/lmem.h: Likewise.
35241 * script/lua/lstate.h: Likewise.
35242 * script/lua/ltm.h: Likewise.
35243 * script/lua/ltable.c: Likewise.
35244 * script/lua/lvm.h: Likewise.
35245 * script/lua/llex.c: Likewise.
35246 * script/lua/lgc.c: Likewise.
35247 * script/lua/grub_lua.h: Likewise.
35248 * script/lua/loadlib.c: Likewise.
35249 * script/lua/lfunc.c: Likewise.
35250 * script/lua/lopcodes.c: Likewise.
35251 * script/lua/lparser.c: Likewise.
35252 * script/lua/ltable.h: Likewise.
35253 * script/lua/llex.h: Likewise.
35254 * script/lua/lgc.h: Likewise.
35255 * script/lua/lfunc.h: Likewise.
35256 * script/lua/lbaselib.c: Likewise.
35257 * script/lua/lopcodes.h: Likewise.
35258 * script/lua/lparser.h: Likewise.
35259 * script/lua/lzio.c: Likewise.
35260 * script/lua/linit.c: Likewise.
35261 * script/lua/lobject.c: Likewise.
35262 * script/lua/llimits.h: Likewise.
35263 * script/lua/lstring.c: Likewise.
35264 * script/lua/lzio.h: Likewise.
35265 * script/lua/lapi.c: Likewise.
35266 * script/lua/lcode.c: Likewise.
35267 * script/lua/lua.h: Likewise.
35268 * script/lua/lobject.h: Likewise.
35269 * script/lua/lstring.h: Likewise.
35270 * script/lua/lapi.h: Likewise.
35271 * script/lua/lcode.h: Likewise.
35272 * script/lua/luaconf.h: Likewise.
35273
35274 2009-09-26 Colin Watson <cjwatson@ubuntu.com>
35275
35276 * docs/grub.texi (Command-line and menu entry commands): Document
35277 date and echo commands.
35278
35279 2009-09-24 Pavel Roskin <proski@gnu.org>
35280
35281 * include/grub/kernel.h (struct grub_module_header): Remove
35282 `grub_module_header_types'. Make `type' unsigned. Make `size'
35283 32-bit on all platforms.
35284 * util/elf/grub-mkimage.c (load_modules): Treat `type' as an
35285 8-bit field. Use grub_host_to_target32() for `size'.
35286 * util/i386/efi/grub-mkimage.c (make_mods_section): Likewise.
35287 * util/i386/pc/grub-mkimage.c (generate_image): Likewise.
35288 * util/sparc64/ieee1275/grub-mkimage.c (generate_image): Likewise.
35289
35290 2009-09-24 Robert Millan <rmh.grub@aybabtu.com>
35291
35292 Fix "lost keypress" bug in at_keyboard.
35293
35294 * term/i386/pc/at_keyboard.c (grub_at_keyboard_checkkey): New function.
35295 Checks for readyness of input buffer (without flushing it).
35296 (grub_at_keyboard_term): Use grub_at_keyboard_checkkey() rather
35297 than grub_at_keyboard_getkey_noblock() for `checkkey' struct member.
35298
35299 2009-09-24 Robert Millan <rmh.grub@aybabtu.com>
35300
35301 * util/i386/pc/grub-mkimage.c (generate_image): Enclose BIOS-specific
35302 size check within GRUB_MACHINE_PCBIOS section.
35303
35304 2009-09-24 Robert Millan <rmh.grub@aybabtu.com>
35305
35306 * include/grub/i386/at_keyboard.h (KEYBOARD_ISREADY): Negate
35307 return value.
35308 * term/i386/pc/at_keyboard.c (grub_keyboard_getkey): Negate
35309 KEYBOARD_ISREADY check.
35310 (grub_at_keyboard_checkkey): Rename to ...
35311 (grub_at_keyboard_getkey_noblock): ... this. Update all users.
35312 Remove gratuitous cast.
35313
35314 2009-09-23 Colin Watson <cjwatson@ubuntu.com>
35315
35316 * configure.ac: Call AC_PROG_MKDIR_P.
35317 * Makefile.in (docs/stamp-vti): Create docs directory. Create
35318 version.texi in $(builddir) rather than $(srcdir).
35319 (docs/grub.info): Create docs directory. Prepend $(builddir)/docs
35320 to makeinfo's @include search path.
35321
35322 2009-09-23 Felix Zielcke <fzielcke@z-51.de>
35323
35324 * util/grub-mkconfig_lib.in (grub_file_is_not_garbage): Cope with `*.dpkg-*'
35325
35326 2009-09-23 Felix Zielcke <fzielcke@z-51.de>
35327
35328 * util/grub-mkconfig_lib.in (grub_file_is_not_garbage): Add support
35329 for `*.dpkg-new'.
35330
35331 2009-09-21 Colin Watson <cjwatson@ubuntu.com>
35332
35333 Build info documentation. Some code borrowed from Automake.
35334
35335 * configure.ac: Check for makeinfo.
35336 * Makefile.in (MAKEINFO, INFOS, info_INFOS): New variables.
35337 (MAINTAINER_CLEANFILES): Add $(INFOS), docs/stamp-vti, and
35338 docs/version.texi.
35339 (MOSTLYCLEANFILES): Add vti.tmp.
35340 (docs/version.texi, docs/stamp-vti): Update automatically.
35341 (docs/grub.info): Build info documentation. Use --force and ignore
35342 errors for now.
35343 (all-local): Add $(INFOS).
35344 (install-local): Install info files.
35345 (uninstall): Uninstall info files.
35346 * docs/version.texi: Remove from revision control. This file is
35347 automatically generated on build now.
35348 * gendistlist.sh: Add `*.info'.
35349
35350 2009-09-21 Felix Zielcke <fzielcke@z-51.de>
35351
35352 * kern/term.c: Fix indentation.
35353
35354 2009-09-21 Felix Zielcke <fzielcke@z-51.de>
35355
35356 * util/hostdisk.c: Fix a comment.
35357
35358 2009-09-20 Robert Millan <rmh.grub@aybabtu.com>
35359
35360 Fix regression introduced in r2539.
35361
35362 * term/usb_keyboard.c (USB_HID_DEVICE_TO_HOST): Change from 0x61
35363 to 0xA1.
35364
35365 2009-09-19 Colin Watson <cjwatson@ubuntu.com>
35366
35367 * util/grub.d/30_os-prober.in: Don't throw away stderr from
35368 os-prober. Under normal operation, it does not print anything to
35369 stderr; if it does, we need to debug it, and throwing away stderr
35370 makes that excessively difficult.
35371
35372 2009-09-16 Vladimir Serbinenko <phcoder@gmail.com>
35373
35374 * mmap/mmap.c (grub_cmd_badram): Fix off-by-one error.
35375
35376 2009-09-16 Robert Millan <rmh.grub@aybabtu.com>
35377
35378 * aclocal.m4 (AC_LANG_PROGRAM): New macro. Overrides stock
35379 AC_LANG_PROGRAM from autoconf.
35380 (grub_ASM_USCORE, grub_PROG_OBJCOPY_ABSOLUTE): Add missing
35381 prototypes (fixes warning).
35382
35383 * configure.ac: Add `-Werror' to TARGET_CFLAGS unless
35384 `--disable-werror' was used.
35385
35386 2009-09-16 Robert Millan <rmh.grub@aybabtu.com>
35387
35388 * partmap/msdos.c (pc_partition_map_iterate): Fix possible use of
35389 uninitialized `lastaddr'.
35390
35391 2009-09-15 Vladimir Serbinenko <phcoder@gmail.com>
35392
35393 * partmap/msdos.c (pc_partition_map_iterate): Detect and break loops.
35394
35395 2009-09-14 Colin Watson <cjwatson@ubuntu.com>
35396
35397 * commands/test.c (get_fileinfo): Return immediately if
35398 grub_fs_probe fails.
35399
35400 2009-09-14 José Martínez <xosemp@gmail.com>
35401
35402 * commands/acpi.c (grub_cmd_acpi): Fix loading ACPI tables from file.
35403
35404 2009-09-14 Colin Watson <cjwatson@ubuntu.com>
35405
35406 * util/grub.d/30_os-prober.in: Cope with Windows 7 in os-prober
35407 output.
35408
35409 2009-09-13 Robert Millan <rmh.grub@aybabtu.com>
35410
35411 * configure.ac: Remove --enable-grub-pe2elf. Only build
35412 grub-pe2elf when needed by the build system itself.
35413 * conf/common.rmk: Remove $(enable_grub_pe2elf) check.
35414
35415 2009-09-12 Robert Millan <rmh.grub@aybabtu.com>
35416
35417 * configure.ac: Bump version to 1.97~beta3.
35418 * docs/version.texi: Likewise.
35419
35420 2009-09-12 Robert Millan <rmh.grub@aybabtu.com>
35421
35422 * video/i386/pc/vbe.c (grub_vbe_get_video_mode_info): Move packed
35423 mode special handling (grub_vbe_bios_set_dac_palette_width() call)
35424 from here ...
35425 * loader/i386/linux.c [GRUB_MACHINE_PCBIOS]
35426 (grub_linux_setup_video): ... to here (with some adjustments).
35427
35428 2009-09-12 Robert Millan <rmh.grub@aybabtu.com>
35429
35430 Fix memory corruption issue (spotted by Colin Watson).
35431
35432 * kern/i386/pc/startup.S (grub_vbe_bios_getset_dac_palette): Fix bug
35433 causing returned size to be stored in an incorrect memory location.
35434 Fix use of uninitialized value when storing the returned size.
35435
35436 2009-09-12 Yves Blusseau <blusseau@zetam.org>
35437
35438 Change clean rules to properly remove files
35439
35440 * genmk.rb: add new clean rules
35441 * Makefile.in (clean): add the new targets
35442 (mostlyclean): likewise
35443
35444 2009-09-11 Colin Watson <cjwatson@ubuntu.com>
35445
35446 * include/grub/ntfs.h (struct grub_fshelp_node): Change `size'
35447 to grub_uint64_t.
35448 * fs/ntfs.c (init_file): Understand 64-bit sizes for
35449 non-resident files.
35450
35451 2009-09-11 Colin Watson <cjwatson@ubuntu.com>
35452
35453 * configure.ac: Don't look for help2man when cross-compiling. Fixes
35454 part of bug #27349.
35455
35456 2009-09-10 Felix Zielcke <fzielcke@z-51.de>
35457
35458 * util/grub-mkconfig.in: Make the created config mode 400 and
35459 print a warning if it fails.
35460
35461 2009-09-10 Robert Millan <rmh.grub@aybabtu.com>
35462
35463 * util/grub.d/40_custom.in: Ask user to type custom entries below
35464 comment, rather than below 'exec tail' line.
35465
35466 2009-09-10 Colin Watson <cjwatson@ubuntu.com>
35467
35468 * util/grub.d/40_custom.in: Make sure that the explanatory text is
35469 visible in grub.cfg.
35470
35471 2009-09-10 Colin Watson <cjwatson@ubuntu.com>
35472
35473 * util/grub.d/40_custom.in: Make it a little clearer how to use this
35474 file.
35475
35476 2009-09-10 Felix Zielcke <fzielcke@z-51.de>
35477
35478 * docs/grub.cfg: Add an example menu entry for memtest86+.
35479
35480 2009-09-09 Felix Zielcke <fzielcke@z-51.de>
35481
35482 * config.guess: Update to latest version from config git.
35483 * config.sub: Likewise.
35484
35485 2009-09-08 Colin Watson <cjwatson@ubuntu.com>
35486
35487 * script/sh/execute.c (grub_script_execute_cmdline): Set "?" in
35488 unknown-command case. Fixes bug #27320.
35489
35490 2009-09-08 Felix Zielcke <fzielcke@z-51.de>
35491
35492 * kern/rescue_parser.c (grub_rescue_parse_line): Only suggest to try
35493 `help' if the command exists.
35494
35495 2009-09-06 Robert Millan <rmh.grub@aybabtu.com>
35496
35497 * INSTALL: Require GCC 4.1.3 or later.
35498
35499 2009-09-06 Yves Blusseau <blusseau@zetam.org>
35500
35501 * Makefile.in (RMKFILES): add i386-qemu.rmk
35502 (MAINTAINER_CLEANFILES): add $(srcdir)/DISTLIST $(srcdir)/config.h.in
35503 $(srcdir)/stamp-h.in
35504
35505 2009-09-05 Robert Millan <rmh.grub@aybabtu.com>
35506
35507 * util/grub-probe.c (probe): Comment out buggy codepath, which
35508 was unexpectedly enabled by Colin Watson's 2009-09-02 fix. This
35509 should be re-enabled after 1.97.
35510
35511 2009-09-05 Felix Zielcke <fzielcke@z-51.de>
35512
35513 * gendistlist.sh: Add `grub-dumpdevtree' and `*.lua' to the list
35514 find searches for.
35515
35516 2009-09-04 Vladimir Serbinenko <phcoder@gmail.com>
35517
35518 * loader/i386/xnu.c (grub_cpu_xnu_fill_devicetree): Remove
35519 unnecessary calls to grub_error.
35520
35521 2009-09-04 Colin Watson <cjwatson@ubuntu.com>
35522
35523 * NEWS: Mention `keystatus' and Unicode fonts.
35524
35525 2009-09-04 Robert Millan <rmh.grub@aybabtu.com>
35526
35527 * configure.ac: Bump version to 1.97~beta2.
35528 * docs/version.texi: Likewise.
35529
35530 2009-09-03 Colin Watson <cjwatson@ubuntu.com>
35531
35532 * configure.ac: By default, GCC 4.4 generates .eh_frame sections
35533 containing unwind information in some cases where it previously did
35534 not. Use -fno-dwarf2-cfi-asm if available to restore the old
35535 behaviour. See http://patchwork.kernel.org/patch/8555/ for related
35536 discussion.
35537
35538 2009-09-02 Yves BLUSSEAU <blusseau@zetam.org>
35539
35540 Embedding loadenv module into grub-emu
35541
35542 * conf/i386-pc.rmk (grub_emu_SOURCES): add lib/envblk.c and
35543 commands/loadenv.c
35544 * conf/i386-coreboot.rmk (grub_emu_SOURCES): Likewise
35545 * conf/i386-efi.rmk (grub_emu_SOURCES): Likewise
35546 * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Likewise
35547 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise
35548 * conf/sparc64-ieee1275.rmk (grub_emu_SOURCES): Likewise
35549 * conf/x86_64-efi.rmk (grub_emu_SOURCES): Likewise
35550
35551 2009-09-03 Magnus Granberg <zorry@ume.nu>
35552
35553 * aclocal.m4: Add grub_CHECK_PIE. It check if the compiler
35554 include -fPIE in the default specs.
35555 * configure.ac: Check if pie_possible is yes and add -fno-PIE
35556 to TARGET_CFLAGS.
35557
35558 2009-09-03 Felix Zielcke <fzielcke@z-51.de>
35559
35560 * INSTALL: Note that GNU Bison 2.3 or later is required.
35561
35562 2009-09-03 Colin Watson <cjwatson@ubuntu.com>
35563
35564 * kern/i386/pc/startup.S: Fix typo.
35565
35566 2009-09-02 Vladimir Serbinenko <phcoder@gmail.com>
35567
35568 * efiemu/loadcore.c (SUFFIX (grub_efiemu_loadcore_load)): Fix style
35569 according to GCS.
35570
35571 2009-09-02 Colin Watson <cjwatson@ubuntu.com>
35572
35573 * docs/grub.texi (Naming convention): Describe one-based partition
35574 numbering.
35575 (Device syntax): Likewise.
35576 (File name syntax): Likewise.
35577 (Block list syntax): Likewise.
35578 (Making a GRUB bootable CD-ROM): Talk about grub.cfg rather than
35579 menu.lst.
35580 (File name syntax): Likewise.
35581 (Command-line and menu entry commands): Document acpi, blocklist,
35582 crc, export, insmod, keystatus, ls, set, and unset commands.
35583
35584 2009-09-02 Colin Watson <cjwatson@ubuntu.com>
35585
35586 * commands/keystatus.c (GRUB_MOD_INIT (keystatus)): Adjust summary
35587 to avoid implying that only one of --shift, --ctrl, or --alt may be
35588 used.
35589
35590 2009-09-02 Colin Watson <cjwatson@ubuntu.com>
35591
35592 * util/grub-probe.c (probe): Test st.st_mode using S_ISREG macro
35593 rather than comparing against S_IFREG, which will almost never work.
35594
35595 2009-09-01 Vladimir Serbinenko <phcoder@gmail.com>
35596
35597 * commands/loadenv.c (check_blocklists): Fix off-by-one error.
35598 (write_blocklists): Likewise.
35599
35600 2009-09-01 Colin Watson <cjwatson@ubuntu.com>
35601
35602 * script/lua/grub_lua.h (fputs): Supply a format string as the first
35603 argument to grub_printf.
35604
35605 2009-09-01 Felix Zielcke <fzielcke@z-51.de>
35606
35607 * genmk.rb: Add quotes around $(TARGET_OBJ2ELF) to cope with
35608 non GNU test.
35609
35610 2009-08-30 Vladimir Serbinenko <phcoder@gmail.com>
35611
35612 * kern/file.c (grub_file_read): Spelling fix
35613
35614 2009-08-30 Vladimir Serbinenko <phcoder@gmail.com>
35615
35616 * loader/i386/bsdXX.c (SUFFIX (grub_freebsd_load_elfmodule)): Fix
35617 loading of headers in some cases.
35618
35619 2009-08-30 Robert Millan <rmh.grub@aybabtu.com>
35620
35621 * configure.ac: Bump version to 1.97~beta1.
35622 * docs/version.texi: Likewise.
35623
35624 2009-08-29 Vladimir Serbinenko <phcoder@gmail.com>
35625
35626 * include/grub/i386/xnu.h: Add license header.
35627 include grub/err.h explicitly.
35628
35629 2009-08-29 Robert Millan <rmh.grub@aybabtu.com>
35630
35631 * util/grub.d/10_freebsd.in: Detect `ufs1' and `ufs2' and map them
35632 to `ufs' in the vfs.root.mountfrom kernel parameter.
35633
35634 2009-08-29 Robert Millan <rmh.grub@aybabtu.com>
35635
35636 * term/i386/pc/serial.c: Include `<grub/machine/memory.h>'.
35637
35638 [GRUB_MACHINE_PCBIOS] (serial_hw_io_addr): Macroify initialization
35639 value (0x0400 -> GRUB_MEMORY_MACHINE_BIOS_DATA_AREA_ADDR).
35640
35641 [! GRUB_MACHINE_PCBIOS] (GRUB_SERIAL_PORT_NUM): Calculate using
35642 `ARRAY_SIZE' macro.
35643
35644 2009-08-28 Vladimir Serbinenko <phcoder@gmail.com>
35645
35646 * kern/file.c (grub_file_read): Check offset.
35647 * fs/hfs.c (grub_hfs_read_file): Remove unnecessary offset check.
35648 * fs/jfs.c (grub_jfs_read_file): Likewise.
35649 * fs/ntfs.c (grub_ntfs_read): Likewise.
35650 * fs/reiserfs.c (grub_reiserfs_read): Likewise.
35651 * fs/minix.c (grub_minix_read_file): Correct offset check.
35652 * fs/ufs.c (grub_ufs_read_file): Likewise.
35653
35654 2009-08-28 Colin Watson <cjwatson@ubuntu.com>
35655
35656 * term/i386/pc/console.c (bios_data_area): Cast
35657 GRUB_MEMORY_MACHINE_BIOS_DATA_AREA_ADDR explicitly.
35658
35659 2009-08-28 Vladimir Serbinenko <phcoder@gmail.com>
35660
35661 1-bit optimised blitters.
35662
35663 * include/grub/fbblit.h (grub_video_fbblit_replace_32bit_1bit): New
35664 prototype.
35665 (grub_video_fbblit_replace_24bit_1bit): Likewise.
35666 (grub_video_fbblit_replace_16bit_1bit): Likewise.
35667 (grub_video_fbblit_replace_8bit_1bit): Likewise.
35668 (grub_video_fbblit_blend_XXXA8888_1bit): Likewise.
35669 (grub_video_fbblit_blend_XXX888_1bit): Likewise.
35670 (grub_video_fbblit_blend_XXX565_1bit): Likewise.
35671 * video/fb/fbblit.c (grub_video_fbblit_replace_32bit_1bit): New
35672 function.
35673 (grub_video_fbblit_replace_24bit_1bit): Likewise.
35674 (grub_video_fbblit_replace_16bit_1bit): Likewise.
35675 (grub_video_fbblit_replace_8bit_1bit): Likewise.
35676 (grub_video_fbblit_blend_XXXA8888_1bit): Likewise.
35677 (grub_video_fbblit_blend_XXX888_1bit): Likewise.
35678 (grub_video_fbblit_blend_XXX565_1bit): Likewise.
35679 * video/fb/video_fb.c (common_blitter): Use 1-bit optimised blitters
35680 when possible.
35681 * video/video.c (grub_video_get_blit_format): Return
35682 GRUB_VIDEO_BLIT_FORMAT_1BIT_PACKED if bpp = 1.
35683
35684 2009-08-28 Colin Watson <cjwatson@ubuntu.com>
35685
35686 * normal/cmdline.c (grub_cmdline_get): Supply a format string as
35687 the first argument to grub_printf.
35688
35689 2009-08-28 Colin Watson <cjwatson@ubuntu.com>
35690 2009-08-28 Robert Millan <rmh.grub@aybabtu.com>
35691
35692 Add `getkeystatus' terminal method. Add a new `keystatus' command
35693 to query it.
35694
35695 * include/grub/term.h (GRUB_TERM_STATUS_SHIFT,
35696 GRUB_TERM_STATUS_CTRL, GRUB_TERM_STATUS_ALT): Definitions for
35697 modifier key bitmasks.
35698 (struct grub_term_input): Add `getkeystatus' member.
35699 (grub_getkeystatus): Add prototype.
35700 * kern/term.c (grub_getkeystatus): New function.
35701
35702 * include/grub/i386/pc/memory.h
35703 (GRUB_MEMORY_MACHINE_BIOS_DATA_AREA_ADDR): New macro.
35704 (struct grub_machine_bios_data_area): Define necessary parts of BIOS
35705 Data Area layout.
35706 * term/i386/pc/console.c (grub_console_getkeystatus): New function.
35707 (grub_console_term_input): Set `getkeystatus' member.
35708 * term/usb_keyboard.c (grub_usb_hid): Macroify HID protocol
35709 constants.
35710 (grub_usb_keyboard_getreport): Likewise.
35711 (grub_usb_keyboard_checkkey): Likewise.
35712 (grub_usb_keyboard_getkeystatus): New function.
35713 (grub_usb_keyboard_term): Set `getkeystatus' member.
35714
35715 * commands/keystatus.c: New file.
35716 * conf/common.rmk (pkglib_MODULES): Add keystatus.mod.
35717 (keystatus_mod_SOURCES): New variable.
35718 (keystatus_mod_CFLAGS): Likewise.
35719 (keystatus_mod_LDFLAGS): Likewise.
35720 * conf/i386-coreboot.rmk (grub_emu_SOURCES): Add
35721 commands/keystatus.c.
35722 * conf/i386-efi.rmk (grub_emu_SOURCES): Likewise.
35723 * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Likewise.
35724 * conf/i386-pc.rmk (grub_emu_SOURCES): Likewise.
35725 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
35726 * conf/sparc64-ieee1275.rmk (grub_emu_SOURCES): Likewise.
35727 * conf/x86_64-efi.rmk (grub_emu_SOURCES): Likewise.
35728
35729 2009-08-28 Vladimir Serbinenko <phcoder@gmail.com>
35730
35731 Split befs.mod and afs.mod into *_be.mod and *.mod
35732
35733 * conf/common.rmk (grub_probe_SOURCES): Add afs_be.c and befs_be.c.
35734 (grub_fstest_SOURCES): Likewise.
35735 (pkglib_MODULES): Add afs_be.mod and befs_be.mod.
35736 (afs_be_mod_SOURCES): New variable.
35737 (afs_be_mod_CFLAGS): Likewise.
35738 (afs_be_mod_LDFLAGS): Likewise.
35739 (befs_be_mod_SOURCES): Likewise.
35740 (befs_be_mod_CFLAGS): Likewise.
35741 (befs_be_mod_LDFLAGS): Likewise.
35742 * conf/i386-coreboot.rmk (grub_emu_SOURCES): Add afs_be.c and befs_be.c.
35743 * conf/i386-efi.rmk (grub_emu_SOURCES): Likewise.
35744 * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Likewise.
35745 * conf/i386-pc.rmk (grub_setup_SOURCES): Likewise.
35746 (grub_emu_SOURCES): Likewise.
35747 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
35748 * conf/sparc64-ieee1275.rmk (grub_emu_SOURCES): Likewise.
35749 * conf/x86_64-efi.rmk (grub_emu_SOURCES): Likewise.
35750 * fs/afs_be.c: New file.
35751 * fs/befs_be.c: New file.
35752 * fs/afs.c (GRUB_AFS_FSNAME_SUFFIX): New definition.
35753 (GRUB_AFS_FSNAME): Use GRUB_AFS_FSNAME_SUFFIX.
35754 (U16): Replaced with ...
35755 (grub_afs_to_cpu16): ...this. All users updated.
35756 (U32): Replaced with ...
35757 (grub_afs_to_cpu32): ...this. All users updated.
35758 (U64): Replaced with ...
35759 (grub_afs_to_cpu64): ...this. All users updated.
35760 (GRUB_AFS_BO_LITTLE_ENDIAN): Remove.
35761 (GRUB_AFS_BO_BIG_ENDIAN): Likewise.
35762 (grub_afs_validate_sblock): Check only one endianness.
35763 (GRUB_MOD_INIT (befs)) [MODE_BIGENDIAN && MODE_BFS]: Rename to ..
35764 (GRUB_MOD_INIT (befs_be)) [MODE_BIGENDIAN && MODE_BFS]: ... this.
35765 (GRUB_MOD_INIT (afs)) [MODE_BIGENDIAN && !MODE_BFS]: Rename to ..
35766 (GRUB_MOD_INIT (afs_be)) [MODE_BIGENDIAN && !MODE_BFS]: ... this.
35767 (GRUB_MOD_FINI (befs)) [MODE_BIGENDIAN && MODE_BFS]: Rename to ..
35768 (GRUB_MOD_FINI (befs_be)) [MODE_BIGENDIAN && MODE_BFS]: ... this.
35769 (GRUB_MOD_FINI (afs)) [MODE_BIGENDIAN && !MODE_BFS]: Rename to ..
35770 (GRUB_MOD_FINI (afs_be)) [MODE_BIGENDIAN && !MODE_BFS]: ... this.
35771
35772 2009-08-26 Bean <bean123ch@gmail.com>
35773
35774 * fs/xfs.c (GRUB_XFS_INO_INOINAG): Replace 1L with 1LL to support
35775 64-bit number.
35776 (GRUB_XFS_FSB_TO_BLOCK): Likewise.
35777 (grub_xfs_inode_block): Change return type to grub_uint64_t.
35778 (grub_xfs_read_inode): Change type of block to grub_uint64_t.
35779
35780 2009-08-25 Vladimir Serbinenko <phcoder@gmail.com>
35781
35782 NetBSD memory map support.
35783
35784 * include/grub/i386/bsd.h (NETBSD_BTINFO_MEMMAP): New definition.
35785 (grub_netbsd_btinfo_mmap_header): New structure.
35786 (grub_netbsd_btinfo_mmap_entry): Likewise.
35787 * loader/i386/bsd.c (grub_netbsd_boot): Pass memory map.
35788
35789 2009-08-25 Vladimir Serbinenko <phcoder@gmail.com>
35790
35791 Enable bsd.mod on coreboot.
35792
35793 * conf/i386-coreboot.rmk (pkglib_MODULES): Add bsd.mod.
35794 (bsd_mod_SOURCES): New variable.
35795 (bsd_mod_CFLAGS): Likewise.
35796 (bsd_mod_LDFLAGS): Likewise.
35797 (bsd_mod_ASFLAGS): Likewise.
35798 * loader/i386/bsd.c [!GRUB_MACHINE_PCBIOS]: Fix includes.
35799 (grub_bsd_get_device) [!GRUB_MACHINE_PCBIOS]: Set *biosdev to 0xff.
35800
35801 2009-08-25 Vladimir Serbinenko <phcoder@gmail.com>
35802
35803 Cleanup NetBSD root support.
35804
35805 * loader/i386/bsd.c (grub_netbsd_boot): Remove call to
35806 grub_bsd_get_device.
35807 Fix typo.
35808
35809 2009-08-25 Felix Zielcke <fzielcke@z-51.de>
35810
35811 * util/grub.d/00_header.in: Move check for the video backend of
35812 gfxterm from here ...
35813 * util/grub-mkconfig.in: ... to here. Enable gfxterm if there's
35814 a suitable video backend.
35815
35816 2009-08-25 Vladimir Serbinenko <phcoder@gmail.com>
35817
35818 Fix breakage in grub-setup.
35819
35820 * util/i386/pc/grub-setup.c (setup): Use "part_msdos" instead of
35821 "msdos_partition_map".
35822
35823 2009-08-25 Vladimir Serbinenko <phcoder@gmail.com>
35824
35825 Fix breakage in normal/auth.c.
35826
35827 * normal/auth.c (grub_iswordseparator): New function.
35828
35829 2009-08-25 Vladimir Serbinenko <phcoder@gmail.com>
35830
35831 Authentication support.
35832
35833 * commands/password.c: New file.
35834 * conf/common.rmk (pkglib_MODULES): Add password.mod.
35835 (password_mod_SOURCES): New variable.
35836 (password_mod_CFLAGS): Likewise.
35837 (password_mod_LDFLAGS): Likewise.
35838 (normal_mod_SOURCES): Add normal/auth.c.
35839 * conf/i386-coreboot.rmk (grub_emu_SOURCES): Add commands/password.c and
35840 normal/auth.c.
35841 * conf/i386-efi.rmk (grub_emu_SOURCES): Likewise.
35842 * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Likewise.
35843 * conf/i386-pc.rmk (grub_emu_SOURCES): Likewise.
35844 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
35845 * conf/sparc64-ieee1275.rmk (grub_emu_SOURCES): Likewise.
35846 * conf/x86_64-efi.rmk (grub_emu_SOURCES): Likewise.
35847 * include/grub/auth.h: New file.
35848 * include/grub/err.h (grub_err_t): New enum value
35849 GRUB_ERR_ACCESS_DENIED.
35850 * include/grub/menu.h (grub_menu_entry): New fields 'restricted' and
35851 'users'.
35852 * include/grub/normal.h (grub_cmdline_get): New argument 'history'.
35853 * normal/cmdline.c (grub_cmdline_get): New argument 'history'. All
35854 users updated.
35855 * normal/auth.c: New file.
35856 * normal/main.c (grub_normal_add_menu_entry): Handle --users option.
35857 (grub_cmdline_run): Don't allow to go to command line without
35858 authentication.
35859 * normal/menu.c (grub_menu_execute_entry): Handle restricted entries.
35860 * normal/menu_entry.c (grub_menu_entry_run): Don't allow editing
35861 menuentry without superuser rights.
35862 * normal/menu_viewer.c (grub_menu_viewer_show_menu): Don't exit if
35863 user isn't a superuser.
35864
35865 2009-08-24 Vladimir Serbinenko <phcoder@gmail.com>
35866
35867 Save space by inlining misc.c functions.
35868
35869 * kern/misc.c (grub_iswordseparator): Made static.
35870 * kern/misc.c (grub_strcat): Moved from here ...
35871 * include/grub/misc.h (grub_strcat): ... here. Inlined.
35872 * kern/misc.c (grub_strncat): Moved from here ...
35873 * include/grub/misc.h (grub_strncat): ... here. Inlined.
35874 * kern/misc.c (grub_strcasecmp): Moved from here ...
35875 * include/grub/misc.h (grub_strcasecmp): ... here. Inlined.
35876 * kern/misc.c (grub_strncasecmp): Moved from here ...
35877 * include/grub/misc.h (grub_strncasecmp): ... here. Inlined.
35878 * kern/misc.c (grub_isalpha): Moved from here ...
35879 * include/grub/misc.h (grub_isalpha): ... here. Inlined.
35880 * kern/misc.c (grub_isdigit): Moved from here ...
35881 * include/grub/misc.h (grub_isdigit): ... here. Inlined.
35882 * kern/misc.c (grub_isgraph): Moved from here ...
35883 * include/grub/misc.h (grub_isgraph): ... here. Inlined.
35884 * kern/misc.c (grub_tolower): Moved from here ...
35885 * include/grub/misc.h (grub_tolower): ... here. Inlined.
35886
35887 2009-08-24 Vladimir Serbinenko <phcoder@gmail.com>
35888
35889 * script/sh/function.c (grub_script_function_find): Cut error message
35890 not to flood terminal.
35891 * script/sh/lexer.c (grub_script_yylex): Remove command line length
35892 limit.
35893 * script/sh/script.c (grub_script_arg_add): Duplicate string.
35894
35895 2009-08-24 Colin Watson <cjwatson@ubuntu.com>
35896
35897 * term/usb_keyboard.c (grub_usb_keyboard_getreport): Make
35898 `report' grub_uint8_t *.
35899 (grub_usb_keyboard_checkkey): Make `data' elements grub_uint8_t.
35900 Use a 50-millisecond timeout rather than just repeating
35901 grub_usb_keyboard_getreport 50 times.
35902 (grub_usb_keyboard_getkey): Make `data' elements grub_uint8_t.
35903
35904 2009-08-24 Vladimir Serbinenko <phcoder@gmail.com>
35905
35906 Rename *_partition_map to part_*
35907
35908 * partmap/acorn.c (grub_acorn_partition_map): Set name to 'part_acorn'.
35909 * partmap/amiga.c (grub_amiga_partition_map): Set name to 'part_amiga'.
35910 * partmap/apple.c (grub_apple_partition_map): Set name to 'part_apple'.
35911 * partmap/gpt.c (grub_gpt_partition_map): Set name to 'part_gpt'.
35912 All users updated.
35913 * partmap/msdos.c (grub_msdos_partition_map): Set name to 'part_msdos'.
35914 All users updated.
35915 * partmap/sun.c (grub_sun_partition_map): Set name to 'part_sun'.
35916 * util/grub-probe.c (probe_partmap): Don't transform partition name
35917 to get module name.
35918
35919 2009-08-24 Vladimir Serbinenko <phcoder@gmail.com>
35920
35921 Fix OpenBSD and NetBSD support.
35922
35923 * include/grub/i386/bsd.h (GRUB_BSD_TEMP_BUFFER): Change to resolve
35924 memory address conflict.
35925 (OPENBSD_MMAP_ACPI): New definition.
35926 (OPENBSD_MMAP_NVS): Likewise.
35927 * loader/i386/bsd.c (grub_openbsd_boot): Support OPENBSD_MMAP_ACPI
35928 and OPENBSD_MMAP_NVS.
35929 Add memory map terminator
35930 Explicit cast when calling grub_unix_real_boot.
35931 (grub_netbsd_boot): Explicit cast when calling grub_unix_real_boot.
35932
35933 2009-08-24 Vladimir Serbinenko <phcoder@gmail.com>
35934
35935 Let user specify NetBSD root device.
35936
35937 * loader/i386/bsd.c (netbsd_root): New variable.
35938 (netbsd_opts): New option 'root'.
35939 (NETBSD_ROOT_ARG): New macro.
35940 (grub_netbsd_boot): Use 'netbsd_root'.
35941 (grub_bsd_unload): Free 'netbsd_root'.
35942 (grub_cmd_netbsd): Fill 'netbsd_root'.
35943
35944 2009-08-24 Vladimir Serbinenko <phcoder@gmail.com>
35945
35946 Support for 64-bit NetBSD.
35947
35948 * loader/i386/bsd.c (grub_bsd_load_elf): Apply correct mask to entry
35949 point when booting non-FreeBSD.
35950
35951 2009-08-24 Vladimir Serbinenko <phcoder@gmail.com>
35952
35953 Support --no-smp and --no-acpi for NetBSD.
35954
35955 * include/grub/i386/bsd.h (NETBSD_AB_NOSMP): New definition.
35956 (NETBSD_AB_NOACPI): Likewise.
35957 * loader/i386/bsd.c (netbsd_opts): New entries no-smp and no-acpi.
35958 (netbsd_flags): Add NETBSD_AB_NOSMP, NETBSD_AB_NOACPI.
35959
35960 2009-08-23 Vladimir Serbinenko <phcoder@gmail.com>
35961
35962 * fs/hfsplus.c (grub_hfsplus_mount): Don't ignore grub_hfsplus_read_file
35963 errors.
35964 (grub_hfsplus_btree_iterate_node): Don't ignore grub_hfsplus_read_file
35965 errors. Call grub_error when needed.
35966
35967 2009-08-23 Vladimir Serbinenko <phcoder@gmail.com>
35968
35969 * commands/search.c (search_fs): Try searching without autoload first.
35970 * util/grub-mkconfig_lib.in (prepare_grub_to_access_device): Load
35971 filesystem module explicitly for faster booting.
35972
35973 2009-08-23 Colin Watson <cjwatson@ubuntu.com>
35974
35975 * util/grub-mkconfig.in: Export GRUB_DISABLE_OS_PROBER.
35976
35977 2009-08-23 Colin Watson <cjwatson@ubuntu.com>
35978
35979 * util/grub.d/30_os-prober.in: Disable os-prober if
35980 `GRUB_DISABLE_OS_PROBER' was set to true.
35981
35982 2009-08-23 Robert Millan <rmh.grub@aybabtu.com>
35983
35984 * partmap/pc.c: Rename to ...
35985 * partmap/msdos.c: ... this. Update all users.
35986 (grub_pc_partition_map): Rename to ...
35987 (grub_msdos_partition_map): ... this. Update all users.
35988
35989 * parttool/pcpart.c: Rename to ...
35990 * parttool/msdospart.c: ... this. Update all users.
35991
35992 * include/grub/pc_partition.h: Rename to ...
35993 * include/grub/msdos_partition.h: ... this. Update all users.
35994 (grub_pc_partition_bsd_entry): Rename to ...
35995 (grub_msdos_partition_bsd_entry): ... this. Update all users.
35996 (grub_pc_partition_disk_label): Rename to ...
35997 (grub_msdos_partition_disk_label): ... this. Update all users.
35998 (grub_pc_partition_entry): Rename to ...
35999 (grub_msdos_partition_entry): ... this. Update all users.
36000 (grub_pc_partition_mbr): Rename to ...
36001 (grub_msdos_partition_mbr): ... this. Update all users.
36002 (grub_pc_partition): Rename to ...
36003 (grub_msdos_partition): ... this. Update all users.
36004 (grub_pc_partition_is_empty): Rename to ...
36005 (grub_msdos_partition_is_empty): ... this. Update all users.
36006 (grub_pc_partition_is_extended): Rename to ...
36007 (grub_msdos_partition_is_extended): ... this. Update all users.
36008 (grub_pc_partition_is_bsd): Rename to ...
36009 (grub_msdos_partition_is_bsd): ... this. Update all users.
36010
36011 * conf/common.rmk (amiga_mod_SOURCES, amiga_mod_CFLAGS)
36012 (amiga_mod_LDFLAGS, apple_mod_SOURCES, apple_mod_CFLAGS)
36013 (apple_mod_LDFLAGS, msdos_mod_SOURCES, msdos_mod_CFLAGS)
36014 (msdos_mod_LDFLAGS, sun_mod_SOURCES, sun_mod_CFLAGS)
36015 (sun_mod_LDFLAGS, acorn_mod_SOURCES, acorn_mod_CFLAGS)
36016 (acorn_mod_LDFLAGS, gpt_mod_SOURCES, gpt_mod_CFLAGS)
36017 (gpt_mod_LDFLAGS): Rename to ...
36018 (part_amiga_mod_SOURCES, part_amiga_mod_CFLAGS, part_amiga_mod_LDFLAGS)
36019 (part_apple_mod_SOURCES, part_apple_mod_CFLAGS, part_apple_mod_LDFLAGS)
36020 (part_msdos_mod_SOURCES, part_msdos_mod_CFLAGS, part_msdos_mod_LDFLAGS)
36021 (part_sun_mod_SOURCES, part_sun_mod_CFLAGS, part_sun_mod_LDFLAGS)
36022 (part_acorn_mod_SOURCES, part_acorn_mod_CFLAGS, part_acorn_mod_LDFLAGS)
36023 (part_gpt_mod_SOURCES, part_gpt_mod_CFLAGS)
36024 (part_gpt_mod_LDFLAGS): ... this.
36025 (pkglib_MODULES): Prefix partition modules with `part_'. Rename
36026 `pcpart.mod' to `msdospart.mod'.
36027 (pcpart_mod_SOURCES, pcpart_mod_CFLAGS, pcpart_mod_LDFLAGS): Rename
36028 to ...
36029 (msdospart_mod_SOURCES, msdospart_mod_CFLAGS)
36030 (msdospart_mod_LDFLAGS): ... this.
36031
36032 2009-08-23 Vladimir Serbinenko <phcoder@gmail.com>
36033
36034 * loader/i386/bsd.c (freebsd_opts): Rewritten to use extcmd.
36035 (openbsd_opts): Likewise.
36036 (netbsd_opts): Likewise.
36037 (freebsd_flags): Added 0 terminator.
36038 (openbsd_flags): Likewise.
36039 (netbsd_flags): Likewise.
36040 (grub_bsd_parse_flags): Rewritten to use extcmd. All users updated.
36041 (grub_cmd_freebsd): Transformed into extended command.
36042 (grub_cmd_openbsd): Likewise.
36043 (grub_cmd_netbsd): Likewise.
36044 (cmd_freebsd): Changed type to grub_extcmd_t.
36045 (cmd_openbsd): Likewise.
36046 (cmd_netbsd): Likewise.
36047 (GRUB_MOD_INIT (bsd)): Register grub_cmd_freebsd, grub_cmd_netbsd and
36048 grub_cmd_openbsd as extended commands.
36049 (GRUB_MOD_FINI (bsd)): Use grub_unregister_extcmd for cmd_freebsd,
36050 cmd_netbsd and cmd_openbsd
36051
36052 2009-08-22 Vladimir Serbinenko <phcoder@gmail.com>
36053
36054 * commands/xnu_uuid.c (transform): Use grub_memcpy instead of memcpy.
36055
36056 2009-08-21 Pavel Roskin <proski@gnu.org>
36057
36058 * Makefile.in (install-local): When checking if a file is in the
36059 build directory, use "test -e" to detect symlinks.
36060
36061 * Makefile.in (install-local): Remove all files in
36062 $(DESTDIR)$(pkglibdir) before installing new files there.
36063
36064 2009-08-18 Felix Zielcke <fzielcke@z-51.de>
36065
36066 * util/powerpc/ieee1275/grub-mkrescue.in (grub_mkimage): Use
36067 grub-mkelfimage.
36068
36069 2009-08-18 Felix Zielcke <fzielcke@z-51.de>
36070
36071 * util/grub-mkconfig.in: Don't use gfxterm by default if not
36072 explicitly specified by the user.
36073
36074 2009-08-18 Pavel Roskin <proski@gnu.org>
36075
36076 * include/grub/fbfill.h (struct grub_video_fbrender_target): Use
36077 grub_uint8_t pointer for data.
36078 * include/grub/fbutil.h (struct grub_video_fbblit_info):
36079 Likewise.
36080 * video/fb/fbutil.c: Remove unnecessary casts.
36081
36082 2009-08-17 Michal Suchanek <hramrach@centrum.cz>
36083
36084 VBE cleanup.
36085
36086 * video/i386/pc/vbe.c (vbe_mode_in_use): Removed (duplicate).
36087 (grub_vbe_set_video_mode): Save active mode info
36088 only after setting the mode.
36089 (grub_video_vbe_setup): Call 'grub_vbe_set_video_mode' with NULL as
36090 second argument.
36091
36092 2009-08-17 Michal Suchanek <hramrach@centrum.cz>
36093
36094 Rename variables for clarity.
36095
36096 * video/i386/pc/vbe.c (active_mode_info): Renamed to ...
36097 (active_vbe_mode_info): ... this. All users updated.
36098 (framebuffer): Rename 'active_mode' to 'active_vbe_mode'.
36099 All users updated.
36100 (initial_mode): Rename to ...
36101 (initial_vbe_mode): ... this. All users updated.
36102 (mode_in_use): Rename to ..
36103 (vbe_mode_in_use): ... this. All users updated.
36104 (mode_list): Rename to ..
36105 (vbe_mode_list): ... this. All users updated.
36106 (grub_vbe_set_video_mode): Rename 'mode' to 'vbe_mode', 'mode_info' to
36107 'vbe_mode_info' and 'old_mode' to 'old_vbe_mode'.
36108 (grub_video_vbe_init): Rename 'rm_mode_list' to 'rm_vbe_mode_list' and
36109 'mode_list_size' to 'vbe_mode_list_size'.
36110 (grub_video_vbe_setup): Rename 'mode_info' to 'vbe_mode_info',
36111 'best_mode_info' to 'best_vbe_mode_info' and
36112 'best_mode' to 'best_vbe_mode'
36113
36114 2009-08-17 Michal Suchanek <hramrach@centrum.cz>
36115
36116 Remove duplicate grub_video_fb_get_video_ptr.
36117
36118 * include/grub/fbutil.h (get_data_ptr): Rename to ...
36119 (grub_video_fb_get_video_ptr): ... this.
36120 * include/grub/video_fb.h (grub_video_fb_get_video_ptr): Removed.
36121 * video/fb/fbutil.c: Add comment about addressing.
36122 (get_data_ptr): Rename to ...
36123 (grub_video_fb_get_video_ptr): ... this. All users updated.
36124 * video/fb/video_fb.c (grub_video_fb_get_video_ptr): Remove.
36125
36126 2009-08-17 Robert Millan <rmh.grub@aybabtu.com>
36127
36128 * fs/fat.c (grub_fat_read_data): Remove `#if 0' braces around the
36129 grub_dprintf() that was just added.
36130
36131 2009-08-17 Robert Millan <rmh.grub@aybabtu.com>
36132
36133 * loader/i386/linux.c (GRUB_ASSUME_LINUX_HAS_FB_SUPPORT)
36134 (DEFAULT_VIDEO_MODE): Remove macros.
36135 (grub_linux_boot): Remove assumption that Linux has FB support,
36136 and use "text" as default video mode.
36137
36138 2009-08-15 Vladimir Serbinenko <phcoder@gmail.com>
36139
36140 * fs/affs.c (grub_affs_read_symlink): Change leftover grub_printf into
36141 grub_dprintf.
36142 * fs/fat.c (grub_fat_read_data): Likewise.
36143
36144 2009-08-14 Vladimir Serbinenko <phcoder@gmail.com>
36145
36146 * loader/i386/multiboot.c (grub_multiboot): Don't pass filename to
36147 payload.
36148 (grub_module): Likewise.
36149
36150 2009-08-14 Vladimir Serbinenko <phcoder@gmail.com>
36151
36152 * loader/i386/multiboot.c (grub_multiboot_unload): Don't free mbi and
36153 mbi->cmdline but free playground.
36154
36155 2009-08-14 Vladimir Serbinenko <phcoder@gmail.com>
36156
36157 Handle group offset on UFS1.
36158
36159 * fs/ufs.c (grub_ufs_sblock): New field 'cylg_mask'.
36160 (grub_ufs_read_inode) [!MODE_UFS2]: handle cylg_offset and cylg_mask.
36161
36162 2009-08-14 Vladimir Serbinenko <phcoder@gmail.com>
36163
36164 Split ufs.mod into ufs1.mod and ufs2.mod.
36165
36166 * conf/common.rmk (grub_probe_SOURCES): Add fs/ufs2.c.
36167 (grub_fstest_SOURCES): Likewise.
36168 (pkglib_MODULES): Remove ufs.mod. Add ufs1.mod and ufs2.mod.
36169 (ufs_mod_SOURCES): Remove.
36170 (ufs_mod_CFLAGS): Likewise.
36171 (ufs_mod_LDFLAGS): Likewise.
36172 (ufs1_mod_SOURCES): New variable.
36173 (ufs1_mod_CFLAGS): Likewise.
36174 (ufs1_mod_LDFLAGS): Likewise.
36175 (ufs2_mod_SOURCES): New variable.
36176 (ufs2_mod_CFLAGS): Likewise.
36177 (ufs2_mod_LDFLAGS): Likewise.
36178 * conf/i386-coreboot.rmk (grub_emu_SOURCES): Add fs/ufs2.c.
36179 * conf/i386-efi.rmk (util/i386/efi/grub-mkimage.c_DEPENDENCIES):
36180 Likewise.
36181 (grub_emu_SOURCES): Likewise.
36182 * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Likewise.
36183 * conf/i386-pc.rmk (grub_emu_SOURCES): Likewise.
36184 (grub_setup_SOURCES): Likewise.
36185 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
36186 * conf/sparc64.rmk (grub_emu_SOURCES): Likewise.
36187 (grub_setup_SOURCES): Likewise.
36188 * conf/x86_64-efi.rmk (util/i386/efi/grub-mkimage.c_DEPENDENCIES):
36189 Likewise.
36190 * fs/ufs2.c: New file.
36191 * fs/ufs.c: Separate UFS1 from UFS2 by using preprocessor.
36192
36193 2009-08-14 Vladimir Serbinenko <phcoder@gmail.com>
36194
36195 Framebuffer split.
36196
36197 * commands/i386/pc/vbetest.c (grub_cmd_vbetest): Restore video
36198 subsystem at the end.
36199 * conf/common.rmk (pkglib_MODULES): Add video_fb.mod.
36200 (video_fb_mod_SOURCES): New variable.
36201 (video_fb_mod_CFLAGS): Likewise.
36202 (video_fb_mod_LDFLAGS): Likewise.
36203 * conf/i386-pc.rmk (vbe_mod_SOURCES): Remove video/i386/pc/vbeblit.c,
36204 video/i386/pc/vbefill.c and video/i386/pc/vbeutil.c.
36205 * video/i386/pc/vbeblit.c: Moved from here ...
36206 * video/fb/fbblit.c: ..here. Replaced 'vbe' with 'fb'.
36207 * video/i386/pc/vbefill.c: Moved from here ...
36208 * video/fb/fbfill.c: ..here. Replaced 'vbe' with 'fb'.
36209 * video/i386/pc/vbeutil.c: Moved from here ...
36210 * video/fb/fbutil.c: ..here. Replaced 'vbe' with 'fb'.
36211 * include/grub/i386/pc/vbeblit.h: Moved from here ...
36212 * include/grub/fbblit.h: ... here. Replaced 'vbe' with 'fb'.
36213 * include/grub/i386/pc/vbefill.h: Moved from here ...
36214 * include/grub/fbfill.h: ... here. Replaced 'vbe' with 'fb'.
36215 * include/grub/i386/pc/vbeutil.h: Moved from here ...
36216 * include/grub/fbutil.h: ... here. Replaced 'vbe' with 'fb'.
36217 * include/grub/i386/pc/vbe.h: Moved framebuffer part ...
36218 * include/grub/video_fb.h: ... here. Replaced 'vbe' with 'fb'.
36219 * include/grub/video.h (GRUB_VIDEO_RENDER_TARGET_FRONT_BUFFER): Removed.
36220 (GRUB_VIDEO_RENDER_TARGET_BACK_BUFFER): Likewise.
36221 (grub_video_adapter): Added 'get_info_and_fini'.
36222 (grub_video_get_info_and_fini): New prototype.
36223 (grub_video_set_mode): make modestring const char *.
36224 * loader/i386/linux.c (grub_linux_setup_video): Use
36225 grub_video_get_info_and_fini.
36226 (grub_linux_boot): Move modesetting just before booting.
36227 * loader/i386/pc/xnu.c (grub_xnu_set_video): Use
36228 grub_video_get_info_and_fini.
36229 * video/i386/pc/vbe.c: Moved framebuffer part ...
36230 * video/fb/video_fb.c: ... here. Replaced 'vbe' with 'fb'.
36231 * video/i386/pc/vbe.c (grub_vbe_set_video_mode): Use
36232 grub_video_fbstd_colors and grub_video_fb_set_palette.
36233 (grub_video_vbe_init): Clear 'framebuffer' variable and use
36234 grub_video_fb_init.
36235 (grub_video_vbe_fini): Use grub_video_fb_fini.
36236 (grub_video_vbe_setup): Use framebuffer.render_target instead of
36237 render_target and use grub_video_fb_set_active_render_target and
36238 grub_video_fb_set_palette.
36239 (grub_video_vbe_set_palette): Use grub_video_fb_set_palette.
36240 (grub_video_vbe_set_viewport): Use grub_video_fb_set_viewport.
36241 (grub_video_vbe_adapter): Use framebuffer.
36242 * video/video.c (grub_video_get_info_and_fini): New function.
36243 (grub_video_set_mode): Make modestring const char *.
36244 (GRUB_MOD_INIT(video_video)): Don't set variables to 0 since these
36245 values are already initialised.
36246
36247 2009-08-14 Pavel Roskin <proski@gnu.org>
36248
36249 * boot/i386/pc/cdboot.S: Use LOCAL for local labels. Eliminate
36250 ABS and APPLE_CC.
36251 * boot/i386/pc/diskboot.S: Likewise.
36252 * boot/i386/pc/lnxboot.S: Likewise. Hardcode the number of code
36253 sectors allow compilation on MacOSX.
36254 * conf/i386-pc.rmk: Enable unconditional compilation of
36255 lnxboot.img.
36256
36257 2009-08-13 Colin Watson <cjwatson@ubuntu.com>
36258
36259 * util/grub-mkconfig.in: Export GRUB_HIDDEN_TIMEOUT.
36260 * util/grub.d/00_header.in: Enter interruptible sleep if
36261 GRUB_HIDDEN_TIMEOUT is set.
36262
36263 2009-08-13 Yves Blusseau <blusseau@zetam.org>
36264
36265 * include/grub/symbol.h: Add the LOCAL macro.
36266 * boot/i386/pc/boot.S: Use the LOCAL macro for all labels
36267 starting with "L_".
36268
36269 2009-08-13 Pavel Roskin <proski@gnu.org>
36270
36271 * boot/i386/pc/boot.S: Remove ABS macro, it's not required by
36272 any modern compilers we support.
36273
36274 * boot/i386/pc/boot.S: Remove all code dependent on APPLE_CC.
36275 Use local labels starting with "L_" so that Apple assembler
36276 knows they are local.
36277
36278 2009-08-10 Robert Millan <rmh.grub@aybabtu.com>
36279
36280 * include/grub/i386/bsd.h (KERNEL_TYPE_NONE, KERNEL_TYPE_FREEBSD)
36281 (KERNEL_TYPE_OPENBSD, KERNEL_TYPE_NETBSD): Convert to ...
36282 (bsd_kernel_types): ... this enum.
36283
36284 * loader/i386/bsd.c (grub_cmd_freebsd_loadenv, grub_cmd_freebsd_module)
36285 (grub_cmd_freebsd_module_elf): Abort with "You need to load the
36286 kernel first." when `kernel_type' is set to KERNEL_TYPE_NONE.
36287
36288 (grub_bsd_load_aout, grub_bsd_load, grub_cmd_freebsd_loadenv)
36289 (grub_cmd_freebsd_module, grub_cmd_freebsd_module_elf)
36290 (GRUB_MOD_INIT (bsd)): Fix capitalization in a few error
36291 messages.
36292
36293 2009-08-08 Robert Millan <rmh.grub@aybabtu.com>
36294
36295 * util/grub-dumpdevtree: Moved from here ...
36296 * util/i386/efi/grub-dumpdevtree: ... to here.
36297 (hexify): New function. Converts a string to its hex version.
36298 Generate hex versions of "efi" and "device-properties" by calling
36299 hexify() on the ASCII strings rather than by hardcoding numbers.
36300
36301 2009-08-08 Robert Millan <rmh.grub@aybabtu.com>
36302
36303 * fs/jfs.c: Update copyright year.
36304
36305 2009-08-08 Felix Zielcke <fzielcke@z-51.de>
36306
36307 * util/grub.d/00_header.in: Fix a comment.
36308 * util/grub.d/10_linux.in: Likewise.
36309 * util/grub.d/10_windows.in: Likewise.
36310 * util/grub.d/10_hurd.in: Likewise.
36311
36312 2009-08-08 Felix Zielcke <fzielcke@z-51.de>
36313
36314 * util/grub-mkconfig.in: Allow the user to specify the used font
36315 with GRUB_FONT.
36316
36317 2009-08-08 Pavel Roskin <proski@gnu.org>
36318
36319 * include/grub/powerpc/libgcc.h: Export __ashrdi3() if
36320 available, xfs.mod needs it now.
36321
36322 * util/grub-mkconfig_lib.in (version_test_numeric): Don't use
36323 the "g" modifier in sed when the intention is to strip something
36324 once. This fixes comparison of kernels with multiple dashes.
36325
36326 * util/grub-mkconfig.in: Define datarootdir, datadir may depend
36327 on it. Add missing space before closing bracket. Fix
36328 misleading formatting.
36329
36330 2009-08-07 Robert Millan <rmh.grub@aybabtu.com>
36331
36332 * docs/grub.texi: Major overhaul. Remove all sections that are
36333 specific to GRUB Legacy, or mostly composed of Legacy-specific
36334 information.
36335
36336 2009-08-07 Robert Millan <rmh.grub@aybabtu.com>
36337
36338 * docs/version.texi: New file. Provides version information for
36339 grub.texi.
36340
36341 2009-08-07 Robert Millan <rmh.grub@aybabtu.com>
36342
36343 * docs/grub.texi: Update CVS information to SVN.
36344 Replace outdated "GRUB 2 will include" phrase with "GRUB 2 includes".
36345
36346 2009-08-07 Felix Zielcke <fzielcke@z-51.de>
36347
36348 * util/grub-mkconfig.in: Remove a wrong `fi'.
36349
36350 2009-08-07 Felix Zielcke <fzielcke@z-51.de>
36351
36352 * fs/uuid.c (grub_jfs_superblock): New fields unused2 and uuid.
36353 (grub_jfs_uuid): New function.
36354 (grub_jfs_fs): Set uuid field to grub_jfs_uuid.
36355
36356 2009-08-07 Felix Zielcke <fzielcke@z-51.de>
36357
36358 * util/grub-mkconfig_lib.in (font_path): Move the functionality
36359 of it to ...
36360 * util/grub-mkconfig.in: ... here. Prefer unicode.pf2 and
36361 unifont.pf2 over ascii.pf2. Export LANG=C in case ascii.pf2 gets used.
36362
36363 2009-08-07 Robert Millan <rmh.grub@aybabtu.com>
36364
36365 * util/grub.d/10_linux.in (test_numeric): Moved from here ...
36366 * util/grub-mkconfig_lib.in (version_test_numeric): ... to here.
36367 Update all users.
36368
36369 * util/grub.d/10_linux.in (test_gt): Strip any basename prefix,
36370 not just "vmlinu[zx]".
36371 Moved from here ...
36372 * util/grub-mkconfig_lib.in (version_test_gt): ... to here. Update
36373 all users.
36374
36375 * util/grub.d/10_linux.in (find_latest): Moved from here ...
36376 * util/grub-mkconfig_lib.in (version_find_latest): ... to here. Update
36377 all users.
36378
36379 2009-08-07 Robert Millan <rmh.grub@aybabtu.com>
36380
36381 * util/grub.d/10_freebsd.in: Use an absolute device path for
36382 `vfs.root.mountfrom'. Set `vfs.root.mountfrom.options=rw'.
36383
36384 2009-08-06 Felix Zielcke <fzielcke@z-51.de>
36385
36386 * util/grub-mkconfig_lib.in (prepare_grub_to_access_device): Fix
36387 handling of multiple abstraction modules.
36388
36389 2009-08-04 Robert Millan <rmh.grub@aybabtu.com>
36390
36391 Fix a bug resulting in black screen when loading Linux using a
36392 packed video mode.
36393
36394 * kern/i386/pc/startup.S (grub_vbe_bios_getset_dac_palette_width): New
36395 function.
36396
36397 * include/grub/i386/pc/vbe.h (GRUB_VBE_CAPABILITY_DACWIDTH): New macro.
36398 (grub_vbe_bios_getset_dac_palette_width): New function.
36399 (grub_vbe_bios_get_dac_palette_width)
36400 (grub_vbe_bios_set_dac_palette_width): New macros (act as wrappers for
36401 grub_vbe_bios_getset_dac_palette_width()).
36402
36403 * video/i386/pc/vbe.c (grub_vbe_probe): Use `GRUB_VBE_STATUS_OK' to
36404 check for return status.
36405 (grub_vbe_get_video_mode_info): When getting information for a packed
36406 mode (<= 8 bpp), obtain DAC palette width using
36407 grub_vbe_bios_getset_dac_palette_width(), and use that for initializing
36408 {red,green,blue}_mark_size.
36409
36410 2009-08-04 Felix Zielcke <fzielcke@z-51.de>
36411
36412 * commands/search.c (options): Fix help output to match actual code.
36413
36414 2009-08-02 Vladimir Serbinenko <phcoder@gmail.com>
36415
36416 * commands/hexdump.c (grub_cmd_hexdump): Use grub_disk_read instead
36417 of homegrown code.
36418
36419 2009-08-01 Vladimir Serbinenko <phcoder@gmail.com>
36420
36421 * util/hostfs.c (grub_hostfs_dir): Don't use DT_DIR: It doesn't work
36422 on XFS or ReiserFS.
36423
36424 2009-08-01 Vladimir Serbinenko <phcoder@gmail.com>
36425
36426 Support Apple partition map with sector size different from 512 bytes.
36427
36428 * partmap/apple.c (grub_apple_header): New field 'blocksize'.
36429 (apple_partition_map_iterate): Respect 'aheader.blocksize'
36430 and 'apart.partmap_size'.
36431
36432 2009-08-01 Vladimir Serbinenko <phcoder@gmail.com>
36433 2009-08-01 Robert Millan <rmh.grub@aybabtu.com>
36434
36435 Fix cpuid command.
36436
36437 * commands/i386/cpuid.c (options): New variable.
36438 (grub_cmd_cpuid): Return real error.
36439 (GRUB_MOD_INIT(cpuid)): Declare options.
36440
36441 2009-07-31 Vladimir Serbinenko <phcoder@gmail.com>
36442
36443 * partmap/pc.c (pc_partition_map_iterate): Check that boot flags are
36444 valid.
36445
36446 2009-07-31 Bean <bean123ch@gmail.com>
36447
36448 * fs/xfs.c (grub_xfs_sblock): Change unused5 field to log2_sect and
36449 log2_inode.
36450 (grub_fshelp_node): Move inode field to the end.
36451 (grub_xfs_data): Remove inode field.
36452 (grub_xfs_inode_block): Calculate inode size using sblock.
36453 (grub_xfs_inode_offset): Likewise.
36454 (grub_xfs_read_inode): Calculate inode size using sblock.
36455 (grub_xfs_read_block): Replace XFS_INODE_EXTENTS with nrec.
36456 (grub_xfs_iterate_dir): Calculate inode size using sblock.
36457 (grub_xfs_mount): Use grub_zalloc instead of grub_malloc. Realloc data
36458 to match inode size.
36459 (grub_xfs_dir): goto mount_fail when mount fails, as data->diropen is
36460 not accessible when data is null.
36461 (grub_xfs_open): Likewise.
36462
36463 2009-07-31 Bean <bean123ch@gmail.com>
36464
36465 * disk/lvm.c (grub_lvm_scan_device): Ignore extra copy of metadata.
36466 Don't change pv->disk if it's already set.
36467
36468 * disk/raid.c (grub_raid_scan_device): Merge this function into ...
36469 (grub_raid_register): ... here.
36470 (grub_raid_rescan): Removed.
36471
36472 * include/grub/raid.h (grub_raid_rescan): Removed.
36473
36474 * util/grub-fstest.c: Remove include file <grub/raid.h>.
36475 (fstest): Replace grub_raid_rescan with module fini function followed
36476 by init function.
36477
36478 * util/grub-probe.c: Add include file <grub/raid.h>.
36479 (probe_raid_level): New function.
36480 (probe): Detect abstraction by walking the disk device, support two
36481 level of abstraction (LVM on RAID) when detecting partition map.
36482
36483 2009-07-31 Pavel Roskin <proski@gnu.org>
36484
36485 * disk/raid5_recover.c (grub_raid5_recover): Revert conversion
36486 to grub_zalloc(), it was erroneous.
36487 Reported by Bean <bean123ch@gmail.com>
36488
36489 2009-07-30 Vladimir Serbinenko <phcoder@gmail.com>
36490
36491 * util/i386/pc/grub-setup.c (setup): Check that no partition is in
36492 embedding zone, not only the first one.
36493
36494 2009-07-29 Joe Auricchio <jauricchio@gmail.com>
36495
36496 * term/gfxterm.c (clear_char): New function.
36497 (grub_virtual_screen_setup): Use clear_char.
36498 (scroll_up): Likewise.
36499 (grub_virtual_screen_cls): Likewise.
36500
36501 2009-07-29 Felix Zielcke <fzielcke@z-51.de>
36502
36503 * util/deviceiter.c (get_acceleraid_disk_name): New static
36504 function.
36505 (grub_util_iterate_devices): Handle Accelraid devices.
36506 * util/hostdisk.c (convert_system_partition_to_system_disk): Likewise.
36507
36508 2009-07-28 Robert Millan <rmh.grub@aybabtu.com>
36509
36510 * loader/i386/linux.c (grub_cmd_linux): Use ',' rather than ';' as
36511 separator for the suggested gfxpayload string (';' collides with the
36512 parser and needs escaping).
36513
36514 2009-07-28 Vladimir Serbinenko <phcoder@gmail.com>
36515
36516 * loader/i386/multiboot_helper.S (grub_multiboot_backward_relocator):
36517 Clear direction flag before jumping to OS.
36518 (grub_multiboot2_real_boot): Likewise.
36519
36520 2009-07-28 Felix Zielcke <fzielcke@z-51.de>
36521
36522 * util/i386/pc/grub-install: Fix parsing of --disk-module
36523 option.
36524
36525 2009-07-28 Felix Zielcke <fzielcke@z-51.de>
36526
36527 * util/i386/pc/grub-setup.c (setup): Fix 2 incorrect checks
36528 when embedding.
36529
36530 2009-07-26 Felix Zielcke <fzielcke@z-51.de>
36531
36532 * util/grub-mkconfig.in (package_version): New variable.
36533 Use it do display the version.
36534
36535 2009-07-25 Felix Zielcke <fzielcke@z-51.de>
36536
36537 * kern/file.c (grub_file_open): Revert to previous check with
36538 grub_errno.
36539
36540 2009-07-25 Vladimir Serbinenko <phcoder@gmail.com>
36541
36542 * commands/probe.c (GRUB_MOD_INIT (probe)): Remove "[--target=target]"
36543 from help line. It's out of sync with code.
36544
36545 2009-07-25 Vladimir Serbinenko <phcoder@gmail.com>
36546
36547 * kern/parser.c (grub_parser_execute): Fix a bug causing truncated
36548 entries on failed boot.
36549
36550 2009-07-25 Felix Zielcke <fzielcke@z-51.de>
36551
36552 * kern/file.c (grub_file_open): Fix an error check.
36553
36554 2009-07-24 Vladimir Serbinenko <phcoder@gmail.com>
36555
36556 * util/i386/pc/grub-setup.c (setup): Fix segmentation fault when
36557 partition map couldn't be identified.
36558
36559 2009-07-23 Pavel Roskin <proski@gnu.org>
36560
36561 * commands/xnu_uuid.c (transform): Use GRUB_CPU_WORDS_BIGENDIAN
36562 instead of WORDS_BIGENDIAN. Use grub_le_to_cpu32(), so that the
36563 case of little endian words becomes just an optimization.
36564 Respect const modifier.
36565 (md5_final): Use code that doesn't depend on endianness.
36566
36567 * include/grub/misc.h (ALIGN_UP): Cast align to the type of addr
36568 to avoid loss of upper bits if align is unsigned and shorter
36569 than addr.
36570
36571 2009-07-21 Vladimir Serbinenko <phcoder@gmail.com>
36572
36573 UUID support for UFS
36574
36575 * fs/ufs.c (grub_ufs_sblock): Add uuidhi and uuidlow.
36576 (grub_ufs_uuid): New function.
36577 (grub_ufs_fs): add .uuid
36578
36579 2009-07-21 Pavel Roskin <proski@gnu.org>
36580
36581 * kern/dl.c (grub_dl_check_header): Make static.
36582
36583 2009-07-21 Felix Zielcke <fzielcke@z-51.de>
36584
36585 * util/grub.d/30_os-prober.in: Remove unused CHAINROOT. Don't
36586 add drivemap for Vista. It breaks Windows 7.
36587
36588 2009-07-21 Vladimir Serbinenko <phcoder@gmail.com>
36589
36590 * fs/ufs.c (grub_ufs_sblock): Fix offset of mtime2 which was off by
36591 128 bytes
36592
36593 2009-07-20 Vladimir Serbinenko <phcoder@gmail.com>
36594
36595 Add BFS support
36596
36597 * conf/common.rmk (grub_probe_SOURCES): Add fs/befs.c.
36598 (grub_fstest_SOURCES): Likewise.
36599 (pkglib_MODULES): Add befs.mod.
36600 (befs_mod_SOURCES): New variable.
36601 (befs_mod_CFLAGS): Likewise.
36602 (befs_mod_LDFLAGS): Likewise.
36603 * conf/i386-coreboot.rmk (grub_emu_SOURCES): Likewise.
36604 * conf/i386-efi.rmk (grub_emu_SOURCES): Likewise.
36605 * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Likewise.
36606 * conf/i386-pc.rmk (grub_emu_SOURCES): Likewise.
36607 (grub_setup_SOURCES): Likewise.
36608 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
36609 * conf/sparc64-ieee1275.rmk (grub_emu_SOURCES): Likewise.
36610 (grub_setup_SOURCES): Likewise.
36611 * fs/befs.c: New file.
36612 * fs/afs.c (GRUB_AFS_FSNAME): New declaration.
36613 (GRUB_AFS_SBLOCK_SECTOR): Likewise.
36614 (GRUB_AFS_SBLOCK_MAGIC1) [MODE_BFS]: New conditional declaration.
36615 (GRUB_AFS_BTREE_MAGIC) [MODE_BFS]: Likewise
36616 (B_KEY_INDEX_ALIGN): New declaration.
36617 (B_KEY_INDEX_OFFSET): Use B_KEY_INDEX_ALIGN.
36618 (grub_afs_bnode) [MODE_BFS]: Make key_count and key_size 16-bit
36619 (grub_afs_btree) [MODE_BFS]: New conditional declaration.
36620 (grub_afs_sblock) [MODE_BFS]: Remove link_count.
36621 (grub_afs_validate_sblock) [MODE_BFS]: Support BFS
36622 (grub_afs_mount) [MODE_BFS]: Likewise.
36623 (grub_afs_dir) [MODE_BFS]: Divide mtime by 65536 and not 1000000.
36624 (grub_afs_fs): Use GRUB_AFS_FSNAME
36625 (GRUB_MOD_INIT (afs)) [MODE_BFS]: Rename to ...
36626 (GRUB_MOD_INIT (befs)) [MODE_BFS]: ... this
36627 (GRUB_MOD_FINI (afs)) [MODE_BFS]: Rename to ...
36628 (GRUB_MOD_FINI (befs)) [MODE_BFS]: ... this
36629
36630 2009-07-19 Yves BLUSSEAU <yves.grub-devel@zetam.org>
36631
36632 * util/getroot.c (find_root_device): Add support for MacOSX.
36633 * util/hostdisk.c: Likewise.
36634
36635 2009-07-20 Vladimir Serbinenko <phcoder@gmail.com>
36636
36637 * font/font.c (find_glyph): Check whether a font is present to avoid
36638 segmentation fault.
36639
36640 2009-07-20 Joe Auricchio <jauricchio@gmail.com>
36641
36642 * term/gfxterm.c (grub_virtual_screen_setup): Clear virtual_screen.
36643
36644 2009-07-20 Pavel Roskin <proski@gnu.org>
36645
36646 * configure.ac: Trim excessively wordy excuses.
36647
36648 2009-07-20 Vladimir Serbinenko <phcoder@gmail.com>
36649
36650 Add symlink, mtime and label support to AtheFS.
36651
36652 * fs/afs.c (grub_afs_sblock): Declare `name' as char.
36653 (grub_afs_iterate_dir): Handle symlinks.
36654 (grub_afs_open): Use grub_afs_read_symlink.
36655 (grub_afs_dir): Likewise.
36656 Pass mtime.
36657 (grub_afs_label): New function.
36658 (grub_afs_fs): Add grub_afs_label.
36659 (grub_afs_read_symlink): New function.
36660
36661 2009-07-20 Vladimir Serbinenko <phcoder@gmail.com>
36662
36663 Fix AtheFS support.
36664
36665 * fs/afs.c: Fix comments style.
36666 (grub_afs_blockrun): Declare as packed.
36667 (grub_afs_datastream): Likewise.
36668 (grub_afs_bnode): Likewise.
36669 (grub_afs_btree): Likewise.
36670 (grub_afs_sblock): Likewise.
36671 Declare `name' as char.
36672 (grub_afs_inode): Declare as packed.
36673 Change void *vnode to grub_uint32_t unused.
36674 (grub_afs_iterate_dir): Check that key_size is positive.
36675 (grub_afs_mount): Don't read superblock twice.
36676 (grub_afs_dir): Don't free node in case of error,
36677 grub_fshelp_find_file already handles this.
36678 (grub_afs_open): Likewise.
36679
36680 2009-07-19 Pavel Roskin <proski@gnu.org>
36681
36682 * Makefile.in: Remove LIBLZO and enable_lzo.
36683 * conf/i386-pc.rmk: Remove lzo support.
36684 * configure.ac: Remove checks for lzo, don't define ENABLE_LZMA.
36685 * include/grub/i386/pc/kernel.h: Define ENABLE_LZMA. Remove lzo
36686 support.
36687 * kern/i386/pc/lzo1x.S: Remove.
36688 * kern/i386/pc/startup.S: Remove lzo support.
36689 * util/i386/pc/grub-mkimage.c: Likewise.
36690
36691 2009-07-19 Vladimir Serbinenko <phcoder@gmail.com>
36692
36693 * disk/usbms.c (grub_usbms_transfer): Fix double semicolon.
36694 * fs/xfs.c (grub_xfs_dir): Likewise.
36695 * fs/afs.c (grub_afs_dir): Likewise.
36696 * fs/iso9660.c (grub_iso9660_iterate_dir): Likewise.
36697 (grub_iso9660_open): Likewise.
36698 * fs/jfs.c (grub_jfs_open): Likewise.
36699 * fs/ext2.c (grub_ext2_dir): Likewise.
36700 * include/grub/macho.h (grub_macho_fat_arch): Likewise.
36701 * script/sh/lexer.c (grub_script_yylex): Likewise.
36702
36703 2009-07-16 Pavel Roskin <proski@gnu.org>
36704
36705 * configure.ac: Never add "-c" to CFLAGS.
36706
36707 * configure.ac: Fix incorrect comparison for grub_cv_cc_efiemu.
36708
36709 * configure.ac: Fix wrong use of grub_cv_cc_no_red_zone where
36710 grub_cv_cc_efiemu should be used.
36711
36712 * configure.ac: Typo fixes.
36713
36714 * kern/mm.c (grub_zalloc): New function.
36715 (grub_debug_zalloc): Likewise.
36716 * include/grub/mm.h: Declare grub_zalloc() and
36717 grub_debug_zalloc().
36718 * util/misc.c (grub_zalloc): New function.
36719 * bus/usb/uhci.c (grub_uhci_pci_iter): Use grub_zalloc()
36720 instead of grub_malloc(), remove unneeded initializations.
36721 * bus/usb/usbhub.c (grub_usb_hub_add_dev): Likewise.
36722 * commands/extcmd.c (grub_extcmd_dispatcher): Likewise.
36723 * commands/parttool.c (grub_cmd_parttool): Likewise.
36724 * disk/i386/pc/biosdisk.c (grub_biosdisk_open): Likewise.
36725 * disk/raid5_recover.c (grub_raid5_recover): Likewise.
36726 * disk/raid6_recover.c (grub_raid6_recover): Likewise.
36727 * disk/usbms.c (grub_usbms_finddevs): Likewise.
36728 * efiemu/mm.c (grub_efiemu_request_memalign): Likewise.
36729 * efiemu/pnvram.c (grub_efiemu_pnvram): Likewise.
36730 (grub_cmd_efiemu_pnvram): Likewise.
36731 * fs/i386/pc/pxe.c (grub_pxefs_open): Likewise.
36732 * fs/iso9660.c (grub_iso9660_mount): Likewise.
36733 (grub_iso9660_iterate_dir): Likewise.
36734 * fs/jfs.c (grub_jfs_opendir): Likewise.
36735 * fs/ntfs.c (list_file): Likewise.
36736 (grub_ntfs_mount): Likewise.
36737 * kern/disk.c (grub_disk_open): Likewise.
36738 * kern/dl.c (grub_dl_load_core): Likewise.
36739 * kern/elf.c (grub_elf_file): Likewise.
36740 * kern/env.c (grub_env_context_open): Likewise.
36741 (grub_env_set): Likewise.
36742 (grub_env_set_data_slot): Likewise.
36743 * kern/file.c (grub_file_open): Likewise.
36744 * kern/fs.c (grub_fs_blocklist_open): Likewise.
36745 * loader/i386/multiboot.c (grub_module): Likewise.
36746 * loader/xnu.c (grub_xnu_create_key): Likewise.
36747 (grub_xnu_create_value): Likewise.
36748 * normal/main.c (grub_normal_add_menu_entry): Likewise.
36749 (read_config_file): Likewise.
36750 * normal/menu_entry.c (make_screen): Likewise.
36751 * partmap/sun.c (sun_partition_map_iterate): Likewise.
36752 * script/sh/lexer.c (grub_script_lexer_init): Likewise.
36753 * script/sh/script.c (grub_script_parse): Likewise.
36754 * video/bitmap.c (grub_video_bitmap_create): Likewise.
36755 * video/readers/jpeg.c (grub_video_reader_jpeg): Likewise.
36756 * video/readers/png.c (grub_png_output_byte): Likewise.
36757 (grub_video_reader_png): Likewise.
36758
36759 2009-07-16 Vladimir Serbinenko <phcoder@gmail.com>
36760
36761 Enable all targets that can be built by default
36762
36763 * configure.ac: enable efiemu runtime, grub-emu, grub-emu-usb,
36764 grub-mkfont and grub-fstest if they can be built
36765
36766 2009-07-16 Vladimir Serbinenko <phcoder@gmail.com>
36767
36768 Fix hang and segmentation fault in grub-emu-usb
36769
36770 * disk/scsi.c (grub_scsi_open): return err and not grub_errno
36771 * util/usb.c (grub_libusb_devices): likewise
36772 (grub_libusb_init): rename to ...
36773 (GRUB_MOD_INIT (libusb)):...this
36774 (grub_libusb_fini): rename to ..
36775 (GRUB_MOD_FINI (libusb)):...this
36776 * disk/usbms.c (grub_usbms_transfer): fix retry logic
36777 * include/grub/disk.h (grub_raid_init): removed, it's useless
36778 (grub_raid_fini): likewise
36779 (grub_lvm_init): likewise
36780 (grub_lvm_fini): likewise
36781 * util/grub-emu.c (main): don't call grub_libusb_init, it's done
36782 by grub_init_all
36783
36784 2009-07-16 Vladimir Serbinenko <phcoder@gmail.com>
36785
36786 Fix libusb
36787
36788 * Makefile.in (LIBUSB): new macro
36789 * genmk.rb (Utility/print_tail): new method
36790 (Utility/rule): use intermediary variable #{prefix}_OBJECTS
36791 (top level): call util.print_tail at the end.
36792
36793 2009-07-16 Vladimir Serbinenko <phcoder@gmail.com>
36794
36795 Make FreeBSD accept zpool.cache
36796
36797 * loader/i386/bsd.c (grub_freebsd_add_meta_module): spoof filename if
36798 type is /boot/zfs/zpool.cache
36799
36800 2009-07-16 Vladimir Serbinenko <phcoder@gmail.com>
36801
36802 Fix 64-bit efiemu
36803
36804 * include/grub/efiemu/efiemu.h (grub_efiemu_configuration_table64_t):
36805 correct wrong typedef
36806 * efiemu/prepare.c (SUFFIX (grub_efiemu_prepare)): minor style fixes
36807
36808 2009-07-15 Pavel Roskin <proski@gnu.org>
36809
36810 * include/grub/disk.h (struct grub_disk_dev): Use enum for id.
36811 * kern/disk.c (struct grub_disk_cache): Likewise.
36812
36813 * commands/probe.c (options): Typo fix.
36814
36815 * include/grub/i386/pc/boot.h (GRUB_BOOT_MACHINE_BPB_END):
36816 Increase to 0x5a to accommodate FAT32. Adjust other offsets
36817 accordingly.
36818 Original patch by Yves Blusseau <yves.grub-devel@zetam.org>
36819
36820 * boot/i386/pc/boot.S (general_error_string): Add DOS newline at
36821 the end of "Error" to make the message more readable.
36822
36823 * boot/i386/pc/boot.S (kernel_segment): Remove.
36824 (copy_buffer): Use GRUB_BOOT_MACHINE_KERNEL_ADDR in segment 0
36825 for destination.
36826
36827 * boot/i386/pc/boot.S (boot_version): Remove.
36828 * include/grub/i386/pc/boot.h (GRUB_BOOT_MACHINE_VER_MAJ):
36829 Remove.
36830
36831 * include/grub/i386/pc/boot.h: Sort all offsets.
36832 (GRUB_BOOT_MACHINE_KERNEL_ADDRESS): Remove, it's unused.
36833 (GRUB_BOOT_MACHINE_KERNEL_SEGMENT): Likewise.
36834 * boot/i386/pc/boot.S: Assert location of every offset listed in
36835 include/grub/i386/pc/boot.h.
36836
36837 2009-07-13 Pavel Roskin <proski@gnu.org>
36838
36839 * include/grub/i386/coreboot/machine.h: Rename
36840 GRUB_MACHINE_LINUXBIOS to GRUB_MACHINE_COREBOOT.
36841 * loader/multiboot_loader.c (grub_cmd_multiboot_loader): Allow
36842 multiboot 1 for GRUB_MACHINE_COREBOOT and GRUB_MACHINE_QEMU.
36843
36844 * kern/dl.c: Force native word size to suppress warnings when
36845 compiling grub-emu.
36846
36847 * kern/device.c (grub_device_iterate): Change struct part_ent to
36848 hold the name, not a pointer to it. Use one grub_malloc() per
36849 partition, not two. Free partition_name if grub_malloc() fails.
36850 Set ents to NULL only before grub_partition_iterate() is called.
36851
36852 2009-07-11 Bean <bean123ch@gmail.com>
36853
36854 * kern/ieee1275/openfw.c (grub_children_iterate): Fix size of
36855 childname.
36856
36857 2009-07-10 Bean <bean123ch@gmail.com>
36858 2009-07-10 Robert Millan <rmh.grub@aybabtu.com>
36859
36860 * kern/ieee1275/openfw.c (grub_children_iterate)
36861 (grub_devalias_iterate): Fix size evaluation for property or path
36862 strings, which was broken since r2132.
36863
36864 2009-07-07 Pavel Roskin <proski@gnu.org>
36865
36866 * commands/search.c (search_file): Merge into ...
36867 (search_fs): ... this. Accept search type as argument.
36868 (grub_cmd_search): Pass search type to search_fs().
36869
36870 * include/grub/util/console.h: New file.
36871 * util/console.c: Use it instead of grub/machine/console.h.
36872 * util/grub-emu.c: Likewise.
36873
36874 * lib/arg.c (find_long_option): Remove.
36875 (find_long): Add `len' argument, make `s' const char *.
36876 (grub_arg_parse): Parse long options in place, not in a
36877 temporary buffer.
36878
36879 2009-07-06 Pavel Roskin <proski@gnu.org>
36880
36881 * commands/search.c (search_fs): Fix potential NULL pointer
36882 dereference.
36883
36884 * commands/search.c (search_fs): Replace QUID macro with quid_fn
36885 function pointer.
36886
36887 2009-07-06 Daniel Mierswa <impulze@impulze.org>
36888
36889 * commands/search.c (search_fs): Use grub_strcasecmp() for UUID
36890 comparison.
36891
36892 2009-07-05 Pavel Roskin <proski@gnu.org>
36893
36894 * include/grub/i386/linux.h (struct linux_kernel_params):
36895 Restore padding3, it's still needed.
36896
36897 * util/grub.d/10_freebsd.in: Fix spelling of `device.hints' on
36898 FreeBSD.
36899 * util/osdetect.lua: Likewise.
36900
36901 2009-07-05 Bean <bean123ch@gmail.com>
36902
36903 * conf/common.rmk (lua_mode_SOURCES): Add script/lua/lstrlib.c.
36904
36905 * script/lua/grub_lib.c (grub_lua_run): Check input parameter.
36906 (grub_lua_getenv): Likewise.
36907 (grub_lua_setenv): Likewise.
36908 (save_errno): New function.
36909 (push_result): Likewise.
36910 (grub_lua_enum_device): Likewise.
36911 (grub_lua_enum_file): Likewise.
36912 (grub_lua_file_open): Likewise.
36913 (grub_lua_file_close): Likewise.
36914 (grub_lua_file_seek): Likewise.
36915 (grub_lua_file_read): Likewise.
36916 (grub_lua_file_getline): Likewise.
36917 (grub_lua_file_getsize): Likewise.
36918 (grub_lua_file_getpos): Likewise.
36919 (grub_lua_file_eof): Likewise.
36920 (grub_lua_file_exist): Likewise.
36921 (grub_lua_add_menu): Likewise.
36922
36923 * script/lua/grub_lua.h (isupper): New inline function.
36924 (islower): Likewise.
36925 (ispunct): Likewise.
36926 (isxdigit): Likewise.
36927 (strcspn): Change to normal function.
36928 (strpbkr): New function declaration.
36929 (memchr): Likewise.
36930
36931 * script/lua/grub_main.c (scan_str): New function.
36932 (strcspn): Likewise.
36933 (strpbrk): Likewise.
36934 (memchr): Likewise.
36935
36936 * script/lua/linit.c (lualibs): Enable the string library.
36937
36938 * util/osdetect.lua: New file.
36939
36940 2009-07-04 Robert Millan <rmh.grub@aybabtu.com>
36941
36942 * include/grub/i386/linux.h (struct linux_kernel_params): Add
36943 `capabilities' member.
36944
36945 2009-07-02 Pavel Roskin <proski@gnu.org>
36946
36947 * genparttoollist.sh: Add missing newline at the end.
36948
36949 2009-07-01 Pavel Roskin <proski@gnu.org>
36950
36951 * kern/x86_64/efi/callwrap.S: Add missing newline at the end.
36952
36953 * util/hostdisk.c (open_device): Remove `const' from
36954 `sysctl_size', as sysctlbyname() can change it (in this case it
36955 doesn't actually happen).
36956
36957 * include/grub/types.h: Define GRUB_LONG_MAX and GRUB_LONG_MIN
36958 using signed long int constants.
36959
36960 * util/hostdisk.c (grub_util_biosdisk_get_grub_dev): Make `p'
36961 constant to avoid a warning on FreeBSD.
36962
36963 * util/hostdisk.c (device_is_wholedisk): Compile only on systems
36964 where it's needed.
36965
36966 * Makefile.in: Install include/grub/machine symlink.
36967
36968 * Makefile.in: When installing symlinks, use "cp -fR", which
36969 works on FreeBSD and MacOSX.
36970 From Yves Blusseau <cl7m42e02@sneakemail.com>
36971
36972 * kern/dl.c (grub_dl_resolve_symbol): Make static.
36973 * include/grub/dl.h: Remove grub_dl_resolve_symbol().
36974
36975 * util/misc.c: Move grub_reboot() and grub_halt() ...
36976 * util/grub-emu.c: ... here. Make main_env static.
36977 * include/grub/util/misc.h: Remove main_env.
36978
36979 * kern/mm.c: Use correct format to print size_t.
36980
36981 * include/grub/elf.h: Define Elf_Sword and Elf_Xword.
36982 * kern/i386/dl.c: Use ELF symbols without "32" or "64".
36983 * kern/powerpc/dl.c: Likewise.
36984 * kern/sparc64/dl.c: Likewise.
36985 * kern/x86_64/dl.c: Likewise.
36986
36987 2009-07-01 Robert Millan <rmh.grub@aybabtu.com>
36988
36989 Fix grub-emu build on sparc64-ieee1275.
36990
36991 * conf/sparc64-ieee1275.rmk (grub_emu_SOURCES): Synchronize with ...
36992 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): ... this.
36993
36994 2009-07-01 Robert Millan <rmh.grub@aybabtu.com>
36995
36996 * util/misc.c: Include `<setjmp.h>' and `<grub/machine/machine.h>'.
36997 (grub_reboot, grub_halt): New functions.
36998
36999 * util/i386/pc/misc.c: Delete. Update all users.
37000 * util/sparc64/ieee1275/misc.c: Likewise.
37001 * util/powerpc/ieee1275/misc.c: Likewise.
37002
37003 2009-07-01 Robert Millan <rmh.grub@aybabtu.com>
37004
37005 * conf/i386.rmk (setjmp_mod_SOURCES)
37006 (setjmp_mod_ASFLAGS, setjmp_mod_LDFLAGS): Move to ...
37007 * conf/common.rmk (setjmp_mod_SOURCES)
37008 (setjmp_mod_ASFLAGS, setjmp_mod_LDFLAGS): ... here, and modify
37009 to use $(target_cpu).
37010 * conf/x86_64-efi.rmk (setjmp_mod_SOURCES)
37011 (setjmp_mod_ASFLAGS, setjmp_mod_LDFLAGS): Remove.
37012 * conf/powerpc-ieee1275.rmk: Likewise.
37013 * conf/sparc64-ieee1275.rmk: Likewise.
37014
37015 * conf/i386-pc.rmk (kernel_img_SOURCES): Use
37016 $(target_cpu) for kern/$(target_cpu)/dl.c.
37017 * conf/i386-efi.rmk: Likewise.
37018 * conf/i386-ieee1275.rmk: Likewise.
37019 * conf/x86_64-efi.rmk: Likewise.
37020 * conf/i386-coreboot.rmk: Likewise.
37021 * conf/powerpc-ieee1275.rmk (kernel_img_SOURCES): Use
37022 $(target_cpu) for kern/$(target_cpu)/dl.c and for
37023 kern/$(target_cpu)/cache.S.
37024 * conf/sparc64-ieee1275.rmk: Likewise.
37025
37026 2009-07-01 Robert Millan <rmh.grub@aybabtu.com>
37027
37028 * include/grub/i386/linux.h (linux_kernel_params): Change `mmap_size'
37029 type to `grub_uint8_t', and adjust `padding9' accordingly.
37030
37031 2009-06-29 Robert Millan <rmh.grub@aybabtu.com>
37032
37033 * include/grub/i386/linux.h (GRUB_VIDEO_TYPE_TEXT): New macro.
37034
37035 * loader/i386/linux.c [__i386__] (grub_linux_boot): Simplify inline
37036 assembly in final jump, using register constraints.
37037
37038 (grub_linux_boot): For text mode, initialize `have_vga' using
37039 GRUB_VIDEO_TYPE_TEXT rather than 0 (this changes its value to 1).
37040
37041 Initialize `video_cursor_x' and `video_cursor_y' as late as possible,
37042 right before the final jump.
37043
37044 Set `video_mode' to 0x3.
37045
37046 Document initialization of `video_page', `video_mode' and
37047 `video_ega_bx'.
37048
37049 2009-06-29 Robert Millan <rmh.grub@aybabtu.com>
37050
37051 * include/grub/i386/linux.h (GRUB_LINUX_FLAG_QUIET): New macro.
37052 * loader/i386/linux.c (grub_cmd_linux): Recognize "quiet" option,
37053 and set GRUB_LINUX_FLAG_QUIET appropriately.
37054
37055 2009-06-29 Robert Millan <rmh.grub@aybabtu.com>
37056
37057 Fix build on Debian / sparc.
37058
37059 * configure.ac: Recognize `sparc' target_cpu (as sparc64).
37060
37061 2009-06-28 Pavel Roskin <proski@gnu.org>
37062
37063 * kern/i386/qemu/mmap.c (grub_machine_mmap_iterate): Use cast to
37064 fix a warning.
37065
37066 * util/grub.d/10_linux.in: Match SUSE style initrd names.
37067
37068 2009-06-27 Robert Millan <rmh.grub@aybabtu.com>
37069
37070 * loader/i386/linux.c (grub_linux_boot): Fix uninitialized use of
37071 `err'.
37072
37073 2009-06-27 Robert Millan <rmh.grub@aybabtu.com>
37074
37075 Revert r2338.
37076
37077 * loader/i386/linux.c (grub_cmd_linux): Don't call grub_error when
37078 file can't be opened. grub_file_open() is already supposed to set
37079 grub_errno / grub_errmsg appropriately.
37080 * loader/i386/pc/linux.c (grub_cmd_linux): Likewise.
37081
37082 2009-06-27 Pavel Roskin <proski@gnu.org>
37083 2009-06-27 Robert Millan <rmh.grub@aybabtu.com>
37084
37085 * include/grub/dl.h: Include grub/elf.h.
37086 (struct grub_dl): Add symtab field.
37087 * kern/dl.c [GRUB_MACHINE_QEMU]: Define
37088 GRUB_MODULES_MACHINE_READONLY.
37089 (grub_dl_resolve_symbols): Populate mod->symtab, making a copy
37090 of the header for read-only modules.
37091 (grub_dl_unload): Free mod->symtab for read-only modules.
37092 * kern/i386/dl.c: Use mod->symtab.
37093 * kern/powerpc/dl.c: Likewise.
37094 * kern/sparc64/dl.c: Likewise.
37095 * kern/x86_64/dl.c: Likewise.
37096
37097 * conf/i386-qemu.rmk: New file.
37098 * kern/i386/qemu/startup.S: Likewise.
37099 * kern/i386/qemu/mmap.c: Likewise.
37100 * boot/i386/qemu/boot.S: Likewise.
37101 * include/grub/i386/qemu/time.h: Likewise.
37102 * include/grub/i386/qemu/serial.h: Likewise.
37103 * include/grub/i386/qemu/kernel.h: Likewise.
37104 * include/grub/i386/qemu/console.h: Likewise.
37105 * include/grub/i386/qemu/boot.h: Likewise.
37106 * include/grub/i386/qemu/init.h: Likewise.
37107 * include/grub/i386/qemu/machine.h: Likewise.
37108 * include/grub/i386/qemu/loader.h: Likewise.
37109 * include/grub/i386/qemu/memory.h: Likewise.
37110
37111 * conf/i386-coreboot.rmk (GRUB_BOOT_MACHINE_LINK_ADDR)
37112 (GRUB_KERNEL_MACHINE_LINK_ADDR): New variables.
37113 [qemu] (pkglib_IMAGES): Add `boot.img'.
37114 [qemu] (boot_img_SOURCES, boot_img_ASFLAGS, boot_img_LDFLAGS)
37115 [qemu] (boot_img_FORMAT): New variables.
37116 [qemu] (bin_UTILITIES): Add `grub-mkimage'.
37117 [qemu] (grub_mkimage_SOURCES, grub_mkimage_CFLAGS): New variables.
37118 [qemu] (kernel_img_SOURCES, kernel_img_HEADERS, kernel_img_CFLAGS)
37119 [qemu] (kernel_img_ASFLAGS, kernel_img_LDFLAGS)
37120 [qemu] (kernel_img_FORMAT): New variables.
37121
37122 * configure.ac: Recognise `i386-qemu'.
37123
37124 * util/i386/pc/grub-mkimage.c (compress_kernel): Add dummy variant
37125 (for no compression).
37126 [GRUB_MACHINE_QEMU] (generate_image): Misc adjustments to produce
37127 a valid i386 ROM image. Make `GRUB_KERNEL_MACHINE_COMPRESSED_SIZE',
37128 `GRUB_KERNEL_MACHINE_INSTALL_DOS_PART' and
37129 `GRUB_KERNEL_MACHINE_INSTALL_BSD_PART' optional features (with
37130 ifdefs).
37131
37132 2009-06-27 Pavel Roskin <proski@gnu.org>
37133
37134 * efiemu/prepare.c: Eliminate TYPE macro, it makes code hard to
37135 read.
37136 * efiemu/prepare32.c: Likewise.
37137 * efiemu/prepare64.c: Likewise.
37138
37139 2009-06-26 Pavel Roskin <proski@gnu.org>
37140
37141 * include/grub/types.h: Define GRUB_TARGET_WORDSIZE.
37142 * include/grub/elf.h: Define symbols without "32" or "64" based
37143 on GRUB_TARGET_WORDSIZE.
37144 * include/grub/multiboot2.h: Use GRUB_TARGET_WORDSIZE.
37145 * efiemu/loadcore32.c: Redefine GRUB_TARGET_WORDSIZE, remove own
37146 ELF definitions.
37147 * efiemu/loadcore64.c: Likewise.
37148 * loader/i386/bsd32.c: Likewise.
37149 * loader/i386/bsd64.c: Likewise.
37150 * kern/dl.c: Remove own ELF definitions.
37151 * util/i386/efi/grub-mkimage.c: Likewise.
37152
37153 2009-06-23 Robert Millan <rmh.grub@aybabtu.com>
37154
37155 * kern/i386/pc/startup.S (real_to_prot): Access `gdtdesc' using
37156 segment 0x0 unconditionally, because the reference generated by
37157 GAS is an absolute address.
37158
37159 2009-06-22 Robert Millan <rmh.grub@aybabtu.com>
37160
37161 * include/grub/i386/kernel.h: Include `<grub/machine/machine.h>'.
37162 [! GRUB_MACHINE_IEEE1275]: Set `GRUB_MOD_ALIGN' to 0x1.
37163
37164 2009-06-22 Robert Millan <rmh.grub@aybabtu.com>
37165
37166 * commands/search.c (grub_cmd_search): Macroify hardcoded args[]
37167 indexes. Check for -f explicitly.
37168 (search_file): Improve error message.
37169 (GRUB_MOD_INIT(search)): Add missing `-n' to help output.
37170
37171 2009-06-22 Robert Millan <rmh.grub@aybabtu.com>
37172
37173 * conf/i386-pc.rmk (GRUB_MEMORY_MACHINE_LINK_ADDR): Rename to ...
37174 (GRUB_KERNEL_MACHINE_LINK_ADDR): ... this. Update all users.
37175
37176 2009-06-22 Robert Millan <rmh.grub@aybabtu.com>
37177
37178 * conf/i386-pc.rmk (kernel_img_SOURCES): Add `kern/i386/misc.S'.
37179 * conf/i386-ieee1275.rmk: Likewise.
37180 * conf/i386-coreboot.rmk: Likewise.
37181
37182 * kern/i386/pc/startup.S (grub_stop): Remove function.
37183 * kern/i386/ieee1275/startup.S: Likewise.
37184 * kern/i386/coreboot/startup.S: Likewise.
37185 * kern/i386/misc.S (grub_stop): New function.
37186
37187 2009-06-22 Robert Millan <rmh.grub@aybabtu.com>
37188
37189 * kern/i386/pc/startup.S (real_to_prot): Move from here ...
37190 * kern/i386/realmode.S (real_to_prot): ... to here.
37191
37192 2009-06-22 Robert Millan <rmh.grub@aybabtu.com>
37193
37194 * conf/i386-ieee1275.rmk (pkglib_PROGRAMS): Replace `kernel.elf'
37195 with `kernel.img'.
37196 (kernel_elf_SOURCES): Rename to ...
37197 (kernel_img_SOURCES): ... this.
37198 (kernel_elf_HEADERS): Rename to ...
37199 (kernel_img_HEADERS): ... this. Update all users.
37200 (kernel_elf_ASFLAGS): Rename to ...
37201 (kernel_img_ASFLAGS): ... this.
37202 (kernel_elf_CFLAGS): Rename to ...
37203 (kernel_img_CFLAGS): ... this.
37204 (kernel_elf_LDFLAGS): Rename to ...
37205 (kernel_img_LDFLAGS): ... this.
37206 * conf/i386-coreboot.rmk: Likewise.
37207 * conf/powerpc-ieee1275.rmk: Likewise.
37208
37209 * util/elf/grub-mkimage.c (add_segments): Replace "kernel.elf"
37210 with "kernel.img".
37211
37212 2009-06-21 Pavel Roskin <proski@gnu.org>
37213
37214 * loader/powerpc/ieee1275/linux.c (offset_phdr): Fix prototypes
37215 to match nested functions.
37216 * loader/sparc64/ieee1275/linux.c: Likewise.
37217
37218 * conf/i386-ieee1275.rmk: Define kernel_elf_ASFLAGS.
37219
37220 2009-06-21 Robert Millan <rmh.grub@aybabtu.com>
37221
37222 * configure.ac: Enable `END_SYMBOL' / `BSS_START_SYMBOL' test on
37223 all i386 platforms.
37224
37225 2009-06-21 Robert Millan <rmh.grub@aybabtu.com>
37226
37227 Fix asm file handling on ELF, and remove workarounds.
37228
37229 * genmk.rb (class Programs): Detect assembly files, and set ASFLAGS
37230 and -DASM_FILE=1 appropriately (copied from `class Images' stanza).
37231 * kern/i386/ieee1275/startup.S (ASM_FILE): Remove macro.
37232 * kern/i386/coreboot/startup.S (ASM_FILE): Likewise.
37233
37234 2009-06-21 Vladimir Serbinenko <phcoder@gmail.com>
37235
37236 Load BSD ELF modules
37237
37238 * conf/i386-pc.rmk (bsd_mod_SOURCES): Add loader/i386/bsd32.c
37239 and loader/i386/bsd64.c
37240 * include/grub/i386/bsd.h (FREEBSD_MODTYPE_MODULE): Remove
37241 (FREEBSD_MODTYPE_ELF_MODULE): New definition
37242 (FREEBSD_MODTYPE_ELF_MODULE_OBJ): Likewise
37243 (grub_freebsd_load_elfmodule32): New declaration
37244 (grub_freebsd_load_elfmoduleobj64): Likewise
37245 (grub_freebsd_load_elf_meta32): Likewise
37246 (grub_freebsd_load_elf_meta64): Likewise
37247 (grub_freebsd_add_meta): Likewise
37248 (grub_freebsd_add_meta_module): Likewise
37249 * loader/i386/bsd.c (grub_freebsd_add_meta): Make global
37250 (grub_freebsd_add_meta_module): Likewise and move module-specific
37251 parts to grub_cmd_freebsd and grub_cmd_freebsd_module
37252 (grub_cmd_freebsd): Add elf-kernel specific parts
37253 based on grub_freebsd_add_meta_module
37254 (grub_cmd_freebsd_module): Add type parsing moved from
37255 grub_freebsd_add_meta_module
37256 (grub_cmd_freebsd_module_elf): New function
37257 (cmd_freebsd_module_elf): New variable
37258 (GRUB_MOD_INIT): Register freebsd_module_elf
37259 * loader/i386/bsd32.c: New file
37260 * loader/i386/bsd64.c: Likewise
37261 * loader/i386/bsdXX.c: Likewise
37262 * kern/elf.c (grub_elf32_load): Let hook decide which pheaders to load
37263 (grub_elf64_load): Likewise
37264 * include/grub/elfload.h (grub_elf32_load_hook_t): New parameter do_load
37265 All users updated
37266 (grub_elf64_load_hook_t): Likewise
37267
37268 2009-06-21 Colin Watson <cjwatson@ubuntu.com>
37269
37270 * util/grub-mkconfig.in (GRUB_DISABLE_LINUX_RECOVERY): Export
37271 variable.
37272 * util/grub.d/10_linux.in: If GRUB_DISABLE_LINUX_RECOVERY is true,
37273 don't write a menu entry for recovery mode.
37274
37275 2009-06-20 Robert Millan <rmh.grub@aybabtu.com>
37276
37277 * util/i386/pc/grub-mkimage.c (main): Oops, free `output' only
37278 after it's no longer needed.
37279
37280 2009-06-20 Robert Millan <rmh.grub@aybabtu.com>
37281
37282 * include/grub/i386/loader.h (grub_linux_prot_size)
37283 (grub_linux_tmp_addr, grub_linux_real_addr)
37284 (grub_linux_is_bzimage, grub_linux16_boot): Declare only on
37285 GRUB_MACHINE_PCBIOS.
37286 * util/i386/pc/grub-mkimage.c (compress_kernel): Move
37287 common grub_util_info() call to ...
37288 (generate_image): ... here.
37289 Fix use of uninitialized memory, comparison of signed with
37290 unsigned integers and memory leak.
37291 Remove bogus module address message.
37292
37293 2009-06-20 Vladimir Serbinenko <phcoder@gmail.com>
37294
37295 * disk/mdraid_linux.c (GRUB_MOD_FINI): use grub_raid_unregister and not
37296 grub_raid_register
37297 * disk/dmraid_nvidia.c (GRUB_MOD_FINI): likewise
37298
37299 2009-06-19 Pavel Roskin <proski@gnu.org>
37300
37301 * configure.ac: Remove stray AC_MSG_CHECKING.
37302
37303 2009-06-19 Vladimir Serbinenko <phcoder@gmail.com>
37304
37305 * disk/scsi.c (grub_scsi_open): use continue instead of big if
37306
37307 2009-06-18 Pavel Roskin <proski@gnu.org>
37308
37309 * conf/common.rmk: Add fs_file.mod.
37310 * disk/fs_file.c: New file.
37311 * include/grub/disk.h (enum grub_disk_dev_id): Add
37312 GRUB_DISK_DEVICE_FILE_ID.
37313
37314 2009-06-18 Vladimir Serbinenko <phcoder@gmail.com>
37315
37316 Fix build with Apple's toolchain. Part 2
37317
37318 * aclocal.m4 (grub_PROG_TARGET_CC): add missing prototype for main and
37319 a fake start
37320
37321 2009-06-18 Vladimir Serbinenko <phcoder@gmail.com>
37322
37323 Fix build with Apple's toolchain. Part 1
37324
37325 * commands/i386/pc/drivemap_int13h.S: use assembly-time constants
37326 for long calls
37327 * configure.ac: remove a leftover AC_MSG_RESULT
37328 (CFLAGS): don't add -Wl,--defsym,___main=0x8100 when building with
37329 Apple's toolchain
37330
37331 2009-06-18 Vladimir Serbinenko <phcoder@gmail.com>
37332
37333 Fix warnings
37334
37335 * fs/ntfscomp.c (decomp_get16): initialize c1 and c2
37336 (decomp_block): initialize ch
37337 use grub_memcpy instead of memcpy
37338
37339 2009-06-17 Pavel Roskin <proski@gnu.org>
37340
37341 * include/grub/i386/coreboot/console.h: Don't use the i386-pc
37342 version, use declarations needed to use vga_text as the startup
37343 console.
37344
37345 * conf/i386-coreboot.rmk (kernel_elf_SOURCES): Remove
37346 term/i386/pc/at_keyboard.c, it doesn't need to be compiled into
37347 the kernel.
37348 * kern/i386/coreboot/init.c: Don't call grub_at_keyboard_init()
37349 and grub_at_keyboard_fini(), it's done on module load and
37350 unload.
37351
37352 2009-06-17 Felix Zielcke <fzielcke@z-51.de>
37353
37354 * loader/i386/linux.c (grub_cmd_linux): Set grub_error if the
37355 file can't be found.
37356 * loader/i386/pc/linux.c (grub_cmd_linux): Likewise.
37357
37358 2009-06-17 Vladimir Serbinenko <phcoder@gmail.com>
37359
37360 Fix newline handling
37361
37362 * include/grub/script_sh.h (grub_lexer_param): new field was_newline
37363 * script/sh/lexer.c (grub_script_lexer_init): initialize was_newline
37364 (grub_script_yylex): don't segfault on unterminated script
37365 newline terminates command and variable
37366
37367 2009-06-17 Vladimir Serbinenko <phcoder@gmail.com>
37368
37369 avoid double grub_adjust_range call. Bug reported by David Simner
37370
37371 * kern/disk.c (grub_disk_write): change to raw disk access before
37372 calling disk_read
37373
37374 2009-06-17 Colin Watson <cjwatson@ubuntu.com>
37375
37376 * util/elf/grub-mkimage.c (usage): Prefix each option line with two
37377 spaces, for the benefit of help2man.
37378 * util/i386/efi/grub-mkimage.c (usage): Likewise.
37379
37380 2009-06-16 Pavel Roskin <proski@gnu.org>
37381
37382 * kern/i386/halt.c: Include grub/machine/init.h.
37383 * kern/i386/reboot.c: Include grub/cpu/reboot.h.
37384
37385 2009-06-16 Felix Zielcke <fzielcke@z-51.de>
37386
37387 * util/grub.d/30_os-prober.in: Use ${root} in the generated
37388 drivemap menuentry.
37389
37390 2009-06-16 James Jarvis <James.Jarvis@ed.ac.uk>
37391
37392 * commands/help.c GRUB_MOD_INIT(echo): Fix the help output of
37393 `echo' command.
37394
37395 2009-06-16 Pavel Roskin <proski@gnu.org>
37396
37397 * boot/i386/pc/boot.S: Remove root_drive. Assert offset of
37398 boot_drive_check by using GRUB_BOOT_MACHINE_DRIVE_CHECK. Don't
37399 save %dx, we only need %dl and we never change it.
37400 * boot/i386/pc/cdboot.S: Don't set the root drive.
37401 * boot/i386/pc/pxeboot.S: Likewise.
37402 * include/grub/i386/pc/boot.h: Remove
37403 GRUB_BOOT_MACHINE_ROOT_DRIVE, adjust
37404 GRUB_BOOT_MACHINE_DRIVE_CHECK.
37405 * include/grub/i386/pc/kernel.h: Remove grub_root_drive.
37406 * kern/i386/pc/init.c (make_install_device): Remove references
37407 to grub_root_drive.
37408 * kern/i386/pc/startup.S: Likewise.
37409 * util/i386/pc/grub-setup.c (setup): Don't set root_drive.
37410
37411 2009-06-16 Vladimir Serbinenko <phcoder@gmail.com>
37412
37413 xnu_uuid command
37414
37415 * commands/xnu_uuid.c: new file
37416 * conf/common.rmk (pkglib_MODULES): add xnu_uuid.mod
37417 (xnu_uuid_mod_SOURCES): new variable
37418 (xnu_uuid_mod_CFLAGS): likewise
37419 (xnu_uuid_mod_LDFLAGS): likewise
37420 * conf/i386-coreboot.rmk (grub_emu_SOURCES): add commands/probe.c
37421 * conf/i386-ieee1275.rmk: likewise
37422 * conf/i386-pc.rmk: likewise
37423 * conf/powerpc-ieee1275.rmk: likewise
37424 * conf/sparc64-ieee1275.rmk: likewise
37425 * util/grub.d/30_os-prober.in: use UUID for Mac OS X/Darwin
37426
37427 2009-06-16 Pavel Roskin <proski@gnu.org>
37428
37429 * configure.ac: Avoid '==' in test command, it's not portable.
37430
37431 2009-06-16 Vladimir Serbinenko <phcoder@gmail.com>
37432
37433 Probe command
37434
37435 * commands/probe.c: new file
37436 * conf/common.rmk (pkglib_MODULES): add probe.mod
37437 (probe_mod_SOURCES): new variable
37438 (probe_mod_CFLAGS): likewise
37439 (probe_mod_LDFLAGS): likewise
37440 * conf/i386-coreboot.rmk (grub_emu_SOURCES): add commands/probe.c
37441 * conf/i386-ieee1275.rmk: likewise
37442 * conf/i386-pc.rmk: likewise
37443 * conf/powerpc-ieee1275.rmk: likewise
37444 * conf/sparc64-ieee1275.rmk: likewise
37445
37446 2009-06-15 Vladimir Serbinenko <phcoder@gmail.com>
37447
37448 Fix handling of string like \"hello\" and "a
37449 b"
37450
37451 * script/sh/lexer.c (check_textstate): accept GRUB_PARSER_STATE_ESC
37452 (grub_script_yylex): fix parsing of quoting, escaping and newline
37453
37454 2009-06-13 Vladimir Serbinenko <phcoder@gmail.com>
37455
37456 * loader/i386/multiboot.c (grub_multiboot_get_bootdev): fix partition
37457 handling
37458
37459 2009-06-13 Jun Inoue <jun.lambda@gmail.com>
37460
37461 * util/grub-mkconfig.in: Fix parsing of --output option.
37462
37463 2009-06-12 Pavel Roskin <proski@gnu.org>
37464
37465 * Makefile.in (pkgdata_SRCDIR): Remove. genmodsrc.sh and
37466 genmk.rb don't need to be generated or installed.
37467
37468 2009-06-12 Vladimir Serbinenko <phcoder@gmail.com>
37469
37470 * commands/i386/pc/drivemap_int13h.S: add more comments
37471
37472 2009-06-11 Pavel Roskin <proski@gnu.org>
37473
37474 * Makefile.in (uninstall): Uninstall manuals.
37475
37476 * Makefile.in: Rename lib_DATA to lib_SCRIPTS, move it from
37477 PKGLIB to SCRIPTS. This fixes installation of grub-mkconfig_lib
37478 and update-grub_lib in two places.
37479 * conf/common.rmk: Rename lib_DATA to lib_SCRIPTS.
37480
37481 * disk/usbms.c (grub_usbms_transfer): Initialize `err' to fix
37482 a compiler warning.
37483
37484 * loader/i386/bsd.c (grub_freebsd_boot): Rename `entry' to
37485 `entry_lo' to fix variable shadowing.
37486
37487 2009-06-11 Christian Franke <franke@computer.org>
37488
37489 * kern/misc.c (__enable_execute_stack): Add missing return type
37490 to prevent gcc warning.
37491
37492 2009-06-11 Felix Zielcke <fzielcke@z-51.de>
37493
37494 * conf/i386-ieee1275.rmk (COMMON_LDFLAGS): Remove `-static -lgcc'.
37495
37496 2009-06-11 Pavel Roskin <proski@gnu.org>
37497
37498 * Makefile.in: Don't rely on any scripts being executable.
37499 Always use $(SHELL) to run shell scripts.
37500
37501 * configure.ac: Always define ___main if using -nostdlib. This
37502 fixes tests on Cygwin.
37503
37504 2009-06-11 Giuseppe Caizzone <acaizzo@gmail.com>
37505
37506 UDF fix
37507
37508 * fs/udf.c (grub_udf_read_block): handle the fact that ad->length
37509 is in bytes and not in blocks
37510
37511 2009-06-11 Pavel Roskin <proski@gnu.org>
37512
37513 * kern/i386/halt.c (grub_halt): Make `i' unsigned to fix a
37514 warning.
37515
37516 2009-06-11 Felix Zielcke <fzielcke@z-51.de>
37517
37518 * util/grub.d/30_os-prober.in: Fix a comment. Source
37519 ${libdir}/grub/grub-mkconfig_lib. Use prepare_grub_to_access_device
37520 to set the root device. Place drivemap command in the generated
37521 chain entry.
37522
37523 2009-06-11 Pavel Roskin <proski@gnu.org>
37524
37525 * configure.ac: Remove host_m32. Issues with 64-bit utilities
37526 have long been resolved.
37527
37528 2009-06-11 Colin Watson <cjwatson@ubuntu.com>
37529
37530 * util/grub.d/10_linux.in: Capitalise "Linux".
37531
37532 * util/grub-pe2elf.c (usage): Fix references to grub-editenv.
37533
37534 2009-06-11 Pavel Roskin <proski@gnu.org>
37535
37536 * kern/efi/efi.c (grub_exit): Add infinite loop at the end to
37537 fix a gcc warning and ensure that the function won't ever exit.
37538
37539 * kern/i386/ieee1275/init.c: Add missing prototype for
37540 grub_stop_floppy().
37541
37542 * loader/ieee1275/multiboot2.c [__i386__]: Include
37543 grub/cpu/multiboot.h.
37544
37545 * term/i386/pc/serial.c (serial_translate_key_sequence): Avoid
37546 casts to short - they are not portable and cause warnings. Fix
37547 use of uninitialized values in input_buf. Use ARRAY_SIZE.
37548
37549 2009-06-11 Vladimir Serbinenko <phcoder@gmail.com>
37550
37551 Drivemap fixes
37552
37553 * commands/i386/pc/drivemap.c (grub_get_root_biosnumber_drivemap):
37554 new function
37555 (grub_get_root_biosnumber_saved): new variable
37556 (GRUB_MOD_INIT): register grub_get_root_biosnumber_drivemap
37557 (GRUB_MOD_FINI): unregister grub_get_root_biosnumber_drivemap
37558 * commands/i386/pc/drivemap_int13h.S (grub_drivemap_handler): restore
37559 %dx after the call if necessary
37560 * conf/common.rmk (pkglib_MODULES): remove boot.mod
37561 (boot_mod_SOURCES): remove
37562 (boot_mod_CFLAGS): remove
37563 (boot_mod_LDFLAGS): remove
37564 * conf/i386-coreboot.rmk (pkglib_MODULES): add boot.mod
37565 (boot_mod_SOURCES): new variable
37566 (boot_mod_CFLAGS): likewise
37567 (boot_mod_LDFLAGS): likewise
37568 * conf/i386-efi.rmk: likewise
37569 * conf/i386-ieee1275.rmk: likewise
37570 * conf/i386-pc.rmk: likewise
37571 * conf/powerpc-ieee1275.rmk: likewise
37572 * conf/sparc64-ieee1275.rmk: likewise
37573 * conf/x86_64-efi.rmk: likewise
37574 * include/grub/i386/pc/biosnum.h: new file
37575 * lib/i386/pc/biosnum.c: likewise
37576 * loader/i386/bsd.c (grub_bsd_get_device): use grub_get_root_biosnumber
37577 * loader/i386/multiboot.c (grub_multiboot_get_bootdev): likewise
37578 * loader/i386/pc/chainloader.c (grub_chainloader_cmd): likewise
37579
37580 2009-06-10 Pavel Roskin <proski@gnu.org>
37581
37582 * io/gzio.c (test_header): Don't reuse one buffer for all data.
37583 Use separate variables. Read only the file size at the end, but
37584 not the checksum that we don't use.
37585
37586 * kern/file.c (grub_file_read): Use void pointer for the buffer.
37587 Adjust all callers.
37588
37589 * kern/ieee1275/openfw.c: Remove libc includes.
37590 * kern/ieee1275/cmain.c: Likewise.
37591 * include/grub/ieee1275/ieee1275.h: Likewise.
37592
37593 * kern/i386/coreboot/init.c: Include grub/cpu/tsc.h to fix
37594 compiler warnings.
37595
37596 2009-06-10 Felix Zielcke <fzielcke@z-51.de>
37597
37598 * Makefile.in: Remove all trailing whitespace.
37599 * conf/i386-pc.rmk: Likewise.
37600 * conf/powerpc-ieee1275.rmk: Likewise.
37601 * conf/sparc64-ieee1275.rmk: Likewise.
37602 * docs/grub.texi: Likewise.
37603 * docs/texinfo.tex: Likewise.
37604 * disk/fs_uuid.c: Likewise.
37605 * disk/lvm.c: Likewise.
37606 * disk/scsi.c: Likewise.
37607 * disk/ata.c: Likewise.
37608 * disk/ieee1275/ofdisk.c: Likewise.
37609 * disk/i386/pc/biosdisk.c: Likewise.
37610 * disk/host.c: Likewise.
37611 * disk/raid.c: Likewise.
37612 * disk/efi/efidisk.c: Likewise.
37613 * disk/usbms.c: Likewise.
37614 * disk/memdisk.c: Likewise.
37615 * disk/loopback.c: Likewise.
37616 * kern/powerpc/dl.c: Likewise.
37617 * kern/device.c: Likewise.
37618 * kern/dl.c: Likewise.
37619 * kern/sparc64/dl.c: Likewise.
37620 * kern/ieee1275/ieee1275.c: Likewise.
37621 * kern/term.c: Likewise.
37622 * kern/fs.c: Likewise.
37623 * kern/i386/dl.c: Likewise.
37624 * kern/i386/pc/startup.S: Likewise.
37625 * kern/i386/pc/init.c: Likewise.
37626 * kern/i386/pc/mmap.c: Likewise.
37627 * kern/i386/pc/lzo1x.S: Likewise.
37628 * kern/i386/ieee1275/init.c: Likewise.
37629 * kern/i386/realmode.S: Likewise.
37630 * kern/i386/tsc.c: Likewise.
37631 * kern/partition.c: Likewise.
37632 * kern/corecmd.c: Likewise.
37633 * kern/file.c: Likewise.
37634 * kern/efi/efi.c: Likewise.
37635 * kern/efi/init.c: Likewise.
37636 * kern/efi/mm.c: Likewise.
37637 * kern/main.c: Likewise.
37638 * kern/err.c: Likewise.
37639 * kern/env.c: Likewise.
37640 * kern/disk.c: Likewise.
37641 * kern/generic/millisleep.c: Likewise.
37642 * kern/generic/rtc_get_time_ms.c: Likewise.
37643 * kern/misc.c: Likewise.
37644 * kern/parser.c: Likewise.
37645 * genmk.rb: Likewise.
37646 * configure.ac: Likewise.
37647 * boot/i386/pc/diskboot.S: Likewise.
37648 * boot/i386/pc/pxeboot.S: Likewise.
37649 * boot/i386/pc/boot.S: Likewise.
37650 * boot/i386/pc/lnxboot.S: Likewise.
37651 * boot/i386/pc/cdboot.S: Likewise.
37652 * parttool/pcpart.c: Likewise.
37653 * video/readers/tga.c: Likewise.
37654 * video/video.c: Likewise.
37655 * video/bitmap.c: Likewise.
37656 * lib/envblk.c: Likewise.
37657 * lib/i386/setjmp.S: Likewise.
37658 * fs/xfs.c: Likewise.
37659 * fs/afs.c: Likewise.
37660 * fs/fat.c: Likewise.
37661 * fs/ntfs.c: Likewise.
37662 * fs/udf.c: Likewise.
37663 * fs/affs.c: Likewise.
37664 * fs/iso9660.c: Likewise.
37665 * fs/hfs.c: Likewise.
37666 * fs/fshelp.c: Likewise.
37667 * fs/ext2.c: Likewise.
37668 * fs/jfs.c: Likewise.
37669 * fs/reiserfs.c: Likewise.
37670 * fs/hfsplus.c: Likewise.
37671 * fs/minix.c: Likewise.
37672 * fs/cpio.c: Likewise.
37673 * fs/sfs.c: Likewise.
37674 * fs/ufs.c: Likewise.
37675 * efiemu/prepare.c: Likewise.
37676 * efiemu/loadcore_common.c: Likewise.
37677 * efiemu/runtime/efiemu.sh: Likewise.
37678 * efiemu/runtime/efiemu.S: Likewise.
37679 * efiemu/runtime/efiemu.c: Likewise.
37680 * efiemu/pnvram.c: Likewise.
37681 * efiemu/main.c: Likewise.
37682 * efiemu/i386/pc/cfgtables.c: Likewise.
37683 * efiemu/i386/loadcore64.c: Likewise.
37684 * efiemu/i386/loadcore32.c: Likewise.
37685 * efiemu/loadcore.c: Likewise.
37686 * efiemu/symbols.c: Likewise.
37687 * efiemu/mm.c: Likewise.
37688 * include/grub/autoefi.h: Likewise.
37689 * include/grub/datetime.h: Likewise.
37690 * include/grub/term.h: Likewise.
37691 * include/grub/hfs.h: Likewise.
37692 * include/grub/lvm.h: Likewise.
37693 * include/grub/i386/tsc.h: Likewise.
37694 * include/grub/i386/linux.h: Likewise.
37695 * include/grub/i386/xnu.h: Likewise.
37696 * include/grub/i386/efiemu.h: Likewise.
37697 * include/grub/i386/pc/biosdisk.h: Likewise.
37698 * include/grub/i386/pc/memory.h: Likewise.
37699 * include/grub/i386/pc/vbe.h: Likewise.
37700 * include/grub/parttool.h: Likewise.
37701 * include/grub/video.h: Likewise.
37702 * include/grub/memory.h: Likewise.
37703 * include/grub/fs.h: Likewise.
37704 * include/grub/partition.h: Likewise.
37705 * include/grub/xnu.h: Likewise.
37706 * include/grub/efi/api.h: Likewise.
37707 * include/grub/efi/pe32.h: Likewise.
37708 * include/grub/efi/memory.h: Likewise.
37709 * include/grub/multiboot.h: Likewise.
37710 * include/grub/usbdesc.h: Likewise.
37711 * include/grub/multiboot2.h: Likewise.
37712 * include/grub/acpi.h: Likewise.
37713 * include/grub/efiemu/efiemu.h: Likewise.
37714 * include/grub/disk.h: Likewise.
37715 * include/grub/ieee1275/ieee1275.h: Likewise.
37716 * include/grub/net.h: Likewise.
37717 * include/grub/machoload.h: Likewise.
37718 * include/grub/macho.h: Likewise.
37719 * include/multiboot.h: Likewise.
37720 * genmoddep.awk: Likewise.
37721 * normal/main.c: Likewise.
37722 * normal/menu_entry.c: Likewise.
37723 * normal/menu_viewer.c: Likewise.
37724 * normal/completion.c: Likewise.
37725 * normal/cmdline.c: Likewise.
37726 * normal/misc.c: Likewise.
37727 * normal/datetime.c: Likewise.
37728 * bus/usb/usbtrans.c: Likewise.
37729 * bus/usb/ohci.c: Likewise.
37730 * bus/usb/uhci.c: Likewise.
37731 * bus/usb/usb.c: Likewise.
37732 * mmap/efi/mmap.c: Likewise.
37733 * mmap/i386/pc/mmap_helper.S: Likewise.
37734 * mmap/i386/pc/mmap.c: Likewise.
37735 * mmap/i386/mmap.c: Likewise.
37736 * mmap/i386/uppermem.c: Likewise.
37737 * mmap/mmap.c: Likewise.
37738 * commands/acpi.c: Likewise.
37739 * commands/echo.c: Likewise.
37740 * commands/blocklist.c: Likewise.
37741 * commands/loadenv.c: Likewise.
37742 * commands/usbtest.c: Likewise.
37743 * commands/boot.c: Likewise.
37744 * commands/parttool.c: Likewise.
37745 * commands/search.c: Likewise.
37746 * commands/cat.c: Likewise.
37747 * commands/i386/pc/play.c: Likewise.
37748 * commands/i386/pc/drivemap.c: Likewise.
37749 * commands/i386/pc/vbeinfo.c: Likewise.
37750 * commands/i386/pc/acpi.c: Likewise.
37751 * commands/i386/pc/vbetest.c: Likewise.
37752 * commands/ls.c: Likewise.
37753 * commands/cmp.c: Likewise.
37754 * commands/test.c: Likewise.
37755 * commands/efi/acpi.c: Likewise.
37756 * commands/gptsync.c: Likewise.
37757 * commands/help.c: Likewise.
37758 * partmap/amiga.c: Likewise.
37759 * partmap/apple.c: Likewise.
37760 * partmap/acorn.c: Likewise.
37761 * partmap/pc.c: Likewise.
37762 * partmap/sun.c: Likewise.
37763 * partmap/gpt.c: Likewise.
37764 * script/sh/lexer.c: Likewise.
37765 * script/sh/function.c: Likewise.
37766 * font/font.c: Likewise.
37767 * font/font_cmd.c: Likewise.
37768 * loader/powerpc/ieee1275/linux.c: Likewise.
37769 * loader/efi/chainloader.c: Likewise.
37770 * loader/multiboot_loader.c: Likewise.
37771 * loader/macho.c: Likewise.
37772 * loader/i386/multiboot.c: Likewise.
37773 * loader/i386/linux.c: Likewise.
37774 * loader/i386/pc/linux.c: Likewise.
37775 * loader/i386/pc/multiboot2.c: Likewise.
37776 * loader/i386/pc/chainloader.c: Likewise.
37777 * loader/i386/pc/xnu.c: Likewise.
37778 * loader/i386/bsd_trampoline.S: Likewise.
37779 * loader/i386/efi/linux.c: Likewise.
37780 * loader/i386/multiboot_elfxx.c: Likewise.
37781 * loader/i386/bsd_helper.S: Likewise.
37782 * loader/i386/bsd.c: Likewise.
37783 * loader/i386/linux_trampoline.S: Likewise.
37784 * loader/i386/xnu_helper.S: Likewise.
37785 * loader/i386/xnu.c: Likewise.
37786 * loader/i386/bsd_pagetable.c: Likewise.
37787 * loader/i386/multiboot_helper.S: Likewise.
37788 * loader/xnu.c: Likewise.
37789 * loader/xnu_resume.c: Likewise.
37790 * io/gzio.c: Likewise.
37791 * term/efi/console.c: Likewise.
37792 * term/terminfo.c: Likewise.
37793 * term/ieee1275/ofconsole.c: Likewise.
37794 * term/i386/pc/serial.c: Likewise.
37795 * term/i386/pc/vesafb.c: Likewise.
37796 * term/i386/pc/vga.c: Likewise.
37797 * term/usb_keyboard.c: Likewise.
37798 * term/gfxterm.c: Likewise.
37799 * aclocal.m4: Likewise.
37800 * util/lvm.c: Likewise.
37801 * util/grub.d/30_os-prober.in: Likewise.
37802 * util/grub.d/10_hurd.in: Likewise.
37803 * util/console.c: Likewise.
37804 * util/grub-macho2img.c: Likewise.
37805 * util/grub-probe.c: Likewise.
37806 * util/hostfs.c: Likewise.
37807 * util/i386/pc/grub-mkimage.c: Likewise.
37808 * util/i386/pc/grub-setup.c: Likewise.
37809 * util/i386/efi/grub-mkimage.c: Likewise.
37810 * util/grub-mkconfig.in: Likewise.
37811 * util/raid.c: Likewise.
37812 * util/resolve.c: Likewise.
37813 * util/grub-mkdevicemap.c: Likewise.
37814 * util/grub-emu.c: Likewise.
37815 * util/getroot.c: Likewise.
37816 * util/hostdisk.c: Likewise.
37817 * util/usb.c: Likewise.
37818 * util/grub-editenv.c: Likewise.
37819 * util/misc.c: Likewise.
37820
37821 2009-06-10 Felix Zielcke <fzielcke@z-51.de>
37822
37823 * gendistlist.sh (EXTRA_DISTFILES): Add `genhandlerlist.sh' and
37824 `genparttoollist.sh'.
37825 (DISTDIRS): Add `efiemu', `mmap', `parttool' and `script'.
37826 Add `*.sh' to the list find searches for and change `mdate.sh'
37827 to `mdate-sh'.
37828
37829 2009-06-10 Pavel Roskin <proski@gnu.org>
37830
37831 * include/grub/multiboot2.h: Provide compatibility defines for
37832 multiboot2.h.
37833 * include/multiboot2.h: Include stdint.h only if needed, using
37834 angle brackets.
37835 * loader/i386/pc/multiboot2.c: Include multiboot2.h after
37836 grub/multiboot2.h.
37837 * loader/ieee1275/multiboot2.c: Likewise.
37838 * loader/multiboot2.c: Likewise.
37839 * loader/multiboot_loader.c: Likewise.
37840
37841 * configure.ac: Use -nostdlib when probing for the target. It
37842 should not be required to have libc for the target.
37843
37844 * configure.ac: Remove checks for __bswapsi2 and __bswapdi2,
37845 they fail without libc headers for the target.
37846 * include/grub/powerpc/libgcc.h: Use weak attribute for all
37847 exports.
37848 * include/grub/sparc64/libgcc.h: Likewise. Don't use
37849 preprocessor conditionals.
37850
37851 * conf/common.rmk: Compile tar.mod from tar.c, not cpio.c. The
37852 build system doesn't need to be aware of the tar.c internals.
37853
37854 2009-06-09 Michel Hermier <michel.hermier@gmail.com>
37855
37856 * fs/i386/pc/pxe.c (grub_pxefs_read): Fix returned values.
37857
37858 2009-06-09 Robert Millan <rmh.grub@aybabtu.com>
37859
37860 * util/deviceiter.c (grub_util_iterate_devices): Increase number of
37861 disk limit to 26 for IDE, Virtio, Xen and SCSI.
37862
37863 2009-06-09 Felix Zielcke <fzielcke@z-51.de>
37864
37865 * util/i386/pc/grub-install.in: Change the error message if UUIDs
37866 aren't available if ata.mod gets used.
37867
37868 2009-06-09 Oliver Henshaw <oliver.henshaw@gmail.com>
37869
37870 * bus/usb/ohci.c (grub_ohci_pci_iter): Link struct only after
37871 initialising controller.
37872 * bus/usb/uhci.c (grub_uhci_pci_iter): Likewise.
37873
37874 2009-06-08 Felix Zielcke <fzielcke@z-51.de>
37875
37876 * util/i386/pc/grub-install.in: Add a parameter --disk-module
37877 to choose between ata and biosdisk module on i386-pc.
37878
37879 2009-06-08 Oliver Henshaw <oliver.henshaw@gmail.com>
37880
37881 * bus/usb/ohci.c (grub_ohci_pci_iter): Define the Class,
37882 Subclass and Programming Interface fields in terms of the 3 byte
37883 Class Code register.
37884 * bus/usb/uhci.c (grub_uhci_pci_iter): Likewise.
37885
37886 * bus/usb/ohci.c (grub_ohci_pci_iter): Check that programming
37887 interface is OHCI. Add grub_dprintf for symmetry with
37888 bus/usb/uhci.c.
37889 * bus/usb/uhci.c (grub_uhci_pci_iter): Check that programming
37890 interface is UHCI. Add interf variable for programming
37891 interface. Print interface with class/subclass.
37892
37893 * bus/usb/ohci.c: Set interf with correct field.
37894
37895 * bus/usb/uhci.c: Remove unneeded doubled lines.
37896 * bus/usb/ohci.c: Likewise. Change interf to grub_uint32_t.
37897 Remove whitespace inside comment.
37898
37899 2009-06-08 Robert Millan <rmh.grub@aybabtu.com>
37900
37901 * loader/i386/linux.c (grub_cmd_linux): When processing `vga=', use
37902 as fallback an equivalent option without depth.
37903
37904 2009-06-08 Vladimir Serbinenko <phcoder@gmail.com>
37905
37906 Not fail if unable to retrieve C/H/S on LBA disks
37907
37908 * disk/i386/pc/biosdisk.c (grub_biosdisk_open): behave gracefully
37909 if unable to retrieve C/H/S on LBA disks
37910
37911 2009-06-08 Pavel Roskin <proski@gnu.org>
37912
37913 * fs/hfs.c (grub_hfs_find_dir): Use union to avoid a warning
37914 about aliasing.
37915
37916 2009-06-08 Felix Zielcke <fzielcke@z-51.de>
37917
37918 * Makefile.in (uninstall): Remove all $lib_DATA files.
37919
37920 2009-06-08 Vladimir Serbinenko <phcoder@gmail.com>
37921
37922 Bugfix: install on partitionless device
37923
37924 * util/hostdisk.c (grub_util_biosdisk_get_grub_dev): check if os_dev
37925 is a whole disk
37926
37927 2009-06-08 Felix Zielcke <fzielcke@z-51.de>
37928
37929 * Makefile.in (uninstall): Remove all $include_DATA files.
37930
37931 2009-06-08 Felix Zielcke <fzielcke@z-51.de>
37932
37933 * commands/true.c: New file. Implement the true and false commands.
37934 * conf/common.rmk.c (pkglib_MODULES): Add `true.mod'.
37935 (true_mod_SOURCES): New variable.
37936 (true_mod_CFLAGS): Likewise.
37937 (true_mod_LDFLAGS): Likewise.
37938
37939 2009-06-05 Colin D Bennett <colin@gibibit.com>
37940
37941 Optimized font character lookup using binary search instead of linear
37942 search. Fonts now are required to have the character index ordered by
37943 code point.
37944
37945 * font/font.c (load_font_index): Verify that fonts have ordered
37946 character indices.
37947 (find_glyph): Use binary search instead of linear search to find a
37948 character in a font.
37949
37950 2009-06-05 Michael Scherer <misc@mandriva.org>
37951
37952 * fs/hfsplus.c (grub_hfsplus_mount): Determine if the filesystem
37953 uses case sensitive btree.
37954 (grub_hfsplus_iterate_dir): Use GRUB_FSHELP_CASE_INSENSITIVE
37955 only for case insensitive filesystems.
37956
37957 2009-06-05 Vladimir Serbinenko <phcoder@gmail.com>
37958
37959 * conf/i386-pc.rmk (efiemu_mod_CFLAGS): remove -Werror -Wall
37960 * conf/common.rmk (search_mod_CFLAGS): likewise
37961
37962 2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>
37963
37964 * kern/i386/pc/startup.S [APPLE_CC]: block of nops to
37965 compensate a compiler bug
37966
37967 2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>
37968
37969 * include/grub/term.h (GRUB_TERM_BACKSPACE): explicitly define as 8
37970 instead of '\b'
37971
37972 2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>
37973
37974 Definitions for creating asm symbols with Apple's CC
37975
37976 * include/grub/symbol.h [APPLE_CC] (FUNCTION): new macro
37977 [APPLE_CC] (VARIABLE): likewise
37978
37979 2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>
37980
37981 Disable lnxboot.img when compiled
37982 with Apple's CC
37983
37984 * conf/i386-pc.rmk (pkglib_IMAGES): remove lnxboot.img
37985 pkglib_IMAGES [! TARGET_APPLE_CC] (pkglib_IMAGES): add lnxboot.img
37986 * boot/i386/pc/lnxboot.S [APPLE_CC]: define an #error
37987 [! APPLE_CC] (CODE_LENG): skip
37988 [! APPLE_CC] (setup_sects): likewise
37989 [! APPLE_CC]: skip filling
37990
37991 2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>
37992
37993 Address in trampolines based on 32-bit registers when compiled
37994 with Apple's CC
37995
37996 * loader/i386/xnu_helper.S [APPLE_CC]: use 32-bit registers
37997 for addresses
37998 * loader/i386/linux_trampoline.S [APPLE_CC]: likewise
37999
38000 2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>
38001
38002 Avoid aliases when compiling with Apple's CC for PCBIOS machine
38003
38004 * kern/misc.c [APPLE_CC] (memcpy): new function
38005 [APPLE_CC] (memmove): likewise
38006 [APPLE_CC && !GRUB_UTIL] (grub_err_printf): likewise
38007 (memcpy): define alias conditionally on !APPLE_CC
38008 (memset): likewise
38009 (abort): likewise
38010 * include/grub/misc.h (memove): don't define when both GRUB_UTIL and
38011 APPLE_CC are defined
38012 * include/grub/list.h [APPLE_CC] (grub_assert_fail): new function
38013 (grub_assert_fail): make prototype conditional
38014
38015 2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>
38016
38017 Use grub-macho2img when compiling with Apple's CC for PCBIOS machine
38018
38019 * conf/common.rmk (bin_UTILITIES): add (on false on condition)
38020 grub-macho2img
38021 (CLEANFILES): add grub-macho2img
38022 (grub_macho2img_SOURCES): new variable
38023 * kern/i386/pc/startup.S (bss_start): new variable
38024 (bss_end): likewise
38025 * genmk.rb: use grub-macho2img for *.img when compiled with Apple's CC
38026 * util/grub-macho2img.c: new file
38027
38028 2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>
38029
38030 Use objconv when compiling with Apple's CC
38031
38032 * conf/i386-pc.rmk (efiemu32.o): use OBJCONV if defined
38033 (efiemu64.o): likewise
38034 (efiemu64_c.o): omit -mcmodel=large and add -DAPPLE_CC=1
38035 when compiling with Apple's CC
38036 (efiemu64_s.o): likewise
38037 * configure.ac: check for objconv when compiling with Apple's CC
38038 * genmk.rb: use objconv for modules when compiled with Apple's CC
38039
38040 2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>
38041
38042 Define segment as well as section when compiling with
38043 Apple's CC
38044
38045 * efiemu/runtime/efiemu.c (PHYSICAL_ATTRIBUTE): new definition
38046 (efiemu_set_virtual_address_map): declare with PHYSICAL_ATTRIBUTE
38047 (efiemu_convert_pointer): likewise
38048 (efiemu_set_virtual_address_map): likewise
38049 (efiemu_convert_pointer): likewise
38050 (efiemu_getcrc32): likewise
38051 (init_crc32_table): likewise
38052 (reflect): likewise
38053 * include/grub/dl.h (GRUB_MOD_NAME): define segment with Apple's CC
38054 (GRUB_MOD_DEP): likewise
38055
38056 2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>
38057
38058 Allow a compilation without -mcmodel=large
38059
38060 * kern/efi/mm.c (grub_efi_allocate_pages): don't allocate >4GiB
38061 when compiled without -mcmodel=large
38062 (filter_memory_map): remove memory post 4 GiB when compiled
38063 without -mcmodel=large
38064 * configure.ac: fail gracefully and add -DMCMODEL_SMALL=1 to
38065 TARGET_CFLAGS when -mcmodel=large isn't supported
38066
38067 2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>
38068
38069 Remove nested functions in efiemu core
38070
38071 * efiemu/runtime/efiemu.c (reflect): make static instead of nested
38072
38073 2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>
38074
38075 Avoid clobbering %ebx/%rbx in inline assembly with Apple's CC
38076
38077 * efiemu/runtime/efiemu.c (write_cmos): use %cl instead of %bl as
38078 temporary storage
38079 * include/grub/i386/tsc.h (grub_get_tsc): restore %rbx/%ebx when
38080 using Apple's CC
38081 (grub_cpu_is_tsc_supported): likewise
38082 * loader/i386/xnu.c (guessfsb): restore %rbx/%ebx in inline assembly
38083
38084 2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>
38085
38086 Absolute addressing through constant with Apple's cc
38087
38088 * kern/i386/pc/startup.S: Define necessary constants
38089 and address through it when using ABS with Apple's CC
38090 * boot/i386/pc/diskboot.S: likewise
38091 * boot/i386/pc/boot.S: likewise
38092 * boot/i386/pc/lnxboot.S: likewise
38093 * boot/i386/pc/cdboot.S: likewise
38094 * mmap/i386/pc/mmap_helper.S: likewise
38095 * commands/i386/pc/drivemap_int13h.S: likewise
38096
38097 2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>
38098
38099 Check if compiler is apple cc
38100
38101 * Makefile.in (ASFLAGS): new variable
38102 (TARGET_ASFLAGS): likewise
38103 (TARGET_MODULE_FORMAT): likewise
38104 (TARGET_APPLE_CC): likewise
38105 (OBJCONV): likewise
38106 (TARGET_IMG_CFLAGS): likewise
38107 (TARGET_CPPFLAGS): add includedir
38108 * configure.ac: call grub_apple_cc and grub_apple_target_cc
38109 (TARGET_IMG_LDFLAGS): Add -Wl,-Ttext,. All users updated
38110 Check for linker script only if compiler isn't Apple's CC
38111 (TARGET_MODULE_FORMAT): set
38112 (TARGET_APPLE_CC): likewise
38113 (TARGET_ASFLAGS): likewise
38114 (ASFLAGS): likewise
38115 Check for objcopy only if compiler isn't Apple's CC
38116 Check for BSS symbol only if compiler isn't Apple's CC
38117 * genmk.rb: adapt nm options if we use Apple's utils
38118 * aclocal.m4 (grub_apple_cc): new test
38119 (grub_apple_target_cc): likewise
38120
38121 2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>
38122
38123 Simplify sed expressions and improve awk
38124
38125 * Makefile.in (install-local): simplify sed expression
38126 * gencmdlist.sh: likewise
38127 * genmoddep.awk: avoid adding module as a dependency of itself
38128
38129 2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>
38130
38131 Add missing start symbols
38132
38133 * boot/i386/pc/boot.S: add start
38134 * boot/i386/pc/pxeboot.S: likewise
38135
38136 2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>
38137
38138 Fix wrong assumptions with grub-mkimage on EFI
38139
38140 * i386/efi/grub-mkimage.c (read_kernel_module): don't write prefix here
38141 (relocate_addresses): consider both r_addend and value at offset
38142 (make_mods_section): zerofill modinfo and header
38143 (convert_elf): write prefix here
38144
38145 2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>
38146
38147 Use .asciz instead of .string
38148
38149 * i386/pc/diskboot.S: use .asciz instead of .string
38150 * i386/pc/boot.S: likewise
38151 * include/grub/dl.h (GRUB_MOD_DEP): likewise
38152 (GRUB_MOD_NAME): likewise
38153
38154 2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>
38155
38156 gfxpayload support
38157
38158 * commands/videotest.c (grub_cmd_videotest): use grub_video_set_mode
38159 * include/grub/video.h (GRUB_VIDEO_MODE_TYPE_PURE_TEXT): new definition
38160 (grub_video_setup): remove
38161 (grub_video_set_mode): new prototype
38162 * loader/i386/linux.c (DEFAULT_VIDEO_MODE): new definition
38163 (vid_mode): remove
38164 (linux_vesafb_res): compile only on PCBIOS
38165 (grub_linux_boot): support gfxpayload
38166 * loader/i386/pc/xnu.c (video_hook): new function
38167 (grub_xnu_set_video): support gfxpayload
38168 * term/gfxterm.c (DEFAULT_VIDEO_WIDTH): removed
38169 (DEFAULT_VIDEO_HEIGHT): likewise
38170 (DEFAULT_VIDEO_FLAGS): likewise
38171 (DEFAULT_VIDEO_MODE): new definition
38172 (video_hook): new function
38173 (grub_gfxterm_init): use grub_video_set_mode
38174 * util/grub.d/30_os-prober.in: remove explicit modesetting before
38175 loading xnu
38176 * video/video.c (grub_video_setup): removed
38177 (grub_video_set_mode): new function based on grub_gfxterm_init and
38178 grub_video_setup
38179
38180 2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>
38181
38182 Avoid calling biosdisk in drivemap
38183
38184 * commands/i386/pc/drivemap.c (parse_biosdisk): remove
38185 (revparse_biosdisk): likewise
38186 (list_mappings): derive name from id directly
38187 (grub_cmd_drivemap): use tryparse_diskstring
38188
38189 2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>
38190
38191 Script fixes
38192
38193 * include/grub/script_sh.h (grub_script_cmdline): remove cmdline
38194 (grub_lexer_param): add tokenonhold
38195 (grub_script_create_cmdline): remove cmdline. All callers updated
38196 (grub_script_function_create): make functionname
38197 grub_script_arg. All callers updated
38198 (grub_script_execute_argument_to_string): new prototype
38199 * kern/parser.c (state_transitions): reorder
38200 (grub_parser_cmdline_state): fix a bug and make more compact
38201 * script/sh/execute.c (grub_script_execute_argument_to_string):
38202 make global
38203 (grub_script_execute_cmdline): use new format
38204 * script/sh/function.c (grub_script_function_create): make functionname
38205 grub_script_arg. All callers updated
38206 * script/sh/lexer.c (grub_script_lexer_init): initialize tokenonhold
38207 (grub_script_yylex): remove
38208 (grub_script_yylex2): renamed to ...
38209 (grub_script_yylex): ...renamed
38210 parse the expressions like a${b}c
38211 * script/sh/parser.y (GRUB_PARSER_TOKEN_ARG): new typed terminal
38212 (GRUB_PARSER_TOKEN_VAR): remove
38213 (GRUB_PARSER_TOKEN_NAME): likewise
38214 ("if"): declare as typeless
38215 ("while"): likewise
38216 ("function"): likewise
38217 ("else"): likewise
38218 ("then"): likewise
38219 ("fi"): likewise
38220 (text): remove
38221 (argument): likewise
38222 (script): accept empty scripts and make exit on error
38223 (arguments): use GRUB_PARSER_TOKEN_ARG
38224 (function): likewise
38225 (command): move error handling to script
38226 (menuentry): move grub_script_lexer_ref before
38227 * script/sh/script.c (grub_script_create_cmdline): remove cmdline
38228 argument. All callers updated
38229
38230 2009-06-04 Robert Millan <rmh.grub@aybabtu.com>
38231
38232 Prevent GRUB from probing floppies during boot.
38233
38234 * conf/common.rmk (search_mod_CFLAGS): Use `-Werror -Wall'.
38235 * commands/search.c (options): Add --no-floppy.
38236 (search_fs, search_file, grub_cmd_search): Support --no-floppy.
38237 * util/grub-mkconfig_lib.in (prepare_grub_to_access_device): Use
38238 --no-floppy when searching for UUIDs.
38239
38240 2009-06-04 Robert Millan <rmh.grub@aybabtu.com>
38241
38242 Simplify the code duplication in commands/search.c.
38243
38244 * commands/search.c (search_label, search_fs_uuid): Merge into ...
38245 (search_fs): ... this. Update all users.
38246
38247 2009-06-03 Felix Zielcke <fzielcke@z-51.de>
38248
38249 * util/grub-mkconfig.in (update_grub_dir): Rename to grub_mkconfig_dir.
38250
38251 2009-05-28 Pavel Roskin <proski@gnu.org>
38252
38253 * Makefile.in: Don't use "cp -d", it doesn't work on FreeBSD.
38254 Remove the original symlink explicitly.
38255
38256 * fs/hfs.c (grub_hfs_find_dir): Skip sequences of slashes, not
38257 just one slash. That's how grub_fshelp_find_file() does it.
38258
38259 2009-05-26 Pavel Roskin <proski@gnu.org>
38260
38261 * genmk.rb: Avoid shadowing variable `s', rename the outer `s'
38262 to `str'.
38263
38264 * util/getroot.c (grub_util_get_dev_abstraction): Mark os_dev as
38265 possibly unused.
38266
38267 2009-05-25 Christian Franke <franke@computer.org>
38268
38269 * disk/ata.c (grub_ata_wait_not_busy): Add debug output of status
38270 register.
38271 (grub_atapi_identify): Add wait after drive select.
38272 (grub_ata_identify): Do more strict status register check before
38273 calling grub_atapi_identify (). Suppress error message if status
38274 register is 0x00 after command failure. Add status register
38275 check after PIO read to avoid bogus identify due to stuck DRQ.
38276 Thanks to Pavel Roskin for testing.
38277 (grub_device_initialize): Remove unsafe status register check.
38278 Thanks to 'phcoder' for problem report and patch.
38279 Prevent sign extension in debug message.
38280
38281 2009-05-23 Colin D Bennett <colin@gibibit.com>
38282
38283 Cleaned up `include/grub/normal.h'. Grouped prototypes by
38284 definition file, and functions defined in `normal/menu.c' have had
38285 their prototypes moved to `include/grub/menu.h' for consistency.
38286
38287 * include/grub/menu.h (grub_menu_execute_callback): Added; moved
38288 from normal.h.
38289 (grub_menu_get_entry): Likewise.
38290 (grub_menu_get_timeout): Likewise.
38291 (grub_menu_set_timeout): Likewise.
38292 (grub_menu_execute_entry): Likewise.
38293 (grub_menu_execute_with_fallback): Likewise.
38294 (grub_menu_entry_run): Likewise.
38295
38296 * include/grub/normal.h: Re-ordered and grouped function
38297 prototypes by file that the function is defined in.
38298 (grub_menu_execute_callback): Removed; moved to menu.h.
38299 (grub_menu_get_entry): Likewise.
38300 (grub_menu_get_timeout): Likewise.
38301 (grub_menu_set_timeout): Likewise.
38302 (grub_menu_execute_entry): Likewise.
38303 (grub_menu_execute_with_fallback): Likewise.
38304 (grub_menu_entry_run): Likewise.
38305 (grub_menu_addentry): Renamed from this ...
38306 (grub_normal_add_menu_entry): ... to this.
38307
38308 * normal/main.c (grub_menu_addentry): Renamed from this ...
38309 (grub_normal_add_menu_entry): ... to this.
38310
38311 * script/sh/execute.c (grub_script_execute_menuentry): Update
38312 reference to renamed grub_menu_addentry function.
38313
38314 2009-05-23 Felix Zielcke <fzielcke@z-51.de>
38315
38316 * commands/i386/pc/drivemap.c (MODNAME): Remove. Update all users.
38317
38318 2009-05-22 Pavel Roskin <proski@gnu.org>
38319
38320 * aclocal.m4 (grub_I386_CHECK_REGPARM_BUG): Remove.
38321 * configure.ac: Don't call grub_I386_CHECK_REGPARM_BUG. Define
38322 NESTED_FUNC_ATTR using AH_BOTTOM. Use regparm(1) only when
38323 compiling for the i386 targets, but not for the utilities.
38324
38325 * include/grub/i386/pc/kernel.h (grub_boot_drive): Change type
38326 to grub_uint8_t.
38327 (grub_root_drive): Likewise.
38328 * kern/i386/pc/startup.S (grub_boot_drive): Change size to byte,
38329 remove alignment.
38330 (grub_root_drive): Change size to byte.
38331 (grub_start_addr): Remove.
38332 (grub_end_addr): Likewise.
38333 (grub_apm_bios_info): Likewise.
38334
38335 2009-05-21 Felix Zielcke <fzielcke@z-51.de>
38336
38337 * normal/i386: Remove.
38338 * normal/powerpc: Likewise.
38339 * normal/sparc64: Likewise.
38340 * normal/x86_64: Likewise.
38341
38342 2009-05-19 Vladimir Serbinenko <phcoder@gmail.com>
38343
38344 * conf/x86_64-efi.rmk (linux_mod_ASFLAGS): Add missing variable
38345 * loader/i386/linux_trampoline.S: Fix indentation
38346 * loader/i386/xnu_helper.S: Likewise
38347
38348 2009-05-18 Colin D Bennett <colin@gibibit.com>
38349
38350 Display error messages when parsing a Lua statement fails.
38351 Previously, executing a syntactically invalid statement like
38352 ")foo" or "bar;" would silently fail.
38353
38354 * script/lua/grub_main.c (handle_lua_error): New function.
38355 (grub_lua_parse_line): Improved reporting of Lua parser and
38356 execution errors.
38357
38358 2009-05-17 Vladimir Serbinenko <phcoder@gmail.com>
38359
38360 Remove -Werror which causes build to fail on some systems
38361
38362 * conf/i386-pc.rmk (xnu_mod_CFLAGS): Remove -Werror -Wall
38363 * conf/i386-efi.rmk (xnu_mod_CFLAGS): Likewise
38364 * conf/x86_64-efi.rmk (xnu_mod_CFLAGS): Likewise
38365
38366 2009-05-17 Vladimir Serbinenko <phcoder@gmail.com>
38367
38368 trampoline for linux on 64-bit platform
38369
38370 * conf/x86_64-efi.rmk (linux_mod_SOURCES): added
38371 loader/i386/efi/linux_trampoline.S
38372 * include/grub/x86_64/efi/loader.h (grub_linux_real_boot): removed
38373 declaration
38374 * kern/x86_64/efi/startup.S (grub_linux_real_boot): moved from
38375 here
38376 * loader/i386/linux_trampoline.S: moved here
38377 * loader/i386/efi/linux.c (allocate_pages): reserve space for
38378 trampoline
38379 (jumpvector): removed
38380 (grub_linux_trampoline_start): new declaration
38381 (grub_linux_trampoline_end): likewise
38382 (grub_linux_boot): use trampoline when on 64-bit platform
38383 * loader/i386/linux.c: likewise
38384
38385 2009-05-16 Pavel Roskin <proski@gnu.org>
38386
38387 * script/lua/grub_lib.c (grub_lua_getenv): Make name and value
38388 const to avoid a warning.
38389 (grub_lua_setenv): Likewise.
38390 * script/lua/grub_main.c (grub_lua_parse_line): Use size_t for
38391 lmsg to fix a warning.
38392
38393 2009-05-16 Felix Zielcke <fzielcke@z-51.de>
38394
38395 * conf/i386.rmk (setjmp_mod_CFLAGS): Rename to ...
38396 (setjmp_mod_ASFLAGS): ... this. Set to $(COMMON_ASFLAGS).
38397 * conf/x86_64-efi.rmk (setjmp_mod_CFLAGS): Rename to ...
38398 (setjmp_mod_ASFLAGS): ... this. Set to $(COMMON_ASFLAGS).
38399 * conf/powerpc-ieee1275.rmk (setjmp_mod_CFLAGS): Rename to ...
38400 (setjmp_mod_ASFLAGS): ... this. Set to $(COMMON_ASFLAGS).
38401 * conf/sparc64-ieee1275.rmk (setjmp_mod_CFLAGS): Rename to ...
38402 (setjmp_mod_ASFLAGS): ... this. Set to $(COMMON_ASFLAGS).
38403
38404 2009-05-16 Felix Zielcke <fzielcke@z-51.de>
38405
38406 * util/grub-mkconfig.in: Export GRUB_TERMINAL_INPUT.
38407
38408 2009-05-16 Bean <bean123ch@gmail.com>
38409
38410 * conf/common.rmk (pkglib_MODULES): Add lua.mod.
38411 (lua_mod_SOURCES): New variable.
38412 (lua_mod_CFLAGS): Likewise.
38413 (lua_mod_LDFLAGS): Likewise.
38414
38415 * conf/i386.rmk (pkglib_MODULES): Add setjmp.mod.
38416 (setjmp_mod_SOURCES): New variable.
38417 (setjmp_mod_CFLAGS): Likewise.
38418 (setjmp_LDFLAGS): Likewise.
38419
38420 * conf/x86_64-efi.rmk (pkglib_MODULES): Add setjmp.mod.
38421 (setjmp_mod_SOURCES): New variable.
38422 (setjmp_mod_CFLAGS): Likewise.
38423 (setjmp_LDFLAGS): Likewise.
38424
38425 * conf/powerpc-ieee1275.rmk (pkglib_MODULES): Add setjmp.mod.
38426 (setjmp_mod_SOURCES): New variable.
38427 (setjmp_mod_CFLAGS): Likewise.
38428 (setjmp_LDFLAGS): Likewise.
38429
38430 * conf/sparc64-ieee1275.rmk (pkglib_MODULES): Add setjmp.mod.
38431 (setjmp_mod_SOURCES): New variable.
38432 (setjmp_mod_CFLAGS): Likewise.
38433 (setjmp_LDFLAGS): Likewise.
38434
38435 * normal/i386/setjmp.S: Moved from here ...
38436 * lib/i386/setjmp.S: ... Moved here
38437 * normal/x86_64/setjmp.S: Moved from here ...
38438 * lib/x86_64/setjmp.S: ... Moved here
38439 * normal/powerpc/setjmp.S: Moved from here ...
38440 * lib/powerpc/setjmp.S: ... Moved here
38441 * normal/sparc64/setjmp.S: Moved from here ...
38442 * lib/sparc64/setjmp.S: ... Moved here
38443
38444 * include/grub/i386/setjmp.h (grub_setjmp): Don't use attribute
38445 returns_twice in mingw.
38446
38447 * script/lua/grub_lib.c: New file.
38448 * script/lua/grub_lib.h: Likewise.
38449 * script/lua/grub_lua.h: Likewise.
38450 * script/lua/grub_main.c: Likewise.
38451 * script/lua/lapi.c: Likewise.
38452 * script/lua/lapi.h: Likewise.
38453 * script/lua/lauxlib.c: Likewise.
38454 * script/lua/lauxlib.h: Likewise.
38455 * script/lua/lbaselib.c: Likewise.
38456 * script/lua/lcode.c: Likewise.
38457 * script/lua/lcode.h: Likewise.
38458 * script/lua/ldblib.c: Likewise.
38459 * script/lua/ldebug.c: Likewise.
38460 * script/lua/ldebug.h: Likewise.
38461 * script/lua/ldo.c: Likewise.
38462 * script/lua/ldo.h: Likewise.
38463 * script/lua/ldump.c: Likewise.
38464 * script/lua/lfunc.c: Likewise.
38465 * script/lua/lfunc.h: Likewise.
38466 * script/lua/lgc.c: Likewise.
38467 * script/lua/lgc.h: Likewise.
38468 * script/lua/linit.c: Likewise.
38469 * script/lua/liolib.c: Likewise.
38470 * script/lua/llex.c: Likewise.
38471 * script/lua/llex.h: Likewise.
38472 * script/lua/llimits.h: Likewise.
38473 * script/lua/lmathlib.c: Likewise.
38474 * script/lua/lmem.c: Likewise.
38475 * script/lua/lmem.h: Likewise.
38476 * script/lua/loadlib.c: Likewise.
38477 * script/lua/lobject.c: Likewise.
38478 * script/lua/lobject.h: Likewise.
38479 * script/lua/lopcodes.c: Likewise.
38480 * script/lua/lopcodes.h: Likewise.
38481 * script/lua/loslib.c: Likewise.
38482 * script/lua/lparser.c: Likewise.
38483 * script/lua/lparser.h: Likewise.
38484 * script/lua/lstate.c: Likewise.
38485 * script/lua/lstate.h: Likewise.
38486 * script/lua/lstring.c: Likewise.
38487 * script/lua/lstring.h: Likewise.
38488 * script/lua/lstrlib.c: Likewise.
38489 * script/lua/ltable.c: Likewise.
38490 * script/lua/ltable.h: Likewise.
38491 * script/lua/ltablib.c: Likewise.
38492 * script/lua/ltm.c: Likewise.
38493 * script/lua/ltm.h: Likewise.
38494 * script/lua/lua.h: Likewise.
38495 * script/lua/luaconf.h: Likewise.
38496 * script/lua/lualib.h: Likewise.
38497 * script/lua/lundump.c: Likewise.
38498 * script/lua/lundump.h: Likewise.
38499 * script/lua/lvm.c: Likewise.
38500 * script/lua/lvm.h: Likewise.
38501 * script/lua/lzio.c: Likewise.
38502 * script/lua/lzio.h: Likewise.
38503
38504 2009-05-16 Bean <bean123ch@gmail.com>
38505
38506 * include/grub/kernel.h (grub_module_header_types): Add type
38507 OBJ_TYPE_CONFIG.
38508
38509 * kern/main.c (grub_load_config): New function.
38510 (grub_main): Call grub_load_config to read boot config.
38511
38512 * grub-mkimage (generate_image): New parameter config_path.
38513 (options): New option --config.
38514 (main): Parse --config option, and pass it to generate_image.
38515
38516 2009-05-14 Christian Franke <franke@computer.org>
38517
38518 * commands/i386/pc/drivemap_int13h.S: Add missing EXT_C for symbols.
38519 This fixes build on Cygwin.
38520
38521 2009-05-14 Pavel Roskin <proski@gnu.org>
38522
38523 * commands/i386/pc/drivemap_int13h.S: Eliminate unconditional
38524 jump. This saves two bytes, so the typical case of 2 swapped
38525 drives would fit 32 bytes.
38526
38527 2009-05-13 Pavel Roskin <proski@gnu.org>
38528
38529 * loader/i386/multiboot.c (grub_multiboot): Cast mmap_addr to
38530 grub_uint32_t to avoid a warning.
38531
38532 * loader/i386/linux.c (allocate_pages): When assigning
38533 real_mode_mem, cast through grub_size_t to fix a warning. The
38534 code already makes sure that the value would fit a pointer.
38535 (grub_linux_setup_video): Cast render_target->data to
38536 grub_size_t to fix a warning.
38537
38538 2009-05-13 Javier Martín <lordhabbit@gmail.com>
38539
38540 * commands/i386/pc/drivemap.c: New file - implement drivemap
38541 command.
38542 * commands/i386/pc/drivemap_int13h.S: New file - int13 handler.
38543 * conf/i386-pc.rmk: Add drivemap.c and drivemap_int13h.S.
38544
38545 2009-05-13 Pavel Roskin <proski@gnu.org>
38546
38547 * util/i386/pc/grub-setup.c (setup): Remove unused variable
38548 embedding_area_exists.
38549
38550 2009-05-13 Robert Millan <rmh.grub@aybabtu.com>
38551
38552 * util/i386/pc/grub-setup.c (setup): Restructure code flow to make
38553 it easier to understand / work with.
38554 Improve warning messages for cases where there's no embedding area,
38555 or when it is too small (or core.img too large).
38556
38557 2009-05-13 Pavel Roskin <proski@gnu.org>
38558
38559 * loader/i386/pc/multiboot2.c: Add necessary includes for
38560 grub_multiboot2_real_boot().
38561
38562 * fs/iso9660.c (grub_iso9660_iterate_dir): The file mode in the
38563 PX record is always little-endian. We only need the lower 2
38564 bytes of the mode.
38565
38566 * fs/cpio.c: Use the same name "struct head" for tar and cpio to
38567 facilitate code reuse.
38568 (grub_cpio_mount): Use "struct head", not a char buffer. This
38569 fixes a warning reported by gcc 4.4.
38570
38571 * kernel/disk.c (grub_disk_read): Use void pointer for the
38572 buffer.
38573 (grub_disk_write): Use const void pointer for the buffer.
38574 Adjust all callers. Remove unnecessary casts.
38575
38576 2009-05-10 Robert Millan <rmh.grub@aybabtu.com>
38577
38578 * util/i386/pc/grub-install.in: Update copyright year.
38579
38580 2009-05-09 Vladimir Serbinenko <phcoder@gmail.com>
38581
38582 gptsync
38583
38584 * commands/gptsync.c: new file
38585 * conf/common.rmk (pkglib_MODULES): add gptsync.mod
38586 (gptsync_mod_SOURCES): new variable
38587 (gptsync_mod_CFLAGS): likewise
38588 (gptsync_mod_LDFLAGS): likewise
38589 * include/grub/pc_partition.h (GRUB_PC_PARTITION_TYPE_NTFS):
38590 new definition
38591 (GRUB_PC_PARTITION_TYPE_HFS): likewise
38592 * conf/i386-coreboot.rmk (grub_emu_SOURCES): add commands/gptsync.c
38593 * conf/i386-ieee1275.rmk: likewise
38594 * conf/i386-pc.rmk: likewise
38595 * conf/powerpc-ieee1275.rmk: likewise
38596
38597 2009-05-09 Vladimir Serbinenko <phcoder@gmail.com>
38598
38599 Fixed grub-emu
38600
38601 * kern/dl.c (grub_dl_ref): omit when compiling grub-emu
38602 (grub_dl_ref): likewise
38603
38604 2009-05-08 Robert Millan <rmh.grub@aybabtu.com>
38605
38606 * util/i386/pc/grub-setup.c (setup): Factorize find_usable_region(),
38607 split in two functions (one for msdos and one for gpt).
38608
38609 2009-05-08 Pavel Roskin <proski@gnu.org>
38610
38611 * disk/raid.c (grub_raid_block_xor): Make buf2 constant, it's
38612 not modified.
38613
38614 * disk/raid6_recover.c (grub_raid6_recover): Fix warnings about
38615 uninitialized err[0] and err[1]. Rename them to bad1 and bad2.
38616 Initialize them with -1. Add sanity check for bad1. Eliminate
38617 nerr variable.
38618
38619 2009-05-08 David S. Miller <davem@davemloft.net>
38620
38621 * util/sparc64/ieee1275/grub-ofpathname.c (main): Set progname.
38622
38623 2009-05-06 Robert Millan <rmh.grub@aybabtu.com>
38624
38625 * util/i386/pc/grub-setup.c (setup): Fix check for embed region
38626 existence.
38627
38628 2009-05-05 Felix Zielcke <fzielcke@z-51.de>
38629
38630 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add
38631 `kern/rescue_reader.c', `kern/rescue_parser.c' and `normal/autofs.c'.
38632
38633 2009-05-05 David S. Miller <davem@davemloft.net>
38634
38635 * util/sparc64/ieee1275/grub-install.in: Fix sed arg quoting.
38636
38637 2009-05-05 Pavel Roskin <proski@gnu.org>
38638
38639 * include/grub/dl.h [GRUB_UTIL]: Provide inline implementations
38640 of grub_dl_ref() and grub_dl_unref().
38641 * commands/parttool.c: Remove preprocessor conditionals around
38642 grub_dl_ref() and grub_dl_unref().
38643 * fs/affs.c: Likewise.
38644 * fs/afs.c: Likewise.
38645 * fs/cpio.c: Likewise.
38646 * fs/ext2.c: Likewise.
38647 * fs/fat.c: Likewise.
38648 * fs/hfs.c: Likewise.
38649 * fs/hfsplus.c: Likewise.
38650 * fs/iso9660.c: Likewise.
38651 * fs/jfs.c: Likewise.
38652 * fs/minix.c: Likewise.
38653 * fs/ntfs.c: Likewise.
38654 * fs/reiserfs.c: Likewise.
38655 * fs/sfs.c: Likewise.
38656 * fs/udf.c: Likewise.
38657 * fs/ufs.c: Likewise.
38658 * fs/xfs.c: Likewise.
38659 * include/grub/dl.h: Likewise.
38660 * loader/xnu.c: Likewise.
38661
38662 2009-05-04 Pavel Roskin <proski@gnu.org>
38663
38664 * commands/acpi.c: Remove unused variable my_mod.
38665 * partmap/amiga.c: Likewise.
38666 * partmap/apple.c: Likewise.
38667 * partmap/gpt.c: Likewise.
38668 * partmap/pc.c: Likewise.
38669 * partmap/sun.c: Likewise.
38670 * term/gfxterm.c: Likewise.
38671 * term/i386/pc/vesafb.c: Likewise.
38672 * term/i386/pc/vga.c: Likewise.
38673
38674 2009-05-04 David S. Miller <davem@davemloft.net>
38675
38676 * kern/ieee1275/openfw.c (grub_children_iterate): Fix string
38677 pointer args to grub_ieee1275_get_property().
38678
38679 * conf/sparc64-ieee1275.rmk: Fix build due to missing '\'.
38680
38681 * disk/ieee1275/ofdisk.c (grub_ofdisk_iterate): Bypass cdrom
38682 devices, and do not traverse down under controller nodes.
38683
38684 * disk/ieee1275/ofdisk.c (compute_dev_path): New.
38685 (grub_ofdisk_open): Use it to un-escape "," characters.
38686 * kern/disk.c (find_part_sep): New.
38687 (grub_disk_open): Use it to find the first non-escaped ','
38688 character in the disk name.
38689 * util/ieee1275/devicemap.c (escape_of_path): New.
38690 (grub_util_emit_devicemap_entry): Use it.
38691 * util/sparc64/ieee1275/grub-install.in: Update script to
38692 strip partition specifiers properly by not triggering on
38693 '\' escaped ',' characters.
38694
38695 2009-05-04 Robert Millan <rmh.grub@aybabtu.com>
38696
38697 * include/grub/i386/linux.h (GRUB_LINUX_VID_MODE_VESA_START): Set
38698 to 0x300.
38699 * loader/i386/linux.c (vga_modes, linux_vesafb_res): Add a few
38700 resolutions.
38701 (linux_vesafb_modes): Add a lot of additional modes to the list (based
38702 on documentation from Wikipedia).
38703
38704 2009-05-04 Pavel Roskin <proski@gnu.org>
38705
38706 * disk/ata.c: Spelling fixes.
38707 * disk/raid.c: Likewise.
38708 * disk/usbms.c: Likewise.
38709 * disk/dmraid_nvidia.c: Likewise.
38710 * kern/ieee1275/openfw.c: Likewise.
38711 * kern/ieee1275/init.c: Likewise.
38712 * kern/ieee1275/cmain.c: Likewise.
38713 * boot/i386/pc/cdboot.S: Likewise.
38714 * video/readers/png.c: Likewise.
38715 * video/i386/pc/vbe.c: Likewise.
38716 * fs/udf.c: Likewise.
38717 * fs/hfs.c: Likewise.
38718 * fs/reiserfs.c: Likewise.
38719 * efiemu/runtime/efiemu.c: Likewise.
38720 * efiemu/main.c: Likewise.
38721 * efiemu/mm.c: Likewise.
38722 * include/grub/elf.h: Likewise.
38723 * include/grub/xnu.h: Likewise.
38724 * include/grub/usbdesc.h: Likewise.
38725 * include/grub/usb.h: Likewise.
38726 * include/grub/script_sh.h: Likewise.
38727 * include/grub/lib/LzmaEnc.h: Likewise.
38728 * include/grub/efiemu/efiemu.h: Likewise.
38729 * include/grub/command.h: Likewise.
38730 * normal/menu.c: Likewise.
38731 * normal/main.c: Likewise.
38732 * normal/datetime.c: Likewise.
38733 * bus/usb/uhci.c: Likewise.
38734 * mmap/i386/uppermem.c: Likewise.
38735 * mmap/mmap.c: Likewise.
38736 * commands/acpi.c: Likewise.
38737 * commands/test.c: Likewise.
38738 * partmap/apple.c: Likewise.
38739 * font/font.c: Likewise.
38740 * loader/sparc64/ieee1275/linux.c: Likewise.
38741 * loader/macho.c: Likewise.
38742 * loader/i386/bsd_trampoline.S: Likewise.
38743 * loader/i386/bsd.c: Likewise.
38744 * loader/xnu.c: Likewise.
38745 * term/i386/pc/vesafb.c: Likewise.
38746 * term/usb_keyboard.c: Likewise.
38747 * util/resolve.c: Likewise.
38748 * util/getroot.c: Likewise.
38749
38750 2009-05-04 Felix Zielcke <fzielcke@z-51.de>
38751
38752 * conf/i386-pc.rmk (libpkg_DATA): Rename to pkglib_DATA.
38753
38754 2009-05-04 Robert Millan <rmh.grub@aybabtu.com>
38755
38756 * loader/i386/linux.c [GRUB_MACHINE_PCBIOS] (grub_cmd_linux): Fix
38757 build error.
38758
38759 2009-05-04 Robert Millan <rmh.grub@aybabtu.com>
38760
38761 * loader/i386/linux.c (grub_cmd_linux): Make "vga=" compatibility
38762 parameter only available on BIOS.
38763
38764 2009-05-04 Vladimir Serbinenko <phcoder@gmail.com>
38765
38766 Removed wrong semicolon in declaration
38767
38768 * grub/misc.h (grub_dprintf): remove semicolon
38769
38770 2009-05-04 Robert Millan <rmh.grub@aybabtu.com>
38771
38772 * loader/i386/linux.c (GRUB_ASSUME_LINUX_HAS_FB_SUPPORT): New macro.
38773 (grub_linux_boot): Don't check for `linux_vesafb_modes' bounds (this
38774 is done by grub_cmd_linux() now).
38775 [! GRUB_ASSUME_LINUX_HAS_FB_SUPPORT]: If "vga=" parameter wasn't set,
38776 restore video to text mode.
38777 (grub_cmd_linux): Default `vid_mode' initialization to 0, which
38778 indicates lack of "vga=" parameter. "vga=0" is mapped to
38779 `GRUB_LINUX_VID_MODE_NORMAL'.
38780
38781 2009-05-04 Felix Zielcke <fzielcke@z-51.de>
38782
38783 * conf/i386-efi.rmk (grub_emu_SOURCES): Remove `normal/execute.c',
38784 `normal/lexer.c', `kern/rescue.c', `normal/function.c', `normal/misc.c'
38785 and `normal/script.c'. Add `kern/rescue_reader.c',
38786 `kern/rescue_parser.c', `script/sh/main.c', `script/sh/execute.c',
38787 `script/sh/function.c', `script/sh/lexer.c', `script/sh/script.c' and
38788 `grub_script.tab.c'.
38789
38790 * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Likewise.
38791 * conf/x86_64-efi.rmk (grub_emu_SOURCES): Likewise.
38792 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
38793 * conf/i386-coreboot.rmk (grub_emu_SOURCES): Likewise.
38794 * conf/sparc64-ieee1275.rmk (grub_emu_SOURCES): Likewise.
38795
38796 * Makefile.in: Remove duplicated 2008 in Copyright line.
38797
38798 2009-05-04 Robert Millan <rmh.grub@aybabtu.com>
38799
38800 * util/misc.c (grub_util_warn): New function. Emits a warning
38801 unconditionally.
38802 * include/grub/util/misc.h (grub_util_warn): New declaration.
38803
38804 * util/i386/pc/grub-install.in: Understand --force and pass it down
38805 to grub-setup.
38806
38807 * util/i386/pc/grub-setup.c (main): Understand --force and pass it
38808 down to setup().
38809 (setup): Improve error messages and add warnings when requested to
38810 install in odd layouts. Refuse to install using blocklists unless
38811 --force was set.
38812
38813 2009-05-04 martin f. krafft <madduck@madduck.net>
38814
38815 * disk/raid.c (grub_raid_scan_device): Improve debug message.
38816
38817 2009-05-04 Vladimir Serbinenko <phcoder@gmail.com>
38818
38819 Updated copyright year
38820
38821 * fs/hfsplus.c: updated copyright year
38822
38823 2009-05-04 Vladimir Serbinenko <phcoder@gmail.com>
38824
38825 HFS+ UUID
38826
38827 * fs/hfsplus.c (grub_hfsplus_volheader): added num_serial field
38828 in the space previously used by unused3
38829 (grub_hfsplus_uuid): new function
38830 (grub_hfsplus_fs): added uuid field
38831
38832 2009-05-03 Pavel Roskin <proski@gnu.org>
38833
38834 * disk/ata.c: Don't cast mod to void in GRUB_MOD_INIT to
38835 suppress warnings. It's no longer needed.
38836 * disk/host.c: Likewise.
38837 * disk/ata_pthru.c: Likewise.
38838 * disk/loopback.c: Likewise.
38839 * hook/datehook.c: Likewise.
38840 * parttool/pcpart.c: Likewise.
38841 * fs/i386/pc/pxe.c: Likewise.
38842 * fs/ntfscomp.c: Likewise.
38843 * efiemu/main.c: Likewise.
38844 * mmap/mmap.c: Likewise.
38845 * commands/crc.c: Likewise.
38846 * commands/hexdump.c: Likewise.
38847 * commands/hdparm.c: Likewise.
38848 * commands/acpi.c: Likewise.
38849 * commands/echo.c: Likewise.
38850 * commands/minicmd.c: Likewise.
38851 * commands/blocklist.c: Likewise.
38852 * commands/memrw.c: Likewise.
38853 * commands/loadenv.c: Likewise.
38854 * commands/usbtest.c: Likewise.
38855 * commands/lsmmap.c: Likewise.
38856 * commands/boot.c: Likewise.
38857 * commands/parttool.c: Likewise.
38858 * commands/configfile.c: Likewise.
38859 * commands/search.c: Likewise.
38860 * commands/ieee1275/suspend.c: Likewise.
38861 * commands/cat.c: Likewise.
38862 * commands/i386/pc/pxecmd.c: Likewise.
38863 * commands/i386/pc/play.c: Likewise.
38864 * commands/i386/pc/halt.c: Likewise.
38865 * commands/i386/pc/vbeinfo.c: Likewise.
38866 * commands/i386/pc/vbetest.c: Likewise.
38867 * commands/lspci.c: Likewise.
38868 * commands/date.c: Likewise.
38869 * commands/handler.c: Likewise.
38870 * commands/ls.c: Likewise.
38871 * commands/test.c: Likewise.
38872 * commands/cmp.c: Likewise.
38873 * commands/efi/loadbios.c: Likewise.
38874 * commands/efi/fixvideo.c: Likewise.
38875 * commands/halt.c: Likewise.
38876 * commands/help.c: Likewise.
38877 * commands/reboot.c: Likewise.
38878 * hello/hello.c: Likewise.
38879 * script/sh/main.c: Likewise.
38880 * loader/xnu.c: Likewise.
38881 * term/terminfo.c: Likewise.
38882 * term/i386/pc/serial.c: Likewise.
38883 * term/usb_keyboard.c: Likewise.
38884
38885 2009-05-03 David S. Miller <davem@davemloft.net>
38886
38887 * normal/menu.c: Include grub/parser.h
38888
38889 2009-05-03 Pavel Roskin <proski@gnu.org>
38890
38891 * mmap/efi/mmap.c (grub_mmap_malign_and_register): Return void*,
38892 not char*.
38893 * mmap/i386/mmap.c (grub_mmap_malign_and_register): Likewise.
38894 Suggested by Javier Martín <lordhabbit@gmail.com>
38895
38896 * util/i386/pc/grub-mkrescue.in: Allow for the case when
38897 efiemu??.o doesn't exist.
38898 * util/i386/pc/grub-install.in: Likewise. Use "cp -f" for
38899 copying.
38900
38901 2009-05-03 Bean <bean123ch@gmail.com> Vladimir Serbinenko <phcoder@gmail.com>
38902
38903 FreeBSD 64-bit support
38904
38905 * conf/i386-pc.rmk (bsd_mod_SOURCES): add loader/i386/bsd_helper.S
38906 and loader/i386/bsd_trampoline.S
38907 (bsd_mod_ASFLAGS): new variable
38908 * include/grub/i386/bsd.h (FREEBSD_MODINFOMD_SMAP): new definition
38909 (FREEBSD_MODTYPE_KERNEL64): likewise
38910 (grub_bsd64_trampoline_start): likewise
38911 (grub_bsd64_trampoline_end): likewise
38912 (grub_bsd64_trampoline_selfjump): likewise
38913 (grub_bsd64_trampoline_gdt): likewise
38914 * include/grub/i386/loader.h (grub_unix_real_boot): moved from here ...
38915 * include/grub/i386/bsd.h (grub_unix_real_boot): ... moved here
38916 * kern/i386/loader.S (grub_unix_real_boot): moved from here ...
38917 * loader/i386/bsd_helper.S (grub_unix_real_boot): moved here
38918 * include/grub/gpt_partition.h (grub_gpt_partentry): Corrected the type
38919 of "attrib" member
38920 * loader/i386/bsd_pagetable.c: new file
38921 * loader/i386/bsd_trampoline.S: likewise
38922 * loader/i386/bsd.c (ALIGN_QWORD): new macro
38923 (ALIGN_VAR): likewise
38924 (entry_hi): new variable
38925 (kern_end_mdofs): likewise
38926 (is_64bit): likewise
38927 (grub_freebsd_add_meta): use ALIGN_VAR
38928 (grub_e820_mmap): new declaration
38929 (grub_freebsd_add_mmap): new function
38930 (grub_freebsd_add_meta_module): support 64 bit kernels
38931 (grub_freebsd_list_modules): use ALIGN_VAR
38932 (gdt_descriptor): new declaration
38933 (grub_freebsd_boot): support 64 bit kernels
38934 (grub_bsd_elf64_hook): new function
38935 (grub_bsd_load_elf): support elf64
38936
38937 2009-05-03 Bean <bean123ch@gmail.com>
38938
38939 * script/sh/execute.c (grub_script_execute_cmdif): Reset grub_errno
38940 after we get the result of if statement.
38941
38942 2009-05-03 Bean <bean123ch@gmail.com>
38943
38944 * Makefile.in (enable_efiemu): New variable.
38945
38946 * conf/i386-pc.rmk: Only compile efiemu runtimes when enable_efiemu is
38947 set.
38948 (efiemu32.o): Use macro $< for source file, add $(srcdir) to include
38949 path.
38950 (efi64_c.o): Use macro $< for source file, add $(srcdir) to include
38951 path, add -mno-red-zone option.
38952 (efiemu64_s.o): Likewise.
38953 (efiemu64.o): Use macro $^ for source file.
38954
38955 * configure.ac (--enable-efiemu): New option.
38956
38957 2009-05-03 Vladimir Serbinenko <phcoder@gmail.com>
38958
38959 xnu support
38960
38961 * conf/i386-efi.rmk (kernel_mod_HEADERS): added i386/pit.h
38962 (pkglib_MODULES): add xnu.mod
38963 (xnu_mod_SOURCES): new variable
38964 (xnu_mod_CFLAGS): likewise
38965 (xnu_mod_LDFLAGS): likewise
38966 (xnu_mod_ASFLAGS): likewise
38967 * conf/i386-pc.rmk: likewise
38968 * conf/x86_64-efi.rmk: likewise
38969 * include/grub/efi/efi.h (grub_efi_finish_boot_services):
38970 new declaration
38971 * include/grub/i386/macho.h: new file
38972 * include/grub/i386/xnu.h: likewise
38973 * include/grub/macho.h: likewise
38974 * include/grub/machoload.h: likewise
38975 * include/grub/x86_64/macho.h: likewise
38976 * include/grub/x86_64/xnu.h: likewise
38977 * include/grub/xnu.h: likewise
38978 * kern/efi/efi.c (grub_efi_finish_boot_services): new function
38979 * kern/efi/mm.c (MAX_HEAP_SIZE): increase
38980 * loader/i386/efi/xnu.c: new file
38981 * loader/i386/pc/xnu.c: likewise
38982 * loader/i386/xnu.c: likewise
38983 * loader/i386/xnu_helper.S: likewise
38984 * loader/macho.c: likewise
38985 * loader/xnu.c: likewise
38986 * loader/xnu_resume.c: likewise
38987 * util/grub-dumpdevtree: likewise
38988 * include/grub/i386/pit.h: include grub/err.h
38989 (grub_pit_wait): export
38990 * util/grub.d/30_os-prober.in: support Darwin/Mac OS X
38991
38992 2009-05-02 Vladimir Serbinenko <phcoder@gmail.com>
38993
38994 Efiemu
38995
38996 * conf/i386-pc.rmk: new modules efiemu, efiemu_acpi, efiemu_pnvram,
38997 _linux_efi, linux_efi.
38998 new files in grub-emu
38999 new targets efiemu32.o and efiemu64.o
39000 * loader/linux_normal_efiemu.c: likewise
39001 * loader/i386/efi/linux.c: added preliminary efiemu support
39002 * util/i386/pc/grub-install.in: add efiemu??.o to the list of
39003 files to copy
39004 * include/grub/autoefi.h: new file
39005 * include/grub/i386/efiemu.h: likewise
39006 * include/grub/i386/pc/efiemu.h: likewise
39007 * include/grub/efi/api.h: add LL suffix when necessary
39008 new definitions relating to tables
39009 * include/grub/efiemu/efiemu.h: new file
39010 * include/grub/efiemu/runtime.h: likewise
39011 * efiemu/prepare.c: likewise
39012 * efiemu/loadcore_common.c: likewise
39013 * efiemu/loadcore64.c: likewise
39014 * efiemu/runtime/efiemu.sh: likewise
39015 * efiemu/runtime/efiemu.S: likewise
39016 * efiemu/runtime/efiemu.c: likewise
39017 * efiemu/runtime/config.h: likewise
39018 * efiemu/prepare32.c: likewise
39019 * efiemu/main.c: likewise
39020 * efiemu/modules/pnvram.c: likewise
39021 * efiemu/modules/i386: likewise
39022 * efiemu/modules/i386/pc: likewise
39023 * efiemu/modules/acpi.c: likewise
39024 * efiemu/i386/pc/cfgtables.c: likewise
39025 * efiemu/i386/loadcore64.c: likewise
39026 * efiemu/i386/loadcore32.c: likewise
39027 * efiemu/prepare64.c: likewise
39028 * efiemu/loadcore.c: likewise
39029 * efiemu/symbols.c: likewise
39030 * efiemu/mm.c: likewise
39031 * efiemu/loadcore32.c: likewise
39032
39033 2009-05-02 Vladimir Serbinenko <phcoder@gmail.com>
39034
39035 ACPI spoofing
39036
39037 * commands/acpi.c: new file
39038 * commands/i386/pc/acpi.c: likewise
39039 * commands/efi/acpi.c: likewise
39040 * include/grub/acpi.h: likewise
39041 * conf/i386-pc.rmk (pkglib_MODULES): added acpi.mod
39042 (acpi_mod_SOURCES): new variable
39043 (acpi_mod_CFLAGS): likewise
39044 (acpi_mod_LDFLAGS): likewise
39045 * conf/i386-efi.rmk: likewise
39046 * conf/x86_64-efi.rmk: likewise
39047
39048 2009-05-02 Vladimir Serbinenko <phcoder@gmail.com>
39049
39050 Missing part from mmap patch
39051
39052 * mmap/efi/mmap.c (grub_machine_mmap_unregister): renamed to
39053 (grub_mmap_unregister)
39054 (grub_mmap_free_and_unregister): use grub_mmap_register
39055
39056 2009-05-02 Vladimir Serbinenko <phcoder@gmail.com>
39057
39058 Mmap services
39059
39060 * loader/i386/efi/linux.c (grub_linux_boot): use grub_mmap_iterate
39061 * loader/i386/linux.c (find_mmap_size): likewise
39062 (allocate_pages): likewise
39063 * loader/i386/multiboot.c (grub_get_multiboot_mmap_len): likewise
39064 (grub_fill_multiboot_mmap): likewise
39065 (grub_multiboot): use grub_mmap_get_lower and grub_mmap_get_upper
39066 * loader/i386/pc/linux.c (grub_cmd_linux): use grub_mmap_get_lower
39067 * include/grub/i386/bsd.h (OPENBSD_MMAP_AVAILABLE): new definition
39068 (OPENBSD_MMAP_RESERVED): likewise
39069 * include/grub/i386/pc/memory.h: include grub/memory.h
39070 (grub_lower_mem): removed
39071 (grub_upper_mem): likewise
39072 (GRUB_MACHINE_MEMORY_ACPI): new definition
39073 (GRUB_MACHINE_MEMORY_NVS): likewise
39074 (GRUB_MACHINE_MEMORY_MAX_TYPE): likewise
39075 (GRUB_MACHINE_MEMORY_HOLE): likewise
39076 (grub_machine_mmap_register): likewise
39077 (grub_machine_mmap_unregister): likewise
39078 (grub_machine_get_upper): likewise
39079 (grub_machine_get_lower): likewise
39080 (grub_machine_get_post64): likewise
39081 * include/grub/i386/efi/memory.h: new file
39082 * include/grub/x86_64/efi/memory.h: likewise
39083 * include/grub/efi/memory.h: likewise
39084 * conf/i386-pc.rmk (pkglib_MODULES): added mmap.mod
39085 (mmap_mod_SOURCES): new variable
39086 (mmap_mod_LDFLAGS): likewise
39087 (mmap_mod_ASFLAGS): likewise
39088 * conf/i386-coreboot.rmk: likewise
39089 * conf/i386-ieee1275.rmk: likewise
39090 * conf/i386-efi.rmk: likewise
39091 * conf/x86_64-efi.rmk: likewise
39092 * include/grub/types.h (UINT_TO_PTR): new macro
39093 (PTR_TO_UINT32): likewise
39094 (PTR_TO_UINT64): likewise
39095 * include/grub/memory.h: new file
39096 * mmap/i386/pc/mmap.c: likewise
39097 * mmap/i386/pc/mmap_helper.S: likewise
39098 * mmap/i386/uppermem.c: likewise
39099 * mmap/mmap.c: likewise
39100 * mmap/efi/mmap.c: likewise
39101 * kern/i386/coreboot/init.c (grub_machine_init): don't use
39102 grub_upper_mem
39103 * kern/i386/pc/init.c (grub_lower_mem): removed variable
39104 (grub_upper_mem): likewise
39105 (grub_machine_init): don't use grub_upper_mem,
39106 make grub_lower_mem local
39107 * loader/i386/bsd.c (grub_openbsd_boot): use grub_mmap_get_lower,
39108 grub_mmap_iterate and grub_mmap_get_upper
39109 (grub_netbsd_boot): use grub_mmap_get_lower and grub_mmap_get_upper
39110
39111 2009-05-02 Bean <bean123ch@gmail.com>
39112
39113 * conf/common.rmk (grub_script.tab.c): Change normal/parser.y to
39114 script/sh/parser.y.
39115 (pkglib_MODULES): Add normal.mod and sh.mod.
39116 (normal_SOURCES): New variable.
39117 (normal_mod_CFLAGS): Likewise.
39118 (normal_mod_LDFLAGS): Likewise.
39119 (sh_mod_SOURCES): Likewise.
39120 (sh_mod_CFLAGS): Likewise.
39121 (sh_mod_LDFLAGS): Likewise.
39122
39123 * conf/i386-pc.rmk (normal/lexer.c_DEPENDENCIES): Changed to
39124 script/sh/lexer.c_DEPENDENCIES.
39125 (kernel_img_SOURCES): Remove kern/rescue.c, and kern/reader.c,
39126 kern/rescue_reader.c and kern/rescue_parser.c.
39127 (kernel_img_HEADERS): Remove rescue.h, add reader.h.
39128 (grub_emu_SOURCES): Change source files.
39129 (pkglib_MODULES): Remove normal.mod.
39130 (normal_SOURCES): Removed.
39131 (normal_mod_CFLAGS): Likewise.
39132 (normal_mod_LDFLAGS): Likewise.
39133 * conf/i386-coreboot.rmk: Likewise.
39134 * conf/i386-efi.rmk: Likewise.
39135 * conf/i386-ieee1276.rmk: Likewise.
39136 * conf/powerpc-ieee1275.rmk: Likewise.
39137 * conf/sparc64-ieee1275.rmk: Likewise.
39138 * conf/x86_64-efi.rmk: Likewise.
39139
39140 * include/grub/command.h (grub_command_execute): New inline function.
39141
39142 * include/grub/menu.h (grub_menu_entry): Removed commands field.
39143
39144 * include/grub/normal.h: Remove <grub/setjmp.h>.
39145 (grub_fs_module_list): Moved to normal/autofs.c.
39146 (grub_exit_env): Removed.
39147 (grub_command_execute): Likewise.
39148 (grub_normal_menu_addentry): Renamed to grub_menu_addentry, removed
39149 parameter script.
39150 (read_command_list): New function declaration.
39151 (read_fs_list): Likewise.
39152
39153 * include/parser.h: Include <grub/reader.h>.
39154 (grub_parser_split_cmdline): Change type of getline parameter.
39155 (grub_parser): New structure.
39156 (grub_parser_class): New variable.
39157 (grub_parser_execute): New function declaration.
39158 (grub_register_rescue_parser): Likewise.
39159 (grub_parser_register): New inline function.
39160 (grub_parser_unregister): Likewise.
39161 (grub_parser_get_current): Likewise.
39162 (grub_parser_set_current): Likewise.
39163
39164 * include/grub/reader.h: New file.
39165 * kern/reader.c: Likewise.
39166 * kern/rescue_parser.c: Likewise.
39167 * kern/rescue_reader.c: Likewise.
39168 * normal/autofs.c: Likewise.
39169 * normal/dyncmd.c: Likewise.
39170
39171 * include/grub/rescue.h: Removed.
39172 * normal/command.h: Likewise.
39173
39174 * include/grub/script.h: Moved to ...
39175 * include/grub/script_sh.h: ... Moved here.
39176 * normal/execute.c: Moved to ...
39177 * script/sh/execute.c: ... Moved here.
39178 * normal/function.c: Moved to ...
39179 * script/sh/function.c: ... Moved here.
39180 * normal/lexer.c: Moved to ...
39181 * script/sh/lexer.c: ... Moved here.
39182 * normal/parser.y: Moved to ...
39183 * script/sh/parser.y: ... Moved here.
39184 * normal/script.c: Moved to ...
39185 * script/sh/script.c: ... Moved here.
39186
39187 * normal/main.c: Remove <grub/rescue.h> and <grub/script.h>, include
39188 <grub/reader.h>.
39189 (grub_exit_env): Removed.
39190 (fs_module_list): Moved to normal/autofs.c.
39191 (grub_file_getline): Don't handle comment here.
39192 (free_menu): Skip removed field entry->commands.
39193 (grub_normal_menu_addentry): Removed as grub_menu_entry, removed
39194 script parameter.
39195 (read_config_file): Removed nested parameter, change getline function.
39196 (grub_enter_normal_mode): Removed.
39197 (grub_dyncmd_dispatcher): Moved to normal/dyncmd.c.
39198 (read_command_list): Likewise.
39199 (autoload_fs_module): Moved to normal/autofs.c.
39200 (read_fs_list): Likewise.
39201 (reader_nested): New variable.
39202 (grub_normal_execute): Run parser.sh to switch to sh parser.
39203 (grub_cmd_rescue): Removed.
39204 (cmd_normal): Removed.
39205 (grub_cmd_normal): Unregister itself at the beginning. Don't register
39206 rescue command.
39207 (grub_cmdline_run): New function.
39208 (grub_normal_reader_init): Likewise.
39209 (grub_normal_read_line): Likewise.
39210 (grub_env_write_pager): Likewise.
39211 (cmdline): New variable.
39212 (grub_normal_reader): Likewise.
39213 (GRUB_MOD_INIT): Register normal reader and set as current, register
39214 pager hook, register normal command with grub_register_command_prio,
39215 so that it won't show up in command.lst.
39216 (GRUB_MOD_FINI): Unregister normal reader, unhook pager, clear
39217 grub_fs_autoload_hook.
39218
39219 * normal/menu.c: Remove <grub/script.h>, add <grub/command.h>.
39220 (grub_menu_execute_entry): Replace grub_script_execute with
39221 grub_parser_execute, change parameter to grub_command_execute.
39222
39223 * normal/menu_text.c: Remove <grub/script.h>.
39224
39225 * normal/menu_entry.c: Remove <grub/script.h>, add <grub/command.h>
39226 and <grub/parser.h>.
39227 (run): Change editor_getline to use new parser interface. Change
39228 parameter to grub_command_execute.
39229
39230 * kern/main.c: Remove <grub/rescue.h>, include <grub/command.h>,
39231 <grub/reader.h> and <grub/parser.h>.
39232 (grub_load_normal_mode): Execute normal command.
39233 (grub_main): Call grub_register_core_commands,
39234 grub_register_rescue_parser and grub_register_rescue_reader, use
39235 grub_reader_loop to enter input loop.
39236
39237 * kern/parser.c (grub_parser_split_cmdline): Change type of
39238 getline parameter.
39239 (grub_parser_class): New variable.
39240 (grub_parser_execute): New function.
39241
39242 * loader/i386/multiboot.c: Remove <grub/rescue.h>.
39243 * loader/multiboot2.c: Likewise.
39244 * loader/sparc64/ieee1275/linux.c: Likewise.
39245
39246 * util/grub-emu.c (read_command_list): New dummy function.
39247
39248 2009-05-02 Robert Millan <rmh.grub@aybabtu.com>
39249
39250 * util/deviceiter.c (grub_util_iterate_devices): Increase max drive
39251 count to 16 for CCISS and IDA.
39252
39253 2009-05-02 Robert Millan <rmh.grub@aybabtu.com>
39254
39255 * normal/menu_text.c (grub_wait_after_message): Print a newline
39256 after waiting for user input.
39257
39258 * loader/i386/linux.c: Include `<grub/normal.h>'.
39259 (grub_cmd_linux): Improve the error message about `ask' mode, by
39260 waiting for user input so it's not missed (we can do this, since
39261 user requested interaction).
39262
39263 2009-05-02 Vladimir Serbinenko <phcoder@gmail.com>
39264
39265 Added missing lst to grub-mkrescue
39266
39267 * util/i386/pc/grub-mkrescue.in: added ${input_dir}/handler.lst
39268 and ${input_dir}/parttool.lst
39269
39270 2009-04-30 David S. Miller <davem@davemloft.net>
39271
39272 * util/hostdisk.c (device_is_wholedisk): New function.
39273 (grub_util_biosdisk_get_grub_dev): Shortcut when hdg.start is
39274 zero only if device_is_wholedisk() returns true.
39275
39276 * util/hostdisk.c (convert_system_partition_to_system_disk):
39277 Handle virtual disk devices named /dev/vdiskX as found on sparc
39278 and powerpc.
39279
39280 * kern/sparc64/ieee1275/init.c (grub_machine_set_prefix): If
39281 lettered partition specifier is found, convert to numbered.
39282
39283 2009-04-29 David S. Miller <davem@davemloft.net>
39284
39285 * include/grub/powerpc/ieee1275/memory.h: Include ieee1275.h.
39286 * include/grub/sparc64/ieee1275/memory.h: Likewise.
39287
39288 * normal/command.c: Add missing newline at end of file.
39289
39290 * commands/lsmmap.c (grub_cmd_lsmmap): Add casts to avoid printf
39291 warnings.
39292 * kern/ieee1275/openfw.c (grub_claimmap): Likewise.
39293 * disk/ieee1275/ofdisk.c (grub_ofdisk_open, grub_ofdisk_close,
39294 grub_ofdisk_read): Likewise, and deal similarly with the fact that
39295 ihandles have a 32-bit type but need to be stored in a "void *".
39296
39297 2009-04-28 Pavel Roskin <proski@gnu.org>
39298
39299 * disk/fs_uuid.c (grub_fs_uuid_open): Use parent->data for dev,
39300 not disk. Adjust all dependencies.
39301 (grub_fs_uuid_close): Use grub_device_close(), not
39302 grub_disk_close().
39303
39304 * disk/fs_uuid.c (grub_fs_uuid_open): Allocate memory to copy
39305 parent's partition, don't copy it by reference, as it gets freed
39306 on close.
39307
39308 2009-04-27 Vladimir Serbinenko <phcoder@gmail.com>
39309
39310 Preboot hooks support
39311
39312 * commands/boot.c (struct grub_preboot_t): new declaration
39313 (preboots_head): new variable
39314 (preboots_tail): likewise
39315 (grub_loader_register_preboot_hook): new function
39316 (grub_loader_unregister_preboot_hook): likewise
39317 (grub_loader_set): launch preboot hooks
39318 * include/grub/loader.h (grub_loader_preboot_hook_prio_t): new type
39319 (grub_loader_register_preboot_hook): new declaration
39320 (grub_loader_unregister_preboot_hook): likewise
39321
39322 2009-04-27 Vladimir Serbinenko <phcoder@gmail.com>
39323
39324 Warning fix
39325
39326 * disk/scsi.c (grub_scsi_open): added missing cast when
39327 calling grub_dprintf
39328
39329 2009-04-26 Vladimir Serbinenko <phcoder@gmail.com>
39330
39331 Bug and warning fixes
39332
39333 * include/grub/i386/pc/init.h (grub_stop_floppy): added missing
39334 declaration
39335 * commands/test.c (test_parse): fixed bug with file tests and corrected
39336 declaration of find_file
39337
39338 2009-04-26 Pavel Roskin <proski@gnu.org>
39339
39340 * Makefile.in: Don't install empty manual pages if help2man is
39341 missing. Use help2man option for output, not shell redirection.
39342
39343 2009-04-26 David S. Miller <davem@davemloft.net>
39344
39345 * util/grub-mkdevicemap.c (make_device_map): Add missing
39346 NESTED_FUNC_ATTR to process_device().
39347
39348 2009-04-25 Vladimir Serbinenko <phcoder@gmail.com>
39349
39350 Test command
39351
39352 * commands/test.c: rewritten to use bash-like test
39353
39354 2009-04-25 Vladimir Serbinenko <phcoder@gmail.com>
39355
39356 Parttool autoloading and improvements
39357
39358 * Makefile.in (pkglib_DATA): add parttool.lst
39359 (parttool.lst): new target
39360 * genmk.rb: generate parttool-*
39361 (CLEANFILES): add #{parttool}
39362 (PARTTOOLFILES): new variable
39363 * genparttoollist.sh: new file
39364 * parttool/pcpart.c (grub_pcpart_boot): more feedback
39365 (grub_pcpart_type): likewise
39366 * commands/parttool.c (helpmsg): new variable
39367 (grub_cmd_parttool): output help if not enough arguments are supplied
39368 autoload modules
39369 (GRUB_MOD_INIT(parttool)): use helpmsg
39370
39371 2009-04-24 David S. Miller <davem@davemloft.net>
39372
39373 Avoiding opening same device multiple times in device iterator.
39374
39375 * kern/device.c: (grub_device_iterate): Define struct part_ent,
39376 and use it to build a list of partitions in iterate_disk() and
39377 iterate_partition().
39378
39379 * disk/fs_uuid.c (grub_fs_uuid_close): Call grub_disk_close()
39380 on disk->data.
39381
39382 * disk/ieee1275/nand.c (grub_nand_iterate): Return
39383 grub_devalias_iterate() result instead of unconditional 0.
39384 * disk/ieee1275/ofdisk.c (grub_ofdisk_iterate): Likewise.
39385 Also, capture hook return value, either directly or via
39386 grub_children_iterate(), and propagate to caller.
39387 * include/grub/ieee1275/ieee1275.h (grub_devalias_iterate,
39388 grub_children_iterate): Return value is now 'int' instead of
39389 'grub_err_t'.
39390 * kern/ieee1275/openfw.c (grub_children_iterate): Fix to behave
39391 like a proper iterator, stopping when hooks return non-zero.
39392 (grub_devalias_iterate): Likewise.
39393
39394 2009-04-23 David S. Miller <davem@davemloft.net>
39395
39396 * kern/sparc64/ieee1275/openfw.c: Unused, delete.
39397
39398 2009-04-22 David S. Miller <davem@davemloft.net>
39399
39400 * kern/ieee1275/mmap.c (grub_machine_mmap_iterate): If size_cells
39401 is larger than address_cells, use that value for address_cells too.
39402
39403 * include/grub/ieee1275/ieee1275.h (IEEE1275_MAX_PROP_LEN,
39404 IEEE1275_MAX_PATH_LEN): Define.
39405 * kern/ieee1275/openfw.c (grub_children_iterate): Dynamically
39406 allocate 'childtype', 'childpath', 'childname', and 'fullname'.
39407 (grub_devalias_iterate): Dynamically allocate 'aliasname' and
39408 'devtype'. Explicitly NULL terminate devalias expansion.
39409
39410 * util/sparc64/ieee1275/misc.c: New file.
39411 * util/sparc64/ieee1275/grub-setup.c: New file.
39412 * util/sparc64/ieee1275/grub-ofpathname.c: New file.
39413 * util/sparc64/ieee1275/grub-mkimage.c: New file.
39414 * util/sparc64/ieee1275/grub-install.in: New file.
39415 * util/ieee1275/ofpath.c: New file.
39416 * util/ieee1275/devicemap.c: New file.
39417 * util/devicemap.c: New file.
39418 * util/deviceiter.c: New file.
39419 * kern/sparc64/ieee1275/init.c: New file.
39420 * include/grub/util/ofpath.h: New file.
39421 * include/grub/util/deviceiter.h: New file.
39422 * util/grub-mkdevicemap.c: Include deviceiter.h.
39423 Implement using grub_util_emit_devicemap_entry and
39424 grub_util_iterate_devices.
39425 * conf/i386-corebook.rmk: Build util/deviceiter.c and
39426 util/devicemap.c into grub-mkdevicemap
39427 * conf/i386-efi.rmk: Likewise.
39428 * conf/i386-ieee1275.rmk: Likewise.
39429 * conf/i386-pc.rmk: Likewise.
39430 * conf/powerpc-ieee1275.rmk: Likewise.
39431 * conf/sparc64-ieee1275.rmk: Add rules to build boot block
39432 images and installation utilities. Build kernel as image
39433 instead of as elf binary. Use common rules as much as possible.
39434
39435 2009-04-19 Vladimir Serbinenko <phcoder@gmail.com>
39436
39437 Correct GPT definition
39438
39439 * include/grub/gpt_partition.h (grub_gpt_partentry): Corrected the type
39440 of "attrib" member
39441
39442 2009-04-19 Felix Zielcke <fzielcke@z-51.de>
39443
39444 * INSTALL: Replace `autogen.sh' with `./autogen.sh'.
39445
39446 2009-04-19 David S. Miller <davem@davemloft.net>
39447
39448 * loader/sparc64/ieee1275/linux.c: Include grub/command.h
39449 (grub_rescue_cmd_linux): Rename to...
39450 (grub_cmd_linux): and fix prototype.
39451 (grub_rescue_cmd_initrd): Rename to...
39452 (grub_cmd_initrd): and fix prototype.
39453 (cmd_linux, cmd_initrd): New.
39454 (GRUB_MOD_INIT(linux)): Use grub_register_command().
39455 (GRUB_MOD_FINI(linux): Use grub_unregister_command().
39456
39457 2009-04-17 Pavel Roskin <proski@gnu.org>
39458
39459 * bus/usb/ohci.c (grub_ohci_transaction): Fix incorrect printf
39460 format.
39461 (grub_ohci_transfer): Likewise.
39462
39463 * bus/usb/usbtrans.c (grub_usb_control_msg): Warning fix.
39464
39465 * loader/multiboot_loader.c (grub_cmd_multiboot_loader): Fix
39466 return without a value. Fix inconsistent indentation.
39467
39468 * fs/i386/pc/pxe.c (grub_pxefs_dir): Fix function prototype to
39469 match struct grub_fs.
39470
39471 * disk/ata.c (grub_ata_pciinit): Use NESTED_FUNC_ATTR.
39472 * bus/usb/ohci.c (grub_ohci_pci_iter): Likewise.
39473 * bus/usb/uhci.c (grub_uhci_pci_iter): Likewise.
39474 * commands/lspci.c (grub_lspci_iter): Likewise.
39475
39476 2009-04-16 Bean <bean123ch@gmail.com>
39477
39478 * commands/efi/loadbios.c (grub_cmd_fakebios): Add missing return
39479 value.
39480
39481 2009-04-15 Pavel Roskin <proski@gnu.org>
39482
39483 * include/grub/types.h: Rename ULONG_MAX to GRUB_ULONG_MAX and
39484 LONG_MAX to GRUB_LONG_MAX. Introduce GRUB_LONG_MIN. Update all
39485 users of ULONG_MAX, LONG_MAX and LONG_MIN to use the new
39486 definitions.
39487
39488 2009-04-15 Felix Zielcke <fzielcke@z-51.de>
39489
39490 * disk/lvm.c (grub_lvm_scan_device): Add `LVM' to the error messages,
39491 that no multiple data or metadata areas are supported and `Unknown
39492 metadata header'.
39493
39494 2009-04-15 Vladimir Serbinenko <phcoder@gmail.com>
39495
39496 Move loader out of the kernel
39497
39498 * kern/loader.c: moved to ...
39499 * commands/boot.c: ... moved here
39500 * commands/minicmd.c (grub_mini_cmd_boot): moved to ...
39501 * commands/boot.c (grub_cmd_boot): moved here. All users updated
39502 * include/grub/kernel.h (grub_machine_fini): export
39503 * include/grub/loader.h (grub_loader_is_loaded): update declaration
39504 (grub_loader_set): likewise
39505 (grub_loader_unset): likewise
39506 (grub_loader_boot): likewise
39507 * conf/common.rmk: new module boot.mod
39508 (pkglib_MODULES): add boot.mod
39509 * conf/i386-coreboot.rmk (kernel_elf_SOURCES): remove kern/loader.c
39510 (grub_emu_SOURCES): likewise
39511 * conf/i386-efi.rmk (kernel_elf_SOURCES): likewise
39512 (grub_emu_SOURCES): likewise
39513 * conf/i386-ieee1275.rmk (kernel_elf_SOURCES): likewise
39514 (grub_emu_SOURCES): likewise
39515 * conf/i386-pc.rmk (kernel_elf_SOURCES): likewise
39516 (grub_emu_SOURCES): likewise
39517 * conf/powerpc-ieee1275.rmk (kernel_elf_SOURCES): likewise
39518 (grub_emu_SOURCES): likewise
39519 * conf/sparc64-ieee1275.rmk (kernel_elf_SOURCES): likewise
39520 (grub_emu_SOURCES): likewise
39521 * conf/x86_64-efi.rmk (kernel_elf_SOURCES): likewise
39522 (grub_emu_SOURCES): likewise
39523
39524 2009-04-15 Vladimir Serbinenko <phcoder@gmail.com>
39525
39526 use grub_lltoa instead of grub_itoa and grub_ltoa for all purposes
39527
39528 * kern/misc.c (grub_itoa): Removed function
39529 (grub_ltoa): likewise
39530 (grub_vsprintf): use grub_lltoa
39531
39532 2009-04-15 Vladimir Serbinenko <phcoder@gmail.com>
39533
39534 Restore grub-emu
39535
39536 * conf/i386-pc.rmk (grub_emu_SOURCES): add normal/handler.c
39537 * conf/i386-coreboot.rmk: likewise
39538 * conf/i386-ieee1275.rmk: likewise
39539 * conf/powerpc-ieee1275.rmk: likewise
39540
39541 2009-04-15 Felix Zielcke <fzielcke@z-51.de>
39542
39543 * INSTALL: Add that `./autogen.sh' needs to be run before
39544 `./configure.'.
39545
39546 2009-04-14 Bean <bean123ch@gmail.com>
39547
39548 * Makefile.in (pkglib_DATA): Add handler.lst.
39549 (handler.lst): New rule.
39550
39551 * conf/i386-pc.rmk (normal_mod_SOURCES): Add normal/handler.c.
39552 * conf/i386-coreboot.rmk: Likewise.
39553 * conf/i386-ieee1275.rmk: Likewise.
39554 * conf/i386-efi.rmk: Likewise.
39555 * conf/x86_64-efi.rmk: Likewise.
39556 * conf/powerpc-ieee1275.rmk: Likewise.
39557 * conf/sparc64-ieee1275.rmk: Likewise.
39558
39559 * genhandlerlist.sh: New file.
39560
39561 * genmk.rb: Add rules to generate handler.lst.
39562
39563 * include/grub/normal.h (grub_file_getline): New function definition.
39564 (read_handler_list): Likewise.
39565 (free_handler_list): Likewise.
39566
39567 * include/grub/term.h (grub_term_register_input): Add name parameter
39568 for auto generation of handler.lst.
39569 (grub_term_register_output): Likewise.
39570
39571 * normal/handler.c: New file.
39572
39573 * normal/main.c (get_line): Renamed to grub_file_getline.
39574 (read_config_file): Use the newly renamed grub_file_getline.
39575 (read_command_list): Likewise.
39576 (read_fs_list): Likewise.
39577 (grub_normal_execute): Call read_handler_list to parse handler.lst.
39578 (GRUB_MOD_FINI): Call free_handler_list to free handler list.
39579
39580 * term/efi/console.c (grub_console_init): Add name parameter for auto
39581 generation of handler.lst.
39582 * term/gfxterm.c: Likewise.
39583 * term/i386/pc/at_keyboard.c: Likewise.
39584 * term/i386/pc/console.c: Likewise.
39585 * term/i386/pc/serial.c: Likewise.
39586 * term/i386/pc/vesafb.c: Likewise.
39587 * term/i386/pc/vga.c: Likewise.
39588 * term/i386/pc/vga_text.c: Likewise.
39589 * term/ieee1275/ofconsole.c: Likewise.
39590 * term/usb_keyboard.c: Likewise.
39591
39592 2009-04-14 Bean <bean123ch@gmail.com>
39593
39594 * util/grub-pe2elf.c (write_symbol_table): Terminate short name symbol
39595 properly with null character.
39596
39597 2009-04-14 Felix Zielcke <fzielcke@z-51.de>
39598
39599 * configure: Remove.
39600 * config.h.in: Likewise.
39601 * stamp-h.in: Likewise.
39602 * DISTLIST: Likewise.
39603 * conf/common.mk: Likewise.
39604 * conf/i386-coreboot.mk: Likewise.
39605 * conf/i386-efi.mk: Likewise.
39606 * conf/i386-ieee1275.mk: Likewise.
39607 * conf/i386.mk: Likewise.
39608 * conf/i386-pc.mk: Likewise.
39609 * conf/powerpc-ieee1275.mk: Likewise.
39610 * conf/sparc64-ieee1275.mk: Likewise.
39611 * conf/x86_64-efi.mk: Likewise.
39612
39613 * INSTALL: Remove the sentence that Ruby and autoconf are only required if you
39614 develop on GRUB.
39615
39616 2009-04-14 John Stanley <jpsinthemix@verizon.net>
39617 David S. Miller <davem@davemloft.net>
39618
39619 * util/hostdisk.c (make_device_name): Fix buffer length
39620 calculations.
39621
39622 2009-04-14 Felix Zielcke <fzielcke@z-51.de>
39623
39624 * util/hostdisk.c [__FreeBSD__ || __FreeBSD_kernel__]: Include
39625 <sys/param.h> and <sys/sysctl.h>.
39626 (open_device) [__FreeBSD__ || __FreeBSD_kernel_]: Use sysctlgetbyname()
39627 to add 0x10 to `kern.geom.debugflags' if it's not already set, before
39628 opening the device and reset them afterwards.
39629
39630 2009-04-13 Pavel Roskin <proski@gnu.org>
39631
39632 * conf/common.rmk (grub_fstest_SOURCES): Add normal/datetime.c.
39633 Reported by John Stanley <jpsinthemix@verizon.net>
39634
39635 2009-04-13 Robert Millan <rmh@aybabtu.com>
39636
39637 * util/grub.d/10_freebsd.in: Detect Debian GNU/kFreeBSD and use
39638 that name for menuentries when appropriate.
39639
39640 2009-04-13 Felix Zielcke <fzielcke@z-51.de>
39641
39642 * util/grub.d/10_freebsd.in: Add a missing `fi'.
39643
39644 2009-04-13 Robert Millan <rmh@aybabtu.com>
39645
39646 * loader/i386/linux.c (grub_cmd_linux): Don't pass `vga=ask' parameter
39647 to Linux, simply abort telling the user it's no longer supported.
39648
39649 2009-04-13 Felix Zielcke <fzielcke@z-51.de>
39650
39651 * util/grub.d/10_freebsd.in: Don't exit if /boot/devices.hints
39652 doesn't exist. Check also for /boot/kernel/kernel.gz. Print
39653 `freebsd_loadenv' only when devices.hints exist.
39654
39655 2009-04-13 Pavel Roskin <proski@gnu.org>
39656
39657 * term/usb_keyboard.c (grub_usb_keyboard_getkey): Warning fixes.
39658
39659 2009-04-13 Felix Zielcke <fzielcke@z-51.de>
39660
39661 * util/i386/pc/grub-install.in (install_drive): Remove the BSD
39662 partition number.
39663 (grub_drive): Likewise.
39664
39665 2009-04-13 David S. Miller <davem@davemloft.net>
39666
39667 * kern/sparc64/ieee1275/ieee1275.c: New file.
39668 * include/grub/sparc64/ieee1275/ieee1275.h (IEEE1275_MAP_WRITE,
39669 IEEE1275_MAP_READ, IEEE1275_MAP_EXEC, IEEE1275_MAP_LOCKED,
39670 IEEE1275_MAP_CACHED, IEEE1275_MAP_SE, IEEE1275_MAP_GLOBAL,
39671 IEEE1275_MAP_IE, IEEE1275_MAP_DEFAULT): Define.
39672 (grub_ieee1275_map_physical, grub_ieee1275_claim_vaddr,
39673 grub_ieee1275_alloc_physmem): Declare new exported functions.
39674
39675 * include/grub/sparc64/ieee1275/loader.h: New file.
39676 * include/grub/sparc64/ieee1275/memory.h: Likewise.
39677 * include/grub/sparc64/kernel.h: Likewise.
39678 * loader/sparc64/ieee1275/linux.c: Likewise.
39679
39680 * conf/common.rmk (grub_probe_SOURCES): Add Sun partition module.
39681 (grub_fstest_SOURCES): Likewise.
39682
39683 * util/hostdisk.c (make_device_name): Do not make any assumptions
39684 about the length of drive names.
39685
39686 * kern/dl.c (grub_dl_load_file): Close file immediately when
39687 we are done using it.
39688
39689 2009-04-12 David S. Miller <davem@davemloft.net>
39690
39691 * kern/misc.c (grub_ltoa): Fix cast when handling negative
39692 values. Noticed by Pavel Roskin.
39693
39694 * configure.ac: Check for __bswapsi2 and__bswapdi2 using
39695 target compiler.
39696
39697 * genmk.rb: Add more flexible image type specification, also
39698 pass --strip-unneeded to objcopy.
39699 * conf/i386-pc.rmk: Use *_FORMAT.
39700 * conf/i386-pc.mk: Rebuilt.
39701
39702 * disk/ieee1275/ofdisk.c (struct ofdisk_hash_ent): New struct.
39703 (OFDISK_HASH_SZ): Define.
39704 (ofdisk_hash): New hash table.
39705 (ofdisk_hash_fn, ofdisk_hash_find, ofdisk_hash_add): New functions.
39706 (grub_ofdisk_open): Use ofdisk_hash_ent address as disk->id
39707 instead of device phandle which is not unique.
39708
39709 * kern/sparc64/ieee1275/init.c: Delete, replace with...
39710 * kern/sparc64/ieee1275/crt0.S: assembler implementation.
39711 * include/grub/sparc64/ieee1275/kernel.h: Declare grub_prefix[].
39712 (GRUB_MOD_ALIGN, GRUB_MOD_GAP, GRUB_KERNEL_MACHINE_TOTAL_MODULE_SIZE,
39713 GRUB_KERNEL_MACHINE_KERNEL_IMAGE_SIZE,
39714 GRUB_KERNEL_MACHINE_COMPRESSED_SIZE, GRUB_KERNEL_MACHINE_PREFIX,
39715 GRUB_KERNEL_MACHINE_DATA_END): Define.
39716 (grub_kernel_image_size, grub_total_module_size): Declare.
39717
39718 2009-04-12 Pavel Roskin <proski@gnu.org>
39719
39720 * configure.ac: Change the logic when we check for target tools.
39721 Do it when the target is specified and it's different from the
39722 specified value of the host.
39723
39724 2009-04-11 Felix Zielcke <fzielcke@z-51.de>
39725
39726 * util/hostdisk.c [__FreeBSD_kernel__]: Include sys/disk.h.
39727 (grub_util_biosdisk_open) [__FreeBSD_kernel__]: Add support for
39728 GNU/kFreeBSD. Check if a device is a character device. Use
39729 DIOCGMEDIASIZE to get the size.
39730 (convert_system_partition_to_system_disk) [__FreeBSD_kernel__]: Add
39731 support for GNU/kFreeBSD.
39732 (grub_util_biosdisk_get_grub_dev) [__FreeBSD_kernel__]: Check if OS_DEV
39733 is a character device instead of a block device. Add support for
39734 FreeBSD device names.
39735
39736 * util/getroot.c (find_root_device) [__FreeBSD_kernel__]: Check if ENT
39737 is a character device instead of a block device.
39738
39739 * util/grub-probe.c (probe) [__FreeBSD_kernel__]: Check if DEVICE_NAME
39740 is a character device instead of a block device.
39741
39742 2009-04-11 Andrey Shuvikov <mr_hyro@yahoo.com>
39743
39744 * util/hostdisk.c [__FreeBSD__]: Include sys/disk.h.
39745 (grub_util_biosdisk_open) [__FreeBSD__]: Add support for
39746 FreeBSD. Check if a device is a character device. Use
39747 DIOCGMEDIASIZE to get the size.
39748 (convert_system_partition_to_system_disk) [__FreeBSD__]: Add
39749 support for FreeBSD.
39750 (grub_util_biosdisk_get_grub_dev) [__FreeBSD__]: Check if OS_DEV
39751 is a character device instead of a block device. Add support for
39752 FreeBSD device names.
39753
39754 * util/getroot.c (find_root_device) [__FreeBSD__]: Check if ENT is
39755 a character device instead of a block device.
39756 (grub_util_check_char_device): New function.
39757
39758 * util/grub-probe.c (probe) [__FreeBSD__]: Check if DEVICE_NAME is
39759 a character device instead of a block device.
39760
39761 * include/grub/util/getroot.h (grub_util_check_char_device): New
39762 prototype.
39763
39764 2009-04-11 David S. Miller <davem@davemloft.net>
39765
39766 * conf/sparc64-ieee1275.rmk (kernel_img_LDFLAGS): Link with
39767 static libgcc.
39768 * configure.ac: Check for __bswapsi2 and __bswapdi2 presence.
39769 * include/grub/sparc64/libgcc.h (__bswapsi2): Export libgcc
39770 function, if present.
39771 (__bswapdi2): Likewise.
39772
39773 * include/grub/sparc64/ieee1275/boot.h: New file.
39774 * boot/sparc64/ieee1275/boot.S: Likewise.
39775 * boot/sparc64/ieee1275/diskboot.S: Likewise.
39776
39777 * kern/misc.c (grub_ltoa): New function.
39778 (grub_vsprintf): Use it to format 'long' integers.
39779
39780 2009-04-10 David S. Miller <davem@davemloft.net>
39781
39782 * disk/ieee1275/nand.c (grub_nand_open): All ieee1275 call arg
39783 slots are of type grub_ieee1275_cell_t.
39784 (grub_nand_read): Likewise.
39785 * kern/ieee1275/ieee1275.c (IEEE1275_PHANDLE_INVALID,
39786 IEEE1275_IHANDLE_INVALID): Use grub_ieee1275_cell_t since these
39787 macros are used to compare values in arg/ret block of the call.
39788 (grub_ieee1275_finddevice, grub_ieee1275_get_property,
39789 grub_ieee1275_next_property, grub_ieee1275_get_property_length,
39790 grub_ieee1275_instance_to_package, grub_ieee1275_package_to_path,
39791 grub_ieee1275_instance_to_path, grub_ieee1275_write,
39792 grub_ieee1275_read, grub_ieee1275_seek, grub_ieee1275_peer,
39793 grub_ieee1275_child, grub_ieee1275_parent, grub_ieee1275_open,
39794 grub_ieee1275_close, grub_ieee1275_set_property,
39795 grub_ieee1275_set_color): All ieee1275 call arg slots are of type
39796 grub_ieee1275_cell_t.
39797 * kern/ieee1275/openfw.c (grub_map): Likewise.
39798 * include/grub/ieee1275/ieee1275.h (grub_ieee1275_ihandle_t,
39799 grub_ieee1275_phandle_t): Define as grub_unit32_t type.
39800
39801 * kern/ieee1275/init.c (grub_machine_init): Make 'actual' grub_ssize_t.
39802 * kern/ieee1275/openfw.c (grub_children_iterate): Likewise.
39803 (grub_devalias_iterate): Likewise.
39804
39805 2009-04-10 Vladimir Serbinenko <phcoder@gmail.com>
39806
39807 UFS improvements
39808
39809 * fs/ufs.c (INODE_NBLOCKS): new definition
39810 (struct grub_ufs_dirent): added fields for non-BSD dirents
39811 (grub_ufs_get_file_block): fixed double indirect handling
39812 (grub_ufs_lookup_symlink): use more robust way to determine whether
39813 symlink is inline
39814 (grub_ufs_find_file): support for non-BSD dirents
39815 (grub_ufs_dir): support for non-BSD dirents
39816
39817 2009-04-10 Bean <bean123ch@gnail.com>
39818
39819 * include/grub/efi/api.h (grub_efi_configuration_table): Add packed
39820 attribute, otherwise the size would be wrong for i386 platform.
39821
39822 * include/grub/pci.h (grub_pci_read_word): New inline function.
39823 (grub_pci_read_byte): Likewise.
39824 (grub_pci_write): Likewise.
39825 (grub_pci_write_word): Likewise.
39826 (grub_pci_write_byte): Likewise.
39827
39828 * include/grub/pci.h (grub_pci_iteratefunc_t): Add NESTED_FUNC_ATTR.
39829
39830 * loader/i386/efi/linux.c (fake_bios_data): Moved to loadbios module.
39831 (find_framebuf): Scan pci to locate the frame buffer address.
39832
39833 * commands/efi/fixvideo.c: New file.
39834
39835 * commands/efi/loadbios.c: Likewise.
39836
39837 * commands/memrw.c: Likewise.
39838
39839 * util/grub-dumpbios.in: Likewise.
39840
39841 * conf/common.rmk (grub-dumpbios): New utility.
39842 (pkglib_MODULES): New module memrw.mod.
39843 (memrw_mod_SOURCE): New macro.
39844 (memrw_mod_CFLAGS): Likewise.
39845 (memrw_mod_LDFLAGS): Likewise.
39846
39847 * conf/i386-efi.rmk (pkglib_MODULES): New module loadbios.mod and
39848 fixvideo.mod.
39849 (loadbios_mod_SOURCE): New macro.
39850 (loadbios_mod_CFLAGS): Likewise.
39851 (loadbios_mod_LDFLAGS): Likewise.
39852 (fixvideo_mod_SOURCE): Likewise.
39853 (fixvideo_mod_CFLAGS): Likewise.
39854 (fixvideo_mod_LDFLAGS): Likewise.
39855
39856 * conf/x86_64.rmk (pkglib_MODULES): New module loadbios.mod and
39857 fixvideo.mod.
39858 (loadbios_mod_SOURCE): New macro.
39859 (loadbios_mod_CFLAGS): Likewise.
39860 (loadbios_mod_LDFLAGS): Likewise.
39861 (fixvideo_mod_SOURCE): Likewise.
39862 (fixvideo_mod_CFLAGS): Likewise.
39863 (fixvideo_mod_LDFLAGS): Likewise.
39864
39865 2009-04-08 Felix Zielcke <fzielcke@z-51.de>
39866
39867 * disk/lvm.c (grub_lvm_scan_device): Add a missing NULL check.
39868
39869 2009-04-07 David S. Miller <davem@davemloft.net>
39870
39871 * kern/sparc64/dl.c (grub_arch_dl_relocate_symbols): Add
39872 support for R_SPARC_OLO10 relocations. Fix compile warning for
39873 R_SPARC_WDISP30 case.
39874 * kern/sparc64/cache.S: Fix grub_arch_sync_caches implementation.
39875
39876 2009-04-06 Pavel Roskin <proski@gnu.org>
39877
39878 * include/grub/misc.h (ARRAY_SIZE): New macro.
39879 * include/grub/i386/linux.h (GRUB_LINUX_VID_MODE_VESA_START):
39880 New macro.
39881 * loader/i386/linux.c (allocate_pages): Use free_pages().
39882 (grub_linux_unload): Don't use free_pages().
39883 (grub_linux_boot): Prevent accessing linux_vesafb_modes with a
39884 wrong index. Treat all other modes as text modes.
39885 (grub_cmd_linux): Initialize vid_mode unconditionally to
39886 GRUB_LINUX_VID_MODE_NORMAL. Recognize and support "vga=ask".
39887
39888 * commands/help.c (print_command_help): Use cmd->prio, not
39889 cmd->flags to check for GRUB_PRIO_LIST_FLAG_ACTIVE.
39890
39891 2009-04-06 Vladimir Serbinenko <phcoder@gmail.com>
39892
39893 Parttool
39894
39895 * parttool/pcpart.c: new file
39896 * commands/parttool.c: likewise
39897 * conf/common.rmk (pkglib_MODULES): Added parttool.mod and pcpart.mod
39898 (parttool_mod_SOURCES): new variable
39899 (parttool_mod_CFLAGS): likewise
39900 (parttool_mod_LDFLAGS): likewise
39901 (pcpart_mod_SOURCES): likewise
39902 (pcpart_mod_CFLAGS): likewise
39903 (pcpart_mod_LDFLAGS): likewise
39904 * conf/i386-coreboot.rmk (grub_emu_SOURCES): added commands/parttool.c
39905 and parttool/pcpart.c
39906 * conf/i386-efi.rmk: likewise
39907 * conf/i386-ieee1275.rmk: likewise
39908 * conf/i386-pc.rmk: likewise
39909 * conf/powerpc-ieee1275.rmk: likewise
39910 * conf/sparc64-ieee1275.rmk: likewise
39911 * conf/x86_64-ieee1275.rmk: likewise
39912
39913 2009-04-05 Vladimir Serbinenko <phcoder@gmail.com>
39914
39915 Support for mtime and further expandability of dir command
39916
39917 * include/grub/lib/datetime.h: moved to ...
39918 * include/grub/datetime.h: ... moved here and added
39919 declaration of grub_unixtime2datetime. All users updated
39920 * include/grub/fs.h: new syntax for dir and mtime functions in
39921 struct grub_fs
39922 * include/grub/fshelp.h: new declarations of GRUB_FSHELP_TYPE_MASK
39923 and GRUB_FSHELP_FLAGS_MASK
39924 * commands/ls.c (grub_ls_list_files): Write mtime in long format
39925 * fs/ext2.c (grub_ext2_dir): use new dir syntax and supply mtime
39926 (grub_ext2_mtime): new function
39927 * fs/hfsplus.c (grub_hfsplus_dir): use new dir syntax and supply mtime
39928 (grub_hfsplus_mtime): new function
39929 * fs/ufs.c (GRUB_UFS_ATTR_TYPE): new definition
39930 (GRUB_UFS_ATTR_FILE): likewise
39931 (GRUB_UFS_ATTR_LNK): likewise
39932 (struct grub_ufs_sblock): new fields mtime
39933 (grub_ufs_read_inode): new parameter to read inode to a separate buffer
39934 all users updated
39935 (grub_ufs_dir): mtime support
39936 (grub_ufs_mtime): new function
39937 * fs/affs.c (grub_affs_dir): use new dir syntax
39938 * fs/afs.c (grub_afs_dir): likewise
39939 * fs/cpio.c (grub_cpio_dir): likewise
39940 * fs/fat.c (grub_fat_find_dir): likewise
39941 * fs/hfs.c (grub_hfs_dir): likewise
39942 * fs/iso9660.c (grub_iso9660_dir): likewise
39943 * fs/jfs.c (grub_jfs_dir): likewise
39944 * fs/minix.c (grub_minix_dir): likewise
39945 * fs/ntfs.c (grub_ntfs_dir): likewise
39946 * fs/reiserfs.c (grub_reiserfs_dir): likewise
39947 * fs/sfs.c (grub_sfs_dir): likewise
39948 * fs/xfs.c (grub_xfs_dir): likewise
39949 * util/hostfs.c (grub_hostfs_dir): likewise
39950 * lib/datetime.c: moved to ...
39951 * normal/datetime.c: ... moved here
39952 (grub_unixtime2datetime): new function
39953 * kern/rescue.c (grub_rescue_print_files): use new dir syntax
39954 * normal/completion.c (iterate_dir): use new dir syntax
39955 * normal/misc.c (grub_normal_print_device_info): tell the
39956 last modification time of a volume
39957 * kern/fs.c (grub_fs_probe): updated dummy function to use new syntax
39958 * conf/common.rmk: added lib/datetime.c to ls.mod
39959 * conf/i386-coreboot.rmk (grub_emu_SOURCES): add normal/datetime.c
39960 (normal_mod_SOURCES): likewise
39961 (datetime_mod_SOURCES): Removed lib/datetime.c
39962 * conf/i386-efi.rmk: likewise
39963 * conf/i386-ieee1275.rmk: likewise
39964 * conf/i386-pc.rmk: likewise
39965 * conf/powerpc-ieee1275.rmk: likewise
39966 * conf/sparc64-ieee1275.rmk: likewise
39967 * conf/x86_64-efi.rmk: likewise
39968
39969 2009-04-05 Vladimir Serbinenko <phcoder@gmail.com>
39970
39971 Trim trailing spaces in FAT label and support mtools-like labels
39972
39973 * fs/fat.c (grub_fat_iterate_dir): New function based
39974 on grub_fat_find_dir
39975 (grub_fat_find_dir): use grub_fat_iterate_dir
39976 (grub_fat_label): likewise
39977
39978 2009-04-04 Vladimir Serbinenko <phcoder@gmail.com>
39979
39980 * conf/powerpc-ieee1275.rmk (kernel_elf_HEADERS): add list.h
39981 and command.h
39982 remove extraneous kernel_elf_HEADERS
39983
39984 2009-04-04 Bean <bean123ch@gnail.com>
39985
39986 * include/grub/util/misc.h: Add dummy function fsync for mingw.
39987
39988 * util/misc.c: Likewise.
39989
39990 2009-04-04 Yoshinori K. Okuji <okuji@enbug.org>
39991
39992 * loader/i386/efi/linux.c (fake_bios_data): Use grub_dprintf
39993 instead of grub_printf.
39994
39995 2009-04-03 Robert Millan <rmh@aybabtu.com>
39996
39997 * loader/i386/linux.c (grub_linux_setup_video): Fill
39998 `params->{red,green,blue,reserved}_{mask_size,field_pos}' with
39999 values from `mode info' structure instead of hardcoded
40000 values.
40001
40002 2009-04-01 Pavel Roskin <proski@gnu.org>
40003
40004 * Makefile.in: Remove all references to MODULE_LDFLAGS, it's
40005 unused now.
40006 * genmk.rb: Likewise.
40007 * configure.ac: Likewise.
40008
40009 2009-04-01 Manoel Abranches <mrabran@linux.vnet.ibm.com>
40010
40011 * aclocal.m4: Move --build-id=none from MODULE_LDFLAGS to
40012 TARGET_LDFLAGS. This corrects a problem with grub-mkelfimage.
40013
40014 2009-04-01 David S. Miller <davem@davemloft.net>
40015
40016 * normal/sparc64/setjmp.S: Fix setjmp implementation.
40017 * include/grub/sparc64/setjmp.h (grub_jmp_buf): Update.
40018 (grub_setjmp): Mark with 'returns_twice' attribute.
40019 * include/grub/i386/setjmp.h (grub_setjmp): Likewise
40020 * include/grub/powerpc/setjmp.h (grub_setjmp): Likewise.
40021 * include/grub/x86_64/setjmp.h (grub_setjmp): Likewise.
40022
40023 2009-04-01 Robert Millan <rmh@aybabtu.com>
40024
40025 Reapply fix from 2008-07-28 which was accidentally reverted; also
40026 perform the same fix to a similar check in same function.
40027
40028 * disk/raid.c (grub_raid_scan_device): Do not abort when two disks
40029 with the same number are found, just use issue a warning with
40030 grub_dprintf(), as this error has been reported to be non-fatal.
40031
40032 2009-03-31 Pavel Roskin <proski@gnu.org>
40033
40034 * aclocal.m4 (grub_I386_CHECK_REGPARM_BUG): Provide safe default
40035 for cross-compilation.
40036
40037 2009-03-30 Robert Millan <rmh@aybabtu.com>
40038
40039 Fix i386-ieee1275 build.
40040
40041 * include/grub/i386/ieee1275/loader.h (grub_multiboot2_real_boot):
40042 Remove declaration.
40043
40044 2009-03-30 Pavel Roskin <proski@gnu.org>
40045
40046 * fs/hfs.c (grub_hfs_strncasecmp): Integrate into ...
40047 (grub_hfs_cmp_catkeys): ... this. Don't assume strings to be
40048 zero-terminated, rely only on the strlen value. Fix comparison
40049 of strings differing in length.
40050
40051 2009-03-30 Robert Millan <rmh@aybabtu.com>
40052
40053 * loader/i386/linux.c (grub_cmd_linux): Check for zImage before
40054 checking for abi version. Improve error messages on BIOS to notify
40055 user about `linux16' command.
40056
40057 2009-03-29 Vladimir Serbinenko <phcoder@gmail.com>
40058
40059 Leak fixes
40060
40061 * kern/disk.c (grub_disk_cache_store): Invalidate previous cache
40062 in case of collision
40063 * disk/scsi.c (grub_scsi_open): free scsi in case of error
40064
40065 2009-03-29 Robert Millan <rmh@aybabtu.com>
40066
40067 * loader/i386/linux.c (grub_cmd_linux): Parse "vga=" parameter and
40068 set `vid_mode' accordingly.
40069 (grub_linux_boot): Process `vid_mode' and set video mode.
40070
40071 2009-03-29 Robert Millan <rmh@aybabtu.com>
40072
40073 * util/grub.d/10_linux.in (linux_entry): New function.
40074 Factorize generation of Linux boot entries.
40075
40076 2009-03-29 Yoshinori K. Okuji <okuji@enbug.org>
40077
40078 Make the format of Environment Block plain text. The boot loader
40079 part is not tested well yet.
40080
40081 * util/grub-editenv.c (DEFAULT_ENVBLK_SIZE): New macro.
40082 (buffer): Removed.
40083 (envblk): Likewise.
40084 (usage): Remove "info" and "clear". Add "unset". Update the
40085 description of "set", as this does not delete variables any
40086 longer.
40087 (create_envblk_file): Complete rewrite.
40088 (open_envblk_file): Likewise.
40089 (cmd_info): Removed.
40090 (cmd_list): Likewise.
40091 (cmd_set): Likewise.
40092 (cmd_clear): Likewise.
40093 (list_variables): New function.
40094 (write_envblk): Likewise.
40095 (set_variables): Likewise.
40096 (unset_variables): Likewise.
40097 (main): Complete rewrite.
40098
40099 * commands/loadenv.c (buffer): Removed.
40100 (envblk): Likewise.
40101 (open_envblk_file): New function.
40102 (read_envblk_file): Complete rewrite.
40103 (grub_cmd_load_env): Likewise.
40104 (grub_cmd_list_env): Likewise.
40105 (struct blocklist): New struct.
40106 (free_blocklists): New function.
40107 (check_blocklists): Likewise.
40108 (write_blocklists): Likewise.
40109 (grub_cmd_save_env): Complete rewrite.
40110
40111 * include/grub/lib/envblk.h (GRUB_ENVBLK_SIGNATURE): Replaced with
40112 a plain text signature.
40113 (GRUB_ENVBLK_MAXLEN): Removed.
40114 (struct grub_envblk): Complete rewrite.
40115 (grub_envblk_find): Removed.
40116 (grub_envblk_insert): Likewise.
40117 (grub_envblk_open): New prototype.
40118 (grub_envblk_set): Likewise.
40119 (grub_envblk_delete): Put const to VALUE.
40120 (grub_envblk_iterate): Put const to NAME and VALUE.
40121 (grub_envblk_close): New prototype.
40122 (grub_envblk_buffer): New inline function.
40123 (grub_envblk_size): Likewise.
40124
40125 * lib/envblk.c: Include grub/mm.h.
40126 (grub_env_find): Removed.
40127 (grub_envblk_open): New function.
40128 (grub_envblk_close): Likewise.
40129 (escaped_value_len): Likewise.
40130 (find_next_line): Likewise.
40131 (grub_envblk_insert): Removed.
40132 (grub_envblk_set): New function.
40133 (grub_envblk_delete): Complete rewrite.
40134 (grub_envblk_iterate): Likewise.
40135
40136 2009-03-28 Robert Millan <rmh@aybabtu.com>
40137
40138 * conf/i386-pc.rmk (pkglib_MODULES): Add `linux16.mod'.
40139 (linux16_mod_SOURCES, linux16_mod_CFLAGS, linux16_mod_LDFLAGS): New
40140 variables. Use 16-bit loader.
40141 (linux_mod_SOURCES, linux_mod_CFLAGS, linux_mod_LDFLAGS): Use 32-bit
40142 loader.
40143 * kern/i386/loader.S (grub_linux_boot): Rename to ...
40144 (grub_linux16_boot): ... this. Update all users.
40145 * loader/i386/linux.c (grub_linux32_boot): Rename to ...
40146 (grub_linux_boot): ... this. Update all users.
40147
40148 * loader/i386/pc/linux.c (GRUB_MOD_INIT(linux)): Rename to ...
40149 (GRUB_MOD_INIT(linux16)): ... this. Rename `linux' and `initrd'
40150 commands to `linux16' and `initrd16'.
40151 (GRUB_MOD_FINI(linux)): Rename to ...
40152 (GRUB_MOD_FINI(linux16)): ... this.
40153
40154 2009-03-24 Pavel Roskin <proski@gnu.org>
40155
40156 * genmk.rb: Define ASM_FILE for *.S files for *.lst generation,
40157 not just for compilation.
40158
40159 2009-03-22 Vladimir Serbinenko <phcoder@gmail.com>
40160
40161 Move multiboot helper out of kernel
40162
40163 * conf/i386-pc.rmk (multiboot_mod_SOURCES): Add
40164 `loader/i386/multiboot_helper.S'.
40165 * conf/i386-coreboot.rmk: Likewise
40166 * conf/i386-ieee1275.rmk: Likewise
40167
40168 * kern/i386/loader.S: Move multiboot helpers from here...
40169 * loader/i386/multiboot_helper.S: ...moved here
40170 * include/grub/i386/loader.h: Move declarations of multiboot
40171 helpers from here...
40172 * include/grub/i386/multiboot.h: ...moved here
40173 * loader/i386/multiboot.c: Added include of grub/cpu/multiboot.h
40174
40175 2009-03-22 Yoshinori K. Okuji <okuji@enbug.org>
40176
40177 * kern/env.c (grub_env_context_open): Added an argument to specify
40178 whether a new context inherits exported variables from current
40179 one. This is useful when making a sandbox to interpret a config
40180 file.
40181 All callers updated.
40182
40183 * include/grub/env.h (grub_env_context_open): Updated the prototype.
40184
40185 2009-03-22 Yoshinori K. Okuji <okuji@enbug.org>
40186
40187 * kern/env.c (grub_env_context_close): Fix memory leaks.
40188
40189 2009-03-22 Yoshinori K. Okuji <okuji@enbug.org>
40190
40191 * normal/main.c (grub_normal_execute): Added an argument
40192 BATCH to specify if an interactive interface should be provided
40193 after reading a config file.
40194 All callers updated.
40195 (read_command_list): Prevent being executed twice.
40196 (read_fs_list): Likewise.
40197
40198 * include/grub/normal.h (grub_normal_execute): Updated the
40199 prototype.
40200
40201 2009-03-22 Pavel Roskin <proski@gno.org>
40202
40203 * kern/powerpc/ieee1275/startup.S: Replace EXT_C(start) with
40204 _start.
40205 * kern/i386/pc/startup.S: Likewise.
40206 * kern/i386/efi/startup.S: Likewise.
40207 * kern/i386/ieee1275/startup.S: Likewise.
40208 * kern/i386/coreboot/startup.S: Likewise.
40209 * kern/x86_64/efi/startup.S: Likewise.
40210
40211 * aclocal.m4 (grub_CHECK_START_SYMBOL): Remove.
40212 * configure.ac: Don't call grub_CHECK_START_SYMBOL.
40213 * kern/i386/pc/startup.S: Use _start instead of START_SYMBOL.
40214
40215 2009-03-21 Vladimir Serbinenko <phcoder@gmail.com>
40216
40217 Bugfixes in multiboot for bugs uncovered by solaris kernel.
40218
40219 * loader/i386/multiboot_elfxx.c (grub_multiboot_load_elf): Corrected
40220 limit detection.
40221 Use vaddr of correct segment for entry_point.
40222
40223 2009-03-21 Bean <bean123ch@gmail.com>
40224
40225 * commands/blocklist.c: Add include file <grub/command.h>, remove
40226 <grub/normal.h> and <grub/arg.h>.
40227 (grub_cmd_blocklist): Use the new command interface.
40228 (GRUB_MOD_INIT): Likewise.
40229 (GRUB_MOD_FINI): Likewise.
40230 * commands/boot.c: Likewise.
40231 * commands/cat.c: Likewise.
40232 * commands/cmp.c: Likewise.
40233 * commands/configfile.c: Likewise.
40234 * commands/crc.c: Likewise.
40235 * commands/echo.c: Likewise.
40236 * commands/halt.c: Likewise.
40237 * commands/handler.c: Likewise.
40238 * commands/hdparm.c: Likewise.
40239 * commands/help.c: Likewise.
40240 * commands/hexdump.c: Likewise.
40241 * commands/loadenv.c: Likewise.
40242 * commands/ls.c: Likewise.
40243 * commands/lsmmap.c: Likewise.
40244 * commands/lspci.c: Likewise.
40245 * commands/loadenv.c: Likewise.
40246 * commands/read.c: Likewise.
40247 * commands/reboot.c: Likewise.
40248 * commands/search.c: Likewise.
40249 * commands/sleep.c: Likewise.
40250 * commands/test.c: Likewise.
40251 * commands/usbtest.c: Likewise.
40252 * commands/videotest.c: Likewise.
40253 * commands/i386/cpuid.c: Likewise.
40254 * commands/i386/pc/halt.c: Likewise.
40255 * commands/i386/pc/play.c: Likewise.
40256 * commands/i386/pc/pxecmd.c: Likewise.
40257 * commands/i386/pc/vbeinfo.c: Likewise.
40258 * commands/i386/pc/vbetest.c: Likewise.
40259 * commands/ieee1275/suspend.c: Likewise.
40260 * disk/loopback.c: Likewise.
40261 * font/font_cmd.c: Likewise.
40262 * hello/hello.c: Likewise.
40263 * loader/efi/appleloader.c: Likewise.
40264 * loader/efi/chainloader.c: Likewise.
40265 * loader/i386/bsd.c: Likewise.
40266 * loader/i386/efi/linux.c: Likewise.
40267 * loader/i386/ieee1275/linux.c: Likewise.
40268 * loader/i386/linux.c: Likewise.
40269 * loader/i386/pc/chainloader.c: Likewise.
40270 * loader/i386/pc/linux.c: Likewise.
40271 * loader/powerpc/ieee1275/linux.c: Likewise.
40272 * loader/multiboot_loader.c: Likewise.
40273 * term/gfxterm.c: Likewise.
40274 * term/i386/pc/serial.c: Likewise.
40275 * term/terminfo.c: Likewise.
40276
40277 * term/i386/pc/vesafb.c: Removed <grub/arg.h>.
40278 * term/i386/pc/vga.c: Likewise.
40279 * video/readers/jpeg.c: Likewise.
40280 * video/readers/png.c: Likewise.
40281 * video/readers/tga.c: Likewise.
40282
40283 * util/grub-fstest (cmd_loopback): Removed.
40284 (cmd_blocklist): Likewise.
40285 (cmd_ls): Likewise.
40286 (grub_register_command): Likewise.
40287 (grub_unregister_command): Likewise.
40288 (execute_command): Use grub_command_find to locate command and execute
40289 it.
40290
40291 * include/grub/efi/chainloader.h: Removed.
40292 * loader/efi/chainloader_normal.c: Likewise.
40293 * loader/i386/bsd_normal.c: Likewise.
40294 * loader/i386/pc/chainloader_normal.c: Likewise.
40295 * loader/i386/pc/multiboot_normal.c: Likewise.
40296 * loader/linux_normal.c: Likewise.
40297 * loader/multiboot_loader_normal.c: Likewise.
40298 * loader/powerpc/ieee1275/linux_normal.c: Likewise.
40299
40300 * gencmdlist.sh: Scan new registration command grub_register_extcmd
40301 and grub_register_command_p1.
40302
40303 * conf/common.rmk (grub_fstest_SOURCES): Add kern/list.c,
40304 kern/command.c, lib/arg.c and commands/extcmd.c.
40305 (pkglib_MODULES): Remove boot.mod, and minicmd.mod and extcmd.mod.
40306 (minicmd_mod_SOURCES): New variable.
40307 (minicmd_mod_CFLAGS): Likewise.
40308 (minicmd_mod_LDFLAGS): Likewise.
40309 (extcmd_mod_SOURCES): Likewise.
40310 (extcmd_mod_CFLAGS): Likewise.
40311 (extcmd_mod_LDFLAGS): Likewise.
40312 (boot_mod_SOURCES): Removed.
40313 (boot_mod_CFLAGS): Likewise.
40314 (boot_mod_LDFLAGS): Likewise.
40315
40316 * conf/i386-pc.rmk (kernel_img_SOURCES): Add kern/command.c and
40317 kern/corecmd.c.
40318 (kernel_img_HEADERS): Add command.h.
40319 (grub_emu_SOURCES): Remove commands/boot.c and normal/arg.c, add
40320 commands/minicmd.c, kern/command.c, kern/corecmd.c, commands/extcmd.c
40321 and lib/arg.c.
40322 (pkglib_MODULES): Change _linux.mod, _chain.mod, _bsd.mod and
40323 _multiboot.mod as linux.mod, chain.mod, bsd.mod and multiboot.mod,
40324 remove the corresponding normal mode command.
40325 (normal_mod_SOURCES): Remove normal/arg.c.
40326 * conf/i386-coreboot.rmk: Likewise.
40327 * conf/i386-efi.rmk: Likewise.
40328 * conf/i386-ieee1275.rmk: Likewise.
40329 * conf/powerpc-ieee1275.rmk: Likewise.
40330 * conf/x86_64-efi.rmk: Likewise.
40331
40332 * include/grub/arg.h: Move from here ...
40333 * include/grub/lib/arg.h: ... to here.
40334
40335 * normal/arg.c: Move from here ...
40336 * lib/arg.c: ... to here.
40337
40338 * commands/extcmd.c: New file.
40339 * commands/minicmd.c: Likewise.
40340 * include/grub/command.h: Likewise.
40341 * include/grub/extcmd.h: Likewise.
40342 * kern/command.c: Likewise.
40343 * kern/corecmd.c: Likewise.
40344
40345 * kern/list.c (grub_list_iterate): Return int instead of void.
40346 (grub_list_insert): New function.
40347 (grub_prio_list_insert): Likewise.
40348
40349 * kern/rescue.c (grub_rescue_command): Removed.
40350 (grub_rescue_command_list): Likewise.
40351 (grub_rescue_register_command): Likewise.
40352 (grub_rescue_unregister_command): Likewise.
40353 (grub_rescue_cmd_boot): Move to minicmd.c
40354 (grub_rescue_cmd_help): Likewise.
40355 (grub_rescue_cmd_info): Likewise.
40356 (grub_rescue_cmd_boot): Likewise.
40357 (grub_rescue_cmd_testload): Likewise.
40358 (grub_rescue_cmd_dump): Likewise.
40359 (grub_rescue_cmd_rmmod): Likewise.
40360 (grub_rescue_cmd_lsmod): Likewise.
40361 (grub_rescue_cmd_exit): Likewise.
40362 (grub_rescue_print_devices): Moved to corecmd.c.
40363 (grub_rescue_print_files): Likewise.
40364 (grub_rescue_cmd_ls): Likewise.
40365 (grub_rescue_cmd_insmod): Likewise.
40366 (grub_rescue_cmd_set): Likewise.
40367 (grub_rescue_cmd_unset): Likewise.
40368 (attempt_normal_mode): Use grub_command_find to get normal module.
40369 (grub_enter_rescue_mode): Use grub_register_core_commands to register
40370 commands, remove grub_rescue_register_command calls.
40371
40372 * normal/command.c (grub_register_command): Removed.
40373 (grub_unregister_command): Likewise.
40374 (grub_command_find): Likewise.
40375 (grub_iterate_commands): Likewise.
40376 (rescue_command): Likewise.
40377 (export_command): Moved to corecmd.c.
40378 (set_command): Removed.
40379 (unset_command): Likewise.
40380 (insmod_command): Likewise.
40381 (rmmod_command): Likewise.
40382 (lsmod_command): Likewise.
40383 (grub_command_init): Likewise.
40384
40385 * normal/completion.c (iterate_command): Use cmd->prio to check for
40386 active command.
40387 (complete_arguments): Use grub_extcmd_t structure to find options.
40388 (grub_normal_do_completion): Change function grub_iterate_commands to
40389 grub_command_iterate.
40390
40391 * normal/execute.c (grub_script_execute_cmd): No need to parse
40392 argument here.
40393
40394 * normal/main.c (grub_dyncmd_dispatcher): New function.
40395 (read_command_list): Register unload commands as dyncmd.
40396 (grub_cmd_normal): Use new command interface, register rescue,
40397 unregister normal at entry, register normal, unregister rescue at exit.
40398
40399 * include/grub/list.h (grub_list_test_t): New type.
40400 (grub_list_iterate): Return int instead of void.
40401 (grub_list_insert): New function.
40402 (GRUB_AS_NAMED_LIST_P): New macro.
40403 (GRUB_AS_PRIO_LIST): Likewise.
40404 (GRUB_AS_PRIO_LIST_P): Likewise.
40405 (GRUB_PRIO_LIST_PRIO_MASK): New constant.
40406 (GRUB_PRIO_LIST_FLAG_ACTIVE): Likewise.
40407 (grub_prio_list): New structure.
40408 (grub_prio_list_insert): New function.
40409 (grub_prio_list_remove): New inline function.
40410
40411 * include/grub/normal.h: Remove <grub/arg.h>, add <grub/command.h>.
40412 (GRUB_COMMAND_FLAG_CMDLINE): Moved to command.h.
40413 (GRUB_COMMAND_FLAG_MENU): Likewise.
40414 (GRUB_COMMAND_FLAG_BOTH): Likewise.
40415 (GRUB_COMMAND_FLAG_TITLE): Likewise.
40416 (GRUB_COMMAND_FLAG_NO_ECHO): Likewise.
40417 (GRUB_COMMAND_FLAG_NO_ARG_PARSE): Removed.
40418 (GRUB_COMMAND_FLAG_NOT_LOADED): Likewise.
40419 (grub_command): Likewise.
40420 (grub_register_command): Likewise.
40421 (grub_command_find): Likewise.
40422 (grub_iterate_commands): Likewise.
40423 (grub_command_init): Likewise.
40424 (grub_arg_parse): Likewise.
40425 (grub_arg_show_help): Likewise.
40426
40427 * include/grub/rescue.h (grub_rescue_register_command): Removed.
40428 (grub_rescue_unregister_command): Likewise.
40429
40430 * include/grub/i386/bsd.h: Remove grub_rescue_cmd_freebsd,
40431 grub_rescue_cmd_openbsd, grub_rescue_cmd_netbsd,
40432 grub_rescue_cmd_freebsd_loadenv and grub_rescue_cmd_freebsd_module.
40433
40434 * include/grub/i386/efi/loader.h: Remove grub_rescue_cmd_linux and
40435 grub_rescue_cmd_initrd.
40436 * include/grub/i386/loader.h: Likewise.
40437 * include/grub/x86_64/loader.h: Likewise.
40438
40439 * include/grub/i386/pc/chainloader.h: Remove grub_chainloader_cmd.
40440
40441 2009-03-21 Bean <bean123ch@gmail.com>
40442
40443 * util/hostdisk.c (read_device_map): Use grub_util_get_disk_size
40444 instead of stat in mingw environment.
40445
40446 * util/misc.c (grub_millisleep): Use Sleep in mingw environment.
40447
40448 * aclocal.m4 (grub_CHECK_LINK_DIR): New function.
40449
40450 * configure.ac: Use grub_CHECK_LINK_DIR to determine whether to use
40451 AC_CONFIG_LINKS.
40452
40453 2009-03-21 Bean <bean123ch@gmail.com>
40454
40455 * fs/ext2.c (grub_ext2_mount): Change errno to GRUB_ERR_BAD_FS for
40456 out of range error.
40457
40458 2009-03-18 Michel Dänzer <michel@daenzer.net>
40459
40460 * fs/ext2.c (grub_ext2_read_block): Take endianness into account when
40461 checking inode flags for EXT4_EXTENTS_FLAG.
40462
40463 2009-03-18 Robert Millan <rmh@aybabtu.com>
40464
40465 * loader/i386/linux.c: Include `<grub/video.h>' and
40466 `<grub/i386/pc/vbe.h>'..
40467 (grub_linux_setup_video): New function. Loosely based on the EFI one.
40468 (grub_linux32_boot): Attempt to configure video settings with
40469 grub_linux_setup_video().
40470 (grub_rescue_cmd_linux): Set noreturn=0 in grub_loader_set, in order
40471 to avoid grub_console_fini() which would step out of graphical mode
40472 unconditionally.
40473
40474 2009-03-14 Robert Millan <rmh@aybabtu.com>
40475
40476 Fix build on powerpc.
40477 * conf/powerpc-ieee1275.rmk (kernel_elf_HEADERS): Add `handler.h'.
40478
40479 2009-03-12 Vladimir Serbinenko <phcoder@gmail.com>
40480
40481 * term/gfxterm.c (GRUB_MOD_FINI(term_gfxterm)): Correct name of
40482 background image command.
40483
40484 2009-03-12 Colin D Bennett <colin@gibibit.com>
40485
40486 * term/gfxterm.c (draw_cursor): Ensure character is redrawn.
40487 (grub_gfxterm_putchar): Extract pairs of identical calls to
40488 draw_cursor out of conditional blocks.
40489
40490 2009-03-11 Pavel Roskin <proski@gnu.org>
40491
40492 * fs/hfs.c (grub_hfs_strncasecmp): New function.
40493 (grub_hfs_cmp_catkeys): Use HFS specific string comparison.
40494
40495 2009-03-11 Robert Millan <rmh@aybabtu.com>
40496
40497 * loader/i386/multiboot_elfxx.c
40498 (CONCAT(grub_multiboot_load_elf, XX)): Do not reject ET_DYN files.
40499
40500 2009-03-11 Felix Zielcke <fzielcke@z-51.de>
40501
40502 * conf/powerpc-ieee1275.rmk (kernel_elf_SOURCES): Add `kern/list.c' and
40503 `kern/handler.c'.
40504
40505 2009-03-11 Robert Millan <rmh@aybabtu.com>
40506
40507 * loader/i386/multiboot.c (code_size): New variable.
40508 (grub_multiboot): Define offsets by adding to `code_size' rather
40509 than subtracting from `grub_multiboot_payload_size'. Provide
40510 4-byte alignment to MBI and others by increasing
40511 `boot_loader_name_length' appropriately.
40512
40513 * loader/i386/multiboot_elfxx.c
40514 (CONCAT(grub_multiboot_load_elf, XX)): Initialize `code_size'.
40515
40516 2009-03-09 Felix Zielcke <fzielcke@z-51.de>
40517
40518 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Remove duplicated
40519 `fs/ext2.c'.
40520
40521 2009-03-08 Robert Millan <rmh@aybabtu.com>
40522
40523 Make loader/i386/linux.c usable on i386-pc again.
40524
40525 * kern/i386/pc/init.c (grub_machine_init): Disable addition of low
40526 memory to heap.
40527 * loader/i386/linux.c [GRUB_MACHINE_PCBIOS] (allocate_pages): Remove
40528 `#error' stanza.
40529
40530 2009-03-07 Bean <bean123ch@gmail.com>
40531
40532 * loader/i386/efi/linux.c (grub_rescue_cmd_initrd): Fix a bug in initrd
40533 allocation.
40534
40535 2009-03-06 Robert Millan <rmh@aybabtu.com>
40536
40537 Fix display issue on terminals with screen size other than 80x25
40538 (e.g. gfxterm with resolution higher than 640x480).
40539
40540 * normal/main.c (grub_normal_init_page): Display title text in a
40541 position relative to the center of the terminal instead of relying
40542 on a hardcoded offset.
40543
40544 2009-03-04 Robert Millan <rmh@aybabtu.com>
40545
40546 Filter /etc/grub.d/10_* so that only add-ons for native kernels are
40547 installed.
40548
40549 * Makefile.in (host_kernel): New variable.
40550 * conf/common.rmk (grub-mkconfig_SCRIPTS): Conditionalize all 10_*.in
40551 scripts instead of just the windows one.
40552 * configure.ac: Initialize and AC_SUBST `host_kernel'.
40553
40554 2009-03-04 Felix Zielcke <fzielcke@z-51.de>
40555
40556 * conf/i386-pc.rmk (grub_emu_SOURCES): Add `kern/list.c' and
40557 `kern/handler.c'.
40558 * conf/i386-efi.rmk (grub_emu_SOURCES): Likewise.
40559 * conf/x86_64-efi.rmk (grub_emu_SOURCES): Likewise.
40560 * conf/i386-coreboot.rmk (grub_emu_SOURCES): Likewise.
40561 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
40562 * conf/sparc64-ieee1275.rmk (grub_emu_SOURCES): Likewise.
40563 * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Likewise.
40564
40565 2009-03-04 Felix Zielcke <fzielcke@z-51.de>
40566
40567 * partmap/pc.c (pc_partition_map_iterate): Skip over invalid BSD partitions
40568 or if there's no space for the disk label and print the partition number on a
40569 invalid magic.
40570
40571 2009-03-04 Felix Zielcke <fzielcke@z-51.de>
40572
40573 * util/misc.c: Include <time.h>.
40574 (grub_millisleep): New function.
40575
40576 2009-03-04 Bean <bean123ch@gmail.com>
40577
40578 * configure.ac: Only test -mcmodel=large option in x86_64-efi, also add
40579 another option -mno-red-zone.
40580
40581 * commands/handler.c: Change module description.
40582
40583 * kern/handler.c: Add missing space at the end of description line.
40584
40585 * kern/list.c: Likewise.
40586
40587 2009-03-03 Robert Millan <rmh@aybabtu.com>
40588
40589 Move more components to the relocation area, and fix mbi pointer
40590 handling to use the destination rather than the origin (thanks to
40591 Vladimir Serbinenko for spotting).
40592
40593 * loader/i386/multiboot.c (mbi_dest): New variable.
40594 (grub_multiboot_boot): Use `mbi_dest' instead of `mbi'.
40595 (grub_multiboot): Put cmdline, boot_loader_name and mbi in the
40596 relocation area.
40597
40598 2009-03-01 Bean <bean123ch@gmail.com>
40599
40600 * include/grub/efi/api.h (GRUB_EFI_MPS_TABLE_GUID): New constant.
40601 (GRUB_EFI_ACPI_TABLE_GUID): Likewise.
40602 (GRUB_EFI_ACPI_20_TABLE_GUID): Likewise.
40603 (GRUB_EFI_SMBIOS_TABLE_GUID): Likewise.
40604
40605 * loader/i386/efi/linux.c (acpi_guid): New variable.
40606 (acpi_guid): Likewise.
40607 (EBDA_SEG_ADDR): New constant.
40608 (LOW_MEM_ADDR): Likewise.
40609 (FAKE_EBDA_SEG): Likewise.
40610 (fake_bios_data): New function.
40611 (grub_linux_boot): Call fake_bios_data.
40612
40613 2009-03-01 Bean <bean123ch@gmail.com>
40614
40615 * commands/terminal.c: Removed.
40616
40617 * commands/handler.c: New file.
40618
40619 * include/grub/list.h: Likewise.
40620
40621 * include/grub/handler.h: Likewise.
40622
40623 * kern/list.c: Likewise.
40624
40625 * kern/handler.c: Likewise.
40626
40627 * kern/term.h: Include header file <grub/handler.h>.
40628 (grub_term_input): Move next field to the beginning.
40629 (grub_term_output): Likewise.
40630 (grub_term_input_class): New variable.
40631 (grub_term_output_class): Likewise.
40632 (grub_term_register_input): Changed to inline function.
40633 (grub_term_register_output): Likewise.
40634 (grub_term_unregister_input): Likewise.
40635 (grub_term_unregister_output): Likewise.
40636 (grub_term_set_current_input): Likewise.
40637 (grub_term_set_current_output): Likewise.
40638 (grub_term_get_current_input): Likewise.
40639 (grub_term_get_current_output): Likewise.
40640 (grub_term_iterate_input): Removed.
40641 (grub_term_iterate_output): Likewise.
40642
40643 * kern/term.c (grub_term_list_input): Removed.
40644 (grub_term_list_output): Likewise.
40645 (grub_term_input_class): New variable.
40646 (grub_term_output_class): Likewise.
40647 (grub_cur_term_input): Change variable as macro.
40648 (grub_cur_term_output): Likewise.
40649 (grub_term_register_input): Removed.
40650 (grub_term_register_output): Likewise.
40651 (grub_term_unregister_input): Likewise.
40652 (grub_term_unregister_output): Likewise.
40653 (grub_term_set_current_input): Likewise.
40654 (grub_term_set_current_output): Likewise.
40655 (grub_term_iterate_input): Likewise.
40656 (grub_term_iterate_output): Likewise.
40657 (grub_term_get_current_input): Likewise.
40658 (grub_term_get_current_output): Likewise.
40659
40660 * util/grub-editenv.c: Include header file <grub/handler.h>.
40661 (grub_term_get_current_input): Removed.
40662 (grub_term_get_current_output): Likewise.
40663 (grub_term_input_class): New variable.
40664 (grub_term_output_class): Likewise.
40665
40666 * util/grub-fstest.c (grub_term_get_current_input): Removed.
40667 (grub_term_get_current_output): Likewise.
40668 (grub_term_input_class): New variable.
40669 (grub_term_output_class): Likewise.
40670
40671 * util/grub-probe.c (grub_term_get_current_input): Removed.
40672 (grub_term_get_current_output): Likewise.
40673 (grub_term_input_class): New variable.
40674 (grub_term_output_class): Likewise.
40675
40676 * util/i386/pc/grub-setup.c (grub_term_get_current_input): Removed.
40677 (grub_term_get_current_output): Likewise.
40678 (grub_term_input_class): New variable.
40679 (grub_term_output_class): Likewise.
40680
40681 * conf/common.rmk (pkglib_MODULES): Replace terminal with handler.
40682 (terminal_mod_SOURCES): Likewise.
40683 (terminal_mod_CFLAGS): Likewise.
40684 (terminal_mod_LDFLAGS): Likewise.
40685
40686 * conf/i386-pc.rmk (grub_emu_SOURCES): Replace terminal.c with
40687 handler.c.
40688 (kernel_img_SOURCES): Add list.c and handler.c.
40689 (kernel_img_HEADERS): Add list.h and handler.h.
40690
40691 * conf/i386-efi.rmk (grub_emu_SOURCES): Replace terminal.c with
40692 handler.c.
40693 (kernel_mod_SOURCES): Add list.c and handler.c.
40694 (kernel_mod_HEADERS): Add list.h and handler.h.
40695
40696 * conf/i386-coreboot.rmk (grub_emu_SOURCES): Replace terminal.c with
40697 handler.c.
40698 (kernel_elf_SOURCES): Add list.c and handler.c.
40699 (kernel_elf_HEADERS): Add list.h and handler.h.
40700
40701 * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Replace terminal.c with
40702 handler.c.
40703 (kernel_elf_SOURCES): Add list.c and handler.c.
40704 (kernel_elf_HEADERS): Add list.h and handler.h.
40705
40706 * conf/x86_64-efi.rmk (grub_emu_SOURCES): Replace terminal.c with
40707 handler.c.
40708 (kernel_mod_SOURCES): Add list.c and handler.c.
40709 (kernel_mod_HEADERS): Add list.h and handler.h.
40710
40711 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Replace terminal.c with
40712 handler.c.
40713 (kernel_elf_SOURCES): Add list.c and handler.c.
40714 (kernel_elf_HEADERS): Add list.h and handler.h.
40715
40716 2009-02-27 Robert Millan <rmh@aybabtu.com>
40717
40718 Factorize elf32 / elf64 code in Multiboot loader. This will
40719 prevent it from getting out of sync again.
40720
40721 * loader/i386/multiboot.c (grub_multiboot_is_elf32,
40722 grub_multiboot_load_elf32, grub_multiboot_is_elf64,
40723 grub_multiboot_load_elf64): Move from here ...
40724 * loader/i386/multiboot_elfxx.c (grub_multiboot_is_elf,
40725 grub_multiboot_load_elf): ... to here (new file).
40726
40727 2009-02-27 Robert Millan <rmh@aybabtu.com>
40728
40729 * util/grub.d/10_linux.in: Rename "single-user mode" to
40730 "recovery mode".
40731
40732 2009-02-27 Vladimir Serbinenko <phcoder@gmail.com>
40733
40734 Don't leak in SCSI code.
40735 * disk/scsi.c (grub_scsi_close): free `scsi'.
40736
40737 2009-02-27 Robert Millan <rmh@aybabtu.com>
40738
40739 * loader/i386/pc/multiboot.c: Move from here ...
40740 * loader/i386/multiboot.c: ... to here. Update all users.
40741
40742 2009-02-27 Robert Millan <rmh@aybabtu.com>
40743
40744 Patch from Alexandre Bique <bique.alexandre@gmail.com>
40745 * util/i386/pc/grub-setup.c (setup): Fix directory path.
40746
40747 2009-02-27 Krzysztof Smiechowicz <deadwood@wp.pl>
40748
40749 * fs/sfs.c (grub_sfs_read_extent): Correction to traversing extent
40750 b-tree.
40751
40752 2009-02-27 Robert Millan <rmh@aybabtu.com>
40753
40754 * kern/misc.c (grub_strtoull): Fix bug (it mistakenly parsed the
40755 `0x' qualifier as 0 when base is specified as parameter).
40756
40757 2009-02-24 Bean <bean123ch@gmail.com>
40758
40759 * configure.ac: Check for -mcmodel=large in x86_64 target.
40760
40761 * include/grub/efi/api.h (efi_call_10): New macro.
40762 (efi_wrap_10): New function.
40763
40764 * include/grub/efi/pe32.h (GRUB_PE32_REL_BASE_HIGH): New macro.
40765 (GRUB_PE32_REL_BASED_HIGH): Likewise.
40766 (GRUB_PE32_REL_BASED_LOW): Likewise.
40767 (GRUB_PE32_REL_BASED_HIGHLOW): Likewise.
40768 (GRUB_PE32_REL_BASED_HIGHADJ): Likewise.
40769 (GRUB_PE32_REL_BASED_MIPS_JMPADDR): Likewise.
40770 (GRUB_PE32_REL_BASED_SECTION): Likewise.
40771 (GRUB_PE32_REL_BASED_REL): Likewise.
40772 (GRUB_PE32_REL_BASED_IA64_IMM64): Likewise.
40773 (GRUB_PE32_REL_BASED_DIR64): Likewise.
40774 (GRUB_PE32_REL_BASED_HIGH3ADJ): Likewise.
40775
40776 * kern/x86_64/dl.c (grub_arch_dl_relocate_symbols): Fixed relocation
40777 issue.
40778
40779 * kern/x86_64/efi/callwrap.S (efi_wrap_6): Bug fix.
40780 (efi_wrap_10): New function.
40781
40782 * kern/x86_64/efi/startup.S (codestart): Use relative addressing.
40783
40784 * loader/efi/appleloader.c (devpath_5): Add support for late 2008
40785 MB/MBP model (NV chipset).
40786 (devdata_devs): Add devpath_5 to the list.
40787
40788 * load/i386/efi/linux.c (video_base): Remove variable.
40789 (RGB_MASK): New macro.
40790 (RGB_MAGIC): Likewise.
40791 (LINE_MIN): Likewise.
40792 (LINE_MAX): Likewise.
40793 (FBTEST_STEP): Likewise.
40794 (FBTEST_COUNT): Likewise.
40795 (fb_list): New variable.
40796 (grub_find_video_card): Remove function.
40797 (find_framebuf): New function.
40798 (grub_linux_setup_video): Use find_framebuf to get frame buffer and
40799 line length.
40800
40801 * util/i386/efi/grub-mkimage.c (grub_reloc_section): Fix relocation
40802 problem for x86_64.
40803
40804 2009-02-22 Vesa Jääskeläinen <chaac@nic.fi>
40805
40806 Patch #25624 by Kevin Lacquement <kevin@lacqui>.
40807
40808 * util/grub-mkconfig.in: Use ${grub_mkdevicemap} instead of hard
40809 coding tool name.
40810
40811 2009-02-22 Robert Millan <rmh@aybabtu.com>
40812
40813 * include/multiboot.h (MULTIBOOT_INFO_ALIGN): New macro.
40814 * loader/i386/pc/multiboot.c (grub_multiboot): Include the MBI
40815 in our relocation, instead of using it directly from heap. Also
40816 use `MULTIBOOT_INFO_ALIGN' to ensure it is aligned.
40817
40818 2009-02-21 Robert Millan <rmh@aybabtu.com>
40819
40820 Implement USB keyboard support (based on patch by Marco Gerards)
40821
40822 * conf/i386-pc.rmk (pkglib_MODULES): Add `usb_keyboard.mod'.
40823 (usb_keyboard_mod_SOURCES, usb_keyboard_mod_CFLAGS)
40824 (usb_keyboard_mod_LDFLAGS): New variables.
40825
40826 * term/usb_keyboard.c: New file.
40827
40828 2009-02-14 Vladimir Serbinenko <phcoder@gmail.com>
40829
40830 Corrected wrong declaration
40831
40832 * kern/disk.c: corrected declaration of grub_disk_ata_pass_through.
40833
40834 2009-02-14 Christian Franke <franke@computer.org>
40835
40836 * commands/lspci.c (grub_pci_classes): Add `SATA Controller'.
40837 (grub_lspci_iter): Print class code and programming interface byte.
40838
40839 2009-02-14 Christian Franke <franke@computer.org>
40840
40841 * gendistlist.sh: Ignore `.svn' directories.
40842
40843 2009-02-14 Felix Zielcke <fzielcke@z-51.de>
40844
40845 * fs/fat.c: Add 2009 to Copyright line.
40846
40847 2009-02-14 Christian Franke <franke@computer.org>
40848
40849 * commands/hdparm.c: New file. Provides `hdparm' command
40850 which sends ATA commands via grub_disk_ata_pass_through ().
40851
40852 * conf/i386-pc.rmk: Add ata_pthru.mod and hdparm.mod.
40853
40854 * disk/ata.c: Include <grub/ata.h>. Move <grub/misc.h>
40855 and <grub/cpu/io.h> to include/grub/ata.h.
40856 (enum grub_ata_addressing_t): Move to include/grub/ata.h.
40857 (GRUB_CDROM_SECTOR_SIZE): Remove.
40858 (GRUB_ATA_*): Move to include/grub/ata.h.
40859 (GRUB_ATAPI_*): Likewise.
40860 (enum grub_ata_commands): Likewise.
40861 (enum grub_ata_timeout_milliseconds): Likewise.
40862 (struct grub_ata_device): Likewise.
40863 (grub_ata_regset): Likewise.
40864 (grub_ata_regget): Likewise.
40865 (grub_ata_regset2): Likewise.
40866 (grub_ata_regget2): Likewise.
40867 (grub_ata_check_ready): Likewise.
40868 (grub_ata_wait_not_busy): Remove static, exported in
40869 include/grub/ata.h.
40870 (grub_ata_wait_drq): Likewise.
40871 (grub_ata_pio_read): Likewise.
40872
40873 * disk/ata_pthru.c: New file. Provides grub_ata_pass_through ()
40874 function for hdparm.mod.
40875
40876 * include/grub/ata.h: New file, contains declarations from
40877 disk/ata.c.
40878 (enum grub_ata_commands): Add new commands for commands/hdparm.c.
40879
40880 * include/grub/disk.h (grub_disk_ata_pass_through_parms): New struct.
40881 (grub_disk_ata_pass_through): New exported variable.
40882
40883 * kern/disk.c (grub_disk_ata_pass_through): New variable.
40884
40885 2009-02-13 Colin D Bennett <colin@gibibit.com>
40886
40887 Support multiple fallback entries, and provide an API to support
40888 executing default+fallback menu entries. Renamed the `terminal' menu
40889 viewer to `text'.
40890
40891 * include/grub/normal.h (grub_normal_text_menu_viewer): New global
40892 variable declaration.
40893 (grub_menu_execute_callback): New structure declaration.
40894 (grub_menu_execute_callback_t): New typedef.
40895 (grub_menu_execute_with_fallback): New function declaration.
40896 (grub_menu_get_entry): Likewise.
40897 (grub_menu_get_timeout): Likewise.
40898 (grub_menu_set_timeout): Likewise.
40899
40900 * normal/main.c (GRUB_MOD_INIT(normal)): Refer to new variable name.
40901
40902 * normal/menu.c (grub_wait_after_message): Moved to
40903 `normal/menu_text.c'.
40904 (draw_border): Likewise.
40905 (print_message): Likewise.
40906 (print_entry): Likewise.
40907 (print_entries): Likewise.
40908 (grub_menu_init_page): Likewise.
40909 (get_entry_number): Likewise.
40910 (print_timeout): Likewise.
40911 (run_menu): Likewise.
40912 (grub_menu_execute_entry): Likewise.
40913 (show_text_menu): Likewise.
40914 (get_and_remove_first_entry_number): New function.
40915 (grub_menu_execute_with_fallback): Likewise.
40916 (get_entry): Renamed to ...
40917 (grub_menu_get_entry): .. this and made it global.
40918 (get_timeout): Renamed to ...
40919 (grub_menu_get_timeout): ... this and made it global.
40920 (set_timeout): Renamed to ...
40921 (grub_menu_set_timeout): ... this and made it global.
40922 (grub_normal_terminal_menu_viewer): Renamed to ...
40923 (grub_normal_text_menu_viewer): ... this.
40924
40925 * normal/menu_text.c: New file. Extracted text-menu-specific code
40926 from normal/menu.c.
40927
40928 * conf/i386-coreboot.rmk (grub_emu_SOURCES): Add `normal/menu_text.c'.
40929 (normal_mod_SOURCES): Likewise.
40930
40931 * conf/i386-efi.rmk (grub_emu_SOURCES): Likewise.
40932 (normal_mod_SOURCES): Likewise.
40933
40934 * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Likewise.
40935 (normal_mod_SOURCES): Likewise.
40936
40937 * conf/i386-pc.rmk, (grub_emu_SOURCES): Likewise.
40938 (normal_mod_SOURCES): Likewise.
40939
40940 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
40941 (normal_mod_SOURCES): Likewise.
40942
40943 * conf/sparc64-ieee1275.rmk (grub_emu_SOURCES): Likewise.
40944 (normal_mod_SOURCES): Likewise.
40945
40946 * conf/x86_64-efi.rmk (grub_emu_SOURCES): Likewise.
40947 (normal_mod_SOURCES): Likewise.
40948
40949 2009-02-11 Robert Millan <rmh@aybabtu.com>
40950
40951 * util/grub.d/00_header.in: Update old reference to `font' command.
40952
40953 2009-02-10 Felix Zielcke <fzielcke@z-51.de>
40954
40955 * fs/fat.c (grub_fat_mount): Fix wrong comparison.
40956
40957 Based on patch from Javier Martín.
40958
40959 2009-02-09 Felix Zielcke <fzielcke@z-51.de>
40960
40961 * conf/common.rmk (grub_probe_SOURCES): Move fs/ext2.c before fs/fat.c
40962 to avoid false positives with FAT.
40963 (grub_fstest_SOURCES): Likewise.
40964 * conf/i386-pc.rmk (grub_emu_SOURCES): Likewise.
40965 * conf/x86_64-efi.rmk (grub_emu_SOURCES): Likewise.
40966 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
40967 * conf/i386-coreboot.rmk (grub_emu_SOURCES): Likewise.
40968 * conf/sparc64-ieee1275.rmk (grub_emu_SOURCES): Likewise.
40969 * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Likewise.
40970
40971 2009-02-09 Felix Zielcke <fzielcke@z-51.de>
40972
40973 * fs/fat.c (grub_fat_mount): Try to avoid false positives by checking
40974 bpb.version_specific.fat12_or_fat16.fstype and
40975 bpb.version_specific.fat32.fstype.
40976
40977 2009-02-08 Robert Millan <rmh@aybabtu.com>
40978
40979 * fs/tar.c: Replace "fs/cpio.c" with "cpio.c".
40980
40981 2009-02-08 Robert Millan <rmh@aybabtu.com>
40982
40983 * Makefile.in (host_os, host_cpu): New variables.
40984 (target_os): Remove. Update all users.
40985
40986 2009-02-08 Marco Gerards <marco@gnu.org>
40987
40988 * Makefile.in (enable_grub_emu_usb): New variable.
40989 * conf/i386-pc.rmk (grub_emu_SOURCES): Add `disk/scsi.c'.
40990 (grub_emu_SOURCES) [grub_emu_SOURCES]: Add `disk/usbms.c',
40991 `util/usb.c', `bus/usb/usb.c' and `commands/usbtest.c'.
40992 (grub_emu_LDFLAGS): Add `$(LIBUSB)'.
40993 (pkglib_MODULES): Add `usb.mod', `uhci.mod', `ohci.mod',
40994 `usbtest.mod' and `usbms.mod'.
40995 (usb_mod_SOURCES, usb_mod_CFLAGS, usb_mod_LDFLAGS)
40996 (usbtest_mod_SOURCES, usbtest_mod_CFLAGS, usbtest_mod_LDFLAGS)
40997 (uhci_mod_SOURCES, uhci_mod_CFLAGS, uhci_mod_LDFLAGS,
40998 (ohci_mod_SOURCES, ohci_mod_CFLAGS, ohci_mod_LDFLAGS)
40999 (usbms_mod_SOURCES, usbms_mod_CFLAGS, usbms_mod_LDFLAGS): New
41000 variables.
41001
41002 * disk/usbms.c: New file.
41003
41004 * include/grub/usb.h: Likewise.
41005
41006 * include/grub/usbtrans.h: Likewise.
41007
41008 * include/grub/usbdesc.h: Likewise.
41009
41010 * bus/usb/usbtrans.c: Likewise.
41011
41012 * bus/usb/ohci.c: Likewise.
41013
41014 * bus/usb/uhci.c: Likewise.
41015
41016 * bus/usb/usbhub.c: Likewise.
41017
41018 * bus/usb/usb.c: Likewise.
41019
41020 * commands/usbtest.c: Likewise.
41021
41022 * util/usb.c: Likewise.
41023
41024 * include/grub/err.h (grub_err_t): Add `GRUB_ERR_IO'.
41025
41026 * configure.ac: Test for libusb presence.
41027
41028 * util/grub-emu.c (main) [HAVE_LIBUSB_H]: Call `grub_libusb_init'.
41029
41030 2009-02-08 Vesa Jääskeläinen <chaac@nic.fi>
41031
41032 * kern/mm.c: Add more comments.
41033
41034 2009-02-08 Robert Millan <rmh@aybabtu.com>
41035
41036 Patch from Javier Martín.
41037 * fs/ext2.c (EXT2_DRIVER_SUPPORTED_INCOMPAT): Add
41038 `EXT4_FEATURE_INCOMPAT_FLEX_BG'.
41039
41040 2009-02-08 Robert Millan <rmh@aybabtu.com>
41041
41042 * fs/cpio.c: Split tar functionality to ...
41043 * fs/tar.c: ... here (new file). Update all users.
41044
41045 2009-02-07 Robert Millan <rmh@aybabtu.com>
41046
41047 * fs/ext2.c (grub_ext2_mount): Avoid mounting filesystems with
41048 backward-incompatible features.
41049
41050 Based on patch from Javier Martín, with some adjustments.
41051
41052 2009-02-07 Michael Scherer <misc@mandriva.org>
41053
41054 * fs/hfs.c (grub_hfsplus_iterate_dir): Treat hfs+ as case insensitive.
41055
41056 2009-02-07 Robert Millan <rmh@aybabtu.com>
41057
41058 * conf/common.rmk (grub_probe_SOURCES, grub_fstest_SOURCES): Move
41059 position of `disk/lvm.c' to ensure grub_init_all() always picks it
41060 after the RAID stuff.
41061
41062 2009-02-05 Vesa Jääskeläinen <chaac@nic.fi>
41063
41064 Fixes problem when running vbetest command as reported by
41065 Vladimir Serbinenko <phcoder@gmail.com>.
41066
41067 * (grub_vbe_set_video_mode): Fixed problem with text modes.
41068
41069 2009-02-04 Felix Zielcke <fzielcke@z-51.de>
41070
41071 util/getroot.c (grub_util_get_grub_dev): Add support for /dev/mdNpN and
41072 /dev/md/NpN style mdraid devices.
41073
41074 2009-02-03 Felix Zielcke <fzielcke@z-51.de>
41075
41076 * util/unifont2pff.rb: Remove.
41077
41078 2009-02-03 Felix Zielcke <fzielcke@z-51.de>
41079
41080 * conf/sparc64-ieee1275.rmk (grub_emu_SOURCES): Add a missing trailing
41081 `#'.
41082
41083 2009-02-03 Felix Zielcke <fzielcke@z-51.de>
41084
41085 * conf/i386-pc.rmk (grub_emu_SOURCES): Add `normal/menu_viewer.c'.
41086 * conf/i386-efi.rmk (grub_emu_SOURCES): Likewise.
41087 * conf/x86_64-efi.rmk (grub_emu_SOURCES): Likewise.
41088 * conf/i386-coreboot.rmk (grub_emu_SOURCES): Likewise.
41089 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
41090 * conf/sparc64-ieee1275.rmk (grub_emu_SOURCES): Likewise.
41091 * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Likewise.
41092
41093 2009-02-02 Christian Franke <franke@computer.org>
41094
41095 * lib/hexdump.c (hexdump): Print at most 3 lines if data is identical.
41096
41097 2009-02-01 Felix Zielcke <fzielcke@z-51.de>
41098
41099 * INSTALL: Note that we now require at least autoconf 2.59 and
41100 that LZO is optional.
41101
41102 2009-02-01 Vesa Jääskeläinen <chaac@nic.fi>
41103
41104 Base on patch on bug #24154 created by Tomas Tintera
41105 <trosos@seznam.cz>.
41106
41107 * video/i386/pc/vbe.c (grub_video_vbe_scroll): Fix downward scrolling.
41108
41109 2009-02-01 Vesa Jääskeläinen <chaac@nic.fi>
41110
41111 Based on patch on bug #25318 created by Bernhard Rosenkraenzer
41112 <bero@arklinux.org>.
41113
41114 * normal/parser.y (script_init): Add missing semicolon.
41115
41116 2009-01-31 Colin D Bennett <colin@gibibit.com>
41117
41118 * normal/main.c: Add include to grub/menu_viewer.h.
41119 (free_menu_entry_classes): Added.
41120 (grub_normal_menu_addentry): Added class property handling.
41121 (grub_normal_execute): Changed to use new menu viewer for menu viewing.
41122 (GRUB_MOD_INIT(normal)): Added register for text based menu viewer.
41123
41124 * normal/menu_viewer.c: New file.
41125
41126 * normal/menu.c (run_menu_entry): Renamed to ...
41127 (grub_menu_execute_entry): ... this and made it as global.
41128 (grub_menu_run): Renamed to ...
41129 (show_text_menu): ... this and made it local.
41130 (show_text_menu): Adapt to new function names.
41131 (grub_normal_terminal_menu_viewer): New global variable.
41132
41133 * include/grub/menu.h: New file.
41134
41135 * include/grub/menu_viewer.h: New file.
41136
41137 * include/grub/normal.h: Added include to grub/menu.h.
41138 (grub_menu_entry): Moved to include/grub/menu.h.
41139 (grub_menu_entry_t): Likewise.
41140 (grub_menu): Likewise.
41141 (grub_menu_t): Likewise.
41142 (grub_normal_terminal_menu_viewer): Added.
41143 (grub_menu_execute_entry): Likewise.
41144 (grub_menu_run): Removed.
41145
41146 * DISTLIST: Added include/grub/menu.h.
41147 Added include/grub/menu_viewer.h.
41148 Added normal/menu_viewer.c.
41149
41150 2009-01-31 Vesa Jääskeläinen <chaac@nic.fi>
41151
41152 * normal/execute.c (grub_script_execute_menuentry): Changed to use
41153 arglist for menutitle arguments.
41154
41155 * normal/main.c (grub_normal_menu_addentry): Likewise.
41156
41157 * normal/parser.y (menuentry): Likewise.
41158
41159 * normal/script.c (grub_script_create_cmdmenu): Likewise.
41160
41161 * include/grub/script.h (grub_script_cmd_menuentry): Likewise.
41162 (grub_script_create_cmdmenu): Likewise.
41163
41164 * include/grub/normal.h (grub_normal_menu_addentry): Likewise.
41165
41166 * conf/i386-pc.rmk (normal_mod_SOURCES): Adapt Colin D Bennett's
41167 changes.
41168
41169 * conf/x86_64-efi.rmk (normal_mod_SOURCES): Likewise.
41170
41171 * conf/i386-coreboot.rmk (normal_mod_SOURCES): Likewise.
41172
41173 * conf/i386-efi.rmk (normal_mod_SOURCES): Likewise.
41174
41175 * conf/i386-ieee1275.rmk (normal_mod_SOURCES): Likewise.
41176
41177 * conf/powerpc-ieee1275.rmk (normal_mod_SOURCES): Likewise.
41178
41179 * conf/sparc64-ieee1275.rmk (normal_mod_SOURCES): Likewise.
41180
41181 2009-01-30 Christian Franke <franke@computer.org>
41182
41183 * normal/arg.c (grub_arg_show_help): Add indentation if '\n' appears
41184 in option help text.
41185
41186 2009-01-27 Pavel Roskin <proski@gnu.org>
41187
41188 * disk/fs_uuid.c (search_fs_uuid): Ignore case of the UUID.
41189
41190 2009-01-27 Vesa Jääskeläinen <chaac@nic.fi>
41191
41192 * commands/lsmmap.c: Add include to grub/machine/memory.h.
41193
41194 * fs/i386/pc/pxe.c (grub_pxefs_open): Fix sign problem.
41195
41196 * term/i386/pc/at_keyboard.c (GRUB_MOD_FINI(at_keyboard)): Use proper
41197 unregister function.
41198
41199 2009-01-27 Vesa Jääskeläinen <chaac@nic.fi>
41200
41201 * disk/scsi.c (grub_scsi_read): Fix sign problem.
41202
41203 * term/i386/pc/vga_text.c (grub_vga_text_init_fini). Fix declaration.
41204
41205 * util/grub-mkfont.c (usage): Fix typo.
41206
41207 * util/elf/grub-mkimage.c (load_modules): Fix warning.
41208
41209 2009-01-26 Daniel Mierswa <impulze@impulze.org>
41210
41211 * fs/fat.c (grub_fat_uuid): Fix shift of the first two bytes.
41212
41213 * commands/search.c (search_fs_uuid): Ignore case of the UUID.
41214
41215 * kern/misc.c (grub_strcasecmp): New function.
41216 (grub_strcasecmp): Use grub_size_t instead of int for length.
41217 Fix return value.
41218 * include/grub/misc.h: Update function prototypes.
41219
41220 2009-01-26 Robert Millan <rmh@aybabtu.com>
41221
41222 * configure.ac: Fix cross-compilation check.
41223
41224 2009-01-22 Christian Franke <franke@computer.org>
41225
41226 * kern/misc.c (grub_vsprintf): Fix size and termination of `format2'
41227 (precision) digit string. Allow `.format2' without `format1' (width).
41228 Limit input chars for `%s' output to `format2' if specified. This is
41229 compatible with standard printf ().
41230
41231 2009-01-22 Christian Franke <franke@computer.org>
41232
41233 * disk/ata.c (grub_ata_wait_status): Replace by ...
41234 (grub_ata_wait_not_busy): ... this function. Checks only BSY bit,
41235 other status bits may be invalid while BSY is asserted.
41236 (grub_ata_check_ready): New function.
41237 (grub_ata_cmd): Removed.
41238 (grub_ata_wait_drq): New function.
41239 (grub_ata_strncpy): Remove inline.
41240 (grub_ata_pio_read): Reduce to actual block transfer. BSY wait
41241 and error check now done by grub_ata_wait_drq ().
41242 (grub_ata_pio_write): Likewise.
41243 (grub_atapi_identify): Set DEV before check for !BSY. Use
41244 grub_ata_wait_drq () to wait for data.
41245 (grub_ata_device_initialize): Add status register check to
41246 detect missing SATA slave devices. Add debug messages.
41247 (grub_atapi_wait_drq): Use grub_ata_wait_not_busy ().
41248 (grub_atapi_packet): Set DEV before check for !BSY. Replace
41249 transfer loop by grub_ata_pio_write ().
41250 (grub_ata_identify): Set DEV before check for !BSY. Use
41251 grub_ata_wait_drq () to wait for data.
41252 (grub_ata_setaddress): Set DEV before check for !BSY.
41253 (grub_ata_readwrite): Remove duplicate code, handle batch/rest and
41254 read/write in one loop. Fix invalid command on write. Fix incomplete
41255 command on (size % batch) == 0. Add missing error check after write of
41256 last block. Add debug messages.
41257 (grub_atapi_read): Replace transfer loop by grub_ata_pio_read ().
41258
41259 2009-01-19 Christian Franke <franke@computer.org>
41260
41261 * disk/ata.c (GRUB_ATAPI_REG_*): New defines.
41262 (GRUB_ATAPI_IREASON_*): Likewise.
41263 (grub_ata_pio_write): Fix timeout error return.
41264 (grub_atapi_identify): Add grub_ata_wait () after cmd.
41265 (grub_atapi_wait_drq): New function.
41266 (grub_atapi_packet): New parameter `size'.
41267 Use grub_atapi_wait_drq () and direct write instead of
41268 grub_ata_pio_write ().
41269 (grub_atapi_read): Replace grub_ata_pio_read () by a loop which
41270 reads the number of bytes requested by the device for each DRQ
41271 assertion.
41272 (grub_atapi_write): Remove old implementation, return not
41273 implemented instead.
41274
41275 2009-01-19 Christian Franke <franke@computer.org>
41276
41277 * disk/scsi.c (grub_scsi_read10): Use scsi->blocksize instead
41278 of 512 to calculate data size.
41279 (grub_scsi_read12): Likewise.
41280 (grub_scsi_write10): Likewise.
41281 (grub_scsi_write12): Likewise.
41282 (grub_scsi_read): Adjust size according to blocksize.
41283 Add checks for invalid blocksize and unaligned transfer.
41284
41285 2009-01-19 Vesa Jääskeläinen <chaac@nic.fi>
41286
41287 * font/font.c (grub_font_loader_init): Re-position unknown glyph.
41288
41289 * term/gfxterm.c (write_char): Fix background rendering for wide
41290 width glyphs.
41291
41292 2009-01-19 Robert Millan <rmh@aybabtu.com>
41293
41294 * config.guess: Update to latest version from config git.
41295 * config.sub: Likewise.
41296
41297 2009-01-17 Felix Zielcke <fzielcke@z-51.de>
41298
41299 * Makefile.in: Change font compilation to use new grub-mkfont instead
41300 of java version.
41301
41302 * util/fonttool/src/org/gnu/grub/fonttool/BDFLoader.java: Remove.
41303 * util/fonttool/src/org/gnu/grub/fonttool/CharDefs.java: Likewise.
41304 * util/fonttool/src/org/gnu/grub/fonttool/CharacterRange.java: Likewise.
41305 * util/fonttool/src/org/gnu/grub/fonttool/CharacterRange.java: Likewise.
41306 * util/fonttool/src/org/gnu/grub/fonttool/Converter.java: Likewise.
41307 * util/fonttool/src/org/gnu/grub/fonttool/Font.java: Likewise.
41308 * util/fonttool/src/org/gnu/grub/fonttool/Glyph.java: Likewise.
41309 * util/fonttool/src/org/gnu/grub/fonttool/PFF2Sections.java: Likewise.
41310 * util/fonttool/src/org/gnu/grub/fonttool/PFF2Writer.java: Likewise.
41311
41312 2009-01-16 Christian Franke <franke@computer.org>
41313
41314 * disk/ata.c (enum grub_ata_commands): Remove EXEC_DEV_DIAGNOSTICS.
41315 (enum grub_ata_timeout_milliseconds): New enum.
41316 (grub_ata_wait_status): Add parameter milliseconds.
41317 (grub_ata_cmd): Remove variable `err'. Remove wait for !DRQ to allow
41318 recovery from timed-out commands.
41319 (grub_ata_pio_read): Add parameter milliseconds. Fix error return,
41320 return grub_errno instead of REG_ERROR.
41321 (grub_ata_pio_write): Add parameter milliseconds.
41322 (grub_atapi_identify): Fix size of ATAPI IDENTIFY sector.
41323 Pass milliseconds to grub_ata_wait_status () and
41324 grub_ata_pio_read ().
41325 (grub_atapi_packet): Pass milliseconds to grub_ata_pio_write ().
41326 (grub_ata_identify): Remove variable `ataerr'. Pass milliseconds to
41327 grub_ata_wait_status (). Fix IDENTIFY timeout check.
41328 (grub_ata_device_initialize): Remove EXECUTE DEVICE DIAGNOSTICS.
41329 It is not suitable for device detection, because DEV bit is ignored,
41330 the command may run too long, and not all devices set the signature
41331 properly.
41332 (grub_ata_pciinit): Clear grub_errno before grub_ata_device_initialize ().
41333 (grub_ata_setaddress): Pass milliseconds to grub_ata_wait_status ().
41334 Fix device selection, DEV bit must be set first to address the registers
41335 of the correct device.
41336 (grub_ata_readwrite): Pass milliseconds to grub_ata_wait_status () and
41337 grub_ata_pio_read/write ().
41338 (grub_atapi_read): Pass milliseconds to grub_ata_pio_read ().
41339 (grub_atapi_write): Pass milliseconds to grub_ata_pio_write ().
41340
41341 2009-01-13 Carles Pina i Estany <carles@pina.cat>
41342
41343 * util/grub-editenv.c (main): Use fseeko(), not fseek().
41344
41345 2009-01-13 Bean <bean123ch@gmail.com>
41346
41347 * util/grub-mkfont.c (write_font): forget to remove some debug code.
41348
41349 2009-01-13 Bean <bean123ch@gmail.com>
41350
41351 * Makefile.in: (enable_grub_mkfont): New variable.
41352 (freetype_cflags): Likewise.
41353 (freetype_libs): Likewise.
41354
41355 * common.rmk (bin_UTILITIES): Add `grub-mkfont' if requested.
41356 (grub_mkfont_SOURCES): New variable.
41357 (grub_mkfont_CFLAGS): Likewise.
41358 (grub_mkfont_LDFLAGS): Likewise.
41359
41360 * configure.ac (--enable-grub-mkfont): New option. Check for freetype2
41361 library if `--enable-grub-mkfont' is requested.
41362 (enable_grub_mkfont): New variable.
41363 (freetype_cflags): Likewise.
41364 (freetype_libs): Likewise.
41365
41366 * util/grub-mkfont.c: New file.
41367
41368 2009-01-12 Christian Franke <franke@computer.org>
41369
41370 * disk/ata.c (grub_ata_pciinit): Fix bit numbers of compatibility
41371 mode check. Fix setting of compat_use[].
41372
41373 2009-01-10 Robert Millan <rmh@aybabtu.com>
41374
41375 Update a few copyright years which we forgot to do in 2008 (only for
41376 files whose changes made in 2008 were copyright-significant)
41377
41378 * Makefile.in: Add 2008 to Copyright line.
41379 * disk/ieee1275/ofdisk.c: Likewise.
41380 * disk/efi/efidisk.c: Likewise.
41381 * kern/dl.c: Likewise.
41382 * kern/sparc64/ieee1275/init.c: Likewise.
41383 * kern/mm.c: Likewise.
41384 * kern/efi/mm.c: Likewise.
41385 * boot/i386/pc/boot.S: Likewise.
41386 * genfslist.sh: Likewise.
41387 * fs/iso9660.c: Likewise.
41388 * fs/hfs.c: Likewise.
41389 * fs/jfs.c: Likewise.
41390 * fs/minix.c: Likewise.
41391 * fs/ufs.c: Likewise.
41392 * gensymlist.sh.in: Likewise.
41393 * genkernsyms.sh.in: Likewise.
41394 * include/grub/misc.h: Likewise.
41395 * include/grub/types.h: Likewise.
41396 * include/grub/symbol.h: Likewise.
41397 * include/grub/elf.h: Likewise.
41398 * include/grub/kernel.h: Likewise.
41399 * include/grub/disk.h: Likewise.
41400 * include/grub/dl.h: Likewise.
41401 * include/grub/i386/linux.h: Likewise.
41402 * include/grub/i386/pc/biosdisk.h: Likewise.
41403 * include/grub/efi/api.h: Likewise.
41404 * include/grub/efi/pe32.h: Likewise.
41405 * include/grub/util/misc.h: Likewise.
41406 * normal/execute.c: Likewise.
41407 * normal/arg.c: Likewise.
41408 * normal/completion.c: Likewise.
41409 * normal/lexer.c: Likewise.
41410 * normal/parser.y: Likewise.
41411 * normal/misc.c: Likewise.
41412 * commands/i386/pc/vbeinfo.c: Likewise.
41413 * commands/hexdump.c: Likewise.
41414 * commands/terminal.c: Likewise.
41415 * commands/ls.c: Likewise.
41416 * commands/help.c: Likewise.
41417 * partmap/pc.c: Likewise.
41418 * loader/efi/chainloader.c: Likewise.
41419 * loader/multiboot_loader.c: Likewise.
41420 * loader/i386/pc/multiboot2.c: Likewise.
41421 * term/efi/console.c: Likewise.
41422 * term/i386/pc/serial.c: Likewise.
41423 * util/lvm.c: Likewise.
41424 * util/console.c: Likewise.
41425 * util/i386/efi/grub-mkimage.c: Likewise.
41426 * util/raid.c: Likewise.
41427
41428 2009-01-06 Vesa Jääskeläinen <chaac@nic.fi>
41429
41430 * commands/videotest.c: Removed include to grub/machine/memory.h.
41431
41432 * conf/i386-pc.rmk (pkglib_MODULES): Removed video.mod, gfxterm.mod,
41433 videotest.mod, bitmap.mod, tga.mod, jpeg.mod, png.mod.
41434 (video_mod_SOURCES): Removed.
41435 (video_mod_CFLAGS): Likewise.
41436 (video_mod_LDFLAGS): Likewise.
41437 (gfxterm_mod_SOURCES): Likewise.
41438 (gfxterm_mod_CFLAGS): Likewise.
41439 (gfxterm_mod_LDFLAGS): Likewise.
41440 (videotest_mod_SOURCES): Likewise.
41441 (videotest_mod_CFLAGS): Likewise.
41442 (videotest_mod_LDFLAGS): Likewise.
41443 (bitmap_mod_SOURCES): Likewise.
41444 (bitmap_mod_CFLAGS): Likewise.
41445 (bitmap_mod_LDFLAGS): Likewise.
41446 (tga_mod_SOURCES): Likewise.
41447 (tga_mod_CFLAGS): Likewise.
41448 (tga_mod_LDFLAGS): Likewise.
41449 (jpeg_mod_SOURCES): Likewise.
41450 (jpeg_mod_CFLAGS): Likewise.
41451 (jpeg_mod_LDFLAGS): Likewise.
41452 (png_mod_SOURCES): Likewise.
41453 (png_mod_CFLAGS): Likewise.
41454 (png_mod_LDFLAGS): Likewise.
41455
41456 * conf/common.rmk (pkglib_MODULES): Added video.mod, videotest.mod,
41457 bitmap.mod, tga.mod, jpeg.mod, png.mod, font.mod, gfxterm.mod
41458 (video_mod_SOURCES): Added.
41459 (video_mod_CFLAGS): Likewise.
41460 (video_mod_LDFLAGS): Likewise.
41461 (videotest_mod_SOURCES): Likewise.
41462 (videotest_mod_CFLAGS): Likewise.
41463 (videotest_mod_LDFLAGS): Likewise.
41464 (bitmap_mod_SOURCES): Likewise.
41465 (bitmap_mod_CFLAGS): Likewise.
41466 (bitmap_mod_LDFLAGS): Likewise.
41467 (tga_mod_SOURCES): Likewise.
41468 (tga_mod_CFLAGS): Likewise.
41469 (tga_mod_LDFLAGS): Likewise.
41470 (jpeg_mod_SOURCES): Likewise.
41471 (jpeg_mod_CFLAGS): Likewise.
41472 (jpeg_mod_LDFLAGS): Likewise.
41473 (png_mod_SOURCES): Likewise.
41474 (png_mod_CFLAGS): Likewise.
41475 (png_mod_LDFLAGS): Likewise.
41476 (gfxterm_mod_SOURCES): Likewise.
41477 (gfxterm_mod_CFLAGS): Likewise.
41478 (gfxterm_mod_LDFLAGS): Likewise.
41479
41480 * term/gfxterm.c: Removed include to grub/machine/memory.h,
41481 grub/machine/console.h.
41482
41483 2009-01-04 Jerone Young <jerone@gmail.com>
41484
41485 Make on screen instructions clearer
41486
41487 Based on patch created by Jidanni <jidanni@jidanni.org>
41488
41489 * normal/menu.c: print clearer instructions on the screen
41490
41491 2009-01-02 Colin D Bennett <colin@gibibit.com>
41492
41493 New font engine.
41494
41495 Additional changes by Vesa Jääskeläinen <chaac@nic.fi> to adapt to
41496 build system and fixed gfxterm.c to work with different sized fonts.
41497
41498 * configure.ac: Changed UNIFONT_HEX to UNIFONT_BDF.
41499
41500 * configure: Re-generated.
41501
41502 * DISTLIST: Removed font/manager.c.
41503 Added font/font.c.
41504 Added font/font_cmd.c.
41505
41506 * Makefile.in: Changed UNIFONT_HEX to UNIFONT_BDF. Added Font tool
41507 compilation.
41508
41509 * include/grub/misc.h (grub_utf8_to_ucs4): Changed prototype. Changed users.
41510
41511 * kern/misc.c (grub_utf8_to_ucs4): Changed prototype.
41512
41513 * kern/term.c: Changed users of grub_utf8_to_ucs4.
41514
41515 * normal/menu.c: Likewise.
41516
41517 * conf/common.rmk (font_mod_SOURCES): Removed font/manager.c.
41518 (font_mod_SOURCES): Added font/font_cmd.c, font/font.c.
41519
41520 * include/grub/font.h: Replaced with new file.
41521
41522 * include/grub/video.h (GRUB_VIDEO_MODE_TYPE_ALPHA): Changed value.
41523 (GRUB_VIDEO_MODE_TYPE_DOUBLE_BUFFERED): Likewise.
41524 (GRUB_VIDEO_MODE_TYPE_COLOR_MASK): Likewise.
41525 (GRUB_VIDEO_MODE_TYPE_1BIT_BITMAP): Added.
41526 (grub_video_blit_format): Added GRUB_VIDEO_BLIT_FORMAT_1BIT_PACKED.
41527 (grub_video_mode_info): Added bg_red, bg_green, bg_blue, bg_alpha,
41528 fg_red, fg_green, fg_blue, fg_alpha.
41529 (grub_video_adapter): Removed blit_glyph.
41530 (grub_video_blit_glyph): Removed.
41531
41532 * font/manager.c: Removed file.
41533
41534 * font/font.c: New file.
41535
41536 * font/font_cmd.c: Likewise.
41537
41538 * video/video.c (grub_video_blit_glyph): Removed.
41539
41540 * video/i386/pc/vbe.c (grub_video_vbe_map_rgb): Added 1-bit support.
41541 (grub_video_vbe_map_rgba): Likewise.
41542 (grub_video_vbe_unmap_color_int): Likewise.
41543 (grub_video_vbe_blit_glyph): Removed.
41544 (grub_video_vbe_adapter): Removed blit_glyph.
41545
41546 * video/i386/pc/vbeutil.c (get_data_ptr): Added 1-bit support.
41547 (get_pixel): Likewise.
41548 (set_pixel): Likewise.
41549
41550 * commands/videotest.c (grub_cmd_videotest): Added more tests for fonts.
41551
41552 * term/gfxterm.c: Adapted to new font engine.
41553
41554 * term/i386/pc/vesafb.c: Marked as deprecated. Made it compile.
41555
41556 * term/i386/pc/vga.c: Likewise.
41557
41558 * util/fonttool/src/org/gnu/grub/fonttool/BDFLoader.java: New file.
41559
41560 * util/fonttool/src/org/gnu/grub/fonttool/CharDefs.java: Likewise.
41561
41562 * util/fonttool/src/org/gnu/grub/fonttool/CharacterRange.java: Likewise.
41563
41564 * util/fonttool/src/org/gnu/grub/fonttool/CharacterRange.java: Likewise.
41565
41566 * util/fonttool/src/org/gnu/grub/fonttool/Converter.java: Likewise.
41567
41568 * util/fonttool/src/org/gnu/grub/fonttool/Font.java: Likewise.
41569
41570 * util/fonttool/src/org/gnu/grub/fonttool/Glyph.java: Likewise.
41571
41572 * util/fonttool/src/org/gnu/grub/fonttool/PFF2Sections.java: Likewise.
41573
41574 * util/fonttool/src/org/gnu/grub/fonttool/PFF2Writer.java: Likewise.
41575
41576 * util/grub.d/00_header.in: Changed to use new loadfont command.
41577
41578 * util/grub-mkconfig_lib.in: Changed font extension.
41579
41580 2008-12-28 Felix Zielcke <fzielcke@z-51.de>
41581
41582 * util/getroot.c (grub_util_get_grub_dev): Add support for
41583 /dev/md/dNNpNN style partitionable mdraid devices.
41584
41585 2008-12-12 Alex Smith <alex@alex-smith.me.uk>
41586
41587 * fs/i386/pc/pxe.c (grub_pxefs_open): Handle the one open connection
41588 at a time limit of the PXE TFTP API correctly.
41589 (grub_pxefs_close): Likewise.
41590
41591 2008-11-29 Robert Millan <rmh@aybabtu.com>
41592
41593 * disk/ata.c (grub_ata_pciinit): Handle errors raised by
41594 grub_ata_device_initialize() calls.
41595
41596 2008-11-28 Krzysztof Smiechowicz <deadwood@wp.pl>
41597
41598 * fs/affs.c (grub_affs_iterate_dir): Return failure when directory
41599 iteration failed.
41600 * fs/sfs.c (grub_sfs_iterate_dir): Likewise.
41601
41602 2008-11-28 Robert Millan <rmh@aybabtu.com>
41603
41604 Fix build on powerpc-ieee1275. Based on patch created by
41605 Manoel Abranches <mrabran@linux.vnet.ibm.com>.
41606 * conf/powerpc-ieee1275.rmk (kernel_elf_SOURCES): Add
41607 `kern/ieee1275/mmap.c'.
41608 * include/grub/powerpc/ieee1275/memory.h: New file.
41609
41610 Provide grub-install on coreboot.
41611 * conf/i386-coreboot.rmk (sbin_SCRIPTS): Add `grub-install'.
41612 (grub_install_SOURCES): New variable.
41613 * util/i386/pc/grub-install.in: Add a few condition checks to make it
41614 usable on coreboot.
41615
41616 2008-11-25 Felix Zielcke <fzielcke@z-51.de>
41617
41618 * util/grub-fstest.c (grub_term_get_current_input): Change return type
41619 to `grub_term_input_t'.
41620 (grub_term_get_current_output): Change return type to
41621 `grub_term_output_t'.
41622
41623 2008-11-22 Robert Millan <rmh@aybabtu.com>
41624
41625 Fix breakage on coreboot due to declaration mismatch.
41626 * term/i386/pc/vga_text.c (grub_vga_text_init_fini): New function.
41627 (grub_vga_text_term): Use grub_vga_text_init_fini() instead of
41628 grub_vga_text_cls().
41629
41630 * kern/i386/loader.S (grub_multiboot_backward_relocator): Improve
41631 comments. Avoid copying one more byte than necessary (just in case).
41632
41633 * conf/powerpc-ieee1275.rmk (kernel_elf_LDFLAGS): Change link address
41634 to 0x200000 (avoids trouble with some OFW implementations, and matches
41635 with the one in Yaboot).
41636 Reported by Manoel Abranches
41637
41638 2008-11-20 Robert Millan <rmh@aybabtu.com>
41639
41640 * kern/i386/coreboot/init.c (grub_time_tics): Remove variable.
41641 (grub_get_rtc, grub_exit): Abort with grub_fatal() if called.
41642
41643 * util/grub-mkconfig_lib.in (grub_warn): New function.
41644 (convert_system_path_to_grub_path): Use grub_warn() when issuing
41645 warnings, to obtain consistent formatting.
41646 * util/grub.d/00_header.in: Likewise.
41647 * util/update-grub_lib.in: Likewise.
41648
41649 * loader/i386/linux.c (allocate_pages): Fix a warning.
41650 Move comment text to `#error' stanza.
41651
41652 Harmonize ieee1275's grub_available_iterate() with the generic
41653 grub_machine_mmap_iterate() interface (fixes a recently-introduced
41654 build problem on i386-ieee1275):
41655 * kern/ieee1275/openfw.c (grub_available_iterate): Moved from here ...
41656 * kern/ieee1275/mmap.c (grub_machine_mmap_iterate): ... here. Add third
41657 parameter `type'. Update all users of this function.
41658 * conf/i386-ieee1275.rmk (kernel_elf_SOURCES): Add
41659 `kern/ieee1275/mmap.c'.
41660 * kern/ieee1275/init.c
41661 * include/grub/ieee1275/ieee1275.h (grub_available_iterate): Replace
41662 with ...
41663 (grub_machine_mmap_iterate): ... this.
41664 * include/grub/i386/pc/memory.h (grub_machine_mmap_iterate): Change
41665 return type to `grub_err_t'. Update all implementations of this
41666 function prototype.
41667 * include/grub/i386/coreboot/memory.h (grub_machine_mmap_iterate):
41668 Likewise.
41669
41670 Add `lsmmap' command (lists firmware-provided memory map):
41671 * commands/lsmmap.c: New file.
41672 * conf/i386-pc.rmk (pkglib_MODULES): Add `lsmmap.mod'.
41673 (lsmmap_mod_SOURCES, lsmmap_mod_CFLAGS, lsmmap_mod_LDFLAGS): New
41674 variables.
41675 * conf/powerpc-ieee1275.rmk: Likewise.
41676 * conf/i386-coreboot.rmk: Likewise.
41677 * conf/i386-ieee1275.rmk: Likewise.
41678
41679 2008-11-19 Robert Millan <rmh@aybabtu.com>
41680
41681 * loader/i386/pc/linux.c (grub_rescue_cmd_initrd): Fix a typo.
41682 * loader/i386/linux.c (grub_rescue_cmd_initrd): Implement a few needed
41683 constraints to initrd allocation (based on code from
41684 loader/i386/pc/linux.c). Without them, initrd was allocated too high
41685 for Linux to find it.
41686
41687 2008-11-14 Robert Millan <rmh@aybabtu.com>
41688
41689 * fs/cpio.c (grub_cpio_open): Compare `name' and `fn' by hand in
41690 order to cope with duplicate slashes.
41691
41692 2008-11-14 Robert Millan <rmh@aybabtu.com>
41693
41694 * include/grub/i386/coreboot/memory.h (GRUB_MEMORY_MACHINE_LOWER_SIZE):
41695 Redefine to match with GRUB_MEMORY_MACHINE_UPPER_START (0x100000). We
41696 don't want to mess with lower memory, because it is used in the Linux
41697 loader.
41698
41699 * loader/i386/linux.c (allocate_pages): Allocate `real_mode_mem' in
41700 an appropriate place in lower memory, between 0x10000 and 0x90000,
41701 like loader/i386/efi/linux.c does. Linux often panics if real_mode_mem
41702 is in our heap (probably as a result of it being corrupted during
41703 decompression). Add #error instance with comment to explain why this
41704 loader isn't currently usable on PC/BIOS.
41705
41706 2008-11-14 Robert Millan <rmh@aybabtu.com>
41707
41708 * term/i386/pc/serial.c [! GRUB_MACHINE_PCBIOS]
41709 (GRUB_SERIAL_PORT_NUM): Fix miscalculation.
41710
41711 2008-11-12 Robert Millan <rmh@aybabtu.com>
41712
41713 Make loader/i386/linux.c buildable on i386-pc (although disabled).
41714
41715 * include/grub/i386/pc/init.h: Include `<grub/machine/memory.h>'.
41716 (struct grub_machine_mmap_entry, grub_machine_mmap_iterate): Move
41717 from here ...
41718 * include/grub/i386/pc/memory.h: ... to here.
41719
41720 2008-11-12 Robert Millan <rmh@aybabtu.com>
41721
41722 Fix build problems on i386-ieee1275 and *-efi (introduced by vga_text
41723 split).
41724
41725 * include/grub/i386/pc/console.h: Include `<grub/i386/vga_common.h>'.
41726 (grub_console_cur_color, grub_console_real_putchar)
41727 (grub_console_putchar, grub_console_getcharwidth, grub_console_getwh)
41728 (grub_console_setcolorstate, grub_console_setcolor)
41729 (grub_console_getcolor): Move from here ...
41730 * include/grub/i386/vga_common.h: ... to here (new file).
41731
41732 * term/i386/pc/vga_text.c: Replace `<grub/machine/console.h>' with
41733 `<grub/i386/vga_common.h>' and `<grub/cpu/io.h>' with
41734 `<grub/i386/io.h>'.
41735 * term/i386/vga_common.c: Replace `<grub/machine/console.h>' with
41736 `<grub/i386/vga_common.h>'.
41737
41738 2008-11-12 Robert Millan <rmh@aybabtu.com>
41739
41740 * conf/i386-pc.rmk (kernel_img_SOURCES): Add `term/i386/vga_common.c'.
41741 * conf/i386.rmk (pkglib_MODULES): Add `vga_text.mod'.
41742 (vga_text_mod_SOURCES, vga_text_mod_CFLAGS, vga_text_mod_LDFLAGS): New
41743 variables.
41744 * conf/i386-coreboot.rmk (kernel_elf_SOURCES): Replace
41745 `term/i386/pc/console.c' with `term/i386/vga_common.c'.
41746
41747 * kern/i386/coreboot/init.c (grub_machine_init): Replace call to
41748 grub_console_init() with call to grub_vga_text_init().
41749 (grub_machine_fini): Replace call to
41750 grub_console_fini() with call to grub_vga_text_fini() and
41751 grub_at_keyboard_fini().
41752
41753 * include/grub/i386/pc/console.h: Include `<grub/term.h>'.
41754 (grub_console_putchar, grub_console_getcharwidth, grub_console_getwh)
41755 (grub_console_setcolorstate, grub_console_setcolor)
41756 (grub_console_getcolor): New function prototypes.
41757
41758 * term/i386/pc/vga_text.c: Include `<grub/dl.h>'.
41759 (grub_vga_text_getxy, grub_vga_text_gotoxy, grub_vga_text_cls)
41760 (grub_vga_text_setcursor): Static-ize.
41761 (grub_vga_text_term): New structure.
41762 (GRUB_MOD_INIT(vga_text), GRUB_MOD_FINI(vga_text)): New functions.
41763
41764 * term/i386/pc/console.c: Remove `<grub/machine/machine.h>'.
41765 (grub_console_cur_color, grub_console_standard_color)
41766 (grub_console_normal_color, grub_console_highlight_color)
41767 (map_char, grub_console_putchar, grub_console_getcharwidth)
41768 (grub_console_getwh, grub_console_setcolorstate, grub_console_setcolor)
41769 (grub_console_getcolor): Move from here ...
41770 * term/i386/vga_common.c: ... to here (same function names).
41771
41772 2008-11-12 Robert Millan <rmh@aybabtu.com>
41773
41774 Use newly-added Multiboot support in coreboot.
41775
41776 * conf/i386-coreboot.rmk (kernel_elf_SOURCES): Replace
41777 `kern/i386/coreboot/mmap.c' with `kern/i386/multiboot_mmap.c'.
41778
41779 * kern/i386/coreboot/startup.S: Enable Multiboot header, fix its
41780 alignment, set `MULTIBOOT_MEMORY_INFO' flag.
41781 (codestart): Store the MBI in `startup_multiboot_info' when we're
41782 being loaded using Multiboot.
41783
41784 * kern/i386/coreboot/init.c (grub_machine_init): Move
41785 grub_at_keyboard_init() call to beginning of function (useful for
41786 debugging). Call grub_machine_mmap_init() before attempting to use
41787 grub_machine_mmap_iterate().
41788 (grub_lower_mem, grub_upper_mem): Move from here ...
41789 * kern/i386/multiboot_mmap.c (grub_lower_mem, grub_upper_mem): ... to
41790 here (new file).
41791
41792 * include/grub/i386/coreboot/memory.h (grub_machine_mmap_init): New
41793 function prototype.
41794
41795 2008-11-12 Robert Millan <rmh@aybabtu.com>
41796
41797 Fix a regression introduced by the at_keyboard.mod split. Because
41798 some terminals are default on some platforms and non-default on
41799 others, the first terminal being registered determines which is
41800 going to be default.
41801
41802 * kern/term.c (grub_term_register_input): If this is the first
41803 terminal being registered, set it as the current one.
41804 (grub_term_register_output): Likewise.
41805
41806 * term/efi/console.c (grub_console_init): Do not call
41807 grub_term_set_current_output() or grub_term_set_current_input().
41808 * term/ieee1275/ofconsole.c (grub_console_init): Likewise.
41809 * term/i386/pc/console.c (grub_console_init): Likewise.
41810 (grub_console_fini): Do not call grub_term_set_current_input()
41811 (but leave grub_term_set_current_output() to restore text mode).
41812
41813 2008-11-10 Robert Millan <rmh@aybabtu.com>
41814
41815 * util/grub.d/00_header.in: Add backward compatibility check for
41816 versions of terminal.mod that don't understand `terminal_input' or
41817 `terminal_output'.
41818
41819 2008-11-09 Robert Millan <rmh@aybabtu.com>
41820
41821 * commands/terminal.c (GRUB_MOD_FINI(terminal)): Unregister
41822 `terminal_input' / `terminal_output', not `terminal'.
41823
41824 2008-11-08 Robert Millan <rmh@aybabtu.com>
41825
41826 * Makefile.in (include_DATA): Fix srcdir=. assumption.
41827 (DISTCLEANFILES): Add `build_env.mk'.
41828
41829 2008-11-08 Robert Millan <rmh@aybabtu.com>
41830
41831 * term/i386/pc/vesafb.c (grub_vesafb_term): Change type to
41832 `struct grub_term_output'. Remove `.checkkey' and `.getkey'
41833 members. Update all users.
41834 * util/console.c (grub_ncurses_term): Split in ...
41835 (grub_ncurses_term_input): ... this, and ...
41836 (grub_ncurses_term_output): ... this. Update all users.
41837 * term/ieee1275/ofconsole.c: Remove stale `#endif'.
41838
41839 2008-11-08 Robert Millan <rmh@aybabtu.com>
41840
41841 * Makefile.in (PKGLIB): Add $(pkglib_BUILDDIR).
41842 (PKGDATA): Add $(pkgdata_SRCDIR).
41843 (pkglib_BUILDDIR): New variable.
41844 (pkgdata_SRCDIR): New variable.
41845 (build_env.mk): New target.
41846 (include_DATA): New variable.
41847 (install-local): Install $(include_DATA) files in $(includedir).
41848
41849 2008-11-07 Pavel Roskin <proski@gnu.org>
41850
41851 * gendistlist.sh: Use C locale for sorting to ensure consistent
41852 output on all systems.
41853
41854 * util/grub.d/00_header.in: Remove incorrect space before
41855 "serial".
41856
41857 2008-11-07 Robert Millan <rmh@aybabtu.com>
41858
41859 * include/multiboot2.h (struct multiboot_header): Add `flags' member as
41860 per specification.
41861 * loader/multiboot2.c (grub_multiboot2): Fix Multiboot2 header check.
41862 * loader/multiboot_loader.c (find_multi_boot2_header): New function
41863 (based on find_multi_boot1_header).
41864 (grub_rescue_cmd_multiboot_loader): Check for Multiboot2 header,
41865 using find_multi_boot2_header(), and abort if neither Multiboot or
41866 Multiboot headers were found.
41867
41868 2008-11-07 Robert Millan <rmh@aybabtu.com>
41869
41870 Modularize at_keyboard.mod:
41871
41872 * conf/i386.rmk (pkglib_MODULES): Add `at_keyboard.mod'.
41873 (at_keyboard_mod_SOURCES, at_keyboard_mod_CFLAGS)
41874 (at_keyboard_mod_LDFLAGS): New variables.
41875
41876 Actual terminal split:
41877
41878 * include/grub/term.h (struct grub_term): Split in ...
41879 (struct grub_term_input): ... this, and ...
41880 (struct grub_term_output): ... this. Update all users.
41881 (grub_term_set_current): Split in ...
41882 (grub_term_set_current_input): ... this, and ...
41883 (grub_term_set_current_output): ... this.
41884 (grub_term_get_current): Split in ...
41885 (grub_term_get_current_input): ... this, and ...
41886 (grub_term_get_current_output): ... this.
41887 (grub_term_register): Split in ...
41888 (grub_term_register_input): ... this, and ...
41889 (grub_term_register_output): ... this.
41890 (grub_term_unregister): Split in ...
41891 (grub_term_unregister_input): ... this, and ...
41892 (grub_term_unregister_output): ... this.
41893 (grub_term_iterate): Split in ...
41894 (grub_term_iterate_input): ... this, and ...
41895 (grub_term_iterate_output): ... this.
41896
41897 * kern/term.c (grub_term_list): Split in ...
41898 (grub_term_list_input): ... this, and ...
41899 (grub_term_list_output): ... this. Update all users.
41900 (grub_cur_term): Split in ...
41901 (grub_cur_term_input): ... this, and ...
41902 (grub_cur_term_output): ... this. Update all users.
41903 (grub_term_set_current): Split in ...
41904 (grub_term_set_current_input): ... this, and ...
41905 (grub_term_set_current_output): ... this.
41906 (grub_term_get_current): Split in ...
41907 (grub_term_get_current_input): ... this, and ...
41908 (grub_term_get_current_output): ... this.
41909 (grub_term_register): Split in ...
41910 (grub_term_register_input): ... this, and ...
41911 (grub_term_register_output): ... this.
41912 (grub_term_unregister): Split in ...
41913 (grub_term_unregister_input): ... this, and ...
41914 (grub_term_unregister_output): ... this.
41915 (grub_term_iterate): Split in ...
41916 (grub_term_iterate_input): ... this, and ...
41917 (grub_term_iterate_output): ... this.
41918
41919 * kern/misc.c (grub_abort): Split use of grub_term_get_current() into
41920 a check for input and one for output (and only attempt to get keys
41921 from user when input works).
41922
41923 * util/grub-probe.c (grub_term_get_current): Split in ...
41924 (grub_term_get_current_input): ... this, and ...
41925 (grub_term_get_current_output): ... this.
41926 * util/grub-fstest.c: Likewise.
41927 * util/i386/pc/grub-setup.c: Likewise.
41928 * util/grub-editenv.c: Likewise.
41929
41930 Portability adjustments:
41931
41932 * conf/i386-ieee1275.rmk (kernel_elf_SOURCES): Remove
41933 `term/i386/pc/at_keyboard.c'.
41934 * kern/ieee1275/init.c [__i386__] (grub_machine_init): Remove call to
41935 grub_keyboard_controller_init() (now handled by terminal .init).
41936 * kern/i386/coreboot/init.c (grub_machine_init): Add call to
41937 grub_at_keyboard_init().
41938 * include/grub/i386/ieee1275/console.h (grub_keyboard_controller_init)
41939 (grub_console_checkkey, grub_console_getkey): Remove (now provided by
41940 at_keyboard.mod via input terminal interface).
41941 * include/grub/i386/coreboot/console.h: Convert into a stub for
41942 `<grub/i386/pc/console.h>'.
41943
41944 Migrate full terminals to new API:
41945
41946 * term/efi/console.c (grub_console_term): Split into ...
41947 (grub_console_term_input): ... this, and ...
41948 (grub_console_term_output): ... this. Update all users.
41949 * term/ieee1275/ofconsole.c: Remove __i386__ hack.
41950 (grub_ofconsole_init): Split into ...
41951 (grub_ofconsole_init_input): ... this, and ...
41952 (grub_ofconsole_init_output): ... this.
41953 (grub_ofconsole_term): Split into ...
41954 (grub_ofconsole_term_input): ... this, and ...
41955 (grub_ofconsole_term_output): ... this. Update all users.
41956 * term/i386/pc/serial.c (grub_serial_term): Split into ...
41957 (grub_serial_term_input): ... this, and ...
41958 (grub_serial_term_output): ... this. Update all users.
41959 * term/i386/pc/console.c (grub_console_term): Split into ...
41960 (grub_console_term_input): ... this, and ...
41961 (grub_console_term_output): ... this. Update all users.
41962 (grub_console_term_input): Only enable it on PC/BIOS platform.
41963 (grub_console_init): Remove grub_keyboard_controller_init() call.
41964
41965 Migrate input terminals to new API:
41966
41967 * term/i386/pc/at_keyboard.c: Replace `cpu' and `machine' with
41968 `i386' and `i386/pc' to enable build on x86_64 (this driver is
41969 i386-specific anyway).
41970 (grub_console_checkkey): Rename to ...
41971 (grub_at_keyboard_checkkey): ... this. Static-ize. Update all
41972 users.
41973 (grub_keyboard_controller_orig): New variable.
41974 (grub_console_getkey): Rename to ...
41975 (grub_at_keyboard_getkey): ... this. Static-ize. Update all
41976 users.
41977 (grub_keyboard_controller_init): Static-ize. Save original
41978 controller value so that it can be restored ...
41979 (grub_keyboard_controller_fini): ... here (new function).
41980 (grub_at_keyboard_term): New structure.
41981 (GRUB_MOD_INIT(at_keyboard), GRUB_MOD_FINI(at_keyboard)): New
41982 functions.
41983
41984 Migrate output terminals to new API:
41985
41986 * term/i386/pc/vga.c (grub_vga_term): Change type to
41987 `struct grub_term_output'. Remove `.checkkey' and `.getkey'
41988 members. Update all users.
41989 * term/gfxterm.c (grub_video_term): Change type to
41990 `struct grub_term_output'. Remove `.checkkey' and `.getkey'
41991 members. Update all users.
41992 * include/grub/i386/pc/console.h (grub_console_checkkey)
41993 (grub_console_getkey): Do not export (no longer needed by gfxterm,
41994 etc).
41995
41996 Migrate `terminal' command and userland tools to new API:
41997
41998 * commands/terminal.c (grub_cmd_terminal): Split into ...
41999 (grub_cmd_terminal_input): ... this, and ...
42000 (grub_cmd_terminal_output): ... this.
42001 (GRUB_MOD_INIT(terminal)): Split `terminal' command in two commands:
42002 `terminal_input' and `terminal_output'.
42003 * util/grub.d/00_header.in: Adjust `terminal' calls to new
42004 `terminal_input' / `terminal_output' API.
42005 * util/grub-mkconfig.in: Export ${GRUB_TERMINAL_INPUT} and
42006 ${GRUB_TERMINAL_OUTPUT} instead of ${GRUB_TERMINAL} (and if user
42007 provided ${GRUB_TERMINAL}, convert it).
42008
42009 2008-11-04 Robert Millan <rmh@aybabtu.com>
42010
42011 * util/grub.d/10_freebsd.in: New file. Generate grub configuration
42012 for FreeBSD.
42013 * conf/common.rmk (grub-mkconfig_SCRIPTS): Add 10_freebsd.
42014
42015 2008-11-03 Bean <bean123ch@gmail.com>
42016
42017 * kern/elf.c (grub_elf32_load): Revert to previous code.
42018 (grub_elf64_load): Likewise.
42019
42020 * loader/i386/bsd.c (grub_bsd_elf32_hook): Change return address.
42021
42022 2008-11-01 Robert Millan <rmh@aybabtu.com>
42023
42024 * Makefile.in (CPPFLAGS): Fix builddir=. assumption.
42025 (TARGET_CPPFLAGS): Likewise.
42026 * genmk.rb (mod_src): Fix builddir=. and srcdir=. assumptions.
42027
42028 2008-11-01 Carles Pina i Estany <carles@pina.cat>
42029
42030 * normal/menu.c (run_menu): Add Previous and Next Page keys in menu.
42031
42032 2008-10-29 Guillem Jover <guillem.jover@nokia.com>
42033
42034 * disk/lvm.c (grub_lvm_scan_device): Fix error recovery by delaying the
42035 addition of objects until the code is not going to be able to fail.
42036
42037 2008-10-29 Guillem Jover <guillem.jover@nokia.com>
42038
42039 * disk/lvm.c (grub_lvm_scan_device): Fix possible NULL value handling
42040 (add a missing NULL check, and correct them by moving the pointer
42041 operations after the actual check).
42042
42043 2008-10-29 Robert Millan <rmh@aybabtu.com>
42044
42045 * util/i386/pc/grub-install.in: Handle empty string as output from
42046 make_system_path_relative_to_its_root().
42047
42048 2008-10-05 Hans Lambermont <hans@lambermont.dyndns.org>
42049
42050 * disk/lvm.c (grub_lvm_scan_device): Allocate buffer space for the
42051 circular metadata worst case scenario. If the metadata is circular
42052 then copy the wrap in place.
42053 * include/grub/lvm.h: Add GRUB_LVM_MDA_HEADER_SIZE, from the LVM2
42054 project lib/format_text/layout.h
42055 Circular metadata bug found and patch debugged by Jan Derk Gerlings.
42056
42057 2008-10-03 Felix Zielcke <fzielcke@z-51.de>
42058
42059 * util/i386/pc/grub-install.in: Source grub-mkconfig_lib instead of update-grub_lib.
42060
42061 2008-10-03 Felix Zielcke <fzielcke@z-51.de>
42062
42063 * util/update-grub_lib.in: Mention filename in warning message.
42064
42065 2008-09-29 Felix Zielcke <fzielcke@z-51.de>
42066
42067 * NEWS: Update for rename of update-grub to grub-mkconfig.
42068
42069 2008-09-29 Felix Zielcke <fzielcke@z-51.de>
42070
42071 * util/update-grub_lib.in: Copy to ...
42072 * util/grub-mkconfig_lib.in: ... this. Update all users.
42073 * util/update-grub_lib.in: Make it a stub to `grub-mkconfig_lib.in'.
42074 * util/update-grub.in: Rename to ...
42075 * util/grub-mkconfig.in: ... this. Update all users. Remove `-y'
42076 option. Add `--output' option to allow users to specify the generated
42077 configuration file. Default to stdout.
42078 (update_grub_dir): Rename to ...
42079 (grub_mkconfig_dir): ... this.
42080 (grub_cfg): Default to an empty string.
42081 * conf/common.rmk (update-grub): Rename to ...
42082 (grub-mkconfig): ... this.
42083 (update-grub_lib): Copy to ...
42084 (grub-mkconfig_lib): ... this.
42085 (update-grub_SCRIPTS): Copy to ...
42086 (grub-mkconfig_SCRIPTS): ... this. Update all users.
42087 (update-grub_DATA): Rename to ...
42088 (grub-mkconfig_DATA): ... this.
42089
42090 2008-09-28 Robert Millan <rmh@aybabtu.com>
42091
42092 * fs/iso9660.c (struct grub_iso9660_primary_voldesc): Rename `created'
42093 to `modified'. Add the real `created' field.
42094 (grub_iso9660_uuid): Use `modified' rather than `created' for
42095 constructing the UUID.
42096
42097 2008-09-28 Felix Zielcke <fzielcke@z-51.de>
42098
42099 fs/jfs.c (grub_jfs_find_file): Treat multiple slashes like one.
42100 Based on code from Tomas Ebenlendr <ebik@ucw.cz>.
42101
42102 2008-09-28 Bean <bean123ch@gmail.com>
42103
42104 * fs/ntfs.c (grub_ntfs_iterate_dir): Fix a bug in the previous patch.
42105 Thanks to Christian Franke for finding this bug.
42106
42107 2008-09-25 Robert Millan <rmh@aybabtu.com>
42108
42109 * util/grub-mkdevicemap.c (make_device_map): Actually replace all
42110 instances of grub_util_get_disk_name() (see previous commit).
42111
42112 2008-09-25 Robert Millan <rmh@aybabtu.com>
42113
42114 * conf/i386-pc.rmk (grub_mkdevicemap_SOURCES): Remove
42115 `util/i386/get_disk_name.c'.
42116 * conf/i386-efi.rmk: Likewise.
42117 * conf/x86_64-efi.rmk: Likewise.
42118 * conf/i386-coreboot.rmk: Likewise.
42119 * conf/i386-ieee1275.rmk: Likewise.
42120 * conf/powerpc-ieee1275.rmk (grub_mkdevicemap_SOURCES): Remove
42121 `util/ieee1275/get_disk_name.c'.
42122 * include/grub/util/misc.h (grub_util_get_disk_name): Remove.
42123 * util/ieee1275/get_disk_name.c: Remove file.
42124 * util/i386/get_disk_name.c: Remove file.
42125 * util/grub-mkdevicemap.c (make_device_map): Back to hardcoding
42126 "hd%d" for device.map entries, rather than using
42127 grub_util_get_disk_name().
42128
42129 2008-09-24 Carles Pina i Estany <carles@pina.cat>
42130
42131 * disk/dmraid_nvidia.c (grub_dmraid_nv_detect): Fix `unused parameter'
42132 warning.
42133 * commands/i386/pc/pxecmd.c (dmraid_nvidia): Likewise.
42134
42135 2008-09-24 Carles Pina i Estany <carles@pina.cat>
42136
42137 * include/grub/i386/pc/console.h (GRUB_TERM_NPAGE):
42138 Changed to 0x5100.
42139 (GRUB_TERM_PPAGE): Changed to 0x4900.
42140
42141 2008-09-24 Robert Millan <rmh@aybabtu.com>
42142
42143 * include/grub/powerpc/ieee1275/console.h (GRUB_CONSOLE_KEY_*): Remove
42144 macros (they were i386-pc specific).
42145 * include/grub/sparc64/ieee1275/console.h: Likewise.
42146 * include/grub/efi/console.h: Likewise.
42147
42148 2008-09-22 Bean <bean123ch@gmail.com>
42149
42150 * fs/ntfs.c (grub_ntfs_iterate_dir): Fix a rare case where $BITMAP is
42151 resident and in attribute list.
42152
42153 * include/grub/ntfs.h (BMP_LEN): Removed.
42154
42155 2008-09-22 Bean <bean123ch@gmail.com>
42156
42157 * disk/ata.c (grub_atapi_open): Initialize devfnd, no need to set
42158 scsi->name and scsi->luns, as they will be set in grub_scsi_open.
42159
42160 * disk/scsi.c (grub_scsi_open): Don't call p->close (scsi) here when
42161 error occurs, as grub_disk_open will call grub_disk_close, which will
42162 call p->close (scsi).
42163
42164 2008-09-21 Felix Zielcke <fzielcke@z-51.de>
42165
42166 * configure.ac (AC_INIT): Quote `GRUB' string and version number.
42167 (AC_PREREQ): Bumped to 2.59.
42168 (AC_TRY_COMPILE): Replace obsolete macro with ...
42169 (AC_COMPILE_IFELSE): ... this.
42170 * aclocal.m4 (AC_TRY_LINK): Replace obsolete macro with ...
42171 (AC_LINK_IFELSE): ... this.
42172
42173 2008-09-21 Felix Zielcke <fzielcke@z-51.de>
42174
42175 * autogen.sh: Add a call to `gendistlist.sh'.
42176
42177 2008-09-19 Christian Franke <franke@computer.org>
42178
42179 * aclocal.m4 (grub_CHECK_ENABLE_EXECUTE_STACK): New function.
42180 * configure.ac: Call grub_CHECK_ENABLE_EXECUTE_STACK.
42181 * include/grub/misc.h [NEED_ENABLE_EXECUTE_STACK]:
42182 Export __enable_execute_stack() to modules.
42183 * kern/misc.c [NEED_ENABLE_EXECUTE_STACK] (__enable_execute_stack):
42184 New function.
42185
42186 2008-09-09 Felix Zielcke <fzielcke@z-51.de>
42187
42188 * Makefile.in (RMKFILES): Add `i386.rmk' and `x86_64-efi.rmk'.
42189 Sort the list.
42190
42191 2008-09-09 Felix Zielcke <fzielcke@z-51.de>
42192
42193 * util/hostdisk.c: Replace #include <grub/util/biosdisk.h> with
42194 #include <grub/util/hostdisk.h>.
42195
42196 2008-09-08 Robert Millan <rmh@aybabtu.com>
42197
42198 * loader/i386/pc/multiboot.c (grub_multiboot_load_elf32): Skip
42199 segments when their filesz is zero (grub_file_read() interprets
42200 zero-size as "read until EOF", which results in memory corruption).
42201 Use `lowest_segment' rather than 0 for calculating the current
42202 segment load address.
42203
42204 2008-09-08 Robert Millan <rmh@aybabtu.com>
42205
42206 * util/hostdisk.c (open_device): Replace a grub_util_info() call
42207 with grub_dprintf("hostdisk", ...), as it was so verbose that it
42208 clobbered useful information.
42209
42210 2008-09-08 Robert Millan <rmh@aybabtu.com>
42211
42212 * include/grub/util/biosdisk.h: Move to ...
42213 * include/grub/util/hostdisk.h: ... here. Update all users.
42214 * util/biosdisk.c: Move to ...
42215 * util/hostdisk.c: ... here. Update all users.
42216
42217 2008-09-07 Robert Millan <rmh@aybabtu.com>
42218
42219 * loader/i386/pc/multiboot.c (mmap_addr, mmap_length): Remove
42220 variables.
42221 (grub_multiboot): Move `mbi' allocation upwards, so that mmap address
42222 and length can be stored directly in the `mbi->mmap_addr' and
42223 `mbi->mmap_length' struct fields.
42224
42225 2008-09-07 Robert Millan <rmh@aybabtu.com>
42226
42227 * conf/i386.rmk: New file. Provides declaration for building
42228 `cpuid.mod'.
42229 * conf/i386-pc.rmk (pkglib_MODULES): Remove `cpuid.mod'.
42230 (cpuid_mod_SOURCES, cpuid_mod_CFLAGS, cpuid_mod_LDFLAGS): Remove
42231 variables.
42232 Include `conf/i386.mk'.
42233 * conf/i386-efi.rmk: Likewise.
42234 * conf/x86_64-efi.rmk: Likewise.
42235 * conf/i386-coreboot.rmk: Likewise.
42236 * conf/i386-ieee1275.rmk: Likewise.
42237
42238 2008-09-07 Vesa Jääskeläinen <chaac@nic.fi>
42239
42240 Based on patch created by Colin D Bennett <colin@gibibit.com>.
42241 Adds optimization support for BGR based modes.
42242
42243 * include/grub/i386/pc/vbeblit.h (grub_video_i386_vbeblit_R8G8B8A8_R8G8B8A8) Removed.
42244 (grub_video_i386_vbeblit_R8G8B8X8_R8G8B8X8): Likewise.
42245 (grub_video_i386_vbeblit_R8G8B8_R8G8B8A8): Likewise.
42246 (grub_video_i386_vbeblit_R8G8B8_R8G8B8X8): Likewise.
42247 (grub_video_i386_vbeblit_index_R8G8B8A8): Likewise.
42248 (grub_video_i386_vbeblit_index_R8G8B8X8): Likewise.
42249 (grub_video_i386_vbeblit_R8G8B8A8_R8G8B8): Likewise.
42250 (grub_video_i386_vbeblit_R8G8B8_R8G8B8): Likewise.
42251 (grub_video_i386_vbeblit_index_R8G8B8): Likewise.
42252 (grub_video_i386_vbeblit_index_index): Likewise.
42253 (grub_video_i386_vbeblit_replace_directN): Added.
42254 (grub_video_i386_vbeblit_replace_BGRX8888_RGBX8888): Likewise.
42255 (grub_video_i386_vbeblit_replace_BGRX8888_RGB888): Likewise.
42256 (grub_video_i386_vbeblit_replace_BGR888_RGBX8888): Likewise.
42257 (grub_video_i386_vbeblit_replace_BGR888_RGB888): Likewise.
42258 (grub_video_i386_vbeblit_replace_RGBX8888_RGB888): Likewise.
42259 (grub_video_i386_vbeblit_replace_RGB888_RGBX8888): Likewise.
42260 (grub_video_i386_vbeblit_replace_index_RGBX8888): Likewise.
42261 (grub_video_i386_vbeblit_replace_index_RGB888): Likewise.
42262 (grub_video_i386_vbeblit_blend_BGRA8888_RGBA8888): Likewise.
42263 (grub_video_i386_vbeblit_blend_BGR888_RGBA8888): Likewise.
42264 (grub_video_i386_vbeblit_blend_RGBA8888_RGBA8888): Likewise.
42265 (grub_video_i386_vbeblit_blend_RGB888_RGBA8888): Likewise.
42266 (grub_video_i386_vbeblit_blend_index_RGBA8888): Likewise.
42267
42268 * include/grub/i386/pc/vbefill.h (grub_video_i386_vbefill_R8G8B8A8) Removed.
42269 (grub_video_i386_vbefill_R8G8B8): Likewise.
42270 (grub_video_i386_vbefill_index): Likewise.
42271 (grub_video_i386_vbefill_direct32): Added.
42272 (grub_video_i386_vbefill_direct24): Likewise.
42273 (grub_video_i386_vbefill_direct16): Likewise.
42274 (grub_video_i386_vbefill_direct8): Likewise.
42275
42276 * include/grub/video.h (grub_video_blit_format): Removed
42277 GRUB_VIDEO_BLIT_FORMAT_R8G8B8A8, GRUB_VIDEO_BLIT_FORMAT_R8G8B8.
42278 (grub_video_blit_format): Added GRUB_VIDEO_BLIT_FORMAT_RGBA_8888,
42279 GRUB_VIDEO_BLIT_FORMAT_BGRA_8888, GRUB_VIDEO_BLIT_FORMAT_RGB_888,
42280 GRUB_VIDEO_BLIT_FORMAT_BGR_888, GRUB_VIDEO_BLIT_FORMAT_RGB_565,
42281 GRUB_VIDEO_BLIT_FORMAT_BGR_565.
42282
42283 * video/video.c (grub_video_get_blit_format): Updated to use new
42284 blit formats. Added handling for 16 bit color modes.
42285
42286 * video/i386/pc/vbe.c (grub_video_vbe_fill_rect): Updated to use new
42287 fillers.
42288 (common_blitter): Updated to use new blitters.
42289
42290 * video/i386/pc/vbeblit.c (grub_video_i386_vbeblit_R8G8B8A8_R8G8B8A8):
42291 Removed.
42292 (grub_video_i386_vbeblit_R8G8B8X8_R8G8B8X8): Likewise.
42293 (grub_video_i386_vbeblit_R8G8B8_R8G8B8A8): Likewise.
42294 (grub_video_i386_vbeblit_R8G8B8_R8G8B8X8): Likewise.
42295 (grub_video_i386_vbeblit_index_R8G8B8A8): Likewise.
42296 (grub_video_i386_vbeblit_index_R8G8B8X8): Likewise.
42297 (grub_video_i386_vbeblit_R8G8B8A8_R8G8B8): Likewise.
42298 (grub_video_i386_vbeblit_R8G8B8_R8G8B8): Likewise.
42299 (grub_video_i386_vbeblit_index_R8G8B8): Likewise.
42300 (grub_video_i386_vbeblit_index_index): Likewise.
42301 (grub_video_i386_vbeblit_replace_directN): Added.
42302 (grub_video_i386_vbeblit_replace_BGRX8888_RGBX8888): Likewise.
42303 (grub_video_i386_vbeblit_replace_BGRX8888_RGB888): Likewise.
42304 (grub_video_i386_vbeblit_replace_BGR888_RGBX8888): Likewise.
42305 (grub_video_i386_vbeblit_replace_BGR888_RGB888): Likewise.
42306 (grub_video_i386_vbeblit_replace_RGBX8888_RGB888): Likewise.
42307 (grub_video_i386_vbeblit_replace_RGB888_RGBX8888): Likewise.
42308 (grub_video_i386_vbeblit_replace_index_RGBX8888): Likewise.
42309 (grub_video_i386_vbeblit_replace_index_RGB888): Likewise.
42310 (grub_video_i386_vbeblit_blend_BGRA8888_RGBA8888): Likewise.
42311 (grub_video_i386_vbeblit_blend_BGR888_RGBA8888): Likewise.
42312 (grub_video_i386_vbeblit_blend_RGBA8888_RGBA8888): Likewise.
42313 (grub_video_i386_vbeblit_blend_RGB888_RGBA8888): Likewise.
42314 (grub_video_i386_vbeblit_blend_index_RGBA8888): Likewise.
42315
42316 * video/i386/pc/vbefill.c (grub_video_i386_vbefill_R8G8B8A8): Removed.
42317 (grub_video_i386_vbefill_R8G8B8): Likewise.
42318 (grub_video_i386_vbefill_index): Likewise.
42319 (grub_video_i386_vbefill_direct32): Added.
42320 (grub_video_i386_vbefill_direct24): Likewise.
42321 (grub_video_i386_vbefill_direct16): Likewise.
42322 (grub_video_i386_vbefill_direct8): Likewise.
42323
42324 * video/readers/jpeg.c (grub_jpeg_decode_sos): Adapt to new blitter
42325 types.
42326
42327 * video/readers/tga.c (grub_video_reader_tga): Adapt to new blitter
42328 types.
42329
42330 * video/readers/png.c (grub_png_decode_image_header): Adapt to new
42331 blitter types.
42332
42333 * video/bitmap.c (grub_video_bitmap_create): Adapt to new blitter
42334 types.
42335
42336 2008-09-06 Felix Zielcke <fzielcke@z-51.de>
42337
42338 * disk/raid.c (insert_array): Set `array->chunk_size' to 64 for
42339 RAID level 1.
42340
42341 2008-09-06 Felix Zielcke <fzielcke@z-51.de>
42342
42343 * fs/iso9660.c (grub_iso9660_date): New structure.
42344 (grub_iso9660_primary_voldesc): Add `grub_iso9660_date' member.
42345 (grub_iso9660_uuid): New function.
42346
42347 2008-09-05 Bean <bean123ch@gmail.com>
42348
42349 * fs/fshelp.c (grub_fshelp_find_file): Handle case insensitive names.
42350
42351 * fs/ntfs.c (list_file): Ignore names in DOS namespace, set the case
42352 insensitive bit for names in Win32 and Win32 & DOS namespace.
42353
42354 * include/grub/fshelp.h (GRUB_FSHELP_CASE_INSENSITIVE): New macro.
42355
42356 * include/grub/types.h (LONG_MAX): Likewise.
42357
42358 2008-09-04 Felix Zielcke <fzielcke@z-51.de>
42359
42360 * util/getroot.c: Include <config.h>.
42361 (grub_util_get_grub_dev): Rewrite to use asprintf for mdraid devices,
42362 add support for /dev/md/N devices and handle LVM double dash escaping.
42363
42364 2008-09-04 Felix Zielcke <fzielcke@z-51.de>
42365
42366 * config.guess: Update to latest version from config git.
42367 * config.sub: Likewise.
42368
42369 2008-09-03 Robert Millan <rmh@aybabtu.com>
42370
42371 * disk/scsi.c (grub_scsi_open): Remove size limit when printing
42372 `disk->total_sectors'.
42373
42374 2008-09-01 Colin D Bennett <colin@gibibit.com>
42375
42376 * include/grub/normal.h: Fixed incorrect comment for
42377 GRUB_COMMAND_FLAG_NO_ARG_PARSE.
42378
42379 2008-09-01 Colin D Bennett <colin@gibibit.com>
42380
42381 * commands/i386/pc/vbeinfo.c (grub_cmd_vbeinfo): Replaced constant
42382 values with defines.
42383
42384 * include/grub/i386/pc/vbe.h (GRUB_VBE_MODEATTR_SUPPORTED): Added.
42385 (GRUB_VBE_MODEATTR_RESERVED_1): Likewise.
42386 (GRUB_VBE_MODEATTR_BIOS_TTY_OUTPUT_SUPPORT): Likewise.
42387 (GRUB_VBE_MODEATTR_COLOR): Likewise.
42388 (GRUB_VBE_MODEATTR_GRAPHICS): Likewise.
42389 (GRUB_VBE_MODEATTR_VGA_COMPATIBLE): Likewise.
42390 (GRUB_VBE_MODEATTR_VGA_WINDOWED_AVAIL): Likewise.
42391 (GRUB_VBE_MODEATTR_LFB_AVAIL): Likewise.
42392 (GRUB_VBE_MODEATTR_DOUBLE_SCAN_AVAIL): Likewise.
42393 (GRUB_VBE_MODEATTR_INTERLACED_AVAIL): Likewise.
42394 (GRUB_VBE_MODEATTR_TRIPLE_BUF_AVAIL): Likewise.
42395 (GRUB_VBE_MODEATTR_STEREO_AVAIL): Likewise.
42396 (GRUB_VBE_MODEATTR_DUAL_DISPLAY_START): Likewise.
42397 (GRUB_VBE_MEMORY_MODEL_TEXT): Likewise.
42398 (GRUB_VBE_MEMORY_MODEL_CGA): Likewise.
42399 (GRUB_VBE_MEMORY_MODEL_HERCULES): Likewise.
42400 (GRUB_VBE_MEMORY_MODEL_PLANAR): Likewise.
42401 (GRUB_VBE_MEMORY_MODEL_NONCHAIN4_256): Likewise.
42402 (GRUB_VBE_MEMORY_MODEL_YUV): Likewise.
42403
42404 2008-08-31 Robert Millan <rmh@aybabtu.com>
42405
42406 * loader/i386/pc/multiboot.c (grub_get_multiboot_mmap_len): Fix
42407 declaration.
42408 (grub_multiboot): Fix a few warnings.
42409
42410 2008-08-31 Robert Millan <rmh@aybabtu.com>
42411
42412 * loader/i386/pc/multiboot.c: Update comment not to say that
42413 boot_device support is unimplemented.
42414
42415 2008-08-31 Robert Millan <rmh@aybabtu.com>
42416
42417 * loader/i386/pc/multiboot.c: Update comment not to say that a.out
42418 or memory map support are unimplemented.
42419
42420 2008-08-31 Colin D Bennett <colin@gibibit.com>
42421
42422 * util/i386/pc/grub-mkrescue.in: Support multiple overlay directories.
42423
42424 2008-08-31 Colin D Bennett <colin@gibibit.com>
42425
42426 * commands/i386/pc/vbeinfo.c (grub_cmd_vbeinfo): Show VBE version and
42427 total video memory in 'vbeinfo' output; show color format details for
42428 each video mode.
42429
42430 2008-08-30 Pavel Roskin <proski@gnu.org>
42431
42432 * util/genmoddep.c: Remove for real this time.
42433 * DISTLIST: Remove util/genmoddep.c.
42434
42435 2008-08-30 Robert Millan <rmh@aybabtu.com>
42436
42437 * kern/i386/pc/startup.S (multiboot_header): Force 4-byte alignment
42438 as required by Multiboot spec (it was already 4-byte aligned, but
42439 only by chance).
42440
42441 2008-08-29 Pavel Roskin <proski@gnu.org>
42442
42443 * kern/powerpc/ieee1275/crt0.S: Rename to ...
42444 * kern/powerpc/ieee1275/startup.S: ... this.
42445 * conf/powerpc-ieee1275.rmk: Adjust for the above.
42446 * DISTLIST: Likewise.
42447
42448 * kern/powerpc/ieee1275/crt0.S: Include grub/symbol.h and
42449 grub/cpu/kernel.h. Add start label for consistency with other
42450 platforms. Add grub_prefix immediately after start. Add jump
42451 to the code after grub_prefix.
42452 * include/grub/powerpc/kernel.h: Provide valid values for
42453 GRUB_KERNEL_CPU_PREFIX and GRUB_KERNEL_CPU_DATA_END.
42454
42455 2008-08-29 Bean <bean123ch@gmail.com>
42456
42457 * configure.ac: Change host_os to cygwin for mingw.
42458 (asprintf): New check for function.
42459
42460 * include/grub/symbol.h: Replace #ifndef __CYGWIN__ with
42461 #if ! defined (__CYGWIN__) && ! defined (__MINGW32__).
42462
42463 * include/grub/util/misc.h: #include <config.h> and <grub/types.h>,
42464 declare asprintf if HAVE_ASPRINTF is not set, declare fseeko, ftello,
42465 sync, sleep and grub_util_get_disk_size for mingw.
42466
42467 * util/biosdisk.c (grub_util_biosdisk_open): Use grub_util_get_disk_size
42468 to get size in mingw.
42469 (open_device): Use flag O_BINARY if it's defined.
42470 (find_root_device): Add dummy code for mingw.
42471
42472 * util/grub-mkdevicemap.c (get_floppy_disk_name): Return 0 for mingw.
42473 (get_ide_disk_name): Return //./PHYSICALDRIVE%d for mingw.
42474 (get_scsi_disk_name): Return 0 for mingw.
42475
42476 * util/hostfs.c: #include <grub/util/misc.h>.
42477 (grub_hostfs_open): Use "rb" flag to open file, use
42478 grub_util_get_disk_size to get disk size for mingw.
42479
42480 * util/misc.c: #include <windows.h> and <winioctl.h> in mingw.
42481 (asprintf): New function if HAVE_ASPRINTF is not set.
42482 (sync): New function for mingw.
42483 (sleep): Likewise.
42484 (grub_util_get_disk_size): Likewise.
42485
42486 2008-08-28 Pavel Roskin <proski@gnu.org>
42487
42488 * conf/powerpc-ieee1275.rmk (kernel_elf_SOURCES): Add
42489 kern/time.c.
42490
42491 2008-08-28 Robert Millan <rmh@aybabtu.com>
42492
42493 * util/biosdisk.c (find_grub_drive): Declare missing `i' variable.
42494
42495 2008-08-28 Robert Millan <rmh@aybabtu.com>
42496
42497 Change find_grub_drive() syntax so it doesn't prevent it from
42498 detecting NULL names as errors.
42499
42500 * util/biosdisk.c (find_grub_drive): Move free slot search code
42501 from here ...
42502 (find_free_slot): ... to here.
42503 (read_device_map): Use find_free_slot() to search for free slots.
42504
42505 2008-08-27 Marco Gerards <marco@gnu.org>
42506
42507 * conf/common.rmk (pkglib_MODULES): Add scsi.mod.
42508 (scsi_mod_SOURCES): New variable.
42509 (scsi_mod_CFLAGS): Likewise
42510 (scsi_mod_LDFLAGS): Likewise.
42511
42512 * disk/scsi.c: New file.
42513
42514 * include/grub/scsi.h: Likewise.
42515
42516 * include/grub/scsicmd.h: Likewise.
42517
42518 * disk/ata.c: Include <grub/scsi.h>.
42519 (grub_atapi_packet): Do not use grub_ata_cmd, use registers
42520 instead.
42521 (grub_ata_iterate): Skip ATAPI devices.
42522 (grub_ata_open): Only handle ATAPI devices.
42523 (struct grub_atapi_read): Removed.
42524 (grub_atapi_readsector): Likewise.
42525 (grub_ata_read): No longer handle ATAPI devices.
42526 (grub_ata_write): Likewise.
42527 (grub_atapi_iterate): New function.
42528 (grub_atapi_read): Likewise.
42529 (grub_atapi_write): Likewise.
42530 (grub_atapi_open): Likewise.
42531 (grub_atapi_close): Likewise.
42532 (grub_atapi_dev): New variable.
42533 (GRUB_MOD_INIT(ata)): Register ATAPI as SCSI device.
42534 (GRUB_MOD_FINI(ata)): Unregister ATAPI.
42535
42536 * include/grub/disk.h (enum grub_disk_dev_id): Add
42537 `GRUB_DISK_DEVICE_SCSI_ID'.
42538
42539 2008-08-26 Robert Millan <rmh@aybabtu.com>
42540
42541 * util/biosdisk.c (grub_util_biosdisk_open, open_device)
42542 (grub_util_biosdisk_get_grub_dev): Make error messages a bit more
42543 descriptive.
42544
42545 2008-08-23 Bean <bean123ch@gmail.com>
42546
42547 * conf/common.rmk (grub_probe_SOURCES): Add disk/mdraid_linux.c.
42548 (grub_fstest_SOURCES): Add disk/raid5_recover.c, disk/raid6_recover.c,
42549 disk/mdraid_linux.c and disk/dmraid_nvidia.c and lib/crc.c.
42550 (pkglib_MODULES): Add raid5rec.mod, raid6rec.mod, mdraid.mod and
42551 dm_nv.mod.
42552 (raid5rec_mod_SOURCES): New macro.
42553 (raid5rec_mod_CFLAGS): Likewise.
42554 (raid5rec_mod_LDFLAGS): Likewise.
42555 (raid6rec_mod_SOURCES): Likewise.
42556 (raid6rec_mod_CFLAGS): Likewise.
42557 (raid6rec_mod_LDFLAGS): Likewise.
42558 (mdraid_mod_SOURCES): Likewise.
42559 (mdraid_mod_CFLAGS): Likewise.
42560 (mdraid_mod_LDFLAGS): Likewise.
42561 (dm_nv_mod_SOURCES): Likewise.
42562 (dm_nv_mod_CFLAGS): Likewise.
42563 (dm_nv_mod_LDFLAGS): Likewise.
42564
42565 * conf/i386-pc.rmk (grub_setup_SOURCES): Add disk/mdraid_linux.c.
42566 (grub_emu_SOURCES): Add disk/raid5_recover.c, disk/raid6_recover.c,
42567 disk/mdraid_linux.c and disk/dmraid_nvidia.c.
42568
42569 * conf/i386-coreboot.rmk (grub_emu_SOURCES): Add disk/raid5_recover.c,
42570 disk/raid6_recover.c, disk/mdraid_linux.c and disk/dmraid_nvidia.c.
42571
42572 * conf/i386-efi.rmk (grub_emu_SOURCES): Likewise.
42573
42574 * conf/x86_64-efi.rmk (grub_emu_SOURCES): Likewise.
42575
42576 * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Likewise.
42577
42578 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
42579
42580 * disk/raid5_recover.c: New file.
42581
42582 * disk/raid6_recover.c: Likewise.
42583
42584 * disk/mdraid_linux.c: Likewise.
42585
42586 * disk/dmraid_nvidia.c: Likewise.
42587
42588 * disk/i386/pc/biosdisk.c: Set total_sectors of cdrom device to
42589 ULONG_MAX.
42590
42591 * disk/raid.c (grub_raid_open): Use the size of the smallest disk to
42592 calculate the size of raid device.
42593 (grub_raid_read): Simplify raid0 code. Support raid4, raid6 and four
42594 different layout of raid5.
42595 (grub_raid_scan_device): Remove code specific to mdraid.
42596 (grub_raid_list): New variable.
42597 (free_array): New function.
42598 (grub_raid_register): Likewise.
42599 (grub_raid_unregister): Likewise.
42600 (grub_raid_rescan): Likewise.
42601 (GRUB_MOD_INIT): Don't iterate device here.
42602 (GRUB_MOD_FINI): Use free_array to release resource.
42603
42604 * include/grub/raid.h: Remove macro and structure specific to mdraid.
42605 (grub_raid5_recover_func_t): New function variable type.
42606 (grub_raid6_recover_func_t): Likewise.
42607 (grub_raid5_recover_func): New variable.
42608 (grub_raid6_recover_func): Likewise.
42609 (grub_raid_register): New function.
42610 (grub_raid_unregister): Likewise.
42611 (grub_raid_rescan): Likewise.
42612 (grub_raid_block_xor): Likewise.
42613
42614 * util/grub-fstest.c: Add #include <grub/raid.h> and <grub/lib/crc.h>.
42615 (CMD_CRC): New macro.
42616 (part): Removed.
42617 (read_file): Handle device as well as file.
42618 (cmd_crc): New function.
42619 (fstest): Handle multiple disks.
42620 (options): Remove part, raw and long, add root and diskcount.
42621 (usage): Add crc, remove -p, -r, -l, add -r and -c.
42622 (main): Find the first non option entry and ignore subsequent options,
42623 add handling for the new options, support multiple disks.
42624
42625 * util/grub-probe.c (probe): Add mdraid to abstraction_name.
42626
42627 2008-08-23 Bean <bean123ch@gmail.com>
42628
42629 * normal/x86_64/setjmp.S (grub_longjmp): Return 1 when val = 0.
42630
42631 * genfslist.sh: Ignore kernel.mod.
42632
42633 * genpartmaplist.sh: Likewise.
42634
42635 2008-08-23 Robert Millan <rmh@aybabtu.com>
42636
42637 * util/getroot.c (find_root_device): Skip anything that starts with
42638 a dot, not just directories. This avoids things like /dev/.tmp.md0.
42639
42640 2008-08-22 Felix Zielcke <fzielcke@z-51.de>
42641
42642 * util/update-grub.in (GRUB_GFXMODE): Export variable.
42643 * util/grub.d/00_header.in: Allow the administrator to change default
42644 gfxmode via ${GRUB_GFXMODE}.
42645
42646 2008-08-21 Felix Zielcke <fzielcke@z-51.de>
42647
42648 * fs/ntfs.c (grub_ntfs_mount): Fix a memory leak.
42649
42650 2008-08-21 Robert Millan <rmh@aybabtu.com>
42651
42652 * loader/i386/linux.c: New file. Implements generic 32-bit Linux
42653 loader.
42654 * conf/i386-coreboot.rmk (_linux_mod_SOURCES): Replace
42655 `loader/i386/pc/linux.c' with `loader/i386/linux.c'.
42656
42657 2008-08-20 Carles Pina i Estany <carles@pina.cat>
42658
42659 * menu/normal.c (run_menu): Replace hardcoded numbers with macros
42660 (16 for GRUB_TERM_UP and 14 for GRUB_TERM_DOWN)
42661
42662 2008-08-19 Robert Millan <rmh@aybabtu.com>
42663
42664 * term/gfxterm.c (DEFAULT_CURSOR_COLOR): Remove.
42665 (struct grub_virtual_screen): Remove `cursor_color'.
42666 (grub_virtual_screen_setup): Remove `virtual_screen.cursor_color'
42667 initialization.
42668 (write_cursor): Use `virtual_screen.fg_color' to draw cursor.
42669
42670 2008-08-18 Robert Millan <rmh@aybabtu.com>
42671
42672 Unify (identical) linux_normal.c files.
42673 * loader/i386/efi/linux_normal.c: Move from here ...
42674 * loader/linux_normal.c: ... to here. Update all users.
42675 * loader/i386/pc/linux_normal.c: Delete. Update all users.
42676 * loader/i386/ieee1275/linux_normal.c: Likewise.
42677
42678 2008-08-18 Robert Millan <rmh@aybabtu.com>
42679
42680 * include/grub/i386/linux.h (LINUX_LOADER_ID_LILO)
42681 (LINUX_LOADER_ID_LOADLIN, LINUX_LOADER_ID_BOOTSECT)
42682 (LINUX_LOADER_ID_SYSLINUX, LINUX_LOADER_ID_ETHERBOOT)
42683 (LINUX_LOADER_ID_ELILO, LINUX_LOADER_ID_GRUB, LINUX_LOADER_ID_UBOOT)
42684 (LINUX_LOADER_ID_XEN, LINUX_LOADER_ID_GUJIN, LINUX_LOADER_ID_QEMU):
42685 New macros.
42686 (GRUB_LINUX_CL_OFFSET, GRUB_LINUX_CL_END_OFFSET): Move from here ...
42687 * loader/i386/pc/linux.c (GRUB_LINUX_CL_OFFSET)
42688 (GRUB_LINUX_CL_END_OFFSET): ... to here.
42689 * loader/i386/efi/linux.c (GRUB_EFI_CL_OFFSET): Rename to ...
42690 (GRUB_LINUX_CL_OFFSET): ... this. Update all users.
42691 (GRUB_EFI_CL_END_OFFSET): Rename to ...
42692 (GRUB_LINUX_CL_END_OFFSET): ... this. Update all users.
42693 (grub_rescue_cmd_linux): Macroify `type_of_loader' initialization.
42694 Initialize `params->video_cursor_x' and `params->video_cursor_y'
42695 portably using grub_getxy().
42696 Replace `-EFI' with `-bzImage' in boot message.
42697
42698 2008-08-17 Robert Millan <rmh@aybabtu.com>
42699
42700 * include/grub/x86_64/kernel.h: New file (<grub/i386/kernel.h> stub).
42701
42702 2008-08-17 Robert Millan <rmh@aybabtu.com>
42703
42704 * conf/i386-pc.rmk (kernel_img_SOURCES): Add `kern/i386/pc/mmap.c'.
42705
42706 * include/grub/i386/pc/init.h (GRUB_MACHINE_MEMORY_AVAILABLE)
42707 (GRUB_MACHINE_MEMORY_RESERVED): New macros.
42708 (grub_machine_mmap_iterate): New function declaration.
42709 * include/grub/multiboot.h (struct grub_multiboot_mmap_entry): New
42710 structure.
42711 (GRUB_MMAP_MEMORY_AVAILABLE, GRUB_MMAP_MEMORY_RESERVED): New
42712 macros.
42713
42714 * kern/i386/pc/init.c (grub_machine_init): Replace hardcoded region
42715 type check value with `GRUB_MACHINE_MEMORY_AVAILABLE'.
42716 Move e820 parsing from here ...
42717 * kern/i386/pc/mmap.c: New file.
42718 (grub_machine_mmap_iterate): ... to here.
42719
42720 * include/grub/i386/coreboot/memory.h: Remove `<grub/err.h>'.
42721 (GRUB_LINUXBIOS_MEMORY_AVAILABLE): Rename (for consistency) to ...
42722 (GRUB_MACHINE_MEMORY_AVAILABLE): ... this. Update all users.
42723 (grub_available_iterate): Redeclare to return `void', and redeclare
42724 its hook to use grub_uint64_t as addr and size parameters, and rename
42725 to ...
42726 (grub_machine_mmap_iterate): ... this. Update all users.
42727
42728 * kern/i386/coreboot/mmap.c (grub_mmap_iterate): Simplify parser loop
42729 to make it more readable. Rename to ...
42730 (grub_machine_mmap_iterate): ... this.
42731
42732 * loader/i386/pc/multiboot.c (mmap_addr, mmap_length): New variables.
42733 (grub_get_multiboot_mmap_len, grub_fill_multiboot_mmap): New functions.
42734 (grub_multiboot): Allocate an extra region after the payload, and fill
42735 it with a Multiboot memory map. Adjust a.out loader to calculate size
42736 with the extra space.
42737 (grub_multiboot_load_elf32): Adjust elf32 loader to calculate size
42738 with the extra space.
42739
42740 2008-08-17 Carles Pina i Estany <carles@pina.cat>
42741
42742 * menu/normal.c (run_menu): Add Home and End keys in grub-menu.
42743
42744 2008-08-17 Felix Zielcke <fzielcke@z-51.de>
42745
42746 * gendistlist.sh: Add *.y, *.tex, *.texi, grub.cfg, README, *.sc,
42747 mdate-sh to the list `find' searches for.
42748 * DISTLIST: Regenerated.
42749
42750 2008-08-16 Felix Zielcke <fzielcke@z-51.de>
42751
42752 * gendistlist.sh (EXTRA_DISTFILES): Remove gensymlist.sh,
42753 genkernsyms.sh. Add geninit.sh, geninitheader.sh, genkernsyms.sh.in,
42754 genmoddep.awk, gensymlist.sh.in.
42755 (DISTDIRS): Add bus, docs, hook, lib.
42756 * DISTLIST: Regenerated.
42757 * NEWS: Add cygwin support and change the `os-prober' entry a bit.
42758
42759 2008-08-16 Robert Millan <rmh@aybabtu.com>
42760
42761 * disk/raid.c (grub_raid_init): Handle/report errors set by
42762 grub_device_iterate().
42763 * disk/lvm.c (grub_lvm_init): Likewise.
42764
42765 2008-08-15 Bean <bean123ch@gmail.com>
42766
42767 * conf/i386-pc.rmk (pkglib_MODULES): Add datetime.mod, date.mod
42768 and datehook.mod.
42769 (datetime_mod_SOURCES): New macro.
42770 (datetime_mod_CFLAGS): Likewise.
42771 (datetime_mod_LDFLAGS): Likewise.
42772 (date_mod_SOURCES): Likewise.
42773 (date_mod_CFLAGS): Likewise.
42774 (date_mod_LDFLAGS): Likewise.
42775 (datehook_mod_SOURCES): Likewise.
42776 (datehook_mod_CFLAGS): Likewise.
42777 (datehook_mod_LDFLAGS): Likewise.
42778
42779 * conf/i386-coreboot.rmk (pkglib_MODULES): Add datetime.mod, date.mod
42780 and datehook.mod.
42781 (datetime_mod_SOURCES): New macro.
42782 (datetime_mod_CFLAGS): Likewise.
42783 (datetime_mod_LDFLAGS): Likewise.
42784 (date_mod_SOURCES): Likewise.
42785 (date_mod_CFLAGS): Likewise.
42786 (date_mod_LDFLAGS): Likewise.
42787 (datehook_mod_SOURCES): Likewise.
42788 (datehook_mod_CFLAGS): Likewise.
42789 (datehook_mod_LDFLAGS): Likewise.
42790
42791 * conf/i386-ieee1275.rmk (pkglib_MODULES): Add datetime.mod, date.mod
42792 and datehook.mod.
42793 (datetime_mod_SOURCES): New macro.
42794 (datetime_mod_CFLAGS): Likewise.
42795 (datetime_mod_LDFLAGS): Likewise.
42796 (date_mod_SOURCES): Likewise.
42797 (date_mod_CFLAGS): Likewise.
42798 (date_mod_LDFLAGS): Likewise.
42799 (datehook_mod_SOURCES): Likewise.
42800 (datehook_mod_CFLAGS): Likewise.
42801 (datehook_mod_LDFLAGS): Likewise.
42802
42803 * conf/i386-efi.rmk (pkglib_MODULES): Add datetime.mod, date.mod
42804 and datehook.mod.
42805 (datetime_mod_SOURCES): New macro.
42806 (datetime_mod_CFLAGS): Likewise.
42807 (datetime_mod_LDFLAGS): Likewise.
42808 (date_mod_SOURCES): Likewise.
42809 (date_mod_CFLAGS): Likewise.
42810 (date_mod_LDFLAGS): Likewise.
42811 (datehook_mod_SOURCES): Likewise.
42812 (datehook_mod_CFLAGS): Likewise.
42813 (datehook_mod_LDFLAGS): Likewise.
42814
42815 * conf/x86_64-efi.rmk (pkglib_MODULES): Add datetime.mod, date.mod
42816 and datehook.mod.
42817 (datetime_mod_SOURCES): New macro.
42818 (datetime_mod_CFLAGS): Likewise.
42819 (datetime_mod_LDFLAGS): Likewise.
42820 (date_mod_SOURCES): Likewise.
42821 (date_mod_CFLAGS): Likewise.
42822 (date_mod_LDFLAGS): Likewise.
42823 (datehook_mod_SOURCES): Likewise.
42824 (datehook_mod_CFLAGS): Likewise.
42825 (datehook_mod_LDFLAGS): Likewise.
42826
42827 * kern/env.c (grub_env_insert): Fix a bug in prevp pointer.
42828
42829 * commands/date.c: New file.
42830
42831 * hook/datehook.c: Likewise.
42832
42833 * include/grub/lib/datetime.h: Likewise.
42834
42835 * include/grub/i386/cmos.h: Likewise.
42836
42837 * lib/datetime.c: Likewise.
42838
42839 * lib/i386/datetime.c: Likewise.
42840
42841 * lib/efi/datetime.c: Likewise.
42842
42843 2008-08-14 Robert Millan <rmh@aybabtu.com>
42844
42845 * conf/common.rmk (bin_UTILITIES): Add `grub-mkelfimage'.
42846 (grub_mkelfimage_SOURCES): New variable.
42847 (util/elf/grub-mkimage.c_DEPENDENCIES): Likewise.
42848
42849 * conf/i386-coreboot.rmk (bin_UTILITIES, grub_mkimage_SOURCES)
42850 (grub_mkimage_LDFLAGS, util/elf/grub-mkimage.c_DEPENDENCIES): Remove.
42851 * conf/powerpc-ieee1275.rmk: Likewise.
42852 * conf/i386-ieee1275.rmk: Likewise.
42853
42854 * kern/ieee1275/init.c: Include `<grub/cpu/kernel.h>'.
42855 * kern/i386/coreboot/init.c: Likewise.
42856
42857 * kern/i386/ieee1275/startup.S: Replace `<grub/machine/kernel.h>'
42858 with `<grub/cpu/kernel.h>'.
42859 (GRUB_KERNEL_MACHINE_PREFIX, GRUB_KERNEL_MACHINE_DATA_END): Renamed
42860 to ...
42861 (GRUB_KERNEL_CPU_PREFIX, GRUB_KERNEL_CPU_DATA_END): ... this.
42862 * kern/i386/coreboot/startup.S: Likewise.
42863
42864 * include/grub/powerpc/ieee1275/kernel.h (GRUB_MOD_ALIGN)
42865 (GRUB_MOD_GAP): Remove.
42866 * include/grub/powerpc/kernel.h: New file.
42867 * include/grub/i386/ieee1275/kernel.h (GRUB_KERNEL_MACHINE_PREFIX)
42868 (GRUB_KERNEL_MACHINE_DATA_END): Remove.
42869 * include/grub/i386/kernel.h: New file.
42870 * include/grub/i386/coreboot/kernel.h (GRUB_MOD_ALIGN)
42871 (GRUB_MOD_GAP, GRUB_KERNEL_MACHINE_PREFIX)
42872 (GRUB_KERNEL_MACHINE_DATA_END): Remove.
42873
42874 * util/ieee1275/grub-install.in (grub_mkimage): Initialize to use
42875 `grub-mkelfimage'.
42876 Use --directory when invoking grub_mkimage.
42877
42878 * util/elf/grub-mkimage.c: Include `<grub/cpu/kernel.h>'.
42879 (add_segments): Replace GRUB_KERNEL_MACHINE_DATA_END and
42880 GRUB_KERNEL_MACHINE_PREFIX with GRUB_KERNEL_CPU_DATA_END
42881 and GRUB_KERNEL_CPU_PREFIX.
42882
42883 2008-08-14 Felix Zielcke <fzielcke@z-51.de>
42884
42885 * include/grub/err.h (grub_err_printf): New function prototype.
42886 * util/misc.c (grub_err_printf): New function.
42887 * kern/misc.c [! GRUB_UTIL] (grub_err_printf): New alias for
42888 grub_printf.
42889 * kern/err.c (grub_print_error): Use grub_err_printf.
42890
42891 2008-08-13 Robert Millan <rmh@aybabtu.com>
42892
42893 * docs/grub.cfg: Remove `/dev/' prefix in GNU/Hurd boot entry.
42894
42895 2008-08-13 Robert Millan <rmh@aybabtu.com>
42896
42897 * docs/grub.cfg: Use the native device name for the example GNU/Hurd
42898 boot entry.
42899
42900 2008-08-12 Robert Millan <rmh@aybabtu.com>
42901
42902 * loader/i386/pc/multiboot.c (grub_multiboot_load_elf32): Move part
42903 of the relocation code from here ...
42904 (grub_multiboot): ... to here.
42905 (forward_relocator, backward_relocator): Move from here ...
42906 * kern/i386/loader.S (grub_multiboot_forward_relocator)
42907 (grub_multiboot_backward_relocator): ... to here.
42908 (grub_multiboot_real_boot): Use %edx for entry offset. Put Multiboot
42909 magic in %eax. Use %ebp for jumping (so %edx is not trashed).
42910 * include/grub/i386/loader.h (grub_multiboot_forward_relocator)
42911 (grub_multiboot_forward_relocator_end)
42912 (grub_multiboot_backward_relocator)
42913 (grub_multiboot_backward_relocator_end): New variables.
42914
42915 2008-08-12 Bean <bean123ch@gmail.com>
42916
42917 * disk/raid.c (grub_raid_read): Fix a bug in raid0 code.
42918
42919 2008-08-11 Robert Millan <rmh@aybabtu.com>
42920
42921 * kern/i386/linuxbios/startup.S: Move from here ...
42922 * kern/i386/coreboot/startup.S: ... to here.
42923
42924 * kern/i386/linuxbios/init.c: Move from here ...
42925 * kern/i386/coreboot/init.c: ... to here.
42926
42927 * kern/i386/linuxbios/table.c: Move from here ...
42928 * kern/i386/coreboot/mmap.c: ... to here.
42929
42930 * conf/i386-coreboot.rmk (kernel_elf_SOURCES): Update moved files.
42931
42932 2008-08-11 Robert Millan <rmh@aybabtu.com>
42933
42934 * kern/device.c (grub_device_open): Do not handle grub_disk_open()
42935 errors. Leave it to the upper layer to handle them.
42936
42937 2008-08-09 Christian Franke <franke@computer.org>
42938
42939 * Makefile.in: Add `target_os' and `enable_grub_pe2elf'.
42940 * conf/common.rmk: Install `grub-pe2elf' only if requested.
42941 Install `grub.d/10_windows' only on Cygwin.
42942 * configure.ac: Add subst of `target_os'.
42943 Check `target_os' also before setting TARGET_OBJ2ELF.
42944 Add `--enable-grub-pe2elf'.
42945
42946 2008-08-08 Robert Millan <rmh@aybabtu.com>
42947
42948 * kern/disk.c: Replace `<grub/machine/time.h>' with `<grub/time.h>'.
42949 (grub_last_time): Change type to grub_uint64_t.
42950 (grub_disk_open): Migrate code from to using grub_get_time_ms().
42951 (grub_disk_close): Likewise.
42952
42953 * normal/menu.c: Replace `<grub/machine/time.h>' with `<grub/time.h>'.
42954 (run_menu): Migrate code from to using grub_get_time_ms().
42955
42956 * util/misc.c (grub_get_time_ms): New function.
42957
42958 2008-08-08 Marco Gerards <marco@gnu.org>
42959
42960 * disk/ata.c (grub_ata_regget): Change return type to
42961 `grub_uint8_t'.
42962 (grub_ata_regget2): Likewise.
42963 (grub_ata_wait_status): New function.
42964 (grub_ata_wait_busy): Removed function, updated all users to use
42965 `grub_ata_wait_status'.
42966 (grub_ata_wait_drq): Likewise.
42967 (grub_ata_cmd): New function.
42968 (grub_ata_pio_read): Change return type to `grub_uint8_t'. Add
42969 error handling.
42970 (grub_ata_pio_write): Add error handling.
42971 (grub_atapi_identify): Likewise.
42972 (grub_atapi_packet): Use `grub_ata_cmd' and improve error
42973 handling.
42974 (grub_ata_identify): Use `grub_ata_cmd' and improve error
42975 handling. Actually use the detected registers. Reorder the
42976 detection logic such that it is easier to read.
42977 (grub_ata_pciinit): Do not assign the same ID to each controller.
42978 (grub_ata_setaddress): Use `grub_ata_cmd' and improve error
42979 handling.
42980 (grub_atapi_readsector): Check the result of `grub_ata_pio_read'.
42981
42982 * include/grub/err.h (grub_err_t): Add `GRUB_ERR_TIMEOUT'.
42983
42984 2008-08-08 Marco Gerards <marco@gnu.org>
42985
42986 * NEWS: Update.
42987
42988 2008-08-07 Bean <bean123ch@gmail.com>
42989
42990 * include/grub/x86_64/pci.h: New file.
42991
42992 2008-08-07 Christian Franke <franke@computer.org>
42993
42994 * kern/i386/pit.c (TIMER2_SPEAKER): New define.
42995 (TIMER2_GATE): Likewise.
42996 (grub_pit_wait): Add enable/disable of the timer2 gate
42997 bit of port 0x61. This fixes a possible infinite loop.
42998
42999 2008-08-07 Bean <bean123ch@gmail.com>
43000
43001 * conf/x86_64-efi.rmk (kernel_mod_SOURCES): Add kern/time.c,
43002 kern/i386/tsc.c and kern/i386/pit.c.
43003
43004 * include/grub/i386/tsc.h (grub_cpu_is_cpuid_supported): Handle
43005 x86_64 platform.
43006
43007 * kern/i386/efi/init.c: Replace <grub/cpu/tsc.h> with
43008 <grub/i386/tsc.h>.
43009
43010 * kern/i386/pit.c: Replace <grub/cpu/io.h> with <grub/i386/io.h>.
43011
43012 2008-08-07 Bean <bean123ch@gmail.com>
43013
43014 * conf/i386-efi.rmk (kernel_mod_SOURCES): Add kern/time.c.
43015
43016 * conf/i386-ieee1275.rmk (kernel_elf_SOURCES): Add kern/time.c,
43017
43018 * include/grub/i386/pit.h: Use macro KERNEL_CPU_PIT_HEADER to avoid
43019 multiple inclusion. Add #include <grub/types.h>.
43020
43021 2008-08-06 Christian Franke <franke@computer.org>
43022
43023 * conf/common.rmk: Build and install `10_windows'.
43024 * util/grub.d/10_windows.in: New script.
43025
43026 2008-08-06 Pavel Roskin <proski@gnu.org>
43027
43028 * kern/i386/pit.c: Include `<grub/i386/pit.h>'.
43029
43030 2008-08-06 Robert Millan <rmh@aybabtu.com>
43031
43032 * conf/i386-coreboot.rmk (kernel_elf_ASFLAGS): New variable.
43033 * kern/i386/tsc.c: Include `<grub/i386/pit.h>'.
43034
43035 2008-08-06 Bean <bean123ch@gmail.com>
43036
43037 * fs/i386/pc/pxe.c (grub_pxe_data): New member block_size.
43038 (grub_pxefs_fs_int): Remove dummy definition.
43039 (grub_pxefs_open): Use data->block_size to store the current block
43040 size setting.
43041 (grub_pxefs_read): Use block size stored in data->block_size. As the
43042 value of grub_pxe_blksize can be changed after the file is opened.
43043
43044 2008-08-06 Bean <bean123ch@gmail.com>
43045
43046 * fs/i386/pc/pxe.c (curr_file): new variable.
43047 (grub_pxefs_open): Simply the handling of pxe file system. Don't
43048 require the dummy internal file system anymore.
43049 (grub_pxefs_read): Removed.
43050 (grub_pxefs_close): Likewise.
43051 (grub_pxefs_fs_int): Likewise.
43052 (grub_pxefs_read_int): Renamed to grub_pxefs_read. Reinitialize tftp
43053 connection when we switch file.
43054 (grub_pxefs_close_int): Renamed to grub_pxefs_close.
43055
43056 2008-08-06 Robert Millan <rmh@aybabtu.com>
43057
43058 * conf/i386-coreboot.rmk (pkglib_MODULES): Add `reboot.mod' and
43059 `halt.mod'.
43060 (reboot_mod_SOURCES, reboot_mod_CFLAGS, reboot_mod_LDFLAGS)
43061 (halt_mod_SOURCES, halt_mod_CFLAGS, halt_mod_LDFLAGS): New variables.
43062
43063 * kern/i386/halt.c: New file.
43064 * kern/i386/reboot.c: Likewise.
43065 * include/grub/i386/reboot.h: Likewise.
43066 * include/grub/i386/halt.h: Likewise.
43067
43068 * commands/halt.c [! GRUB_MACHINE_IEEE1275 ! GRUB_MACHINE_EFI]:
43069 Include `<grub/cpu/halt.h>'.
43070 * commands/reboot.c [! GRUB_MACHINE_IEEE1275 ! GRUB_MACHINE_EFI]
43071 [! GRUB_MACHINE_PCBIOS]: Include `<grub/cpu/reboot.h>'.
43072
43073 * term/i386/pc/at_keyboard.c: Include `<grub/cpu/at_keyboard.h>'.
43074 (SHIFT_L, SHIFT_R, CTRL, ALT, CAPS_LOCK, KEYBOARD_REG_DATA)
43075 (KEYBOARD_REG_STATUS, KEYBOARD_COMMAND_ISREADY, KEYBOARD_COMMAND_READ)
43076 (KEYBOARD_COMMAND_WRITE, KEYBOARD_COMMAND_REBOOT)
43077 (KEYBOARD_SCANCODE_SET1, KEYBOARD_ISMAKE, KEYBOARD_ISREADY)
43078 (KEYBOARD_SCANCODE, OLPC_UP, OLPC_DOWN, OLPC_LEFT, OLPC_RIGHT): Move
43079 from here ...
43080 * include/grub/i386/at_keyboard.h: ... to here.
43081
43082 2008-08-05 Robert Millan <rmh@aybabtu.com>
43083
43084 * conf/i386-pc.rmk (kernel_img_SOURCES): Add `kern/i386/pit.c'.
43085 * conf/i386-efi.rmk (kernel_mod_SOURCES): Likewise.
43086 * conf/i386-coreboot.rmk (kernel_elf_SOURCES): Likewise. Also add
43087 `kern/i386/tsc.c', `kern/generic/rtc_get_time_ms.c' and
43088 `kern/generic/millisleep.c'.
43089
43090 * kern/i386/tsc.c (calibrate_tsc): Rewrite using grub_pit_wait()
43091 instead of grub_get_rtc().
43092 (grub_tsc_init): Initialize `tsc_boot_time'.
43093
43094 * kern/i386/linuxbios/init.c (grub_millisleep): Remove stub.
43095 (grub_machine_init): Use grub_tsc_init() rather than
43096 installing an RTC-based handler via grub_install_get_time_ms().
43097
43098 * kern/i386/pit.c: New file.
43099 * include/grub/i386/pit.h: Likewise.
43100
43101 2008-08-05 Bean <bean123ch@gmail.com>
43102
43103 * boot/i386/pc/pxeboot.S (_start): Use drive number 0x7F for pxe.
43104
43105 * conf/i386-pc.rmk (kernel_img_HEADERS): Add machine/pxe.h.
43106 (pkglib_MODULES): Add pxe.mod and pxecmd.mod.
43107 (pxe_mod_SOURCES): New macro.
43108 (pxe_mod_CFLAGS): Likewise.
43109 (pxe_mod_LDFLAGS): Likewise.
43110 (pxecmd_mod_SOURCES): Likewise.
43111 (pxecmd_mod_CFLAGS): Likewise.
43112 (pxecmd_mod_LDFLAGS): Likewise.
43113
43114 * kern/i386/pc/startup.S (grub_pxe_scan): New function.
43115 (grub_pxe_call): Likewise.
43116
43117 * include/grub/disk.h (grub_disk_dev_id): Add GRUB_DISK_DEVICE_PXE_ID.
43118
43119 * commands/i386/pc/pxecmd.c: New file.
43120
43121 * fs/i386/pc/pxe.c: Likewise.
43122
43123 * include/grub/i386/pc/pxe.h: Likewise.
43124
43125 2008-08-05 Bean <bean123ch@gmail.com>
43126
43127 * util/console.c (grub_console_cur_color): New variable.
43128 (grub_console_standard_color): Likewise.
43129 (grub_console_normal_color): Likewise.
43130 (grub_console_highlight_color): Likewise.
43131 (color_map): Likewise.
43132 (use_color): Likewise.
43133 (NUM_COLORS): New macro.
43134 (grub_ncurses_setcolorstate): Handle color properly.
43135 (grub_ncurses_setcolor): Don't change color here, just remember the
43136 settings, color will be set in grub_ncurses_setcolorstate.
43137 (grub_ncurses_getcolor): New function.
43138 (grub_ncurses_init): Initialize color pairs.
43139 (grub_ncurses_term): New member grub_ncurses_getcolor.
43140
43141 2008-08-05 Colin D Bennett <colin@gibibit.com>
43142
43143 High resolution timer support. Implemented for x86 CPUs using TSC.
43144 Extracted generic grub_millisleep() so it's linked in only as needed.
43145 This requires a Pentium compatible CPU; if the RDTSC instruction is
43146 not supported, then it falls back on the generic grub_get_time_ms()
43147 implementation that uses the machine's RTC.
43148
43149 * conf/i386-pc.rmk (kernel_img_SOURCES): Add `kern/time.c',
43150 `kern/i386/tsc.c', `kern/generic/rtc_get_time_ms.c' and
43151 `kern/generic/millisleep.c'.
43152
43153 * conf/i386-efi.rmk (kernel_mod_SOURCES): Add `kern/i386/tsc.c',
43154 `kern/generic/rtc_get_time_ms.c' and `kern/generic/millisleep.c'.
43155
43156 * conf/x86_64-efi.rml (kernel_mod_SOURCES): Add
43157 `kern/generic/millisleep.c' and `kern/generic/rtc_get_time_ms.c'.
43158
43159 * conf/sparc64-ieee1275.rmk (kernel_elf_SOURCES): Likewise.
43160
43161 * conf/powerpc-ieee1275.rmk (kernel_elf_SOURCES): Add
43162 `kern/generic/millisleep.c'.
43163
43164 * conf/i386-ieee1275.rmk (kernel_elf_SOURCES): Likewise.
43165
43166 * conf/i386-coreboot.rmk (kernel_elf_SOURCES): Add `kern/time.c'.
43167
43168 * kern/generic/rtc_get_time_ms.c: New file.
43169
43170 * kern/generic/millisleep.c: New file.
43171
43172 * kern/misc.c: Don't include
43173 <kern/time.h> anymore.
43174 (grub_millisleep_generic): Removed.
43175
43176 * commands/sleep.c (grub_interruptible_millisleep): Uses
43177 grub_get_time_ms() instead of grub_get_rtc().
43178
43179 * include/grub/i386/tsc.h (grub_get_tsc): New file. New inline
43180 function.
43181 (grub_cpu_is_cpuid_supported): New inline function.
43182 (grub_cpu_is_tsc_supported): New inline function.
43183 (grub_tsc_init): New function prototype.
43184 (grub_tsc_get_time_ms): New function prototype.
43185
43186 * kern/i386/tsc.c (grub_get_time_ms): New file.
43187
43188 * include/grub/time.h: Include <grub/types.h.
43189 (grub_millisleep_generic): Removed.
43190 (grub_get_time_ms): New prototype.
43191 (grub_install_get_time_ms): New prototype.
43192 (grub_rtc_get_time_ms): New prototype.
43193
43194 * kern/time.c (grub_get_time_ms): New function.
43195 (grub_install_get_time_ms): New function.
43196
43197 * kern/i386/efi/init.c: Include <grub/cpu/tsc.h>. Don't include
43198 <grub/time.h> anymore.
43199 (grub_millisleep): Removed.
43200 (grub_machine_init): Call grub_tsc_init.
43201
43202 * kern/i386/linuxbios/init.c (grub_machine_init): Install the RTC
43203 get_time_ms() implementation.
43204
43205 * kern/sparc64/ieee1275/init.c (grub_millisleep): Removed.
43206 (ieee1275_get_time_ms): New function.
43207 (grub_machine_init): Install get_time_ms() implementation.
43208
43209 * kern/i386/pc/init.c: Include <grub/cpu/tsc.h>.
43210 (grub_machine_init): Call grub_tsc_init().
43211 (grub_millisleep): Removed.
43212
43213 * kern/ieee1275/init.c (grub_millisleep): Removed.
43214 (grub_machine_init): Install ieee1275_get_time_ms()
43215 implementation.
43216 (ieee1275_get_time_ms): New function.
43217 (grub_get_rtc): Now calls ieee1275_get_time_ms(), which does the
43218 real work.
43219
43220 2008-08-05 Marco Gerards <marco@gnu.org>
43221
43222 * disk/ata.c: Include <grub/pci.h>.
43223 (enum grub_ata_commands): Add `GRUB_ATA_CMD_EXEC_DEV_DIAGNOSTICS'.
43224 (grub_ata_initialize): Rewritten.
43225 (grub_ata_device_initialize): New function.
43226
43227 2008-08-04 Pavel Roskin <proski@gnu.org>
43228
43229 * kern/main.c: Include grub/mm.h.
43230
43231 2008-08-04 Robert Millan <rmh@aybabtu.com>
43232
43233 * conf/i386-coreboot.rmk (COMMON_ASFLAGS, COMMON_CFLAGS)
43234 (COMMON_LDFLAGS): Harmonize with i386-pc version (fixes a code
43235 corruption problem).
43236
43237 2008-08-04 Robert Millan <rmh@aybabtu.com>
43238
43239 * loader/i386/pc/multiboot.c (grub_multiboot_load_elf32): Fix misc
43240 warnings introduced in my last commit.
43241
43242 2008-08-03 Robert Millan <rmh@aybabtu.com>
43243
43244 Make PCI available on all i386 architectures.
43245
43246 * include/grub/i386/pc/pci.h: Move from here ...
43247 * include/grub/i386/pci.h: ... to here.
43248
43249 * include/grub/i386/pc/pci.h: Remove.
43250 * include/grub/i386/efi/pci.h: Remove.
43251 * include/grub/x86_64/efi/pci.h: Remove.
43252
43253 * include/grub/pci.h: Replace `<grub/machine/pci.h>' with
43254 `<grub/cpu/pci.h>'.
43255
43256 * conf/i386-coreboot.rmk (pkglib_MODULES): Add `pci' and `lspci'.
43257 (pci_mod_SOURCES, pci_mod_CFLAGS, pci_mod_LDFLAGS, lspci_mod_SOURCES)
43258 (lspci_mod_CFLAGS, lspci_mod_LDFLAGS): New variables.
43259
43260 * conf/i386-ieee1275.rmk: Likewise.
43261
43262 2008-08-03 Robert Millan <rmh@aybabtu.com>
43263
43264 * term/i386/pc/vga_text.c (CRTC_CURSOR_DISABLE): New macro.
43265 (grub_console_setcursor): Make it possible to set cursor off.
43266
43267 2008-08-03 Robert Millan <rmh@aybabtu.com>
43268
43269 * util/grub.d/00_header.in: Be platform-agnostic. Probe for existence
43270 of modules instead of assuming which platform provides what.
43271 * util/update-grub.in: Likewise.
43272
43273 2008-08-03 Robert Millan <rmh@aybabtu.com>
43274
43275 * kern/i386/pc/init.c (make_install_device): Check for `grub_prefix'
43276 instead of `grub_install_dos_part' to determine whether a drive needs
43277 to be prepended to prefix (`grub_install_dos_part' is not reliable,
43278 because it can be overridden when loading GRUB via Multiboot).
43279
43280 2008-08-02 Robert Millan <rmh@aybabtu.com>
43281
43282 * util/i386/pc/grub-install.in: Remove trailing slash from prefix.
43283
43284 2008-08-02 Robert Millan <rmh@aybabtu.com>
43285
43286 * loader/i386/pc/multiboot.c (grub_multiboot_load_elf32): Add a pair
43287 of informational grub_dprintf() calls.
43288
43289 2008-08-02 Robert Millan <rmh@aybabtu.com>
43290
43291 * disk/memdisk.c (memdisk_size): Don't initialize.
43292 (GRUB_MOD_INIT(memdisk)): Find memdisk using grub_module_iterate().
43293
43294 * include/grub/i386/pc/kernel.h
43295 (GRUB_KERNEL_MACHINE_MEMDISK_IMAGE_SIZE): Remove macro.
43296 (GRUB_KERNEL_MACHINE_PREFIX, GRUB_KERNEL_MACHINE_DATA_END): Shift.
43297 (grub_memdisk_image_size, grub_arch_memdisk_addr)
43298 (grub_arch_memdisk_size): Remove.
43299
43300 * include/grub/kernel.h (struct grub_module_header): Remove `offset'
43301 field (was only used to transfer a constant). Add `type' field to
43302 support multiple module types.
43303 (grub_module_iterate): New function.
43304
43305 * kern/device.c (grub_device_open): Do not hide error messages
43306 when grub_disk_open() fails. Use grub_print_error() instead.
43307
43308 * kern/i386/pc/init.c (grub_arch_modules_addr)
43309 (grub_arch_memdisk_size): Remove functions.
43310 (grub_arch_modules_addr): Return the module address in high memory
43311 (now that it isn't copied anymore).
43312
43313 * kern/i386/pc/startup.S (grub_memdisk_image_size): Remove variable.
43314 (codestart): Don't add grub_memdisk_image_size to %ecx in LZMA
43315 decompression routine (grub_total_module_size already includes that
43316 now). Don't copy modules back to low memory.
43317
43318 * kern/main.c: Include `<grub/mm.h>'.
43319 (grub_load_modules): Split out (and use) ...
43320 (grub_module_iterate): ... this function, which iterates through
43321 module objects and runs a hook.
43322 Comment out grub_mm_init_region() call, as it would cause non-ELF
43323 modules to be overwritten.
43324
43325 * util/i386/pc/grub-mkimage.c (generate_image): Instead of appending
43326 the memdisk image in its own region, make it part of the module list.
43327 * util/elf/grub-mkimage.c (options): Add "memdisk"|'m' option.
43328 (main): Parse --memdisk|-m option, and pass user-provided path as
43329 parameter to generate_image().
43330 (add_segments): Pass `memdisk_path' down to load_modules().
43331 (load_modules): Embed memdisk image in module section when requested.
43332 * util/i386/efi/grub-mkimage.c (make_mods_section): Initialize
43333 `header.type' instead of `header.offset'.
43334
43335 * conf/powerpc-ieee1275.rmk (pkglib_MODULES): Add `memdisk.mod'.
43336 (memdisk_mod_SOURCES, memdisk_mod_CFLAGS)
43337 (memdisk_mod_LDFLAGS): New variables.
43338 * conf/i386-coreboot.rmk: Likewise.
43339 * conf/i386-ieee1275.rmk: Likewise.
43340
43341 2008-08-02 Robert Millan <rmh@aybabtu.com>
43342
43343 * loader/i386/pc/multiboot.c (playground, forward_relocator)
43344 (backward_relocator): New variables. Used to allocate and relocate
43345 the payload, respectively.
43346 (grub_multiboot_load_elf32): Load into heap instead of requested
43347 address, install the appropriate relocator code in each bound of
43348 the payload, and set the entry point such that
43349 grub_multiboot_real_boot() will jump to one of them.
43350
43351 * kern/i386/loader.S (grub_multiboot_payload_size)
43352 (grub_multiboot_payload_orig, grub_multiboot_payload_dest)
43353 (grub_multiboot_payload_entry_offset): New variables.
43354 (grub_multiboot_real_boot): Set cpu context to what the relocator
43355 expects, and jump to the relocator instead of the payload.
43356
43357 * include/grub/i386/loader.h (grub_multiboot_payload_size)
43358 (grub_multiboot_payload_orig, grub_multiboot_payload_dest)
43359 (grub_multiboot_payload_entry_offset): Export.
43360
43361 2008-08-01 Bean <bean123ch@gmail.com>
43362
43363 * normal/menu_entry.c (editor_getline): Don't return the original
43364 string as result, as it will be released by lexer once it has done
43365 using it.
43366
43367 2008-08-01 Robert Millan <rmh@aybabtu.com>
43368
43369 * util/grub.d/10_linux.in: Use prepare_grub_to_access_device() from
43370 within menuentries, not before them.
43371 util/grub.d/10_hurd.in: Likewise.
43372
43373 2008-08-01 Bean <bean123ch@gmail.com>
43374
43375 * conf/common.rmk (pkglib_MODULES): Add bufio.mod.
43376 (bufio_mod_SOURCES): New macro.
43377 (bufio_mod_CFLAGS): Likewise.
43378 (bufio_mod_LDFLAGS): Likewise.
43379
43380 * include/grub/bufio.h: New file.
43381
43382 * io/bufio.c: Likewise.
43383
43384 * video/png.c: Replace <grub/file.h> with <grub/bufio.h>.
43385 (grub_video_reader_png): Use grub_buffile_open to open file.
43386
43387 * video/jpeg.c: Replace <grub/file.h> with <grub/bufio.h>.
43388 (grub_video_reader_jpeg): Use grub_buffile_open to open file.
43389
43390 * video/tga.c: Replace <grub/file.h> with <grub/bufio.h>.
43391 (grub_video_reader_tga): Use grub_buffile_open to open file.
43392
43393 * font/manager.c: Include <grub/bufio.h>.
43394 (add_font): Use grub_buffile_open to open file.
43395
43396 2008-07-31 Robert Millan <rmh@aybabtu.com>
43397
43398 * loader/i386/pc/multiboot.c (grub_multiboot_load_elf32): When loading
43399 ELF segments, use a macro for arbitrarily accessing any of them instead
43400 of preparing a pointer that allows access to one at a time.
43401 (grub_multiboot_load_elf64): Likewise.
43402
43403 2008-07-31 Bean <bean123ch@gmail.com>
43404
43405 * boot/i386/pc/lnxboot.S (real_code_2): Replace 0x50 with
43406 GRUB_KERNEL_MACHINE_DATA_END.
43407
43408 2008-07-30 Robert Millan <rmh@aybabtu.com>
43409
43410 * include/grub/i386/pc/kernel.h (GRUB_KERNEL_MACHINE_DATA_END):
43411 Increase from 0x50 to 0x60.
43412 * util/i386/pc/grub-install.in: Detect cross-disk installs, and
43413 use UUIDs to identify the root drive for them. If that's not
43414 possible, abort.
43415 * util/i386/pc/grub-setup.c (setup): Do not special-case, or even
43416 check, for cross-disk installs.
43417
43418 2008-07-30 Robert Millan <rmh@aybabtu.com>
43419
43420 * kern/ieee1275/init.c (grub_machine_set_prefix): If `grub_prefix'
43421 is non-empty, use it to set the `prefix' environment variable instead
43422 of the usual approach.
43423 * kern/i386/linuxbios/init.c (make_install_device): Remove function.
43424 (grub_machine_set_prefix): Use `grub_prefix' to set the `prefix'
43425 environment variable instead of dummy make_install_device().
43426
43427 * kern/i386/ieee1275/startup.S: Include `<grub/machine/kernel.h>'.
43428 (start): Insert a data section, with `grub_prefix' variable.
43429 * kern/i386/linuxbios/startup.S: Likewise.
43430
43431 * include/grub/powerpc/ieee1275/kernel.h [!ASM_FILE] (grub_prefix):
43432 New variable reference.
43433 * include/grub/i386/ieee1275/kernel.h (GRUB_KERNEL_MACHINE_PREFIX):
43434 New macro. Defines offset of `grub_prefix' within startup.S (relative
43435 to `start').
43436 (GRUB_KERNEL_MACHINE_DATA_END): New macro. Defines the end of data
43437 section within startup.S (relative to `start').
43438 * include/grub/i386/coreboot/kernel.h: Likewise.
43439
43440 * util/elf/grub-mkimage.c (add_segments): Receive `prefix' parameter.
43441 Overwrite grub_prefix with its contents, at the beginning of the
43442 first segment.
43443 (main): Understand -p|--prefix.
43444
43445 2008-07-30 Robert Millan <rmh@aybabtu.com>
43446
43447 * util/grub.d/10_hurd.in: Source ${libdir}/grub/update-grub_lib.
43448
43449 2008-07-30 Robert Millan <rmh@aybabtu.com>
43450
43451 * term/i386/pc/vga_text.c (grub_console_cls): Use
43452 grub_console_gotoxy() to go back to beginning of the screen.
43453 Found by Patrick Georgi <patrick.georgi@coresystems.de>
43454
43455 2008-07-29 Christian Franke <franke@computer.org>
43456
43457 * util/update-grub_lib.in (make_system_path_relative_to_its_root):
43458 Add conversion of emulated mount points on Cygwin.
43459
43460 2008-07-29 Christian Franke <franke@computer.org>
43461
43462 * util/update-grub.in: Add a check for admin
43463 group on Cygwin.
43464 Remove old `grub.cfg.new' before creation.
43465 Add `-f' to `mv' to handle the different filesystem
43466 semantics of Windows.
43467
43468 2008-07-29 Bean <bean123ch@gmail.com>
43469
43470 * normal/main.c (get_line): Fix buffer overflow bug.
43471
43472 2008-07-28 Robert Millan <rmh@aybabtu.com>
43473
43474 * partmap/apple.c (GRUB_APPLE_HEADER_MAGIC): New macro.
43475 (struct grub_apple_header): New struct. Describes the layout of
43476 the partmap header.
43477 (apple_partition_map_iterate): Check the header magic as well as the
43478 partition magic (which was already being checked).
43479
43480 2008-07-28 Pavel Roskin <proski@gnu.org>
43481
43482 * genmk.rb: Add a warning to the beginning of the output that
43483 it's a generated file and should not be edited.
43484
43485 2008-07-28 Robert Millan <rmh@aybabtu.com>
43486
43487 * disk/raid.c (grub_raid_scan_device): Do not abort when two disks
43488 with the same number are found, just use issue a warning with
43489 grub_dprintf(), as this error has been reported to be non-fatal.
43490
43491 2008-07-27 Robert Millan <rmh@aybabtu.com>
43492
43493 * disk/ata.c (grub_ata_dumpinfo): Use grub_dprintf() for debugging
43494 information.
43495
43496 2008-07-27 Bean <bean123ch@gmail.com>
43497
43498 * fs/fat.c (GRUB_FAT_MAXFILE): New constant.
43499 (grub_fat_find_dir): Ignore case when comparing filename.
43500
43501 2008-07-27 Bean <bean123ch@gmail.com>
43502
43503 * fs/xfs.c (grub_xfs_dir_header): Change field i8count back to
43504 smallino, as it's more descriptive, and i8count can be confused with
43505 the other field count.
43506 (grub_xfs_iterate_dir): Adjust grub_xfs_dir_entry pointer for small
43507 inode type.
43508
43509 2008-07-27 Bean <bean123ch@gmail.com>
43510
43511 * commands/crc.c: New file.
43512
43513 * lib/crc.c: Likewise.
43514
43515 * include/grub/lib/crc.h: Likewise.
43516
43517 * util/grub-fstest.c: grub/hexdump.h => grub/lib/hexdump.h.
43518
43519 * commands/hexdump.c: grub/hexdump.h => grub/lib/hexdump.h.
43520 (hexdump): Move this function to ...
43521
43522 * lib/hexdump.c: ... here.
43523
43524 * include/grub/hexdump.h: Renamed to ...
43525
43526 * include/grub/lib/hexdump.h: ... this.
43527
43528 * commands/loadenv.c: grub/envblk.h => grub/lib/envblk.h
43529
43530 * util/grub-editenv.c: Likewise.
43531
43532 * include/envblk.h: Renamed to ...
43533
43534 * include/lib/envblk.h: ... this.
43535
43536 * util/envblk.c: Renamed to ...
43537
43538 * lib/envblk.c: ... this.
43539
43540 * conf/common.rmk (grub_fstest_SOURCES): commands/hexdump.c =>
43541 lib/hexdump.c.
43542 (grub_editenv_SOURCES): util/envblk.c => lib/envblk.c
43543 (pkglib_MODULES): Add crc.mod.
43544 (hexdump_mod_SOURCES): Add lib/hexdump.c.
43545 (loadenv_mod_SOURCES): util/envblk.c => lib/envblk.c.
43546 (crc_mod_SOURCES): New macro.
43547 (crc_mod_CFLAGS): Likewise.
43548 (crc_mod_LDFLAGS): Likewise.
43549
43550 * conf/i386-coreboot.rmk (grub_emu_SOURCES): Add lib/hexdump.c.
43551
43552 * conf/i386-efi.rmk (grub_emu_SOURCES): Likewise.
43553
43554 * conf/i386-pc.rmk (grub_emu_SOURCES): Likewise.
43555
43556 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
43557
43558 * conf/x86_64-efi.rmk (grub_emu_SOURCES): Likewise.
43559
43560 2008-07-27 Felix Zielcke <fzielcke@z-51.de>
43561
43562 * commands/help.c: Include <grub/term.h>.
43563 (TERM_WIDTH): Removed. Updated all users.
43564
43565 2008-07-27 Pavel Roskin <proski@gnu.org>
43566
43567 * util/getroot.c (find_root_device): Rephrase a comment to avoid
43568 spurious warnings about a comment within a comment.
43569
43570 2008-07-25 Robert Millan <rmh@aybabtu.com>
43571
43572 * util/getroot.c (find_root_device): Skip devices that match
43573 /dev/dm-[0-9]. This lets the real device be found for any type of
43574 abstraction (LVM, EVMS, RAID..).
43575 (grub_guess_root_device): Do not traverse /dev/mapper (for LVM)
43576 and /dev/evms (for EVMS) before traversing /dev. If a /dev/dm-[0-9]
43577 device is found first, find_root_device() will now skip it.
43578
43579 2008-07-24 Pavel Roskin <proski@gnu.org>
43580
43581 * include/grub/types.h: Use __builtin_bswap32() and
43582 __builtin_bswap64() with gcc 4.3 and newer.
43583
43584 2008-07-24 Christian Franke <franke@computer.org>
43585
43586 * util/i386/pc/grub-install.in: If `--debug' is specified,
43587 pass `--verbose' to grub-setup.
43588 Abort script if make_system_path_relative_to_its_root() fails.
43589
43590 2008-07-24 Bean <bean123ch@gmail.com>
43591
43592 * configure.ac: Fixed a bug caused by the previous cygwin patch,
43593 variable `target_platform' should be `platform'.
43594
43595 2008-07-24 Bean <bean123ch@gmail.com>
43596
43597 * video/reader/png.c (DEFLATE_HLIT_MAX): Change value.
43598 (grub_png_init_fixed_block): New function.
43599 (grub_png_decode_image_data): Handle fixed huffman code compression.
43600
43601 2008-07-24 Bean <bean123ch@gmail.com>
43602
43603 * common.rmk (bin_UTILITIES): Add grub-pe2elf.
43604 (grub_pe2elf_SOURCES): New macro.
43605 (CLEANFILES): Add grub-pe2elf.
43606
43607 * include/grub/efi/pe32.h (GRUB_PE32_SCN_ALIGN_1BYTES): New constant.
43608 (GRUB_PE32_SCN_ALIGN_2BYTES): Likewise.
43609 (GRUB_PE32_SCN_ALIGN_4BYTES): Likewise.
43610 (GRUB_PE32_SCN_ALIGN_8BYTES): Likewise.
43611 (GRUB_PE32_SCN_ALIGN_16BYTES): Likewise.
43612 (GRUB_PE32_SCN_ALIGN_32BYTES): Likewise.
43613 (GRUB_PE32_SCN_ALIGN_64BYTES): Likewise.
43614 (GRUB_PE32_SCN_ALIGN_SHIFT): Likewise.
43615 (GRUB_PE32_SCN_ALIGN_MASK): Likewise.
43616 (GRUB_PE32_SYM_CLASS_EXTERNAL): Likewise.
43617 (GRUB_PE32_SYM_CLASS_STATIC): Likewise.
43618 (GRUB_PE32_SYM_CLASS_FILE): Likewise.
43619 (GRUB_PE32_DT_FUNCTION): Likewise.
43620 (GRUB_PE32_REL_I386_DIR32): Likewise.
43621 (GRUB_PE32_REL_I386_REL32): Likewise.
43622 (grub_pe32_symbol): New structure.
43623 (grub_pe32_reloc): Likewise.
43624
43625 * util/grub-pe2elf.c: New file.
43626
43627 * configure.ac: Set TARGET_OBJ2ELF if host os is cygwin. Don't test for
43628 start symbol in non pc platform.
43629
43630 * genmk.rb: Use TARGET_OBJ2ELF to convert native object format to elf.
43631
43632 The following patches are from Christian Franke.
43633
43634 * include/grub/dl.h: Remove .previous, gas supports this only
43635 for ELF format.
43636
43637 * include/grub/symbol.h [__CYGWIN__] (#define FUNCTION/VARIABLE):
43638 Remove .type, gas supports this only for ELF format.
43639
43640 * kern/dl.c (grub_dl_resolve_dependencies): Add check for trailing
43641 nullbytes in symbol table. This fixes an infinite loop if table is
43642 zero filled.
43643
43644 * Makefile.in: Add autoconf replacements TARGET_IMG_LDSCRIPT,
43645 TARGET_IMG_LDFLAGS and EXEEXT.
43646
43647 * aclocal.m4 (grub_PROG_OBJCOPY_ABSOLUTE): Replace -Wl,-N by
43648 TARGET_IMG_LDFLAGS_AC.
43649 (grub_CHECK_STACK_ARG_PROBE): New function.
43650
43651 * conf/i386-pc.rmk: Replace -Wl,-N by TARGET_IMG_LDFLAGS.
43652
43653 * conf/i386-pc-cygwin-ld-img.sc: New linker script.
43654
43655 * configure.ac: Add check for linker script "conf/${target}-img-ld.c"
43656 to set TARGET_IMG_LD* accordingly.
43657 Add check for Cygwin to set TARGET_MOD_OBJCOPY accordingly.
43658 Add call to grub_CHECK_STACK_ARG_PROBE.
43659 Use TARGET_IMG_LDFLAGS to check start, bss_start, end symbols.
43660
43661 * genkernsyms.sh.in: Handle HAVE_ASM_USCORE case.
43662
43663 * genmk.rb: Add EXEEXT to CLEANFILES.
43664
43665 2008-07-23 Robert Millan <rmh@aybabtu.com>
43666
43667 * Makefile.in (UNICODE_ARROWS, UNICODE_LINES): New variables (they
43668 define the codes for arrows and lines used for the menu).
43669 (ascii.pff): Generate fonts for $(UNICODE_ARROWS) and $(UNICODE_LINES)
43670 as well.
43671
43672 * util/update-grub_lib.in (font_path): Prefer ascii.pff over complete
43673 fonts, because the latter are too slow.
43674
43675 2008-07-21 Bean <bean123ch@gmail.com>
43676
43677 * kern/i386/pc/startup.S (gate_a20_try_bios): Change test order for
43678 a20. Run keyboard test last, as it will cause macbook to halt.
43679
43680 2008-07-18 Pavel Roskin <proski@gnu.org>
43681
43682 * kern/dl.c: Go back to using GRUB_CPU_SIZEOF_VOID_P. We cannot
43683 load foreign architecture modules correctly anyway. Keep
43684 support for loading host architecture modules, whether we
43685 compile them or not.
43686
43687 2008-07-17 Pavel Roskin <proski@gnu.org>
43688
43689 * configure.ac: Use -m32 or -m64 regardless of whether we had to
43690 change target_cpu. The compiler default can mismatch target_cpu
43691 in any case.
43692
43693 * disk/efi/efidisk.c: Fix format warnings on x86_64.
43694 * kern/efi/efi.c: Likewise.
43695
43696 * aclocal.m4 (grub_PROG_TARGET_CC): New macro. Check if the
43697 target compiler is functional.
43698 * configure.ac: Call grub_PROG_TARGET_CC once all target flags
43699 are set up.
43700
43701 * configure.ac: Default to efi platform for x86_64-apple. Allow
43702 powerpc64 CPU, default to ieee1275 platform for it. Split CPU
43703 adjustments from the rest, only do them if target is not
43704 explicitly given. Merge other adjustments with the final sanity
43705 check. Remove an extraneous check for supported CPU. Be
43706 specific which CPU and which platform is not supported.
43707
43708 * configure.ac: Default to pc platform for x86_64.
43709
43710 2008-07-17 Robert Millan <rmh@aybabtu.com>
43711
43712 Partial LinuxBIOS -> Coreboot rename.
43713
43714 * conf/i386-linuxbios.rmk: Renamed to ...
43715 * conf/i386-coreboot.rmk: ... this.
43716 * Makefile.in (RMKFILES): s/i386-linuxbios.rmk/i386-coreboot.rmk/g.
43717 * configure.ac: Accept "coreboot" as input platform (but maintain
43718 compatibility with "linuxbios").
43719 * include/grub/i386/linuxbios: Renamed to ...
43720 * include/grub/i386/coreboot: ... this.
43721
43722 2008-07-17 Bean <bean123ch@gmail.com>
43723
43724 * conf/i386/efi.rmk (pkglib_MODULES): add pci.mod and lspci.mod.
43725 (appleldr_mod_SOURCE): New variable.
43726 (appleldr_mod_CFLAGS): Likewise.
43727 (appleldr_mod_LDFLAGS): Likewise.
43728 (pci_mod_SOURCES): Likewise.
43729 (pci_mod_CFLAGS): Likewise.
43730 (pci_mod_LDFLAGS): Likewise.
43731 (lspci_mod_SOURCES): Likewise.
43732 (lspci_mod_CFLAGS): Likewise.
43733 (lspci_mod_LDFLAGS): Likewise.
43734
43735 * conf/x86_64-efi.rmk: New file.
43736
43737 * disk/efi/efidisk.c (grub_efidisk_read): Wrap efi calls with efi_call_N
43738 macro.
43739 (grub_efidisk_write): Likewise.
43740
43741 * include/efi/api.h (efi_call_0): New macro.
43742 (efi_call_1): Likewise.
43743 (efi_call_2): Likewise.
43744 (efi_call_3): Likewise.
43745 (efi_call_4): Likewise.
43746 (efi_call_5): Likewise.
43747 (efi_call_6): Likewise.
43748
43749 * include/grub/efi/chainloader.h (grub_chainloader_cmd): Rename to
43750 grub_rescue_cmd_chainloader.
43751
43752 * include/grub/efi/pe32.h (GRUB_PE32_MACHINE_X86_64): New macro.
43753 (grub_pe32_optional_header): Change some fields based on i386 or
43754 x86_64 platform.
43755 (GRUB_PE32_PE32_MAGIC): Likewise.
43756
43757 * include/grub/efi/uga_draw.h: New file.
43758
43759 * include/grub/elf.h (STN_ABS): New constant.
43760 (R_X86_64_NONE): Relocation constant for x86_64.
43761 (R_X86_64_64): Likewise.
43762 (R_X86_64_PC32): Likewise.
43763 (R_X86_64_GOT32): Likewise.
43764 (R_X86_64_PLT32): Likewise.
43765 (R_X86_64_COPY): Likewise.
43766 (R_X86_64_GLOB_DAT): Likewise.
43767 (R_X86_64_JUMP_SLOT): Likewise.
43768 (R_X86_64_RELATIVE): Likewise.
43769 (R_X86_64_GOTPCREL): Likewise.
43770 (R_X86_64_32): Likewise.
43771 (R_X86_64_32S): Likewise.
43772 (R_X86_64_16): Likewise.
43773 (R_X86_64_PC16): Likewise.
43774 (R_X86_64_8): Likewise.
43775 (R_X86_64_PC8): Likewise.
43776
43777 * include/grub/i386/efi/pci.h: New file.
43778
43779 * include/grub/i386/linux.h (GRUB_LINUX_EFI_SIGNATURE):
43780 Change it value based on platform.
43781 (GRUB_LINUX_EFI_SIGNATURE_0204): New constant.
43782 (GRUB_E820_RAM): Likewise.
43783 (GRUB_E820_RESERVED): Likewise.
43784 (GRUB_E820_ACPI): Likewise.
43785 (GRUB_E820_NVS): Likewise.
43786 (GRUB_E820_EXEC_CODE): Likewise.
43787 (GRUB_E820_MAX_ENTRY): Likewise.
43788 (grub_e820_mmap): New structure.
43789 (linux_kernel_header): Change the efi field according to different
43790 kernel version, also field from linux_kernel_header.
43791
43792 * include/grub/kernel.h (grub_module_info): Add padding for x86_64.
43793
43794 * include/grub/pci.h (GRUB_PCI_ADDR_SPACE_MASK): New constant.
43795 (GRUB_PCI_ADDR_SPACE_MEMORY): Likewise.
43796 (GRUB_PCI_ADDR_SPACE_IO): Likewise.
43797 (GRUB_PCI_ADDR_MEM_TYPE_MASK): Likewise.
43798 (GRUB_PCI_ADDR_MEM_TYPE_32): Likewise.
43799 (GRUB_PCI_ADDR_MEM_TYPE_1M): Likewise.
43800 (GRUB_PCI_ADDR_MEM_TYPE_64): Likewise.
43801 (GRUB_PCI_ADDR_MEM_PREFETCH): Likewise.
43802 (GRUB_PCI_ADDR_MEM_MASK): Likewise.
43803 (GRUB_PCI_ADDR_IO_MASK): Likewise.
43804
43805 * include/grub/x86_64/efi/kernel.h: New file.
43806
43807 * include/grub/x86_64/efi/loader.h: Likewise.
43808
43809 * include/grub/x86_64/efi/machine.h: Likewise.
43810
43811 * include/grub/x86_64/efi/pci.h: Likewise.
43812
43813 * include/grub/x86_64/efi/time.h: Likewise.
43814
43815 * include/grub/x86_64/linux.h: Likewise.
43816
43817 * include/grub/x86_64/setjmp.h: Likewise.
43818
43819 * include/grub/x86_64/time.h: Likewise.
43820
43821 * include/grub/x86_64/types.h: Likewise.
43822
43823 * kern/dl.c (GRUB_CPU_SIZEOF_VOID_P): Changed to
43824 GRUB_TARGET_SIZEOF_VOID_P.
43825
43826 * kern/efi/efi.c (grub_efi_locate_protocol): Wrap efi calls.
43827 (grub_efi_locate_handle): Likewise.
43828 (grub_efi_open_protocol): Likewise.
43829 (grub_efi_set_text_mode): Likewise.
43830 (grub_efi_stall): Likewise.
43831 (grub_exit): Likewise.
43832 (grub_reboot): Likewise.
43833 (grub_halt): Likewise.
43834 (grub_efi_exit_boot_services): Likewise.
43835 (grub_get_rtc): Likewise.
43836
43837 * kern/efi/mm.c (MEMORY_MAP_SIZE): Change to 0x3000 for new models.
43838 (GRUB_CPU_SIZEOF_VOID_P): Changed to GRUB_TARGET_SIZEOF_VOID_P.
43839 (grub_efi_allocate_pages): Wrap efi calls.
43840 (grub_efi_free_pages): Wrap efi calls.
43841 (grub_efi_get_memory_map): Wrap efi calls.
43842
43843 * kern/x86_64/dl.c: New file.
43844
43845 * kern/x86_64/efi/callwrap.S: Likewise.
43846
43847 * kern/x86_64/efi/startup.S: Likewise.
43848
43849 * loader/efi/appleloader.c: Likewise.
43850
43851 * loader/efi/chainloader.c (cmdline): New variable.
43852 (grub_chainloader_unload): Wrap efi calls.
43853 (grub_chainloader_boot): Likewise.
43854 (grub_rescue_cmd_chainloader): Wrap efi calls, handle
43855 command line.
43856
43857 * loader/efi/chainloader_normal.c (chainloader_command):
43858 Change grub_chainloader_cmd to grub_rescue_cmd_chainloader, pass
43859 command line.
43860
43861 * loader/i386/efi/linux.c (allocate_pages): Change allocation
43862 method.
43863 (grub_e820_add_region): New function.
43864 (grub_linux_boot): Construct e820 map from efi map, handle x86_64
43865 booting.
43866 (grub_find_video_card): New function.
43867 (grub_linux_setup_video): New function.
43868 (grub_rescue_cmd_linux): Probe for video information.
43869
43870 * normal/x86_64/setjmp.S: New file.
43871
43872 * term/efi/console.c (map_char): New function.
43873 (grub_console_putchar): Map unicode char.
43874 (grub_console_checkkey): Wrap efi calls.
43875 (grub_console_getkey): Likewise.
43876 (grub_console_getwh): Likewise.
43877 (grub_console_gotoxy): Likewise.
43878 (grub_console_cls): Likewise.
43879 (grub_console_setcolorstate): Likewise.
43880 (grub_console_setcursor): Likewise.
43881
43882 * util/i386/efi/grub-mkimage.c: Add support for x86_64.
43883
43884 2008-07-16 Pavel Roskin <proski@gnu.org>
43885
43886 * loader/i386/efi/linux.c (allocate_pages): Fix warnings in
43887 format strings.
43888
43889 * util/i386/efi/grub-mkimage.c (get_target_address): Return a
43890 pointer, not an integer. This fixes a warning and prevents
43891 precision loss on 64-bit systems.
43892 (relocate_addresses): Remove unneeded cast.
43893
43894 2008-07-15 Pavel Roskin <proski@gnu.org>
43895
43896 * kern/i386/ieee1275/init.c: Include grub/cache.h.
43897
43898 * term/ieee1275/ofconsole.c: Disable code unused on i386.
43899
43900 * kern/ieee1275/ieee1275.c (grub_ieee1275_get_integer_property):
43901 Fix comparison between signed and unsigned.
43902
43903 * include/grub/i386/ieee1275/console.h: Declare
43904 grub_console_init() and grub_console_fini().
43905
43906 * loader/i386/ieee1275/linux.c (grub_set_bootpath): Remove.
43907 It's empty and unused.
43908
43909 * fs/ext2.c (grub_ext2_read_block): Initialize blknr in the
43910 beginning to avoid warnings with some compilers.
43911
43912 * loader/ieee1275/multiboot2.c: Include grub/machine/loader.h.
43913 [__i386__] (grub_mb2_arch_boot): Avoid unnecessary cast.
43914
43915 2008-07-14 Pavel Roskin <proski@gnu.org>
43916
43917 * kern/env.c (grub_register_variable_hook): Don't copy empty
43918 string, it leaks memory. Pass "" to grub_env_set(), it should
43919 handle constant strings.
43920
43921 * commands/blocklist.c (grub_cmd_blocklist): Fix format warning.
43922 * commands/cmp.c (grub_cmd_cmp): Likewise.
43923 * kern/dl.c (grub_dl_flush_cache): Likewise.
43924 (grub_dl_load_core): Likewise.
43925 * kern/elf.c (grub_elf32_load_phdrs): Likewise.
43926 (grub_elf64_load_phdrs): Likewise.
43927
43928 2008-07-13 Pavel Roskin <proski@gnu.org>
43929
43930 * lib/LzmaEnc.c (LzmaEnc_SetProps): Fix warning about comparison
43931 between signed and unsigned.
43932 (LzmaEnc_Finish): Fix warning about an unused parameter.
43933
43934 2008-07-13 Bean <bean123ch@gmail.com>
43935
43936 * Makefile.in (enable_lzo): New rule.
43937
43938 * conf/i386-pc.rmk (grub_mkimage_SOURCES): New test with enable_lzo.
43939
43940 * configure.ac (ENABLE_LZO): New option --enable-lzo.
43941
43942 * boot/i386/pc/lnxboot.S: #include <config.h>.
43943
43944 * include/grub/i386/pc/kernel.h (GRUB_KERNEL_MACHINE_RAW_SIZE): Change
43945 its value according to the compression algorithm used, lzo or lzma.
43946
43947 * util/i386/pc/grub-mkimage.c (compress_kernel): Use different
43948 compression algorithm according to configure macro.
43949
43950 * kern/i386/pc/startup.S (codestart): Likewise.
43951
43952 * kern/i386/pc/lzma_decode.S: New file.
43953
43954 * include/grub/lib/LzFind.h: Likewise.
43955
43956 * include/grub/lib/LzHash.h: Likewise.
43957
43958 * include/grub/lib/LzmaDec.h: Likewise.
43959
43960 * include/grub/lib/LzmaEnc.h: Likewise.
43961
43962 * include/grub/lib/LzmaTypes.h: Likewise.
43963
43964 * lib/LzFind.c: Likewise.
43965
43966 * lib/LzmaDec.c: Likewise.
43967
43968 * lib/LzmaEnc.c: Likewise.
43969
43970 2008-07-13 Bean <bean123ch@gmail.com>
43971
43972 * fs/ext2.c (EXT4_EXTENTS_FLAG): New macro.
43973 (grub_ext4_extent_header): New structure.
43974 (grub_ext4_extent): Likewise.
43975 (grub_ext4_extent_idx): Likewise.
43976 (grub_ext4_find_leaf): New function.
43977 (grub_ext2_read_block): Handle extents.
43978
43979 2008-07-12 Robert Millan <rmh@aybabtu.com>
43980
43981 * util/i386/pc/grub-mkrescue.in: s/grub-install/grub-mkrescue/g.
43982
43983 2008-07-11 Robert Millan <rmh@aybabtu.com>
43984
43985 * util/grub.d/40_custom.in: New file. Example on how to add custom
43986 entries to /etc/grub.d.
43987 * conf/common.rmk (%, update-grub_SCRIPTS, CLEANFILES): Install
43988 40_custom (implicitly, by merging all the grub.d rules).
43989
43990 2008-07-11 Pavel Roskin <proski@gnu.org>
43991
43992 * commands/read.c (grub_getline): Fix invalid memory access.
43993 Don't add newline to the variable value.
43994
43995 * term/i386/pc/serial.c (GRUB_SERIAL_PORT_NUM): New constant.
43996 [!GRUB_MACHINE_PCBIOS] (serial_hw_io_addr): Add COM2 and COM3.
43997 (serial_hw_get_port): Check validity of the port number.
43998 (grub_cmd_serial): Check return value of serial_hw_get_port().
43999
44000 2008-07-07 Pavel Roskin <proski@gnu.org>
44001
44002 * boot/i386/pc/diskboot.S (notification_string): Replace
44003 "Loading kernel" with just "loading". This is shorter, less
44004 confusing and saves a few bytes for possible future changes.
44005
44006 2008-07-05 Pavel Roskin <proski@gnu.org>
44007
44008 * disk/ata.c (grub_ata_dumpinfo): Don't output addressing and
44009 size for ATAPI devices, they are undefined. Output sector
44010 number in decimal form.
44011
44012 * disk/ata.c: Use named constants for status bits.
44013
44014 2008-07-04 Pavel Roskin <proski@gnu.org>
44015
44016 * kern/i386/linuxbios/init.c (grub_machine_init): Cast addr to
44017 grub_addr_t before casting it to the void pointer to fix a
44018 warning. Non-addressable regions are discarded earlier.
44019 (grub_arch_modules_addr): Cast _end to grub_addr_t.
44020 * kern/i386/linuxbios/table.c: Include grub/misc.h.
44021 (check_signature): Don't shadow table_header.
44022 (grub_linuxbios_table_iterate): Cast numeric constants to
44023 grub_linuxbios_table_header_t.
44024 * include/grub/i386/linuxbios/init.h: Add noreturn attribute to
44025 grub_stop().
44026
44027 * kern/ieee1275/init.c: Cast _start and _end to grub_addr_t to
44028 prevent warnings.
44029
44030 * include/grub/misc.h (ALIGN_UP): Avoid unnecessary cast to a
44031 pointer, which can cause warnings. Support 64-bit addresses.
44032
44033 * util/elf/grub-mkimage.c: Use GRUB_TARGET_SIZEOF_LONG instead
44034 of sizeof(long). This fixes PowerPC image generation on x86_64.
44035
44036 2008-07-04 Robert Millan <rmh@aybabtu.com>
44037
44038 This fixes a performance issue when pc & gpt partmap iterators
44039 didn't abort iteration even after our hook found what it was
44040 looking for (often causing expensive probes of non-existent drives).
44041
44042 Some callers relied on previous buggy behaviour, since they would
44043 raise an error when their own hooks caused early abortion of its
44044 iteration.
44045
44046 * kern/device.c (grub_device_open): Improve error message.
44047 * disk/lvm.c (grub_lvm_open): Likewise.
44048 * disk/raid.c (grub_raid_open): Likewise.
44049
44050 * partmap/pc.c (pc_partition_map_iterate): Abort parent iteration
44051 when hook requests it, independently of grub_errno.
44052 (pc_partition_map_probe): Do not fail when find_func() caused
44053 early abortion of pc_partition_map_iterate().
44054
44055 * partmap/gpt.c (gpt_partition_map_iterate): Abort parent iteration
44056 when hook requests it, independently of grub_errno.
44057 (gpt_partition_map_probe): Do not fail when find_func() caused
44058 early abortion of gpt_partition_map_iterate().
44059
44060 * kern/partition.c (grub_partition_iterate): Abort parent iteration
44061 when hook requests it, independently of grub_errno. Do not fail when
44062 part_map_iterate_hook() caused early abortion of p->iterate().
44063
44064 * util/biosdisk.c (grub_util_biosdisk_get_grub_dev): Do not fail
44065 when grub_partition_iterate() returned with non-zero.
44066
44067 2008-07-03 Pavel Roskin <proski@gnu.org>
44068
44069 * disk/ata.c (grub_ata_pio_write): Check status before writing,
44070 like we do in grub_ata_pio_read().
44071 (grub_ata_readwrite): Always write individual sectors. Fix the
44072 sector count for the remainder.
44073 (grub_ata_write): Enable writing to ATA devices. Correctly
44074 report error for ATAPI devices.
44075
44076 2008-07-02 Pavel Roskin <proski@gnu.org>
44077
44078 * boot/i386/pc/cdboot.S: Add _start entry to fix a linker
44079 warning.
44080
44081 * disk/ata.c (grub_ata_readwrite): Don't increment sector number
44082 for every read sector, we already increment it for the whole
44083 batch. This fixes reading more than 256 sectors at once.
44084
44085 * util/grub-editenv.c (cmd_info): Cast argument to long
44086 explicitly. ptrdiff_t reduces to int on i386.
44087
44088 * util/grub-editenv.c (main): Be specific which parameter is
44089 missing.
44090
44091 * disk/memdisk.c (memdisk_addr): Make a pointer to fix warnings.
44092 (memdisk): Make memdisk_orig_addr a pointer.
44093
44094 * fs/reiserfs.c (grub_reiserfs_read): Fix misuse of grub_size_t
44095 for file offsets, use grub_off_t instead. Fix printf format
44096 warnings.
44097
44098 * fs/reiserfs.c: Remove #warning, TODO list items don't belong
44099 there. Real unexpected warnings should not drown in the noise
44100 about known problems.
44101
44102 * commands/hexdump.c (grub_cmd_hexdump): Fix misuse of
44103 grub_disk_addr_t for memory addresses.
44104
44105 * loader/aout.c (grub_aout_load): Cast load_addr to pointer
44106 explicitly to fix a warning.
44107
44108 * util/grub-editenv.c (cmd_info): Fix warning in printf format.
44109
44110 * Makefile.in (MODULE_LDFLAGS): New variable.
44111 * aclocal.m4 (grub_PROG_LD_BUILD_ID_NONE): New macro. Check if
44112 the linker accepts --build-id=none.
44113 * configure.ac: Call grub_PROG_LD_BUILD_ID_NONE. Substitute
44114 MODULE_LDFLAGS.
44115 * genmk.rb: Use MODULE_LDFLAGS when linking modules.
44116
44117 * fs/xfs.c (struct grub_xfs_dir_header): Use names similar to
44118 those in Linux XFS code. Provide a way to access 64-bit parent
44119 inode.
44120 (grub_xfs_iterate_dir): Use the new names. Avoid reading past
44121 the end of struct grub_xfs_dir_header.
44122
44123 2008-07-02 Bean <bean123ch@gmail.com>
44124
44125 * include/grub/ieee1275.h (grub_ieee1275_flag): New constant
44126 GRUB_IEEE1275_FLAG_CANNOT_INTERPRET, GRUB_IEEE1275_FLAG_FORCE_CLAIM
44127 and GRUB_IEEE1275_FLAG_NO_ANSI.
44128
44129 * kern/ieee1275/cmain.c (grub_ieee1275_find_options): Set flag
44130 GRUB_IEEE1275_FLAG_CANNOT_INTERPRET, GRUB_IEEE1275_FLAG_FORCE_CLAIM
44131 and GRUB_IEEE1275_FLAG_NO_ANSI for Open Hackware.
44132
44133 * kern/ieee1275/ieee1275.c (grub_ieee1275_interpret): Return
44134 immediately if GRUB_IEEE1275_FLAG_CANNOT_INTERPRET is set.
44135
44136 * kern/ieee1275/init.c (grub_claim_heap): Claim memory directly if
44137 GRUB_IEEE1275_FLAG_FORCE_CLAIM is set.
44138
44139 * term/ieee1275/ofconsole.c (grub_ofconsole_writeesc): Don't output
44140 esc sequence on non ANSI terminal.
44141 (grub_ofconsole_gotoxy): Emulate backspace key on non ANSI terminal.
44142
44143 * util/elf/grub-mkimage.c (add_segments): Move ELF header to the
44144 beginning of file.
44145
44146 2008-07-02 Bean <bean123ch@gmail.com>
44147
44148 * conf/common.rmk (bin_UTILITIES): Add grub-editenv.
44149 (grub_editenv_SOURCES): New variable.
44150 (pkglib_MODULES): Add loadenv.mod.
44151 (loadenv_mod_SOURCES): New variable.
44152 (loadenv_mod_CFLAGS): Likewise.
44153 (loadenv_mod_LDFLAGS): Likewise.
44154
44155 * include/grub/envblk.h: New file.
44156
44157 * util/envblk.c: New file.
44158
44159 * util/grub-editenv.c: New file.
44160
44161 * commands/loadenv.c: New file.
44162
44163 2008-07-01 Pavel Roskin <proski@gnu.org>
44164
44165 * include/multiboot2.h (struct multiboot_tag_module): Use char,
44166 not unsigned char. This fixes warnings and is consistent with
44167 other tags.
44168
44169 * disk/fs_uuid.c (search_fs_uuid): Correctly increment count.
44170
44171 * normal/parser.y: Define YYENABLE_NLS as 0 to fix warnings.
44172
44173 * term/tparm.c (analyze): Always set *popcount.
44174
44175 * loader/i386/pc/linux.c (grub_rescue_cmd_linux): Remove useless
44176 cast to fix a warning.
44177
44178 * loader/i386/pc/multiboot2.c (grub_mb2_arch_module_alloc): Use
44179 cast to suppress a warning.
44180
44181 * fs/afs.c (grub_afs_read_block): Return grub_disk_addr_t, as
44182 grub_fshelp_read_file() expects.
44183
44184 * fs/fat.c: Fix UUID calculation on big-endian systems. We
44185 write uuid as a 32-bit value in CPU byte order, so declare and
44186 use it as such.
44187
44188 * disk/raid.c: Cast grub_dprintf() arguments to unsigned long
44189 long if the format specifier expects it.
44190 * partmap/gpt.c (gpt_partition_map_iterate): Likewise.
44191 * partmap/pc.c (pc_partition_map_iterate): Likewise.
44192 * fs/ntfs.c (grub_ntfs_uuid): Cast data->uuid to unsigned long
44193 long to fix a warning.
44194 * fs/reiserfs.c (grub_reiserfs_read): Change casts in
44195 grub_dprintf() arguments to fix warnings.
44196
44197 2008-06-30 Pavel Roskin <proski@gnu.org>
44198
44199 * util/i386/pc/grub-setup.c (setup): Write install_dos_part and
44200 install_bsd_part immediately before core.img is embedded or
44201 modified on disk. This fixes core.img verification if core.img
44202 cannot be embedded.
44203
44204 * util/i386/pc/grub-setup.c (setup): Use core_path_dev, not
44205 core_path to calculate the blocklist.
44206 Patch from Javier Martín <lordhabbit@gmail.com>
44207
44208 2008-06-29 Robert Millan <rmh@aybabtu.com>
44209
44210 * fs/xfs.c (GRUB_XFS_FSB_TO_BLOCK): New macro. Maps filesystem
44211 block to disk block.
44212 (grub_xfs_read_block): Use GRUB_XFS_FSB_TO_BLOCK() on result.
44213 Patch from Niels Böhm <bitbucket@arcor.de>
44214
44215 2008-06-29 Robert Millan <rmh@aybabtu.com>
44216
44217 * util/update-grub_lib.in (font_path): Search for fonts in
44218 /boot/grub first, which is more likely to be readable (we aren't
44219 deciding where fonts live, just looking for them).
44220
44221 2008-06-26 Pavel Roskin <proski@gnu.org>
44222
44223 * util/biosdisk.c (read_device_map): Don't leave dead map
44224 entries for devices failing stat() check.
44225
44226 * util/i386/pc/grub-setup.c (setup): Don't reuse core_path, use
44227 core_path_dev for the core.img path on the target device.
44228
44229 2008-06-26 Robert Millan <rmh@aybabtu.com>
44230
44231 * disk/fs_uuid.c: New file.
44232 * conf/common.rmk (pkglib_MODULES): Add `fs_uuid.mod'.
44233 (fs_uuid_mod_SOURCES, fs_uuid_mod_CFLAGS)
44234 (fs_uuid_mod_LDFLAGS): New variables.
44235 * include/grub/disk.h (grub_disk_dev_id): Add
44236 `GRUB_DISK_DEVICE_UUID_ID'.
44237 * kern/disk.c (grub_disk_dev_iterate): Allow disk devices not to
44238 implement iterate().
44239
44240 2008-06-26 Robert Millan <rmh@aybabtu.com>
44241
44242 * util/grub.d/10_linux.in: Avoid passing UUIDs to Linux when either
44243 "/dev/disk/by-uuid/${GRUB_DEVICE_UUID}" does not exist, or when a
44244 Linux image includes no initrd.
44245
44246 2008-06-21 Javier Martín <lordhabbit@gmail.com>
44247
44248 * util/i386/pc/grub-setup.c (setup): Remove literal "core.img" in a
44249 call to resolve the core image location that effectively appended the
44250 name twice.
44251
44252 2008-06-21 Robert Millan <rmh@aybabtu.com>
44253
44254 * util/grub.d/00_header.in: Move last prepare_grub_to_access_device()
44255 call from here ...
44256
44257 * util/grub.d/10_hurd.in: ... to here ...
44258 * util/grub.d/10_linux.in: ... and here.
44259
44260 2008-06-19 Robert Millan <rmh@aybabtu.com>
44261
44262 * kern/main.c (grub_main): Export `prefix' variable immediately
44263 after it has been set by grub_machine_set_prefix().
44264
44265 2008-06-19 Robert Millan <rmh@aybabtu.com>
44266
44267 * commands/search.c (search_label, search_fs_uuid, search_file): Print
44268 search result when not saving to variable, not the other way around.
44269 When saving to variable, abort iteration as soon as a match is found.
44270
44271 2008-06-19 Robert Millan <rmh@aybabtu.com>
44272
44273 * util/update-grub_lib.in (prepare_grub_to_access_device): Remove
44274 check for partition that provides /boot/grub. Its logic is flawed,
44275 as it prevents prepare_grub_to_access_device() from being called
44276 multiple times.
44277
44278 2008-06-19 Robert Millan <rmh@aybabtu.com>
44279
44280 * util/update-grub_lib.in (prepare_grub_to_access_device): Issue
44281 "insmod" command directly when abstraction modules are needed,
44282 instead of relying on GRUB_PRELOAD_MODULES (which had no effect
44283 since it had already been processed).
44284
44285 2008-06-19 Pavel Roskin <proski@gnu.org>
44286
44287 * conf/i386-efi.rmk: Recompile grub-mkimage.c if Makefile has
44288 changed. This is needed in case GRUB_LIBDIR changes.
44289 * conf/i386-ieee1275.rmk: Likewise.
44290 * conf/i386-linuxbios.rmk: Likewise.
44291 * conf/i386-pc.rmk: Likewise.
44292 * conf/powerpc-ieee1275.rmk: Likewise.
44293
44294 2008-06-18 Pavel Roskin <proski@gnu.org>
44295
44296 * conf/powerpc-ieee1275.rmk (kernel_elf_SOURCES): Rename
44297 kernel_elf_symlist.c to symlist.c for consistency with other
44298 architectures. Update all users.
44299 * conf/sparc64-ieee1275.rmk (kernel_elf_SOURCES): Likewise.
44300
44301 2008-06-18 Robert Millan <rmh@aybabtu.com>
44302
44303 * util/i386/pc/grub-install.in: If the drive is LVM or RAID, prepend
44304 it in prefix.
44305
44306 * util/i386/pc/grub-setup.c (main): Don't handle prefix at all. Set
44307 `must_embed' to 1 when root_dev is a RAID device. When dest_dev is
44308 a RAID device, run setup() for all members independently on whether
44309 LVM abstraction is being used.
44310 (setup): Don't handle prefix at all; let grub-mkimage take care of it.
44311 If grub-mkimage has set `*install_dos_part == -2', don't override this
44312 value.
44313 Perform *install_dos_part adjustments independently on whether
44314 we're embedding or not.
44315 Clarify error message when image is too big for embedding.
44316 Remove duplicate *install_dos_part stanza.
44317
44318 2008-06-17 Robert Millan <rmh@aybabtu.com>
44319
44320 * term/ieee1275/ofconsole.c (fgcolor, bgcolor): Remove variables.
44321 (grub_ofconsole_normal_color, grub_ofconsole_highlight_color): New
44322 variables.
44323 (grub_ofconsole_setcolor, grub_ofconsole_getcolor): Load/store
44324 values in grub_ofconsole_normal_color and
44325 grub_ofconsole_highlight_color (they're not directly related to
44326 background and foreground).
44327 (grub_ofconsole_setcolorstate): Extract background and foreground
44328 from grub_ofconsole_normal_color and grub_ofconsole_highlight_color.
44329
44330 2008-06-17 Robert Millan <rmh@aybabtu.com>
44331
44332 * util/update-grub_lib.in (prepare_grub_to_access_device): Use
44333 /boot/grub for the check in last commit, not /boot (they could be
44334 different partitions).
44335
44336 2008-06-16 Robert Millan <rmh@aybabtu.com>
44337
44338 * util/update-grub_lib.in (prepare_grub_to_access_device): If we were
44339 asked to setup access for the same partition that provides /boot,
44340 don't bother using UUIDs since our root already has the value we
44341 want.
44342
44343 2008-06-16 Robert Millan <rmh@aybabtu.com>
44344
44345 * util/biosdisk.c (convert_system_partition_to_system_disk): Detect
44346 I2O devices.
44347 Patch from Sven Mueller <sven@debian.org>.
44348
44349 2008-06-16 Robert Millan <rmh@aybabtu.com>
44350
44351 * util/update-grub.in: Check for $EUID instead of $UID.
44352 Reported by Vincent Zweije.
44353
44354 2008-06-16 Bean <bean123ch@gmail.com>
44355
44356 * fs/ext2.c (grub_ext2_blockgroup): Revert to pre-journal state.
44357 (grub_ext2_read_block): Likewise.
44358 (grub_ext2_read_inode): Likewise.
44359 (grub_ext2_mount): Likewise.
44360 (grub_ext2_close): Likewise.
44361 (grub_ext3_get_journal): Removed.
44362
44363 * fs/reiserfs.c (grub_reiserfs_get_item): Revert to pre-journal state.
44364 (grub_reiserfs_read_symlink): Likewise.
44365 (grub_reiserfs_mount): Likewise.
44366 (grub_reiserfs_open): Likewise.
44367 (grub_reiserfs_read): Likewise.
44368 (grub_reiserfs_close): Likewise.
44369 (grub_reiserfs_get_journal): Removed.
44370
44371 * fs/fshelp.c (grub_fshelp_read): Removed.
44372 (grub_fshelp_map_block): Likewise.
44373
44374 * include/grub/fshelp.h (grub_fshelp_journal_type): Removed.
44375 (grub_fshelp_journal): Likewise.
44376 (grub_fshelp_read): Likewise.
44377 (grub_fshelp_map_block): Likewise.
44378
44379 2008-06-16 Pavel Roskin <proski@gnu.org>
44380
44381 * conf/powerpc-ieee1275.rmk: Remove -msoft-float, we don't use
44382 floating point anymore.
44383 * include/grub/powerpc/libgcc.h: Leave only necessary exports.
44384
44385 2008-06-15 Pavel Roskin <proski@gnu.org>
44386
44387 * commands/ls.c (grub_ls_list_files): Use integer calculations
44388 for human readable format, avoid floating point use.
44389 * kern/misc.c (grub_ftoa): Remove.
44390 (grub_vsprintf): Remove floating point support.
44391
44392 2008-06-15 Robert Millan <rmh@aybabtu.com>
44393
44394 * util/grub.d/10_linux.in: Use the underlying device for loop-AES
44395 devices.
44396 Reported by Max Vozeler.
44397
44398 2008-06-15 Robert Millan <rmh@aybabtu.com>
44399
44400 * util/i386/pc/grub-mkimage.c (generate_image): If we included a drive
44401 in our prefix, set install_{dos,bsd}_part = -2 to indicate this can be
44402 skipped later.
44403 (main): If a memdisk was requested, add "(memdisk)" drive explicitly to
44404 the beginning of the prefix.
44405
44406 * kern/i386/pc/init.c (make_install_device): Remove memdisk check.
44407 It is assumed that if we have a memdisk, grub-mkimage has set
44408 grub_prefix to include the "(memdisk)" drive in it.
44409
44410 2008-06-15 Robert Millan <rmh@aybabtu.com>
44411
44412 * term/i386/pc/console.c [GRUB_MACHINE_LINUXBIOS] (grub_console_init):
44413 Initialize keyboard controller after registering the terminal, so that
44414 grub_printf() can be called from grub_keyboard_controller_init().
44415
44416 2008-06-15 Robert Millan <rmh@aybabtu.com>
44417
44418 * fs/sfs.c (grub_sfs_read_extent): Fix the count of nodes in
44419 extent-btree which is written as big endian on disk.
44420 Reported by Alain Greppin <al@chilibi.org>.
44421
44422 2008-06-14 Robert Millan <rmh@aybabtu.com>
44423
44424 * util/i386/efi/grub-install.in (modules): Remove `_chain'.
44425 * util/i386/pc/grub-install.in (modules): Likewise.
44426
44427 2008-06-13 Pavel Roskin <proski@gnu.org>
44428
44429 * commands/ls.c (grub_ls_list_files): Fix format warnings.
44430
44431 2008-06-13 Bean <bean123ch@gmail.com>
44432
44433 * commands/hexdump.c (grub_cmd_hexdump): Adjust offset for partition.
44434
44435 * fs/ext2.c (grub_ext3_get_journal): Fix revoke block handling.
44436
44437 * fs/fshelp.c (grub_fshelp_map_block): Don't map block 0 as it's used
44438 to indicate sparse block.
44439
44440 2008-06-12 Pavel Roskin <proski@gnu.org>
44441
44442 * fs/ext2.c (grub_ext2_read_inode): Don't normalize block
44443 number, grub_fshelp_read() does it for us.
44444
44445 * fs/fshelp.c (grub_fshelp_read): New function. Implement
44446 linear disk read with journal translation.
44447 * fs/ext2.c: Use grub_fshelp_read() instead of grub_disk_read().
44448 * include/grub/fshelp.h: Declare grub_fshelp_read().
44449
44450 2008-06-09 Pavel Roskin <proski@gnu.org>
44451
44452 * fs/minix.c (grub_minix_mount): Handle error reading
44453 superblock.
44454
44455 2008-06-08 Robert Millan <rmh@aybabtu.com>
44456
44457 * util/i386/pc/grub-setup.c (main): If install drive is an LVM,
44458 don't append the RAID prefix afterwards.
44459 Reported by Clint Adams.
44460
44461 2008-06-08 Robert Millan <rmh@aybabtu.com>
44462
44463 Based on description from Pavel:
44464 * kern/disk.c (grub_disk_check_range): Rename to ...
44465 (grub_disk_adjust_range): ... this. Add a comment explaining the
44466 tasks performed by this function.
44467
44468 2008-06-08 Robert Millan <rmh@aybabtu.com>
44469
44470 * include/grub/ntfs.h (struct grub_ntfs_bpb): Rename `serial_number' to
44471 `num_serial' (for consistency with other variables).
44472 (struct grub_ntfs_data): Add `uuid' member.
44473 * fs/ntfs.c (grub_ntfs_mount): Initialize `data->uuid'.
44474 (grub_ntfs_uuid): New function.
44475 (grub_ntfs_fs): Reference grub_ntfs_uuid() in `uuid' struct member.
44476
44477 2008-06-07 Pavel Roskin <proski@gnu.org>
44478
44479 * util/biosdisk.c (open_device): Revert last change to the
44480 function, it broke installation. The sector needs to be
44481 different dependent on which device is opened.
44482
44483 2008-06-06 Robert Millan <rmh@aybabtu.com>
44484
44485 Ensure GRUB_KERNEL_MACHINE_DATA_END is always consistent with the
44486 rest of GRUB, and breakage doesn't happen if its value were modified.
44487
44488 * include/grub/i386/pc/kernel.h (GRUB_KERNEL_MACHINE_RAW_SIZE):
44489 Redefine as an offset from `GRUB_KERNEL_MACHINE_DATA_END' instead of
44490 a constant (same value).
44491 * kern/i386/pc/startup.S: Replace hardcoded `0x50' with
44492 `GRUB_KERNEL_MACHINE_DATA_END' (same value).
44493
44494 2008-06-06 Robert Millan <rmh@aybabtu.com>
44495
44496 * util/biosdisk.c (open_device): Do not modify sector offset when
44497 accessing a partition. kern/disk.c already handles this for us.
44498
44499 2008-06-06 Robert Millan <rmh@aybabtu.com>
44500
44501 * util/grub-emu.c (grub_machine_init): Move code in this function from
44502 here ...
44503 (main): ... to here (before grub_util_biosdisk_init() call, to prevent
44504 segfault in case grub_printf() is called).
44505
44506 * util/i386/pc/grub-install.in: Append `--device-map=${device_map}' to
44507 grub_probe. Update all users not to explicitly add it again.
44508 (grub_device): New variable; contains corresponding device for grubdir.
44509 (fs_module, partmap_module, devabstraction_module): Pass
44510 `--device ${grub_device}' to grub_probe to avoid traversing /dev
44511 every time.
44512
44513 2008-06-05 Robert Millan <rmh@aybabtu.com>
44514
44515 * normal/misc.c (grub_normal_print_device_info): When a filesystem UUID
44516 is found, print it (same layout as with labels).
44517
44518 2008-06-04 Robert Millan <rmh@aybabtu.com>
44519
44520 * util/biosdisk.c (get_drive): Rename to ...
44521 (find_grub_drive): ... this. Update all users.
44522
44523 (get_os_disk): Rename to ...
44524 (convert_system_partition_to_system_disk): ... this. Update all users.
44525
44526 (find_drive): Rename to ...
44527 (find_system_device): ... this. Update all users.
44528
44529 2008-06-04 Robert Millan <rmh@aybabtu.com>
44530
44531 * util/biosdisk.c (get_os_disk): Handle IDA devices.
44532 * util/grub-mkdevicemap.c (get_mmc_disk_name)
44533 (make_device_map): Likewise.
44534
44535 2008-06-01 Robert Millan <rmh@aybabtu.com>
44536
44537 * util/biosdisk.c (get_drive): Verify that `map[i].drive' is non-NULL
44538 before dereferencing it.
44539
44540 * fs/fat.c (struct grub_fat_bpb): Move fat32-specific fields into a
44541 union with fat12/fat16-specific ones. Add some new fields, including
44542 `num_serial' for both versions.
44543 (struct grub_fat_data): Add `uuid' member.
44544 (grub_fat_mount): Refer to fat32-specific fields in `bpb' by their new
44545 names. Initialize `data->uuid' using `num_serial'.
44546 (grub_fat_uuid): New function.
44547 (grub_fat_fs): Reference grub_fat_uuid() in `uuid' struct member.
44548
44549 * fs/reiserfs.c (grub_reiserfs_superblock): Add `uuid' field.
44550 (grub_reiserfs_uuid): New function.
44551 (grub_reiserfs_fs): Reference grub_reiserfs_uuid() in `uuid' struct
44552 member.
44553
44554 * fs/xfs.c (grub_xfs_sblock): Add `uuid' field.
44555 (grub_xfs_uuid): New function.
44556 (grub_xfs_fs): Reference grub_reiserfs_uuid() in `uuid' struct member.
44557
44558 2008-06-01 Robert Millan <rmh@aybabtu.com>
44559
44560 * util/update-grub_lib.in (prepare_grub_to_access_device): Generate
44561 code that is backward compatible with pre-uuid search command.
44562
44563 2008-05-31 Robert Millan <rmh@aybabtu.com>
44564
44565 * disk/i386/pc/biosdisk.c (grub_biosdisk_iterate): Iterate through
44566 floppies after everything else, to ensure floppy drive isn't accessed
44567 unnecessarily (patch from Bean).
44568
44569 2008-05-31 Robert Millan <rmh@aybabtu.com>
44570
44571 * commands/search.c (search_label, search_fs_uuid, search_file): Do
44572 not print device names when we were asked to set a variable.
44573
44574 2008-05-31 Robert Millan <rmh@aybabtu.com>
44575
44576 * term/ieee1275/ofconsole.c (grub_ofconsole_setcursor): Implement
44577 using "cursor-on" and "cursor-off" commands (understood at least by
44578 the Open Firmware flavour on OLPC).
44579
44580 2008-05-31 Michael Gorven <michael@gorven.za.net>
44581
44582 * term/terminfo.c (grub_terminfo_set_current): Correct vt100 cursor
44583 on and off sequences.
44584
44585 2008-05-31 Robert Millan <rmh@aybabtu.com>
44586
44587 * util/update-grub_lib.in: Replace `grub-probe' with `${grub_probe}'.
44588 * util/update-grub.in: Likewise.
44589
44590 2008-05-30 Pavel Roskin <proski@gnu.org>
44591
44592 * util/biosdisk.c (linux_find_partition): Simplify logic and
44593 make the code more universal. Keep special processing for
44594 devfs, but use a simple rule for all other devices. If the
44595 device ends with a number, append 'p' and the partition number.
44596 Otherwise, append only the partition number.
44597
44598 2008-05-30 Robert Millan <rmh@aybabtu.com>
44599
44600 * util/update-grub.in (GRUB_DISABLE_LINUX_UUID): Export variable.
44601 * util/grub.d/10_linux.in: If GRUB_DEVICE_UUID is set, and
44602 GRUB_DISABLE_LINUX_UUID isn't true, use the filesystem UUIDs as
44603 the `root' parameter to Linux.
44604
44605 2008-05-30 Robert Millan <rmh@aybabtu.com>
44606
44607 * commands/search.c (options): Rename --fs_uuid to --fs-uuid.
44608 * util/update-grub_lib.in (prepare_grub_to_access_device): Replace
44609 --fs_uuid with --fs-uuid.
44610 * util/update-grub.in: Allow filesystem UUID probes to fail (since not
44611 all filesystems support them).
44612
44613 2008-05-30 Robert Millan <rmh@aybabtu.com>
44614
44615 * fs/ext2.c (grub_ext2_uuid): Use `04x' instead of '02x' as
44616 grub_printf() flags, since we're printing in units of 2 bytes.
44617
44618 2008-05-30 Robert Millan <rmh@aybabtu.com>
44619
44620 * util/grub.d/00_header.in: Remove obsolete comment referencing
44621 convert_system_path_to_grub_path().
44622 * util/update-grub.in: Likewise.
44623 * util/update-grub_lib.in (is_path_readable_by_grub): New function.
44624 (convert_system_path_to_grub_path): Add a warning message explaining
44625 that this function is deprecated. Rely on is_path_readable_by_grub()
44626 for the readability checks.
44627 (font_path): Use is_path_readable_by_grub() for the readability
44628 check rather than convert_system_path_to_grub_path().
44629
44630 2008-05-30 Robert Millan <rmh@aybabtu.com>
44631
44632 * util/update-grub_lib.in (prepare_grub_to_access_device): New function.
44633 * util/update-grub.in: Set `GRUB_FONT_PATH' to the system path, without
44634 converting it first.
44635 * util/grub.d/00_header.in: Use prepare_grub_to_access_device() to setup
44636 grub.cfg for access to font file, and afterwards call it again to set
44637 the root device.
44638
44639 2008-05-30 Robert Millan <rmh@aybabtu.com>
44640
44641 * commands/search.c (options): Add --fs_uuid option.
44642 (search_fs_uuid): New function.
44643 (grub_cmd_search): Fix --set argument passing.
44644 Use search_fs_uuid() when requested via --fs_uuid.
44645 (grub_search_init): Update help message.
44646 * fs/ext2.c (struct grub_ext2_sblock): Rename `unique_id' to `uuid'
44647 and redeclare it as an array of 16-bit words.
44648 (grub_ext2_uuid): New function.
44649 (grub_ext2_fs): Reference grub_ext2_uuid() in `uuid' struct member.
44650 * include/grub/fs.h (struct grub_fs): Add `uuid' struct member.
44651 * util/update-grub.in (GRUB_DEVICE_UUID, GRUB_DEVICE_BOOT)
44652 (GRUB_DEVICE_BOOT_UUID): New variables.
44653 (GRUB_DRIVE. GRUB_DRIVE_BOOT. GRUB_DRIVE_BOOT_GRUB): Remove.
44654 * util/grub.d/00_header.in: Set root using `search --fs_uuid' command
44655 whenever possible.
44656 * util/grub.d/10_hurd.in: Avoid explicit use of root drive. Instead,
44657 just assume `root' variable has the right value.
44658 * util/grub.d/10_linux.in: Likewise.
44659 * util/grub-probe.c (probe): Probe for filesystem UUID when requested
44660 via PRINT_FS_UUID.
44661 (main): Recognise `-t fs_uuid' argument.
44662
44663 2008-05-30 Robert Millan <rmh@aybabtu.com>
44664
44665 * util/biosdisk.c (map): Redefine structure to hold information
44666 about GRUB drive name.
44667 (get_drive): Reimplement without assuming (and verifying) BIOS-like
44668 drive names.
44669 (call_hook): Remove.
44670 (grub_util_biosdisk_iterate): Access drive names via `.drive' struct
44671 member. Assume drive has partitions.
44672 (grub_util_biosdisk_open): Access device names via `.device' struct
44673 member.
44674 (open_device): Likewise.
44675 (find_drive): Likewise.
44676 (read_device_map): Adjust map[] usage to match the new struct
44677 definition. Don't check for duplicates (still possible, but not cheap
44678 anymore).
44679 (grub_util_biosdisk_fini): Free malloced buffers referenced by map[].
44680 (make_device_name): Remove assumption of BIOS-like drive names.
44681
44682 2008-05-30 Pavel Roskin <proski@gnu.org>
44683
44684 * conf/i386-efi.rmk (normal/execute.c_DEPENDENCIES): Remove, as
44685 compiling execute.c doesn't need grub_script.tab.h anymore.
44686 (normal/command.c_DEPENDENCIES): Likewise.
44687 (normal/function.c_DEPENDENCIES): Likewise.
44688 * conf/i386-ieee1275.rmk: Likewise.
44689 * conf/i386-linuxbios.rmk: Likewise.
44690 * conf/i386-pc.rmk: Likewise.
44691 * conf/powerpc-ieee1275.rmk: Likewise.
44692 * conf/sparc64-ieee1275.rmk: Likewise.
44693
44694 2008-05-29 Pavel Roskin <proski@gnu.org>
44695
44696 * disk/lvm.c (grub_lvm_scan_device): Check for the buffer end
44697 when scanning metadata for volume group name.
44698
44699 * include/grub/script.h: Don't include grub_script.tab.h. It's
44700 a generated file, which may only be included from the files with
44701 DEPENDENCIES rules in the makefile. Don't use typedef YYSTYPE,
44702 use union YYSTYPE, as the later allows forward declaration.
44703 * normal/lexer.c: Don't use typedef YYSTYPE, use union YYSTYPE.
44704
44705 2008-05-29 Robert Millan <rmh@aybabtu.com>
44706
44707 * term/i386/pc/at_keyboard.c: Include `grub/machine/machine.h'.
44708 (OLPC_UP, OLPC_DOWN, OLPC_LEFT, OLPC_RIGHT): New macros.
44709 [GRUB_MACHINE_IEEE1275] (keyboard_map): Add OLPC scan codes
44710 (grub_console_checkkey): Add grub_dprintf() call to report unknown
44711 scan codes.
44712
44713 2008-05-29 Robert Millan <rmh@aybabtu.com>
44714
44715 * term/i386/pc/at_keyboard.c (grub_console_checkkey): Add support for
44716 control key combinations.
44717
44718 2008-05-29 Robert Millan <rmh@aybabtu.com>
44719
44720 * util/powerpc/ieee1275/grub-install.in: Move from here ...
44721 * util/ieee1275/grub-install.in: ... to here.
44722 * powerpc-ieee1275.rmk (grub_install_SOURCES): Update location.
44723 * i386-ieee1275.rmk (sbin_SCRIPTS): New variable.
44724 (grub_install_SOURCES): Likewise.
44725
44726 2008-05-29 Robert Millan <rmh@aybabtu.com>
44727
44728 * fs/affs.c: Update copyright year.
44729 * fs/ext2.c: Likewise.
44730 * fs/fshelp.c: Likewise.
44731 * fs/hfsplus.c: Likewise.
44732 * fs/ntfs.c: Likewise.
44733 * fs/xfs.c: Likewise.
44734 * include/grub/fshelp.h: Likewise.
44735 * util/grub-mkdevicemap.c: Likewise.
44736
44737 2008-05-28 Robert Millan <rmh@aybabtu.com>
44738
44739 * util/update-grub.in: Allow chmod call to fail, since /boot/grub/
44740 might need to be fatfs to support some firmware implementations
44741 (e.g. OFW or EFI).
44742
44743 2008-05-28 Robert Millan <rmh@aybabtu.com>
44744
44745 * util/biosdisk.c (linux_find_partition, get_os_disk): Handle MMC
44746 devices.
44747 * util/grub-mkdevicemap.c (get_mmc_disk_name)
44748 (make_device_map): Likewise.
44749
44750 2008-05-20 Bean <bean123ch@gmail.com>
44751
44752 * fs/fshelp.c (grub_fshelp_map_block): New function.
44753 (grub_fshelp_find_file): Use 64-bit type for pos and block address.
44754 Use `>>' and `&' operator to avoid 64-bit divide and modulo.
44755
44756 * include/grub/fshelp.h (grub_fshelp_journal_type): New enum.
44757 (GRUB_FSHELP_JOURNAL_UNUSED_MAPPING): New macro.
44758 (grub_fshelp_journal): New structure.
44759 (grub_fshelp_map_block): New function prototype.
44760 (grub_fshelp_read_file): Use grub_disk_addr_t as block type.
44761 (grub_fshelp_map_block): Likewise.
44762
44763 * fs/ext2.c (EXT3_FEATURE_COMPAT_HAS_JOURNAL): New macro.
44764 (EXT3_JOURNAL_MAGIC_NUMBER): Likewise.
44765 (EXT3_JOURNAL_DESCRIPTOR_BLOCK): Likewise.
44766 (EXT3_JOURNAL_COMMIT_BLOCK): Likewise.
44767 (EXT3_JOURNAL_SUPERBLOCK_V1): Likewise.
44768 (EXT3_JOURNAL_SUPERBLOCK_V2): Likewise.
44769 (EXT3_JOURNAL_REVOKE_BLOCK): Likewise.
44770 (EXT3_JOURNAL_FLAG_ESCAPE): Likewise.
44771 (EXT3_JOURNAL_FLAG_SAME_UUID): Likewise.
44772 (EXT3_JOURNAL_FLAG_DELETED): Likewise.
44773 (EXT3_JOURNAL_FLAG_LAST_TAG): Likewise.
44774 (grub_ext2_sblock): New members for journal support.
44775 (grub_ext3_journal_header): New structure.
44776 (grub_ext3_journal_revoke_header): Likewise.
44777 (grub_ext3_journal_block_tag): Likewise.
44778 (grub_ext3_journal_sblock): Likewise.
44779 (grub_fshelp_node): New members logfile and journal.
44780 (grub_ext2_read_block): Change block type to grub_disk_addr_t. Use
44781 grub_fshelp_map_block to get real block number.
44782 (grub_ext2_blockgroup): Use grub_fshelp_map_block to get real block
44783 number.
44784 (grub_ext2_read_inode): Likewise.
44785 (grub_ext3_get_journal): New function.
44786 (grub_read_inode): Initialize journal using grub_ext3_get_journal.
44787 (grub_ext2_close): Release memory used by journal.
44788
44789 * fs/reiserfs.c (REISERFS_MAGIC_STRING): Changed to "ReIsEr".
44790 (REISERFS_MAGIC_DESC_BLOCK): New macro.
44791 (grub_reiserfs_transaction_header): Renamed to
44792 grub_reiserfs_description_block, replace field data with real_blocks.
44793 (grub_reiserfs_commit_block): New structure.
44794 (grub_reiserfs_data): New member journal.
44795 (grub_reiserfs_get_item): Use grub_fshelp_map_block to get real block
44796 number.
44797 (grub_reiserfs_read_symlink): Likewise.
44798 (grub_reiserfs_iterate_dir): Likewise.
44799 (grub_reiserfs_open): Likewise.
44800 (grub_reiserfs_read): Likewise.
44801 (grub_reiserfs_get_journal): New function.
44802 (grub_reiserfs_mount): Use "ReIsEr" as super block magic, as there are
44803 three varieties ReIsErFs, ReIsEr2Fs and ReIsEr3Fs. Initialize journal
44804 using grub_reiserfs_get_journal.
44805 (grub_reiserfs_close): Release memory used by journal.
44806
44807 * fs/affs.c (grub_affs_read_block): Change block type to
44808 grub_disk_addr_t. Use grub_divmod64 to do 64-bit division.
44809
44810 * fs/afs.c (grub_afs_read_block): Change block type to grub_disk_addr_t.
44811
44812 * fs/hfsplus.c (grub_hfsplus_read_block): Likewise.
44813
44814 * fs/ntfs.c (grub_ntfs_read_block): Likewise.
44815
44816 * fs/udf.c (grub_udf_read_block): Change block type to
44817 grub_disk_addr_t. Use type cast to avoid warning.
44818
44819 * fs/xfs.c (grub_xfs_read_block): Likewise.
44820
44821 2008-05-16 Christian Franke <franke@computer.org>
44822
44823 * commands/cat.c (grub_cmd_cat): Remove non-ESC keys from keyboard queue
44824 to ensure that break with ESC will always work.
44825 * commands/sleep.c (grub_interruptible_millisleep): Likewise.
44826 Remove ESC from keyboard queue.
44827
44828 2008-05-16 Christian Franke <franke@computer.org>
44829
44830 * util/biosdisk.c: [__CYGWIN__] Add includes.
44831 (grub_util_biosdisk_open): Use Linux code also for Cygwin.
44832 (get_os_disk): Move variable declarations to OS specific
44833 parts to avoid warning.
44834 [__GNU__] (get_os_disk): Fix /dev/sdXsN case.
44835 [__CYGWIN__] (get_os_disk): Add Cygwin /dev/sdXN device names.
44836 (grub_util_biosdisk_get_grub_dev): Use Linux code also for
44837 Cygwin.
44838 * util/getroot.c: [__CYGWIN__] Add includes.
44839 (strip_extra_slashes): Fix "/" case.
44840 [__CYGWIN__] (get_win32_path): New function.
44841 [__CYGWIN__] (grub_get_prefix): Add conversion to win32 path.
44842 [__CYGWIN__] (find_root_device): Disable.
44843 [__CYGWIN__] (get_bootsec_serial): New function.
44844 [__CYGWIN__] (find_cygwin_root_device): Likewise.
44845 [__linux__] (grub_guess_root_device): Add early returns to simplify
44846 structure.
44847 [__CYGWIN__] (grub_guess_root_device): Call find_cygwin_root_device.
44848 [__linux__] (grub_util_get_dev_abstraction): Enable LVM and RAID
44849 check for Linux only.
44850
44851 2008-05-15 Bean <bean123ch@gmail.com>
44852
44853 * kern/i386/pc/startup.S (grub_console_getkey): Workaround for the
44854 keyboard hang problem in apple's intel mac.
44855
44856 2008-05-09 Robert Millan <rmh@aybabtu.com>
44857
44858 * util/biosdisk.c (linux_find_partition, get_os_disk): Handle Virtio
44859 devices.
44860 * util/grub-mkdevicemap.c (get_virtio_disk_name)
44861 (make_device_map): Likewise.
44862 Reported by Aurelien Jarno <aurel32@debian.org>
44863
44864 2008-05-07 Ian Campbell <ijc@hellion.org.uk>
44865
44866 * util/biosdisk.c (get_os_disk): Recognise xvd type disks.
44867 * util/grub-mkdevicemap.c (get_xvd_disk_name): New function.
44868 (make_device_map): Output entries for xvd type disks.
44869
44870 2008-05-07 Robert Millan <rmh@aybabtu.com>
44871
44872 * util/biosdisk.c (linux_find_partition, get_os_disk): Handle CCISS
44873 devices.
44874 * util/grub-mkdevicemap.c (get_cciss_disk_name)
44875 (make_device_map): Likewise.
44876 Reported by Roland Dreier <rdreier@cisco.com>
44877
44878 2008-05-07 Robert Millan <rmh@aybabtu.com>
44879
44880 * disk/lvm.c (grub_lvm_scan_device): Detect errors in an additional
44881 grub_strstr() call. Correct a few mistakes in failure path handling.
44882
44883 2008-05-06 Robert Millan <rmh@aybabtu.com>
44884
44885 * util/update-grub_lib.in (make_system_path_relative_to_its_root):
44886 Do not print a trailing slash (therefore, the root directory is an
44887 empty string).
44888 (convert_system_path_to_grub_path): Do not remove trailing slash
44889 from make_system_path_relative_to_its_root() output.
44890
44891 * util/i386/pc/grub-install.in: Add trailing slash to output from
44892 make_system_path_relative_to_its_root().
44893
44894 2008-05-06 Robert Millan <rmh@aybabtu.com>
44895
44896 * util/grub-fstest.c (grub_refresh): Call `fflush (stdout)'. This
44897 ensures that output lines aren't intermangled with those sent to
44898 stderr (via grub_util_info()).
44899 * util/grub-probe.c (grub_refresh): Likewise.
44900 * util/i386/pc/grub-setup.c (grub_refresh): Likewise.
44901
44902 2008-05-05 Christian Franke <franke@computer.org>
44903
44904 * util/grub-mkdevicemap.c (get_floppy_disk_name) [__CYGWIN__]:
44905 Add Cygwin device names.
44906 (get_ide_disk_name) [__CYGWIN__]: Likewise.
44907 (get_scsi_disk_name) [__CYGWIN__]: Likewise.
44908 (check_device): Return error instead of success on empty name.
44909 (make_device_map): Move label inside linux specific code to
44910 prevent compiler warning.
44911
44912 2008-04-30 Robert Millan <rmh@aybabtu.com>
44913
44914 Based on patch from Fabian Greffrath <greffrath@leat.rub.de>
44915 * util/grub.d/10_linux.in: Add ${GRUB_CMDLINE_LINUX_DEFAULT} to the
44916 first boot option.
44917 * util/update-grub.in: Export GRUB_CMDLINE_LINUX_DEFAULT.
44918
44919 2008-04-29 Robert Millan <rmh@aybabtu.com>
44920
44921 * docs/grub.cfg: New file (example GRUB configuration).
44922
44923 2008-04-26 Robert Millan <rmh@aybabtu.com>
44924
44925 * DISTLIST: Sort (sort -u < DISTLIST | sponge DISTLIST). Add
44926 `loader/i386/ieee1275/linux.c', `loader/i386/ieee1275/linux_normal.c'
44927 and `disk/ieee1275/nand.c'.
44928
44929 2008-04-25 Bean <bean123ch@gmail.com>
44930
44931 * Makefile.in (RMKFILES): Add missing arch i386-ieee1275 and
44932 i386-linuxbios.
44933
44934 * commands/hexdump.c (grub_cmd_hexdump): Support dumping of device,
44935 change the buffer size to 4096 for cdrom device.
44936
44937 * conf/i386-ieee1275.rmk (pkglib_MODULES): Add _linux.mod, linux.mod
44938 and nand.mod.
44939 (_linux_mod_SOURCES): New variable.
44940 (_linux_mod_CFLAGS): Likewise.
44941 (_linux_mod_LDFLAGS): Likewise.
44942 (linux_mod_SOURCES): Likewise.
44943 (linux_mod_CFLAGS): Likewise.
44944 (linux_mod_LDFLAGS): Likewise.
44945 (nand_mod_SOURCES): Likewise.
44946 (nand_mod_CFLAGS): Likewise.
44947 (nand_mod_LDFLAGS): Likewise.
44948
44949 * disk/ieee1275/ofdisk.c (grub_ofdisk_open): Return
44950 GRUB_ERR_UNKNOWN_DEVICE instead of GRUB_ERR_BAD_DEVICE if no device
44951 type property. (nand device in olpc don't have this property)
44952
44953 * include/grub/disk.h (grub_disk_dev_id): New macro
44954 GRUB_DISK_DEVICE_NAND_ID.
44955
44956 * include/grub/i386/ieee1275/loader.h (grub_rescue_cmd_linux): New
44957 function prototype.
44958 (grub_rescue_cmd_initrd): Likewise.
44959
44960 * include/grub/i386/linux.h (GRUB_LINUX_OFW_SIGNATURE): New macro.
44961 (linux_kernel_params): Add new member ofw_signature, ofw_num_items,
44962 ofw_cif_handler and ofw_idt, adjust padding number.
44963
44964 * include/grub/i386/pc/memory.h (grub_upper_mem): Export it if
44965 GRUB_MACHINE_IEEE1275 is defined.
44966
44967 * include/grub/ieee1275/ieee1275.h (grub_available_iterate):
44968 Use NESTED_FUNC_ATTR attribute on the hook parameter.
44969
44970 * kern/powerpc/ieee1275/init.c (grub_claim_heap): Use NESTED_FUNC_ATTR
44971 on nested function heap_init.
44972 (grub_upper_mem): New variable for i386-ieee1275.
44973 (grub_get_extended_memory): New function for i386-ieee1275.
44974 (grub_machine_init): Call grub_get_extended_memory for i386-ieee1275.
44975
44976 * kern/powerpc/ieee1275/openfw.c (grub_available_iterate): Use
44977 NESTED_FUNC_ATTR on the hook parameter. Don't quit if no device type
44978 property.
44979
44980 * loader/i386/ieee1275/linux.c: New file.
44981
44982 * loader/i386/ieee1275/linux_normal.c: New file.
44983
44984 * disk/ieee1275/nand.c: New file.
44985
44986 2008-04-18 Thomas Schwinge <tschwinge@gnu.org>
44987
44988 * util/i386/pc/grub-mkrescue.in (grub_mkimage): Don't overwrite correct
44989 value.
44990 * util/powerpc/ieee1275/grub-mkrescue.in (grub_mkimage): Likewise.
44991
44992 2008-04-18 Robert Millan <rmh@aybabtu.com>
44993
44994 Restructures early code path on ieee1275 to unify grub_main() as
44995 the first C function that is executed in every platform.
44996
44997 * include/grub/ieee1275/ieee1275.h (grub_ieee1275_init): New prototype.
44998 * kern/i386/ieee1275/startup.S (_start): Jump to grub_main() instead of
44999 cmain().
45000 * kern/powerpc/ieee1275/crt0.S (_start): Likewise.
45001 * kern/ieee1275/cmain.c (cmain): Rename to ...
45002 * kern/ieee1275/cmain.c (grub_ieee1275_init): ... this.
45003 * kern/ieee1275/init.c (grub_machine_init): Call grub_ieee1275_init()
45004 at the beginning.
45005
45006 2008-04-18 Robert Millan <rmh@aybabtu.com>
45007
45008 * util/update-grub.in: Fix syntax error when setting
45009 `GRUB_PRELOAD_MODULES'.
45010 Reported by Stephane Chazelas <stephane@artesyncp.com>
45011
45012 2008-04-17 Lubomir Kundrak <lkundrak@redhat.com>
45013
45014 * aclocal.m4 (grub_PROG_OBJCOPY_ABSOLUTE): take only .text
45015 section into account, newer toolchains generate unique build ids
45016 * configure.ac: remove the test for --build-id=none acceptance,
45017 we want build ids to be preserved
45018 * genmk.rb: add -R .note.gnu.build-id to objcopy, so build id
45019 far from other sections don't cause the raw binary images grow
45020 size
45021
45022 2008-04-15 Robert Millan <rmh@aybabtu.com>
45023
45024 * disk/lvm.c: Update copyright year.
45025 * kern/misc.c: Likewise.
45026
45027 2008-04-14 Vesa Jaaskelainen <chaac@nic.fi>
45028
45029 * disk/lvm.c (grub_lvm_scan_device): Add forgotten failure path when
45030 there is no memory left for physical volume name.
45031
45032 2008-04-14 Vesa Jaaskelainen <chaac@nic.fi>
45033
45034 * disk/lvm.c (grub_lvm_scan_device): Fix logical volume's physical
45035 volume name mapping to support bigger than 9 character names properly.
45036
45037 2008-04-13 Robert Millan <rmh@aybabtu.com>
45038
45039 * disk/i386/pc/biosdisk.c (grub_biosdisk_rw): Fix CHS limit check,
45040 as per http://www.allensmith.net/Storage/HDDlimit/Int13h.htm
45041
45042 2008-04-13 Christian Franke <franke@computer.org>
45043
45044 * util/i386/pc/grub-mkrescue.in: Add --emulation=floppy
45045 to create a floppy emulation boot CD when non emulation mode
45046 does not work.
45047 Enable Joliet CD filesystem extension.
45048
45049 2008-04-13 Robert Millan <rmh@aybabtu.com>
45050
45051 * kern/misc.c (grub_strncat): Fix off-by-one error.
45052 Reported by Zhang Huan <zhanghuan@nrchpc.ac.cn>
45053
45054 * kern/env.c (grub_env_context_close): Clear current context, not
45055 previous one.
45056 Patch from Zhang Huan <zhanghuan@nrchpc.ac.cn>
45057
45058 * kern/misc.c (grub_strcat): Minor speed optimization (same code size).
45059
45060 2008-04-13 Robert Millan <rmh@aybabtu.com>
45061
45062 Improve robustness when handling LVM.
45063
45064 * disk/lvm.c (grub_lvm_getvalue): Return 0 when `*p' is NULL
45065 (and leave `*p' unmodified).
45066 (grub_lvm_iterate): Don't assume `vg->lvs != NULL' when iterating
45067 through it.
45068 (grub_lvm_memberlist): Don't assume `lv->vg->pvs != NULL' when
45069 iterating through it.
45070 (grub_lvm_open): Don't assume `vg->lvs != NULL' when iterating
45071 through it.
45072 (grub_lvm_scan_device): Check the return value (and fail gracefully
45073 when due) on each grub_lvm_getvalue() or grub_strstr() call.
45074 Don't assume `vg->pvs != NULL' when iterating through it.
45075
45076 2008-04-13 Robert Millan <rmh@aybabtu.com>
45077
45078 * gendistlist.sh (EXTRA_DISTFILES): Add `genpartmaplist.sh'.
45079 * genmk.rb (partmap): New variable.
45080 (CLEANFILES, PARTMAPFILES): Add #{partmap}.
45081 (#{partmap}): New target rule.
45082 * genpartmaplist.sh: New file.
45083 * Makefile.in (pkglib_DATA): Add partmap.lst.
45084 (partmap.lst): New target rule.
45085 * util/i386/pc/grub-mkrescue.in: Generate grub.cfg that loads needed
45086 modules (including all partition maps), instead of preloading them.
45087
45088 2007-04-13 Fabian Greffrath <fabian.greffrath@web.de>
45089
45090 * util/grub.d/30_os-prober.in: New script. Use `os-prober' and
45091 `linux-boot-prober' (if installed) to detect other operating
45092 systems which are installed on the computer and add them to
45093 the boot menu.
45094 * conf/common.rmk: Build and install 30_os-prober.
45095
45096 2008-04-12 Robert Millan <rmh@aybabtu.com>
45097
45098 * kern/powerpc/ieee1275/init.c: Move from here ...
45099 * kern/ieee1275/init.c: ... to here. Update all users.
45100
45101 * kern/powerpc/ieee1275/cmain.c: Move from here ...
45102 * kern/ieee1275/cmain.c: ... to here. Update all users.
45103
45104 * kern/powerpc/ieee1275/openfw.c: Move from here ...
45105 * kern/ieee1275/openfw.c: ... to here. Update all users.
45106
45107 * loader/powerpc/ieee1275/multiboot2.c: Move from here ...
45108 * loader/ieee1275/multiboot2.c: ... to here. Update all users.
45109
45110 2008-04-10 Pavel Roskin <proski@gnu.org>
45111
45112 * configure.ac: Always use "_cv_" in cache variables for
45113 compatibility with Autoconf 2.62.
45114
45115 2008-04-07 Robert Millan <rmh@aybabtu.com>
45116
45117 Revert grub/machine/init.h addition by Pavel (since it breaks on
45118 i386-ieee1275 and others):
45119 * util/i386/pc/misc.c: Remove grub/machine/init.h.
45120 * util/powerpc/ieee1275/misc.c: Likewise.
45121
45122 2008-04-07 Robert Millan <rmh@aybabtu.com>
45123
45124 * util/grub-probe.c (probe): Improve error message.
45125
45126 2008-04-07 Robert Millan <rmh@aybabtu.com>
45127
45128 * util/biosdisk.c (read_device_map): Skip devices that don't exist
45129 (this prevents the presence of a bogus entry from ruining the whole
45130 thing).
45131
45132 2008-04-06 Pavel Roskin <proski@gnu.org>
45133
45134 * util/biosdisk.c: Include grub/util/biosdisk.h.
45135 * util/grub-fstest.c (execute_command): Make static.
45136 * util/grub-mkdevicemap.c (check_device): Likewise.
45137 * util/i386/pc/misc.c: Include grub/machine/init.h.
45138 * util/powerpc/ieee1275/misc.c: Likewise.
45139 * util/lvm.c: Include grub/util/lvm.h.
45140 * util/misc.c: Include grub/kernel.h, grub/misc.h and
45141 grub/cache.h.
45142 * util/raid.c: Include grub/util/raid.h.
45143 (grub_util_getdiskname): Make static.
45144
45145 * util/grub-emu.c (main): Remove calls to grub_hostfs_init() and
45146 grub_hostfs_fini(), as they are called from grub_init_all() and
45147 grub_fini_all() respectively. This fixes an infinite loop in
45148 grub-fstest due to double registration of hostfs.
45149 Reported by Christian Franke <Christian.Franke@t-online.de>
45150
45151 2008-04-05 Pavel Roskin <proski@gnu.org>
45152
45153 * bus/pci.c (grub_pci_iterate): For multifunction devices, probe
45154 all 8 functions. Otherwise, probe function 0 only.
45155
45156 2008-04-04 Pavel Roskin <proski@gnu.org>
45157
45158 * commands/lspci.c (grub_lspci_iter): Print the bus number
45159 correctly.
45160
45161 * commands/lspci.c (grub_pci_classes): Fix typos.
45162 (grub_lspci_iter): Don't print func twice. Print vendor ID
45163 before device ID, as it's normally done.
45164
45165 * kern/powerpc/ieee1275/cmain.c (grub_ieee1275_find_options):
45166 Fix signedness warnings.
45167 * kern/powerpc/ieee1275/openfw.c (grub_available_iterate):
45168 Likewise.
45169 * util/ieee1275/get_disk_name.c: Include config.h so that
45170 _GNU_SOURCE is defined and getline() is declared. Mark an
45171 unused argument as such. Fix a signedness warning.
45172
45173 2008-04-02 Pavel Roskin <proski@gnu.org>
45174
45175 * genkernsyms.sh.in: Use more robust assignments for CC and
45176 srcdir. Quote srcdir.
45177 * gensymlist.sh.in: Likewise. Assert at the compile time that
45178 the symbol table is not empty.
45179
45180 * disk/raid.c (grub_raid_memberlist): Fix a signedness warning.
45181 * fs/cpio.c (grub_cpio_read): Likewise.
45182
45183 2008-04-01 Pavel Roskin <proski@gnu.org>
45184
45185 * disk/ata.c (grub_ata_open): Don't lose precision in disk->id.
45186 * disk/host.c (grub_host_open): Likewise.
45187 * disk/loopback.c (grub_loopback_open): Likewise.
45188 * disk/memdisk.c (grub_memdisk_open): Use a string pointer for
45189 disk->id as in disk/host.c, not a multi-character constant.
45190
45191 * util/grub-fstest.c (cmd_cmp): Use fseeko(), not fseek(). The
45192 later is obsolete, potentially dangerous and sets a bad example.
45193 * util/i386/efi/grub-mkimage.c (make_header): Likewise.
45194 * util/misc.c (grub_util_get_image_size): Likewise.
45195
45196 * disk/loopback.c (options): Improve help for "--partitions".
45197
45198 * normal/arg.c (grub_arg_show_help): Fix spacing of the long
45199 options to align them with the short options, e.g. "echo -e".
45200
45201 2008-03-31 Bean <bean123ch@gmail.com>
45202
45203 * video/reader/png.c (grub_png_data): New member is_16bit and
45204 image_data.
45205 (grub_png_decode_image_header): Detect 16 bit png image.
45206 (grub_png_convert_image): New function to convert 16 bit image to 8 bit.
45207 (grub_png_decode_png): Call grub_png_convert_image for 16 bit image.
45208 (grub_video_reader_png): Release memory occupied by image_data.
45209
45210 * fs/ntfs.c (find_attr): Handle non-resident attribute list larger than
45211 4096 bytes.
45212 (grub_nfs_mount): Skip the test for sector per cluster.
45213
45214 * include/grub/ntfs.h (MAX_SPC): Removed.
45215
45216 2008-03-31 Bean <bean123ch@gmail.com>
45217
45218 * conf/common.rmk (pkgdata_MODULES): Add afs.mod.
45219 (grub_probe_SOURCES): Add fs/afs.c.
45220 (grub_fstest_SOURCES): Likewise.
45221 (afs_mod_SOURCES): New variable.
45222 (afs_mod_CFLAGS): Likewise.
45223 (afs_mod_LDFLAGS): Likewise.
45224
45225 * conf/i386-pc.rmk (grub_setup_SOURCES): Add fs/afs.c.
45226 (grub_emu_SOURCES): Likewise.
45227
45228 * conf/i386-efi.rmk (grub_emu_SOURCES): Likewise.
45229
45230 * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Likewise.
45231
45232 * conf/i386-linuxbios.rmk (grub_emu_SOURCES): Likewise.
45233
45234 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
45235
45236 * fs/afs.c: New file.
45237
45238 2008-03-30 Pavel Roskin <proski@gnu.org>
45239
45240 * disk/host.c: Include grub/misc.h to fix a warning.
45241 * util/hostfs.c: Use GRUB_MOD_INIT and GRUB_MOD_FINI to fix
45242 warnings about implicit declarations.
45243
45244 * fs/udf.c (grub_udf_mount): Fix warning about a shadowing a
45245 variable.
45246 * include/grub/i386/loader.h: Change declaration of
45247 grub_linux_boot() to match what grub_loader_set() expects.
45248 * util/getroot.c (grub_guess_root_device): Return const char* to
45249 fix a warning.
45250 * util/grub-probe.c (probe): Fix a warning about uninitialized
45251 abstraction_name variable.
45252 * util/i386/get_disk_name.c (grub_util_get_disk_name): Mark
45253 second argument as unused to fix a warning.
45254
45255 * loader/i386/pc/multiboot2.c (grub_mb2_arch_elf64_hook): Add
45256 missing grub_error() call.
45257
45258 * util/update-grub_lib.in: Define datarootdir, since Autoconf
45259 2.60 and newer uses it to define datadir.
45260
45261 * commands/sleep.c: Fix warning about implicit declaration.
45262 * disk/memdisk.c: Likewise.
45263 * loader/aout.c: Likewise.
45264 * loader/i386/bsd_normal.c: Likewise.
45265 * util/grub-probe.c: Likewise.
45266
45267 * commands/i386/cpuid.c (has_longmode): Make static.
45268 * disk/i386/pc/biosdisk.c (cd_drive): Likewise.
45269 * include/grub/i386/bsd.h (bios_memmap_t): Remove, it's unused.
45270
45271 * kern/i386/pc/startup.S (real_to_prot): Use %cs prefix to load
45272 GDT. This is more robust, as %ds can change.
45273 (grub_biosdisk_rw_int13_extensions): Don't clear %ds before
45274 calling real_to_prot().
45275 (grub_biosdisk_get_diskinfo_int13_extensions): Likewise.
45276
45277 2008-03-28 Pavel Roskin <proski@gnu.org>
45278
45279 * kern/i386/pc/startup.S: Assert that uncompressed functions
45280 don't spill beyond GRUB_KERNEL_MACHINE_RAW_SIZE.
45281 * kern/i386/pc/lzo1x.S: Remove all .align directives in the
45282 code, as they push parts of the code (error handlers) beyond
45283 GRUB_KERNEL_MACHINE_RAW_SIZE. Speed is not as important in this
45284 code as correctness and size.
45285
45286 2008-03-28 Pavel Roskin <proski@gnu.org>
45287
45288 * kern/i386/pc/startup.S
45289 (grub_biosdisk_get_diskinfo_int13_extensions): When converting
45290 data block address to the real mode, keep offset minimal. This
45291 works around a bug in AWARD BIOS on old Athlon systems, which
45292 makes CD detection hang.
45293
45294 2008-03-26 Pavel Roskin <proski@gnu.org>
45295
45296 * normal/color.c (grub_parse_color_name_pair): Make `name' a
45297 const.
45298 * include/grub/normal.h: Add grub_parse_color_name_pair()
45299 declaration.
45300
45301 2008-03-24 Bean <bean123ch@gmail.com>
45302
45303 * disk/i386/pc/biosdisk.c (cd_start): Removed.
45304 (cd_count): Removed.
45305 (cd_drive): New variable.
45306 (grub_biosdisk_get_drive): Don't check for (cdN) device.
45307 (grub_biosdisk_call_hook): Likewise.
45308 (grub_biosdisk_iterate): Change cdrom detection method.
45309 (grub_biosdisk_open): Replace cd_start with cd_drive.
45310 (GRUB_MOD_INIT): Use grub_biosdisk_get_cdinfo_int13_extension to
45311 detect cdrom device.
45312
45313 * include/grub/i386/pc/biosdisk.h (GRUB_BIOSDISK_MACHINE_CDROM_START):
45314 Removed.
45315 (GRUB_BIOSDISK_MACHINE_CDROM_END): Removed.
45316 (GRUB_BIOSDISK_CDTYPE_NO_EMUL): New macro.
45317 (GRUB_BIOSDISK_CDTYPE_1_2_M): Likewise.
45318 (GRUB_BIOSDISK_CDTYPE_1_44_M): Likewise.
45319 (GRUB_BIOSDISK_CDTYPE_2_88_M): Likewise.
45320 (GRUB_BIOSDISK_CDTYPE_HARDDISK): Likewise.
45321 (GRUB_BIOSDISK_CDTYPE_MASK): Likewise.
45322 (grub_biosdisk_cdrp): New structure.
45323 (grub_biosdisk_get_cdinfo_int13_extensions): New function.
45324
45325 * include/grub/i386/pc/kernel.h (grub_boot_drive): Export this variable.
45326
45327 * kern/i386/pc/init.c (make_install_device): Don't use (cdN) as root
45328 device.
45329
45330 * kern/i386/pc/startup.S (grub_biosdisk_get_cdinfo_int13_extensions):
45331 New function.
45332
45333 2008-03-20 Robert Millan <rmh@aybabtu.com>
45334
45335 Remove 2 TiB limit in ata.mod.
45336 * disk/ata.c (grub_ata_device): Promote `size' to grub_uint64_t.
45337 (grub_ata_dumpinfo): Print sector count with 0x%llx.
45338 (grub_ata_identify): Interpret `&info16[100]' as a pointer to
45339 grub_uint64_t instead of grub_uint32_t.
45340
45341 2008-03-05 Bean <bean123ch@gmail.com>
45342
45343 * loader/i386/pc/multiboot.c (grub_multiboot_get_bootdev): New function.
45344 (grub_multiboot): Set boot device.
45345
45346 * boot/i386/pc/lnxboot.S (real_code_2): Set %dh to 0xFF.
45347
45348 2008-03-02 Bean <bean123ch@gmail.com>
45349
45350 * fs/reiserfs.c (grub_reiserfs_read_symlink): Add 0 at the end of
45351 symlink_buffer.
45352
45353 2008-03-01 Yoshinori K. Okuji <okuji@enbug.org>
45354
45355 * DISTLIST: Added docs/fdl.texi, docs/grub.texi, docs/mdate-sh and
45356 texinfo.tex.
45357
45358 * docs/grub.texi: New file. Copied from GRUB Legacy, and slightly
45359 modified.
45360
45361 * docs/fdl.texi: New file.
45362
45363 * docs/mdate-sh: New file. Copied from gnulib.
45364 * docs/texinfo.tex: Likewise.
45365
45366 * config.guess: Updated from gnulib.
45367 * install-sh: Likewise.
45368
45369 2008-02-28 Robert Millan <rmh@aybabtu.com>
45370
45371 * conf/i386-linuxbios.rmk (pkglib_MODULES): Add aout.mod.
45372 (aout_mod_SOURCES): New variable.
45373 (aout_mod_CFLAGS): Likewise.
45374 (aout_mod_LDFLAGS): Likewise.
45375
45376 * conf/i386-ieee1275.rmk: Likewise.
45377
45378 2008-02-28 Robert Millan <rmh@aybabtu.com>
45379
45380 * util/update-grub.in: Reorganise terminal validity check. Accept
45381 `ieee1275:console' (OLPC) and `*:gfxterm' as valid too.
45382 Based on suggestion by Franklin PIAT.
45383
45384 2008-02-28 Fabian Greffrath <greffrath@leat.rub.de>
45385
45386 * include/grub/util/getroot.h (grub_util_check_block_device): Export new
45387 function.
45388 * util/getroot.c (grub_util_check_block_device): New function that
45389 returns the given argument if it is a block device and returns NULL else.
45390 * util/grub-probe.c (argument_is_device): New variable.
45391 (probe): Promote device_name from a variable to an argument. Receive
45392 device_name from grub_util_check_block_device() if path is NULL and from
45393 grub_guess_root_device() else. Do not free() device_name anymore.
45394 (options): Introduce new parameter '-d, --device'.
45395 (main): Add description of the new parameter to the help screen.
45396 Rename path variable to argument. Set argument_is_device if the '-d'
45397 option is given. Pass argument to probe() depending on
45398 argument_is_device.
45399
45400 2008-02-24 Bean <bean123ch@gmail.com>
45401
45402 * fs/iso9660.c (GRUB_ISO9660_VOLDESC_BOOT): New macro.
45403 (GRUB_ISO9660_VOLDESC_PRIMARY): Likewise.
45404 (GRUB_ISO9660_VOLDESC_SUPP): Likewise.
45405 (GRUB_ISO9660_VOLDESC_PART): Likewise.
45406 (GRUB_ISO9660_VOLDESC_END): Likewise.
45407 (grub_iso9660_primary_voldesc): New member escape.
45408 (grub_iso9660_data): New member joliet.
45409 (grub_iso9660_convert_string): New function.
45410 (grub_iso9660_mount): Detect joliet extension.
45411 (grub_iso9660_iterate_dir): Convert filename when joliet is detected.
45412 (grub_iso9660_iso9660_label): Likewise.
45413
45414 * conf/common.rmk (pkgdata_MODULES): Add udf.mod.
45415 (grub_setup_SOURCES): Add fs/udf.c.
45416 (grub_fstest_SOURCES): Likewise.
45417 (udf_mod_SOURCES): New variable.
45418 (udf_mod_CFLAGS): Likewise.
45419 (udf_mod_LDFLAGS): Likewise.
45420
45421 * conf/i386-pc.rmk (grub_setup_SOURCES): Add fs/udf.c.
45422 (grub_emu_SOURCES): Likewise.
45423
45424 * conf/i386-efi.rmk (grub_emu_SOURCES): Likewise.
45425
45426 * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Likewise.
45427
45428 * conf/i386-linuxbios.rmk (grub_emu_SOURCES): Likewise.
45429
45430 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
45431
45432 * fs/udf.c: New file.
45433
45434 2008-02-24 Robert Millan <rmh@aybabtu.com>
45435
45436 * conf/i386-efi.rmk (normal/function.c_DEPENDENCIES)
45437 (normal/lexer.c_DEPENDENCIES): New variables.
45438 * conf/i386-ieee1275.rmk (normal/function.c_DEPENDENCIES)
45439 (normal/lexer.c_DEPENDENCIES): Likewise.
45440 * conf/i386-linuxbios.rmk (normal/function.c_DEPENDENCIES)
45441 (normal/lexer.c_DEPENDENCIES): Likewise.
45442 * conf/i386-pc.rmk (normal/function.c_DEPENDENCIES)
45443 (normal/lexer.c_DEPENDENCIES): Likewise.
45444 * conf/powerpc-ieee1275.rmk (normal/function.c_DEPENDENCIES)
45445 (normal/lexer.c_DEPENDENCIES): Likewise.
45446 * conf/sparc64-ieee1275.rmk (normal/function.c_DEPENDENCIES)
45447 (normal/lexer.c_DEPENDENCIES): Likewise.
45448
45449 2008-02-23 Robert Millan <rmh@aybabtu.com>
45450
45451 * partmap/gpt.c (grub_gpt_magic): Add `0x' qualifier to each member,
45452 since they were intended to be in hex. This didn't break previously
45453 because of a bug in gpt_partition_map_iterate() (see below).
45454
45455 (gpt_partition_map_iterate): Replace `grub_memcmp' with `! grub_memcmp'
45456 when checking the validity of GPT header.
45457 Remove `partno', since it always provides the same information as `i'.
45458
45459 2008-02-21 Yoshinori K. Okuji <okuji@enbug.org>
45460
45461 * include/grub/efi/time.h: Fix a wrong comment.
45462
45463 2008-02-19 Pavel Roskin <proski@gnu.org>
45464
45465 * kern/rescue.c (grub_enter_rescue_mode): Improve initial
45466 message.
45467
45468 2008-02-19 Bean <bean123ch@gmail.com>
45469
45470 * conf/i386-pc.rmk (pkglib_MODULES): Add aout.mod _bsd.mod and bsd.mod.
45471 (aout_mod_SOURCES): New variable.
45472 (aout_mod_CFLAGS): Likewise.
45473 (aout_mod_LDFLAGS): Likewise.
45474 (_bsd_mod_SOURCES): New variable.
45475 (_bsd_mod_CFLAGS): Likewise.
45476 (_bsd_mod_LDFLAGS): Likewise.
45477 (bsd_mod_SOURCES): New variable.
45478 (bsd_mod_CFLAGS): Likewise.
45479 (bsd_mod_LDFLAGS): Likewise.
45480
45481 * include/grub/aout.h: New file.
45482
45483 * include/grub/i386/loader.h (grub_unix_real_boot): New function.
45484
45485 * include/grub/i386/bsd.h: New file.
45486
45487 * include/grub/i386/pc/init.h (grub_get_mmap_entry): Use EXPORT_FUNC
45488 to make it public.
45489
45490 * kern/elf.c (grub_elf32_load): Get the physical address after the hook
45491 function is called, so that it's possible to change it inside the hook.
45492 (grub_elf64_load): Likewise.
45493 (grub_elf_file): Don't close the file if elf header is not found.
45494 (grub_elf_close): Close the file if grub_elf_file fails (The new
45495 grub_elf_file won't close it).
45496 (grub_elf32_size): Use NESTED_FUNC_ATTR for nested function calcsize.
45497 (grub_elf64_size): Likewise.
45498
45499 * kern/i386/loader.S (grub_unix_real_boot): New function.
45500
45501 * loader/aout.c: New file.
45502
45503 * loader/i386/bsd.c: New file.
45504
45505 * loader/i386/bsd_normal.c: New file.
45506
45507 * loader/i386/pc/multiboot.c (grub_multiboot): Handle a.out format.
45508
45509 * loader/multiboot2.c (grub_multiboot2): Reset grub_errno so that it
45510 can test other formats.
45511
45512 2008-02-19 Robert Millan <rmh@aybabtu.com>
45513
45514 * partmap/gpt.c: Include `<grub/gpt_partition.h>'.
45515 (grub_gpt_partition_type_empty): Redefine with macro from
45516 `<grub/gpt_partition.h>'.
45517 (gpt_partition_map_iterate): Adjust partition type comparison.
45518
45519 Export `entry' as partmap-specific `part.data' struct.
45520 (grub_gpt_header, grub_gpt_partentry): Move from here ...
45521
45522 * include/grub/gpt_partition.h (grub_gpt_header)
45523 (grub_gpt_partentry): ... to here (new file).
45524
45525 * util/i386/pc/grub-setup.c: Include `<grub/gpt_partition.h>'.
45526
45527 (grub_gpt_partition_type_bios_boot): New const variable, defined
45528 with macro from `<grub/gpt_partition.h>'.
45529
45530 (setup): Replace `first_start' with `embed_region', which keeps
45531 track of the embed region (and is partmap-agnostic).
45532
45533 Replace find_first_partition_start() with find_usable_region(),
45534 which finds a usable region for embedding using partmap-specific
45535 knowledge (supports PC/MSDOS and GPT).
45536
45537 Fix all assumptions that the embed region start at sector 1, using
45538 `embed_region.start' from now on. Similarly, use `embed_region.end'
45539 rather than `first_start' to calculate available size.
45540
45541 In grub_util_info() message, replace "into after the MBR" with an
45542 indication of the specific sector our embed region starts at.
45543
45544 2008-02-19 Robert Millan <rmh@aybabtu.com>
45545
45546 * DISTLIST: Replace `commands/ieee1275/halt.c' and
45547 `commands/ieee1275/reboot.c' with `commands/halt.c' and
45548 `commands/reboot.c'.
45549 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES, reboot_mod_SOURCES)
45550 (halt_mod_SOURCES): Likewise.
45551 * conf/sparc64-ieee1275.rmk (grub_emu_SOURCES, reboot_mod_SOURCES)
45552 (halt_mod_SOURCES): Likewise.
45553
45554 2008-02-17 Christian Franke <franke@computer.org>
45555
45556 * commands/cat.c (grub_cmd_cat): Add break on GRUB_TERM_ESC key.
45557
45558 2008-02-17 Robert Millan <rmh@aybabtu.com>
45559
45560 * util/i386/pc/grub-setup.c (setup): In find_first_partition_start(),
45561 set `first_start' to 0 for non-PC/MSDOS partition maps.
45562
45563 2008-02-16 Robert Millan <rmh@aybabtu.com>
45564
45565 * util/i386/pc/grub-setup.c (setup): In find_first_partition_start(),
45566 do not assume partition map is PC/MSDOS before performing checks that
45567 are specific to that layout.
45568
45569 2008-02-13 Robert Millan <rmh@aybabtu.com>
45570
45571 * conf/i386-linuxbios.rmk (grub_emu_SOURCES): Remove
45572 `commands/i386/pc/halt.c' and `commands/i386/pc/reboot.c'.
45573 * kern/i386/linuxbios/init.c (grub_halt, grub_reboot): Remove stubs.
45574
45575 2008-02-13 Yoshinori K. Okuji <okuji@enbug.org>
45576
45577 * configure.ac: Only a cosmetic change on the handling of
45578 -fno-stack-protector.
45579
45580 2008-02-12 Alexandre Boeglin <alex@boeglin.org>
45581
45582 * conf/i386-efi.rmk (grub_emu_SOURCES): Replace
45583 commands/i386/pc/halt.c and reboot.c by commands/halt.c and
45584 reboot.c.
45585 (grub_install_SOURCES): Add halt.mod and reboot.mod.
45586 (halt_mod_SOURCES): New variable.
45587 (halt_mod_CFLAGS): Likewise.
45588 (halt_mod_LDFLAGS): Likewise.
45589 (reboot_mod_SOURCES): Likewise.
45590 (reboot_mod_CFLAGS): Likewise.
45591 (reboot_mod_LDFLAGS): Likewise.
45592
45593 * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Replace
45594 commands/ieee1275/halt.c and reboot.c by commands/halt.c and
45595 reboot.c.
45596 (halt_mod_SOURCES): Likewise.
45597 (reboot_mod_SOURCES): Likewise.
45598
45599 * conf/i386-pc.rmk (grub_emu_SOURCES): Replace
45600 commands/i386/pc/reboot.c by commands/reboot.c.
45601 (reboot_mod_SOURCES): Likewise.
45602
45603 * commands/i386/pc/reboot.c: merge this file ...
45604
45605 * commands/ieee1275/reboot.c: ... and this file ...
45606
45607 * commands/reboot.c: ... to this file.
45608 Add some precompiler directive to include the correct header for
45609 each machine.
45610
45611 * commands/ieee1275/halt.c: move this file ...
45612
45613 * commands/halt.c: ... to here.
45614 Add some precompiler directive to include the correct header for
45615 each machine.
45616
45617 * include/grub/efi/efi.h (grub_reboot): New function declaration.
45618 (grub_halt): Likewise.
45619
45620 * kern/efi/efi.c (grub_reboot): New function.
45621 (grub_halt): Likewise.
45622
45623 2008-02-12 Robert Millan <rmh@aybabtu.com>
45624
45625 * util/getroot.c (grub_guess_root_device): Inspect /dev/evms before
45626 /dev (like it is done for /dev/mapper). This doesn't provide support
45627 for EVMS, but at least it is now easy to identify the problem when it
45628 arises.
45629
45630 2008-02-11 Robert Millan <rmh@aybabtu.com>
45631
45632 * util/biosdisk.c (grub_util_biosdisk_open, linux_find_partition)
45633 (grub_util_biosdisk_get_grub_dev): Check open() exit status by
45634 comparing it with -1, not 0.
45635
45636 2008-02-10 Robert Millan <rmh@aybabtu.com>
45637
45638 * conf/i386-efi.rmk (grub_emu_SOURCES): Add `disk/raid.c' and
45639 `disk/lvm.c'.
45640 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
45641 * conf/i386-pc.rmk (grub_setup_SOURCES): Likewise.
45642
45643 * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Move `disk/raid.c' and
45644 `disk/lvm.c' to the end of the list.
45645 * conf/i386-linuxbios.rmk (grub_emu_SOURCES): Likewise.
45646 * conf/i386-pc.rmk (grub_emu_SOURCES): Likewise.
45647
45648 2008-02-10 Robert Millan <rmh@aybabtu.com>
45649
45650 * kern/main.c (grub_load_normal_mode): Do not reset `grub_errno'. Call
45651 grub_print_error() instead. This will let user know why we're entering
45652 rescue mode.
45653 Based on suggestions from Sam Morris.
45654
45655 2008-02-10 Alexandre Boeglin <alex@boeglin.org>
45656
45657 * normal/arg.c (grub_arg_parse): If one of the args is "--", call add_arg()
45658 on remaining N args, instead of "--" arg N times.
45659
45660 2008-02-09 Vesa Jaaskelainen <chaac@nic.fi>
45661
45662 * font/manager.c (unknown_glyph): Added variable for unknown glyph.
45663 (fill_with_default_glyph): Changed to use unknown_glyph for fill
45664 pattern for unknown glyphs.
45665
45666 2008-02-09 Robert Millan <rmh@aybabtu.com>
45667
45668 * configure.ac: Probe for `help2man'.
45669 * Makefile.in (builddir): New variable.
45670 (HELP2MAN): Likewise. Set to `true' when @HELP2MAN@ doesn't provide it,
45671 or otherwise add a few flags/options to it.
45672 (install-local): For every executable utility or script that is
45673 installed, invoke $(HELP2MAN) to install a manpage based on --help
45674 output.
45675
45676 * util/i386/pc/grub-install.in: Move down `update-grub_lib' sourcing, so
45677 that it doesn't prevent --help from working in build tree.
45678
45679 * util/i386/pc/grub-mkrescue.in (usage): Replace `grub-devel@gnu.org'
45680 with `bug-grub@gnu.org'.
45681 * util/powerpc/ieee1275/grub-mkrescue.in (usage): Likewise.
45682 * util/update-grub.in (usage): New function.
45683 Implement proper argument check, with support for --help and --version
45684 (as well as existing -y).
45685
45686 2008-02-09 Christian Franke <franke@computer.org>
45687
45688 * commands/cat.c (grub_cmd_cat): Print '\r' as hex to
45689 avoid overwriting previous output.
45690 * kern/rescue.c (grub_rescue_cmd_cat): Likewise.
45691
45692 2008-02-09 Robert Millan <rmh@aybabtu.com>
45693
45694 * normal/menu.c (run_menu): If timeout is set to zero, don't bother
45695 drawing the menu.
45696
45697 2008-02-09 Robert Millan <rmh@aybabtu.com>
45698
45699 * commands/sleep.c: New file.
45700 * conf/common.rmk (pkglib_MODULES): Add `commands/sleep.c'.
45701 (sleep_mod_SOURCES): New variable.
45702 (sleep_mod_CFLAGS): Likewise.
45703 (sleep_mod_LDFLAGS): Likewise.
45704
45705 2008-02-09 Robert Millan <rmh@aybabtu.com>
45706
45707 * disk/raid.c (grub_raid_scan_device): Add a pair of sanity checks for
45708 situations in which we can deduce the RAID size and the superblock
45709 doesn't match it.
45710
45711 2008-02-09 Robert Millan <rmh@aybabtu.com>
45712
45713 * disk/lvm.c [GRUB_UTIL] (grub_lvm_memberlist): New function. Construct
45714 and return a grub_diskmemberlist_t composed of LVM physical volumes.
45715 [GRUB_UTIL] (grub_lvm_dev): Add `memberlist' member.
45716
45717 * disk/raid.c [GRUB_UTIL] (grub_raid_memberlist): New function. Construct
45718 and return a grub_diskmemberlist_t composed of physical array members.
45719 [GRUB_UTIL] (grub_raid_dev): Add `memberlist' member.
45720
45721 * include/grub/disk.h [GRUB_UTIL] (grub_disk_memberlist): New struct
45722 prototype.
45723 [GRUB_UTIL] (struct grub_disk_dev): Add `memberlist' function pointer.
45724 [GRUB_UTIL] (struct grub_disk_memberlist): New struct declaration.
45725 [GRUB_UTIL] (grub_disk_memberlist_t): New typedef.
45726
45727 * util/grub-probe.c (probe): Move partmap probing code from here ...
45728 (probe_partmap): ... to here.
45729 (probe): Use probe_partmap() once for the disk we're probing, and
45730 additionally, when such disk contains a memberlist() struct member,
45731 once for each disk that is contained in the structure returned by
45732 memberlist().
45733
45734 2008-02-09 Robert Millan <rmh@aybabtu.com>
45735
45736 * util/grub-probe.c (main): When `verbosity > 1', set `debug'
45737 environment variable to 'all' in order to obtain debug output from
45738 non-util/ code.
45739 * util/i386/pc/grub-setup.c (main): Likewise.
45740
45741 2008-02-08 Robert Millan <rmh@aybabtu.com>
45742
45743 * disk/raid.c (grub_raid_scan_device): Check for
45744 `array->device[sb.this_disk.number]' rather than for
45745 `array->device[sb.this_disk.number]->name', since the latter is not
45746 guaranteed to be accessible.
45747
45748 2008-02-08 Robert Millan <rmh@aybabtu.com>
45749
45750 * disk/raid.c: Update copyright.
45751 * fs/cpio.c: Likewise.
45752 * include/grub/raid.h: Likewise.
45753 * loader/i386/pc/multiboot.c: Likewise.
45754 * util/hostfs.c: Likewise.
45755
45756 2008-02-08 Robert Millan <rmh@aybabtu.com>
45757
45758 * include/grub/raid.h (struct grub_raid_array): Change type of `device'
45759 to a grub_disk_t array.
45760 * disk/raid.c (grub_raid_read): Replace `device[x].disk' accesses with
45761 `device[x]'.
45762 (grub_raid_scan_device): Replace `device[x].name' accesses with
45763 `device[x]->name'. Simplify initialization of `array->device[x]'.
45764
45765 2008-02-08 Robert Millan <rmh@aybabtu.com>
45766
45767 * disk/raid.c (grub_raid_open, grub_raid_scan_device): Add a few
45768 grub_dprintf() calls.
45769 * kern/disk.c (grub_disk_read): Include grub_errmsg in out of range
45770 error message.
45771
45772 2008-02-07 Christian Franke <franke@computer.org>
45773
45774 * util/hostfs.c (grub_hostfs_open): Use fseeko and ftello
45775 instead of fseek and ftell to support large files.
45776 (grub_hostfs_read): Likewise.
45777
45778 2008-02-07 Robert Millan <rmh@aybabtu.com>
45779
45780 Patch from Jeroen Dekkers.
45781 * disk/raid.c (grub_raid_scan_device): Reset `grub_errno' on disk
45782 failure, since successfully reading all array members might not be
45783 required.
45784
45785 2008-02-06 Robert Millan <rmh@aybabtu.com>
45786
45787 * util/grub-probe.c (probe): Simplify partmap probing (with the
45788 assumption that the first word up to the underscore equals to
45789 the module name).
45790
45791 2008-02-06 Christian Franke <franke@computer.org>
45792
45793 * fs/cpio.c (grub_cpio_find_file): Return GRUB_ERR_NONE
45794 (and set *ofs = 0) instead of GRUB_ERR_FILE_NOT_FOUND on
45795 last block of a cpio or tar stream.
45796 Check for "TRAILER!!!" instead of any empty data
45797 block to detect last block of a cpio stream.
45798 (grub_cpio_dir): Fix constness of variable np.
45799 (grub_cpio_open): Return GRUB_ERR_FILE_NOT_FOUND if
45800 cpio or tar trailer is detected. This fixes a crash
45801 on open of a non existing file.
45802
45803 2008-02-05 Bean <bean123ch@gmail.com>
45804
45805 * loader/i386/pc/multiboot.c (grub_multiboot_load_elf32): Get physical
45806 address of entry.
45807 (grub_multiboot_load_elf64): Likewise.
45808 (grub_multiboot): Initialize mbi structure.
45809
45810 * util/grub-fstest.c: Don't include unused header file script.h.
45811
45812 * conf/common.rmk (grub-fstest.c_DEPENDENCIES): Move to the beginning
45813 of file.
45814 (grub_fstest_SOURCES): Likewise.
45815
45816 2008-02-05 Robert Millan <rmh@aybabtu.com>
45817
45818 * include/grub/term.h (GRUB_TERM_LEFT, GRUB_TERM_RIGHT)
45819 (GRUB_TERM_UP, GRUB_TERM_DOWN, GRUB_TERM_HOME, GRUB_TERM_END)
45820 (GRUB_TERM_DC, GRUB_TERM_PPAGE, GRUB_TERM_NPAGE, GRUB_TERM_ESC)
45821 (GRUB_TERM_TAB, GRUB_TERM_BACKSPACE): New macros.
45822
45823 * kern/i386/pc/startup.S: Include `<grub/term.h>'.
45824 (translation_table): Replace hardcoded values with macros
45825 provided by `<grub/term.h>'.
45826
45827 * term/i386/pc/at_keyboard.c: Include `<grub/term.h>'.
45828 (keyboard_map): Correct/add a few values, with macros provided
45829 by `<grub/term.h>'.
45830 (keyboard_map_shift): Zero values that don't differ from their
45831 `keyboard_map' equivalents.
45832 (grub_console_checkkey): Optimize KEYBOARD_STATUS_CAPS_LOCK toggling.
45833 Discard the second scan code that is always sent by Caps lock.
45834 Only use `keyboard_map_shift' when it provides a non-zero value,
45835 otherwise fallback to `keyboard_map'.
45836
45837 2008-02-04 Bean <bean123ch@gmail.com>
45838
45839 * Makefile.in (enable_grub_fstest): New variable.
45840
45841 * conf/common.rmk (grub_fstest_init.lst): New rule.
45842 (grub_fstest_init.h): Likewise.
45843 (grub_fstest_init.c): Likewise.
45844 (util/grub-fstest.c_DEPENDENCIES): New variable.
45845 (grub_fstest_SOURCES): Likewise.
45846
45847 * configure.ac (enable_grub_fstest): Check for --enable-grub-fstest.
45848
45849 * util/grub-fstest.c: New file.
45850
45851 2008-02-03 Yoshinori K. Okuji <okuji@enbug.org>
45852
45853 Make grub-setup handle a separate root device.
45854
45855 * util/i386/pc/grub-setup.c (setup): Always open the root device,
45856 so that the root device can be compared with the destination
45857 device.
45858 When embedding the core image, if the root and destination devices
45859 are different, set ROOT_DRIVE to ROOT_DEV->DISK->ID. Otherwise, to
45860 0xFF.
45861 When not embedding, set ROOT_DRIVE to 0xFF.
45862
45863 2008-02-03 Yoshinori K. Okuji <okuji@enbug.org>
45864
45865 Add support for having a grub directory in a different drive. This
45866 is still only the data handling part.
45867
45868 * kern/i386/pc/startup.S (multiboot_trampoline): Set %dh to 0xFF.
45869 (codestart): Save %dh in GRUB_ROOT_DRIVE.
45870 (grub_root_drive): New variable.
45871
45872 * kern/i386/pc/init.c (make_install_device): Use GRUB_ROOT_DRIVE
45873 instead of GRUB_BOOT_DRIVE to construct a device name. Set
45874 GRUB_ROOT_DRIVE to GRUB_BOOT_DRIVE if it is 0xFF, otherwise use it
45875 as it was.
45876
45877 * include/grub/i386/pc/kernel.h (grub_root_drive): New prototype.
45878
45879 * include/grub/i386/pc/boot.h (GRUB_BOOT_MACHINE_ROOT_DRIVE): New
45880 macro.
45881 (GRUB_BOOT_MACHINE_DRIVE_CHECK): Set to 0x4f.
45882
45883 * boot/i386/pc/pxeboot.S (_start): Set %dh to 0xFF. For now, this
45884 is bogus, because PXE booting does not specify any drive
45885 correctly.
45886
45887 * boot/i386/pc/lnxboot.S (reg_edx): Set the second byte to 0xFF. I
45888 am not sure if this is really correct.
45889
45890 * boot/i386/pc/cdboot.S: Set %dh to 0xFF, because the root drive
45891 is always identical to the boot drive when booting from a CD.
45892
45893 * boot/i386/pc/boot.S (MOV_MEM_TO_AL): Removed. Not needed any
45894 longer.
45895 (root_drive): New variable.
45896 (real_start): Unconditionally set %dh to ROOT_DRIVE.
45897 (setup_sectors): Push %dx right after popping it, because %dh will
45898 be modified later.
45899 (copy_buffer): Restore %dx.
45900
45901 2008-02-03 Robert Millan <rmh@aybabtu.com>
45902
45903 * util/i386/pc/grub-mkrescue.in: Rewrite most of image generation to
45904 use `cdboot.img' for cdrom images.
45905
45906 2008-02-03 Robert Millan <rmh@aybabtu.com>
45907
45908 * util/grub.d/00_header.in: Issue scripting commands for GRUB to
45909 only setup gfxterm when `font' command has succeeded.
45910
45911 2008-02-03 Robert Millan <rmh@aybabtu.com>
45912
45913 * loader/multiboot_loader.c [GRUB_MACHINE_LINUXBIOS]
45914 (grub_rescue_cmd_multiboot_loader)
45915 (grub_rescue_cmd_module_loader): Enable multiboot1 calls.
45916
45917 2008-02-03 Pavel Roskin <proski@gnu.org>
45918
45919 * kern/i386/pc/startup.S (grub_chainloader_real_boot): Pop
45920 %edx and %esi from stack only after grub_gate_a20() is called.
45921 grub_gate_a20() clobbers %edx.
45922
45923 2008-02-03 Yoshinori K. Okuji <okuji@enbug.org>
45924
45925 * configure.ac (AC_INIT): Bumped to 1.96.
45926
45927 * DISTLIST: Added boot/i386/pc/cdboot.S, bus/pci.c,
45928 commands/lspci.c,disk/memdisk.c, include/grub/pci.h,
45929 include/grub/i386/pc/pci.h, video/readers/jpeg.c, and
45930 video/readers/png.c.
45931
45932 2008-02-03 Bean <bean123ch@gmail.com>
45933
45934 * conf/i386-pc.rmk (pkglib_IMAGES): Add cdboot.img.
45935 (cdboot_img_SOURCES): New variable.
45936 (cdboot_img_ASFLAGS): New variable.
45937 (cdboot_img_LDFLAGS): New variable.
45938
45939 * boot/i386/pc/cdboot.S: New file.
45940
45941 * disk/i386/pc/biosdisk.c (cd_start): New variable.
45942 (cd_count): Likewise.
45943 (grub_biosdisk_get_drive): Add support for cd device.
45944 (grub_biosdisk_call_hook): Likewise.
45945 (grub_biosdisk_iterate): Likewise.
45946 (grub_biosdisk_open): Likewise.
45947 (GRUB_BIOSDISK_CDROM_RETRY_COUNT): New macro.
45948 (grub_biosdisk_rw): Support reading from cd device.
45949 (GRUB_MOD_INIT): Iterate cd devices.
45950
45951 * include/grub/i386/pc/biosdisk.h (GRUB_BIOSDISK_FLAG_CDROM): New macro.
45952 (GRUB_BIOSDISK_MACHINE_CDROM_START): Likewise.
45953 (GRUB_BIOSDISK_MACHINE_CDROM_END): Likewise.
45954
45955 * kern/i386/pc/init.c (make_install_device): Check for cd device.
45956
45957 2008-02-02 Robert Millan <rmh@aybabtu.com>
45958
45959 * commands/read.c: New file.
45960 * conf/common.rmk (pkglib_MODULES): Add `commands/read.c'.
45961 (read_mod_SOURCES): New variable.
45962 (read_mod_CFLAGS): Likewise.
45963 (read_mod_LDFLAGS): Likewise.
45964
45965 2008-02-02 Robert Millan <rmh@aybabtu.com>
45966
45967 * normal/main.c (grub_normal_execute): Check for `menu->size' when
45968 determining whether menu has to be displayed.
45969
45970 2008-02-02 Marco Gerards <marco@gnu.org>
45971
45972 * bus/pci.c: New file.
45973
45974 * include/grub/pci.h: Likewise.
45975
45976 * include/grub/i386/pc/pci.h: Likewise.
45977
45978 * commands/lspci.c: Likewise.
45979
45980 * conf/i386-pc.rmk (pkglib_MODULES): Add `pci.mod' and
45981 `lspci.mod'.
45982 (pci_mod_SOURCES): New variable.
45983 (pci_mod_CFLAGS): Likewise.
45984 (pci_mod_LDFLAGS): Likewise.
45985 (lspci_mod_SOURCES): Likewise.
45986 (lspci_mod_CFLAGS): Likewise.
45987 (lspci_mod_LDFLAGS): Likewise.
45988
45989 2008-02-02 Bean <bean123ch@gmail.com>
45990
45991 * fs/ufs.c (INODE_BLKSZ): Fix incorrect value.
45992 (grub_ufs_get_file_block): Fix indirect block calculation problem.
45993
45994 * fs/xfs.c (grub_xfs_sblock): New member log2_dirblk.
45995 (grub_xfs_btree_node): New structure.
45996 (grub_xfs_btree_root): New structure.
45997 (grub_xfs_inode): New members nblocks, extsize, nextents and btree.
45998 (GRUB_XFS_EXTENT_OFFSET): Use exts instead of inode->data.extents.
45999 (GRUB_XFS_EXTENT_BLOCK): Likewise.
46000 (GRUB_XFS_EXTENT_SIZE): Likewise.
46001 (grub_xfs_read_block): Support btree format type.
46002 (grub_xfs_iterate_dir): Use NESTED_FUNC_ATTR in call_hook.
46003 Use directory block as basic unit.
46004
46005 * fs/fshelp.c (grub_fshelp_read_file): Bug fix for sparse block.
46006
46007 * aclocal.m4 (grub_i386_CHECK_REGPARM_BUG): Define NESTED_FUNC_ATTR as
46008 __attribute__ ((__regparm__ (1))).
46009
46010 2008-02-01 Robert Millan <rmh@aybabtu.com>
46011
46012 Correct a mistake in previous commit.
46013
46014 * conf/i386-pc.rmk (normal/execute.c_DEPENDENCIES): Move to the
46015 top.
46016 (normal/command.c_DEPENDENCIES): New variable.
46017
46018 2008-02-01 Robert Millan <rmh@aybabtu.com>
46019
46020 * conf/i386-efi.rmk (normal/execute.c_DEPENDENCIES): Move to the
46021 top.
46022 (normal/command.c_DEPENDENCIES): New variable.
46023 (grub-emu_DEPENDENCIES, normal_mod_DEPENDENCIES): Remove variables.
46024 * conf/i386-ieee1275.rmk: Likewise.
46025 * conf/i386-linuxbios.rmk: Likewise.
46026 * conf/i386-pc.rmk: Likewise.
46027 * conf/sparc64-ieee1275.rmk: Likewise.
46028 * conf/powerpc-ieee1275.rmk: Likewise.
46029 (grub_emu_SOURCES): Add `fs/fshelp.c'.
46030
46031 * genmk.rb: Add `$(#{src}_DEPENDENCIES)' in targets that require it.
46032
46033 2008-02-01 Robert Millan <rmh@aybabtu.com>
46034
46035 * kern/disk.c (grub_disk_read, grub_disk_write): Add grub_dprintf()
46036 call at beginning of function.
46037
46038 2008-01-31 Pavel Roskin <proski@gnu.org>
46039
46040 * util/powerpc/ieee1275/grub-mkrescue.in: New file.
46041 * conf/powerpc-ieee1275.rmk (bin_SCRIPTS): New variable.
46042 (grub_mkrescue_SOURCES): Likewise.
46043 * DISTLIST: Add util/powerpc/ieee1275/grub-mkrescue.in.
46044
46045 2008-01-30 Robert Millan <rmh@aybabtu.com>
46046
46047 * conf/i386-pc.rmk (sbin_UTILITIES): Remove `grub-probe'.
46048 (util/grub-probe.c_DEPENDENCIES, grub_probe_SOURCES): Moved from here ...
46049 * conf/common.rmk (util/grub-probe.c_DEPENDENCIES)
46050 (grub_probe_SOURCES): ... to here.
46051
46052 * conf/i386-efi.rmk (sbin_UTILITIES): Remove `grub-probe'.
46053 (util/grub-probe.c_DEPENDENCIES, grub_probe_SOURCES): Remove.
46054 * conf/i386-ieee1275.rmk: Likewise.
46055 * conf/i386-linuxbios.rmk: Likewise.
46056 * conf/powerpc-ieee1275.rmk: Likewise.
46057
46058 2008-01-30 Tristan Gingold <gingold@free.fr>
46059
46060 * kern/rescue.c: Silently accept empty lines.
46061
46062 2008-01-29 Bean <bean123ch@gmail.com>
46063
46064 * boot/i386/pc/lnxboot.S (data_start): Code cleanup.
46065 (real_code_2): Code cleanup and change comment style.
46066 (move_memory): Avoid using 32-bit address mode.
46067
46068 2008-01-29 Bean <bean123ch@gmail.com>
46069
46070 * conf/i386-pc.rmk (pkglib_MODULES): Add `png.mod'.
46071 (png_mod_SOURCES): New variable.
46072 (png_mod_CFLAGS): Likewise.
46073 (png_mod_LDFLAGS): Likewise.
46074
46075 * video/readers/png.c: New file.
46076
46077 2008-01-28 Robert Millan <rmh@aybabtu.com>
46078
46079 * include/grub/i386/linuxbios/kernel.h (GRUB_MOD_GAP): New macro.
46080 * kern/powerpc/ieee1275/init.c (grub_arch_modules_addr): Remove
46081 `ifndef GRUB_MOD_GAP' hack.
46082 * util/elf/grub-mkimage.c (add_segments): Likewise.
46083
46084 2008-01-27 Robert Millan <rmh@aybabtu.com>
46085
46086 * kern/powerpc/ieee1275/init.c (grub_arch_modules_addr): Skip
46087 `GRUB_MOD_GAP' for platforms in which it's not defined.
46088 * util/elf/grub-mkimage.c (add_segments): Likewise.
46089
46090 2008-01-27 Robert Millan <rmh@aybabtu.com>
46091
46092 Get grub-emu to build again (including parallel builds).
46093
46094 * conf/i386-pc.rmk (util/grub-emu.c_DEPENDENCIES): Remove variable.
46095 Split into ...
46096 (util/grub-emu.c_DEPENDENCIES): ... this, ...
46097 (normal/execute.c_DEPENDENCIES): ... this, ...
46098 (grub-emu_DEPENDENCIES): ... and this.
46099
46100 * conf/i386-efi.rmk: Likewise.
46101 * conf/i386-linuxbios.rmk: Likewise.
46102 * conf/i386-ieee1275.rmk: Likewise.
46103 * conf/powerpc-ieee1275.rmk: Likewise.
46104 (grub_emu_SOURCES): Remove duplicated `kern/file.c'.
46105
46106 2008-01-27 Robert Millan <rmh@aybabtu.com>
46107
46108 * NEWS: Add a few items.
46109
46110 2008-01-27 Robert Millan <rmh@aybabtu.com>
46111
46112 Fix parallel builds with grub-emu. Based on earlier commit for
46113 grub-probe and grub-setup.
46114
46115 * conf/i386-pc.rmk (grub-emu_DEPENDENCIES): Renamed to ...
46116 (util/grub-emu.c_DEPENDENCIES): ... this.
46117 * conf/i386-efi.rmk (grub-emu_DEPENDENCIES): Renamed to ...
46118 (util/grub-emu.c_DEPENDENCIES): ... this.
46119 * conf/i386-linuxbios.rmk (grub-emu_DEPENDENCIES): Renamed to ...
46120 (util/grub-emu.c_DEPENDENCIES): ... this.
46121 * conf/i386-ieee1275.rmk (grub-emu_DEPENDENCIES): Renamed to ...
46122 (util/grub-emu.c_DEPENDENCIES): ... this.
46123 * conf/powerpc-ieee1275.rmk (grub-emu_DEPENDENCIES): Renamed to ...
46124 (util/grub-emu.c_DEPENDENCIES): ... this.
46125
46126 2008-01-27 Pavel Roskin <proski@gnu.org>
46127
46128 * include/grub/powerpc/ieee1275/kernel.h: Introduce GRUB_MOD_GAP
46129 to create a gap between _end and the modules added to the image
46130 with grub-mkrescue. That fixes "CLAIM failed" on PowerMAC.
46131 * kern/powerpc/ieee1275/init.c: Use GRUB_MOD_GAP.
46132 * util/elf/grub-mkimage.c (add_segments): Likewise.
46133
46134 2008-01-26 Pavel Roskin <proski@gnu.org>
46135
46136 * kern/dl.c (grub_dl_load): Don't abort if prefix is not set,
46137 just return an error.
46138
46139 2008-01-26 Bean <bean123ch@gmail.com>
46140
46141 * fs/reiserfs.c (grub_fshelp_node): New member next_offset.
46142 (grub_reiserfs_get_item): Save offset of the next item.
46143 (grub_reiserfs_iterate_dir): Use next_offset to find next item.
46144
46145 2008-01-25 Robert Millan <rmh@aybabtu.com>
46146
46147 * conf/i386-pc.rmk (grub_setup_SOURCES, grub_emu_SOURCES): Regroup to
46148 make all filesystem sources appear together (possibly fixing omissions
46149 while at it).
46150 * conf/i386-efi.rmk (grub_emu_SOURCES): Likewise.
46151 * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Likewise.
46152 * conf/i386-linuxbios.rmk (grub_emu_SOURCES): Likewise.
46153 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
46154
46155 * conf/i386-pc.rmk (grub_probe_SOURCES): Likewise. Additionally,
46156 add `kern/file.c'.
46157 * conf/i386-efi.rmk (grub_probe_SOURCES): Likewise.
46158 * conf/i386-ieee1275.rmk (grub_probe_SOURCES): Likewise.
46159 * conf/i386-linuxbios.rmk (grub_probe_SOURCES): Likewise.
46160 * conf/powerpc-ieee1275.rmk (grub_probe_SOURCES): Likewise.
46161
46162 * util/grub-probe.c: Include `<grub/file.h>' and `<sys/stat.h>'.
46163 (probe): Add a sanity check to make sure of our ability to read
46164 requested files when probing for filesystem type.
46165
46166 * genmk.rb: Update copyright year (2007).
46167
46168 * include/grub/fs.h (grub_fat_init, grub_fat_fini, grub_ext2_init)
46169 (grub_ext2_fini, grub_ufs_init, grub_ufs_fini, grub_minix_init)
46170 (grub_minix_fini, grub_hfs_init, grub_hfs_fini, grub_jfs_init)
46171 (grub_jfs_fini, grub_xfs_init, grub_xfs_fini, grub_affs_init)
46172 (grub_affs_fini, grub_sfs_init, grub_sfs_fini, grub_iso9660_init)
46173 : Remove function prototypes.
46174
46175 2008-01-25 Robert Millan <rmh@aybabtu.com>
46176
46177 Revert my previous commits (based on wrong assumption of how grub_errno
46178 works).
46179
46180 * kern/disk.c (grub_disk_open): Stop resetting grub_errno.
46181 * kern/file.c (grub_file_open): Likewise.
46182
46183 2008-01-24 Pavel Roskin <proski@gnu.org>
46184
46185 * include/grub/ieee1275/ieee1275.h: Introduce flag for firmwares
46186 that hang if GRUB tries to setup colors.
46187 * term/ieee1275/ofconsole.c (grub_ofconsole_init): Don't set
46188 colors for firmwares that don't support it.
46189 * kern/powerpc/ieee1275/cmain.c (grub_ieee1275_set_flag):
46190 Recognize Open Hack'Ware, set flags to work around its
46191 limitations.
46192
46193 2008-01-24 Robert Millan <rmh@aybabtu.com>
46194
46195 * kern/file.c (grub_file_open): Do not account previous failures of
46196 unrelated functions when grub_errno is checked for.
46197 Reported by Oleg Strikov.
46198
46199 2008-01-24 Bean <bean123ch@gmail.com>
46200
46201 * fs/ufs.c (GRUB_UFS_VOLNAME_LEN): New macro.
46202 (grub_ufs_sblock): New member volume name.
46203 (grub_ufs_find_file): Fix string copy bug.
46204 (grub_ufs_label): Implement this function properly.
46205
46206 * fs/hfs.c (grub_hfs_cnid_type): New enum.
46207 (grub_hfs_iterate_records): Use the correct file number for extents
46208 and catalog file. Fix problem in next index calculation.
46209 (grub_hfs_find_node): Replace recursive function call with loop.
46210 (grub_hfs_iterate_dir): Replace recursive function call with loop.
46211
46212 2008-01-23 Robert Millan <rmh@aybabtu.com>
46213
46214 * include/grub/i386/ieee1275/loader.h: Include `<grub/types.h>',
46215 `<grub/symbol.h>' and `<grub/multiboot.h>'.
46216 (grub_multiboot2_real_boot): New function prototype.
46217
46218 * include/grub/i386/pc/memory.h: Include `<grub/machine/machine.h>'.
46219 [!GRUB_MACHINE_IEEE1275] (grub_lower_mem, grub_upper_mem): Disable.
46220
46221 * kern/i386/ieee1275/init.c (grub_os_area_addr)
46222 (grub_os_area_size, grub_lower_mem, grub_upper_mem): Remove variables.
46223
46224 2008-01-23 Robert Millan <rmh@aybabtu.com>
46225
46226 * kern/mm.c (grub_mm_init_region): Replace grub_dprintf() call with
46227 #ifdef'ed out grub_printf().
46228
46229 2008-01-23 Robert Millan <rmh@aybabtu.com>
46230
46231 * term/i386/pc/at_keyboard.c (grub_keyboard_isr): #ifdef out
46232 grub_dprintf calls, since they make "debug=all" mode unusable.
46233 (grub_console_checkkey): Likewise.
46234
46235 2008-01-23 Robert Millan <rmh@aybabtu.com>
46236
46237 * conf/i386-ieee1275.rmk (kernel_elf_SOURCES): Add
46238 `term/i386/pc/at_keyboard.c'.
46239 (pkglib_MODULES): Add `serial.mod'.
46240 (serial_mod_SOURCES): New variable.
46241 (serial_mod_CFLAGS): Likewise.
46242 (serial_mod_LDFLAGS): Likewise.
46243
46244 * include/grub/i386/ieee1275/console.h: Add `<grub/symbol.h>'. Remove
46245 `<grub/powerpc/ieee1275/console.h>'.
46246 (grub_keyboard_controller_init): New function prototype.
46247 (grub_console_checkkey): Likewise.
46248 (grub_console_getkey): Likewise.
46249
46250 * kern/powerpc/ieee1275/init.c (grub_machine_init): Initialize AT
46251 keyboard on i386.
46252
46253 * term/ieee1275/ofconsole.c (grub_ofconsole_term): On i386, use
46254 grub_ofconsole_checkkey() and grub_ofconsole_getkey() for input.
46255
46256 2008-01-23 Robert Millan <rmh@aybabtu.com>
46257
46258 * kern/i386/pc/init.c (make_install_device): When memdisk image is
46259 present, "(memdisk)/boot/grub" becomes the default prefix.
46260
46261 * util/i386/pc/grub-mkrescue.in: Switch to a minimal core.img plus
46262 a memdisk tarball with all the modules. Add --overlay=DIR option that
46263 allows users to overlay additional files into the image.
46264
46265 2008-01-23 Robert Millan <rmh@aybabtu.com>
46266
46267 * conf/i386-ieee1275.rmk (kernel_elf_SOURCES): Add `machine/loader.h'
46268 and `machine/memory.h'.
46269 (pkglib_MODULES): Add `multiboot.mod' and `_multiboot.mod'.
46270 (_multiboot_mod_SOURCES): New variable.
46271 (_multiboot_mod_CFLAGS): Likewise.
46272 (_multiboot_mod_LDFLAGS): Likewise.
46273 (multiboot_mod_SOURCES): Likewise.
46274 (multiboot_mod_CFLAGS): Likewise.
46275 (multiboot_mod_LDFLAGS): Likewise.
46276
46277 * include/grub/i386/ieee1275/loader.h: New file.
46278
46279 * include/grub/i386/ieee1275/machine.h: Likewise.
46280
46281 * include/grub/i386/ieee1275/memory.h: Likewise.
46282
46283 * include/grub/i386/pc/init.h (grub_os_area_addr): Remove (redundant)
46284 variable declaration.
46285 (grub_os_area_size): Likewise.
46286
46287 * kern/i386/ieee1275/init.c (grub_os_area_addr, grub_os_area_size)
46288 (grub_lower_mem, grub_upper_mem): New variables.
46289 (grub_stop_floppy): New function (just to make
46290 grub_multiboot2_real_boot() happy).
46291
46292 * kern/i386/ieee1275/startup.S: Include `<grub/machine/memory.h>',
46293 `<grub/cpu/linux.h>', `<multiboot.h>' and `<multiboot2.h>'.
46294 (grub_stop): New function.
46295 Include `"../realmode.S"' and `"../loader.S"'.
46296
46297 * loader/multiboot_loader.c: Include `<grub/machine/machine.h>'.
46298 Replace `__i386__' #ifdefs with `GRUB_MACHINE_PCBIOS'.
46299
46300 * loader/powerpc/ieee1275/multiboot2.c (grub_mb2_arch_boot): On i386,
46301 rely on grub_multiboot2_real_boot() for final boot.
46302
46303 2008-01-22 Robert Millan <rmh@aybabtu.com>
46304
46305 * disk/ieee1275/ofdisk.c (grub_ofdisk_iterate): When
46306 `GRUB_IEEE1275_FLAG_OFDISK_SDCARD_ONLY' flag is set, skip any
46307 device that doesn't look like an SD card.
46308 * include/grub/ieee1275/ieee1275.h (grub_ieee1275_flag): Add
46309 `GRUB_IEEE1275_FLAG_OFDISK_SDCARD_ONLY' flag.
46310 * kern/powerpc/ieee1275/cmain.c (grub_ieee1275_set_flag): Detect
46311 OLPC laptop, and set `GRUB_IEEE1275_FLAG_OFDISK_SDCARD_ONLY' when
46312 found.
46313
46314 2008-01-22 Robert Millan <rmh@aybabtu.com>
46315
46316 * kern/powerpc/ieee1275/init.c (grub_claim_heap): Add sanity check to
46317 avoid claiming over our own code.
46318
46319 2008-01-22 Bean <bean123ch@gmail.com>
46320
46321 * conf/i386-pc.rmk (pkglib_MODULES): Add `jpeg.mod'.
46322 (jpeg_mod_SOURCES): New variable.
46323 (jpeg_mod_CFLAGS): Likewise.
46324 (jpeg_mod_LDFLAGS): Likewise.
46325
46326 * video/readers/jpeg.c : New file.
46327
46328 2008-01-22 Bean <bean123ch@gmail.com>
46329
46330 * fs/cpio.c (grub_cpio_find_file): Return GRUB_ERR_FILE_NOT_FOUND when
46331 there are no more items.
46332
46333 2008-01-21 Robert Millan <rmh@aybabtu.com>
46334
46335 * kern/mm.c (grub_mm_init_region): Improve debug message.
46336
46337 2008-01-21 Robert Millan <rmh@aybabtu.com>
46338
46339 * conf/i386-pc.rmk (GRUB_MEMORY_MACHINE_LINK_ADDR): New variable.
46340 (kernel_img_LDFLAGS): Use `GRUB_MEMORY_MACHINE_LINK_ADDR' as link
46341 address.
46342 (grub_mkimage_CFLAGS): Propagate `GRUB_MEMORY_MACHINE_LINK_ADDR' as
46343 a C macro.
46344 * include/grub/i386/pc/memory.h (GRUB_MEMORY_MACHINE_UPPER): New macro.
46345 Indicates start of upper memory.
46346 * util/i386/pc/grub-mkimage.c: Include `<grub/machine/memory.h>'.
46347 (generate_image): Abort when image size is big enough to corrupt
46348 upper memory.
46349
46350 * include/grub/i386/pc/vga.h: Include `<grub/machine/memory.h>'.
46351 (GRUB_MEMORY_MACHINE_VGA_ADDR): Alias for `GRUB_MEMORY_MACHINE_UPPER'.
46352 * term/i386/pc/vga.c (VGA_MEM): Use `GRUB_MEMORY_MACHINE_VGA_ADDR'
46353 instead of hardcoding 0xA0000.
46354 * video/i386/pc/vbe.c: Include `<grub/machine/vga.h>'.
46355 (grub_vbe_set_video_mode): Use `GRUB_MEMORY_MACHINE_VGA_ADDR'
46356 instead of hardcoding 0xA0000.
46357
46358 2008-01-21 Robert Millan <rmh@aybabtu.com>
46359
46360 * disk/memdisk.c (memdisk_size): New variable.
46361 (grub_memdisk_open): Replace grub_arch_memdisk_size() call with
46362 `memdisk_size'.
46363 (grub_memdisk_init): Initialize `memdisk_size'. Reallocate memdisk
46364 image to dynamic memory.
46365 (grub_memdisk_fini): Replace grub_arch_memdisk_size() call with
46366 `memdisk_size'. Free memdisk block.
46367
46368 2008-01-21 Robert Millan <rmh@aybabtu.com>
46369
46370 Fix detection of very small filesystems (like tar).
46371
46372 * fs/reiserfs.c (grub_reiserfs_mount): When disk is too small to
46373 contain a ReiserFS, abort with GRUB_ERR_BAD_FS rather than
46374 GRUB_ERR_OUT_OF_RANGE (which made the upper layer think there's
46375 a problem with this disk).
46376
46377 2008-01-21 Robert Millan <rmh@aybabtu.com>
46378
46379 * disk/i386/pc/biosdisk.c (grub_biosdisk_iterate): Add debug message
46380 on grub_biosdisk_rw_standard() error.
46381
46382 2008-01-21 Robert Millan <rmh@aybabtu.com>
46383
46384 * include/grub/ieee1275/ieee1275.h: Add 2008 to Copyright line for
46385 recent changes.
46386 * kern/elf.c: Likewise.
46387 * kern/ieee1275/ieee1275.c: Likewise.
46388 * kern/powerpc/ieee1275/openfw.c: Likewise.
46389 * term/ieee1275/ofconsole.c: Likewise.
46390
46391 2008-01-21 Robert Millan <rmh@aybabtu.com>
46392
46393 * include/grub/i386/pc/kernel.h: Include `<grub/symbol.h>'.
46394
46395 * include/grub/kernel.h (grub_arch_memdisk_addr)
46396 (grub_arch_memdisk_size): Moved from here ...
46397
46398 * include/grub/i386/pc/kernel.h (grub_arch_memdisk_addr)
46399 (grub_arch_memdisk_size): ... to here.
46400
46401 2008-01-21 Robert Millan <rmh@aybabtu.com>
46402
46403 Mostly based on bugfix from Bean.
46404
46405 * kern/elf.c (grub_elf32_phdr_iterate): Use `NESTED_FUNC_ATTR'
46406 attribute with hook() parameter.
46407 (grub_elf32_load): Use `NESTED_FUNC_ATTR' with grub_elf32_load_segment()
46408 declaration.
46409 (grub_elf64_phdr_iterate): Use `NESTED_FUNC_ATTR'
46410 attribute with hook() parameter.
46411 (grub_elf64_load): Use `NESTED_FUNC_ATTR' with grub_elf64_load_segment()
46412 declaration.
46413
46414 2008-01-21 Robert Millan <rmh@aybabtu.com>
46415
46416 * conf/i386-pc.rmk (kernel_img_HEADERS): Add `machine/kernel.h'.
46417 (pkglib_MODULES): Add `memdisk.mod'.
46418 (memdisk_mod_SOURCES): New variable.
46419 (memdisk_mod_CFLAGS): Likewise.
46420 (memdisk_mod_LDFLAGS): Likewise.
46421
46422 * disk/memdisk.c: New file.
46423
46424 * include/grub/disk.h (grub_disk_dev_id): Add
46425 `GRUB_DISK_DEVICE_MEMDISK_ID'.
46426
46427 * include/grub/i386/pc/kernel.h
46428 (GRUB_KERNEL_MACHINE_MEMDISK_IMAGE_SIZE): New macro.
46429 (GRUB_KERNEL_MACHINE_PREFIX): Increment by 4.
46430 (grub_kernel_image_size): New variable declaration.
46431 (grub_total_module_size): Likewise.
46432 (grub_memdisk_image_size): Likewise.
46433
46434 * include/grub/i386/pc/memory.h
46435 (GRUB_MEMORY_MACHINE_DECOMPRESSION_ADDR): New macro.
46436
46437 * include/grub/kernel.h: Include `<grub/symbol.h>'.
46438 (grub_arch_memdisk_addr): New variable declaration.
46439 (grub_arch_memdisk_size): Likewise.
46440
46441 * kern/i386/pc/init.c (grub_arch_memdisk_addr): New function.
46442 (grub_arch_memdisk_size): Likewise.
46443
46444 * kern/i386/pc/startup.S (grub_memdisk_image_size): New variable.
46445 (codestart): Replace hardcoded `0x100000' with
46446 `GRUB_MEMORY_MACHINE_DECOMPRESSION_ADDR' macro.
46447
46448 * util/i386/pc/grub-mkimage.c: Include `<grub/misc.h>'.
46449 (generate_image): Add `memdisk_path' parameter. When `memdisk_path' is
46450 not NULL, append the contents of the file it refers to, at the end of
46451 the compressed kernel image. Initialize `grub_memdisk_image_size'
46452 variable (at `GRUB_KERNEL_MACHINE_MEMDISK_IMAGE_SIZE' offset).
46453 (options): Add "memdisk"|'m' option.
46454 (main): Parse --memdisk|-m option, and pass user-provided path as
46455 parameter to generate_image().
46456
46457 2008-01-20 Robert Millan <rmh@aybabtu.com>
46458
46459 * kern/sparc64/ieee1275/openfw.c (grub_devalias_iterate): Copy debug
46460 grub_dprintf() calls from here ...
46461 * kern/powerpc/ieee1275/openfw.c (grub_devalias_iterate): ... to here.
46462
46463 2008-01-20 Robert Millan <rmh@aybabtu.com>
46464
46465 Fix detection of "real mode" when /options/real-mode? doesn't exist.
46466
46467 * include/grub/ieee1275/ieee1275.h (grub_ieee1275_mmu): New variable
46468 declaration.
46469 * kern/powerpc/ieee1275/cmain.c (grub_ieee1275_mmu): New variable.
46470 (grub_ieee1275_find_options): If `grub_ieee1275_mmu' is 0, set
46471 `GRUB_IEEE1275_FLAG_REAL_MODE'.
46472 (cmain): Initialize `grub_ieee1275_mmu' (using /chosen/mmu integer
46473 property).
46474 * kern/powerpc/ieee1275/openfw.c (grub_map): Rely on pre-initialized
46475 `grub_ieee1275_mmu' rather than obtaining a handler on every call.
46476
46477 2008-01-19 Robert Millan <rmh@aybabtu.com>
46478
46479 Get rid of confusing function (superseded by
46480 `grub_ieee1275_get_integer_property')
46481 * include/grub/ieee1275/ieee1275.h (grub_ieee1275_decode_int_4): Remove
46482 prototype.
46483 * kern/ieee1275/ieee1275.c (grub_ieee1275_decode_int_4): Remove
46484 function.
46485 * term/ieee1275/ofconsole.c (grub_ofconsole_init): Avoid use of
46486 grub_ieee1275_decode_int_4(), by obtaining integer properties directly
46487 in native endianness from grub_ieee1275_get_integer_property().
46488
46489 2008-01-19 Robert Millan <rmh@aybabtu.com>
46490
46491 * kern/powerpc/ieee1275/openfw.c (grub_halt): Issue "power-off"
46492 command after "shut-down", since implementations differ on which
46493 the command for halt is.
46494
46495 2008-01-19 Robert Millan <rmh@aybabtu.com>
46496
46497 * include/grub/i386/linuxbios/console.h: Add header protection.
46498 (grub_keyboard_controller_init): New function prototype.
46499 * term/i386/pc/at_keyboard.c (KEYBOARD_COMMAND_ISREADY): New macro.
46500 (KEYBOARD_COMMAND_READ): Likewise.
46501 (KEYBOARD_COMMAND_WRITE): Likewise.
46502 (KEYBOARD_SCANCODE_SET1): Likewise.
46503 (grub_keyboard_controller_write): New function.
46504 (grub_keyboard_controller_read): Likewise.
46505 (grub_keyboard_controller_init): Likewise.
46506
46507 * term/i386/pc/console.c: Include `<grub/machine/machine.h>'.
46508 (grub_console_init): On coreboot/LinuxBIOS, call
46509 grub_keyboard_controller_init().
46510
46511 2008-01-19 Robert Millan <rmh@aybabtu.com>
46512
46513 PowerPC changes provided by Pavel Roskin.
46514
46515 * kern/powerpc/ieee1275/cmain.c (cmain): Don't take any arguments.
46516 * kern/powerpc/ieee1275/crt0.S: Store r5 in grub_ieee1275_entry_fn,
46517 don't rely on cmain() doing it.
46518 * kern/i386/ieee1275/startup.S (_start): Store %eax in
46519 grub_ieee1275_entry_fn, don't rely on cmain() doing it.
46520
46521 2008-01-16 Robert Millan <rmh@aybabtu.com>
46522
46523 * include/grub/i386/linuxbios/memory.h
46524 (GRUB_MEMORY_MACHINE_LINUXBIOS_TABLE_ADDR): Remove macro.
46525 * kern/i386/linuxbios/table.c (grub_linuxbios_table_iterate): Do not
46526 receive `table_header' as argument. Instead, probe for it in the
46527 known memory ranges where it can be present.
46528 (grub_available_iterate): Do not pass a fixed `table_header' address
46529 to grub_linuxbios_table_iterate().
46530
46531 2008-01-15 Robert Millan <rmh@aybabtu.com>
46532
46533 * configure.ac: Add `i386-ieee1275' to the list of supported targets.
46534 * conf/i386-ieee1275.rmk: New file.
46535 * include/grub/i386/ieee1275/console.h: Likewise.
46536 * include/grub/i386/ieee1275/ieee1275.h: Likewise.
46537 * include/grub/i386/ieee1275/kernel.h: Likewise.
46538 * include/grub/i386/ieee1275/time.h: Likewise.
46539 * kern/i386/ieee1275/init.c: Likewise.
46540 * kern/i386/ieee1275/startup.S: Likewise.
46541
46542 2008-01-15 Robert Millan <rmh@aybabtu.com>
46543
46544 * kern/misc.c (grub_vsprintf): Do not reset `longlongfmt' to zero
46545 when pointers are 32-bit (but still do set it to one when they are
46546 64-bit).
46547
46548 2008-01-15 Robert Millan <rmh@aybabtu.com>
46549
46550 * include/grub/ieee1275/ieee1275.h
46551 (grub_ieee1275_get_integer_property): New function prototype.
46552
46553 * kern/ieee1275/ieee1275.c: Include `<grub/types.h>'.
46554 (grub_ieee1275_get_integer_property): New function. Wraps around
46555 grub_ieee1275_get_property() to handle endianness.
46556
46557 * kern/powerpc/ieee1275/cmain.c (grub_ieee1275_find_options): Replace
46558 grub_ieee1275_get_property() with grub_ieee1275_get_integer_property()
46559 where appropriate.
46560 * kern/powerpc/ieee1275/openfw.c (grub_available_iterate): Likewise.
46561 (grub_map): Likewise.
46562 * kern/sparc64/ieee1275/openfw.c (grub_map): Likewise.
46563
46564 2008-01-15 Bean <bean123ch@gmail.com>
46565
46566 * normal/execute.c (grub_script_exec_argument_to_string): Check for undefined variable.
46567 (grub_script_execute_cmdline): Reset grub_errno.
46568
46569 * normal/main.c (read_config_file): Reset grub_errno.
46570
46571 * normal/parse.y (script_init): New.
46572 (script): Move function and menuentry here.
46573 (delimiter): New.
46574 (command): Add delimiter at the end of command.
46575 (commands): Adjust to match the new command.
46576 (commandblock): Remove grub_script_lexer_record_start.
46577 (menuentry): Add grub_script_lexer_record_start, use the new commands.
46578 (if): Use the new commands.
46579
46580 * conf/common.rmk (pkgdata_MODULES): Add echo.mod.
46581
46582 2008-01-15 Robert Millan <rmh@aybabtu.com>
46583
46584 * normal/menu.c (run_menu): Move timeout message from here ...
46585 (print_timeout): ... to here.
46586 (run_menu): Use print_timeout() once during initial draw to print
46587 the whole message, and again in every clock tick to update only
46588 the number of seconds.
46589
46590 2008-01-15 Robert Millan <rmh@aybabtu.com>
46591
46592 * kern/powerpc/ieee1275/openfw.c (grub_available_iterate): Obtain
46593 actual size of `available' from grub_ieee1275_get_property(), and
46594 restrict parsing to that bound.
46595
46596 2008-01-15 Christian Franke <franke@computer.org>
46597
46598 * util/grub-emu.c: Replace <argp.h> by <getopt.h>.
46599 (argp_program_version): Remove variable.
46600 (argp_program_bug_address): Likewise.
46601 (options): Convert from struct argp_option to struct option.
46602 (struct arguments): Remove.
46603 (parse_opt): Remove.
46604 (usage): New function.
46605 (main): Replace struct args members by simple variables.
46606 Replace argp_parse() by getopt_long().
46607 Add switch to evaluate options.
46608 Add missing "(...)" around root_dev in prefix string.
46609
46610 2008-01-14 Robert Millan <rmh@aybabtu.com>
46611
46612 * kern/powerpc/ieee1275/init.c (grub_exit): Reimplement as a wrapper
46613 for grub_ieee1275_exit(), in order to improve portability.
46614
46615 2008-01-14 Robert Millan <rmh@aybabtu.com>
46616
46617 * util/grub.d/10_linux.in (prefix): Define.
46618 (exec_prefix): Likewise. Both definitions are later used by `libdir'.
46619
46620 2008-01-13 Pavel Roskin <proski@gnu.org>
46621
46622 * disk/ieee1275/ofdisk.c (grub_ofdisk_open): Don't use
46623 grub_errno if no errors have been detected.
46624
46625 2008-01-12 Robert Millan <rmh@aybabtu.com>
46626
46627 * include/grub/util/getroot.h (grub_dev_abstraction_types): New enum.
46628 (grub_util_get_dev_abstraction): New function prototype.
46629
46630 * util/getroot.c: Include `<grub/util/getroot.h>'
46631 (grub_util_get_grub_dev): Move detection of abstraction type to ...
46632 (grub_util_get_dev_abstraction): ... here (new function).
46633
46634 * util/grub-probe.c: Convert PRINT_* to an enum. Add
46635 `PRINT_ABSTRACTION'.
46636 (probe): Probe for abstraction type when requested.
46637 (main): Understand `--target=abstraction'.
46638
46639 * util/i386/efi/grub-install.in: Add abstraction module to core
46640 image when it is found to be necessary.
46641 * util/i386/pc/grub-install.in: Likewise.
46642 * util/powerpc/ieee1275/grub-install.in: Likewise.
46643
46644 * util/update-grub_lib.in (font_path): Return system path without
46645 converting to GRUB path.
46646 * util/update-grub.in: Convert system path returned by font_path()
46647 to a GRUB path. Use `grub-probe -t abstraction' to determine what
46648 abstraction module is needed for loading fonts (if any). Export
46649 that as `GRUB_PRELOAD_MODULES'.
46650 * util/grub.d/00_header.in: Process `GRUB_PRELOAD_MODULES' (print
46651 insmod commands).
46652
46653 2008-01-12 Yoshinori K. Okuji <okuji@enbug.org>
46654
46655 Remove some unused code from reiserfs.
46656
46657 * fs/reiserfs.c (struct grub_reiserfs_key)
46658 [GRUB_REISERFS_KEYV2_BITFIELD]: Removed offset and type.
46659 (struct grub_reiserfs_node_body): Removed.
46660 (grub_reiserfs_get_key_v2_type) [GRUB_REISERFS_KEYV2_BITFIELD]:
46661 Likewise.
46662 (grub_reiserfs_get_key_offset) [GRUB_REISERFS_KEYV2_BITFIELD]:
46663 Likewise.
46664 (grub_reiserfs_set_key_offset) [GRUB_REISERFS_KEYV2_BITFIELD]:
46665 Likewise.
46666 (grub_reiserfs_set_key_offset) [GRUB_REISERFS_KEYV2_BITFIELD]:
46667 Likewise.
46668 (grub_reiserfs_set_key_type) [GRUB_REISERFS_KEYV2_BITFIELD]:
46669 Likewise.
46670 (grub_reiserfs_iterate_dir) [GRUB_REISERFS_KEYV2_BITFIELD]:
46671 Likewise.
46672 (grub_reiserfs_open) [GRUB_REISERFS_KEYV2_BITFIELD]: Likewise.
46673 (grub_reiserfs_read) [GRUB_REISERFS_KEYV2_BITFIELD]: Likewise.
46674 (grub_reiserfs_dir) [GRUB_REISERFS_KEYV2_BITFIELD]: Likewise.
46675
46676 2008-01-10 Robert Millan <rmh@aybabtu.com>
46677
46678 * util/update-grub_lib.in (grub_file_is_not_garbage): New function.
46679 Determines if a file is garbage left by packaging systems, etc.
46680 * util/update-grub.in: Use grub_file_is_not_garbage() as a condition
46681 for processing /etc/grub.d scripts.
46682 * util/grub.d/10_hurd.in: Fix `GRUB_DISTRIBUTOR' comparison.
46683 * util/grub.d/10_linux.in: Likewise. Use grub_file_is_not_garbage()
46684 as a condition for processing Linux images.
46685
46686 2008-01-10 Pavel Roskin <proski@gnu.org>
46687
46688 * include/grub/powerpc/libgcc.h (__ucmpdi2): New export. Needed
46689 to compile reiserfs.c on PowerPC.
46690
46691 2008-01-10 Robert Millan <rmh@aybabtu.com>
46692
46693 * kern/device.c (grub_device_iterate): Do not abort device iteration
46694 when one of the devices cannot be opened.
46695 * kern/disk.c (grub_disk_open): Do not account previous failures of
46696 unrelated functions when grub_errno is checked for.
46697
46698 2008-01-08 Robert Millan <rmh@aybabtu.com>
46699
46700 * loader/i386/pc/linux.c (grub_rescue_cmd_linux): For
46701 `! grub_linux_is_bzimage', change order of address comparison to make
46702 it more intuitive, and improve "too big zImage" error message.
46703
46704 2008-01-08 Robert Millan <rmh@aybabtu.com>
46705
46706 * Makefile.in (uninstall): Handle `$(update-grub_SCRIPTS)' and
46707 `$(update-grub_DATA)'.
46708 (distcheck): Fix race condition when invoking `$(MAKE)' on multiple
46709 targets.
46710
46711 2008-01-07 Robert Millan <rmh@aybabtu.com>
46712
46713 * boot/i386/pc/boot.S (boot_drive_check): Add a comment indicating
46714 which instruction is modified by grub-setup during installation
46715 (since it wasn't obvious by only looking at this file).
46716
46717 2008-01-07 Robert Millan <rmh@aybabtu.com>
46718
46719 * TODO: Rewrite. Just refer to the wiki and the BTS instead of
46720 listing actual TODO items.
46721
46722 2008-01-06 Yoshinori K. Okuji <okuji@enbug.org>
46723
46724 * fs/reiserfs.c (grub_reiserfs_get_key_v2_type): Handle endianness
46725 correctly.
46726 (grub_reiserfs_get_key_offset): Likewise.
46727 (grub_reiserfs_set_key_offset): Likewise.
46728 (grub_reiserfs_set_key_type): Likewise.
46729 (grub_reiserfs_iterate_dir): Return 1 if found, otherwise 0.
46730
46731 (GRUB_REISERFS_KEYV2_BITFIELD): Undefined. Probably it would be
46732 better to remove the bitfield version completely.
46733
46734 2008-01-06 Yoshinori K. Okuji <okuji@enbug.org>
46735
46736 * fs/reiserfs.c (grub_reiserfs_iterate_dir): ENTRY_ITEM must be
46737 allocated from the heap, due to the fshelp implementation.
46738 (grub_reiserfs_dir): Free NODE, due to the same reason.
46739
46740 2008-01-06 Yoshinori K. Okuji <okuji@enbug.org>
46741
46742 Mostly from Vincent Pelletier:
46743
46744 * fs/reiserfs.c: New file.
46745
46746 * conf/common.rmk (pkglib_MODULES): Added reiserfs.mod.
46747 (reiserfs_mod_SOURCES): New variable.
46748 (reiserfs_mod_CFLAGS): Likewise.
46749 (reiserfs_mod_LDFLAGS): Likewise.
46750
46751 * DISTLIST: Added boot/i386/pc/lnxboot.S, commands/hexdump.c,
46752 disk/ata.c, fs/cpio.c, fs/ntfscomp.c, fs/reiserfs.c,
46753 include/grub/ntfs.h, include/grub/i386/pc/machine.h, and
46754 normal/color.c.
46755
46756 2008-01-06 Robert Millan <rmh@aybabtu.com>
46757
46758 * normal/color.c: Remove `<grub/env.h>'.
46759
46760 2008-01-05 Jeroen Dekkers <jeroen@dekkers.cx>
46761
46762 * include/grub/normal.h: Include <grub/env.h>.
46763
46764 2008-01-05 Robert Millan <rmh@aybabtu.com>
46765
46766 * util/i386/pc/grub-setup.c (usage): Replace obsolete `(hd0,0)' in
46767 usage example with `(hd0,1)'.
46768 Reported by Samuel Thibault.
46769
46770 2008-01-05 Robert Millan <rmh@aybabtu.com>
46771
46772 * kern/i386/loader.S (grub_linux_is_bzimage): New variable.
46773 (grub_linux_boot_zimage): Rename to ...
46774 (grub_linux_boot): ... this.
46775 (grub_linux_boot_bzimage): Merge with `grub_linux_boot_zimage'.
46776 (grub_linux_boot_zimage): Conditionalize zImage copy.
46777
46778 * include/grub/i386/loader.h (grub_linux_is_bzimage): Add prototype.
46779 (grub_linux_boot_bzimage): Remove prototype.
46780 (grub_linux_boot_zimage): Rename to ...
46781 (grub_linux_boot): ... this.
46782
46783 * loader/i386/pc/linux.c (big_linux): Replace with `grub_linux_is_bzimage'.
46784 (grub_linux_boot): Remove function.
46785
46786 2008-01-05 Robert Millan <rmh@aybabtu.com>
46787
46788 * include/grub/normal.h (grub_env_write_color_normal): New prototype.
46789 (grub_env_write_color_highlight): Likewise.
46790 (grub_wait_after_message): Likewise.
46791
46792 * normal/color.c: New file.
46793
46794 * conf/i386-pc.rmk (grub_emu_SOURCES): Add `normal/color.c'.
46795 (normal_mod_DEPENDENCIES): Likewise.
46796
46797 * conf/i386-efi.rmk (grub_emu_SOURCES): Add `normal/color.c'.
46798 (normal_mod_DEPENDENCIES): Likewise.
46799
46800 * conf/i386-linuxbios.rmk (grub_emu_SOURCES): Add `normal/color.c'.
46801 (normal_mod_DEPENDENCIES): Likewise.
46802
46803 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add `normal/color.c'.
46804 (normal_mod_DEPENDENCIES): Likewise.
46805
46806 * normal/menu_entry.c (run): Rely on grub_wait_after_message()
46807 for waiting after a message is printed.
46808 * normal/main.c (read_config_file): Likewise.
46809 (grub_normal_init): Register grub_env_write_color_normal() and
46810 grub_env_write_color_highlight() hooks. Mark `color_normal' and
46811 `color_highlight' variables as global.
46812
46813 * normal/menu.c (grub_wait_after_message): New function.
46814 (grub_color_menu_normal): New variable. Replaces ...
46815 (GRUB_COLOR_MENU_NORMAL): ... this macro.
46816 (grub_color_menu_highlight): New variable. Replaces ...
46817 (GRUB_COLOR_MENU_HIGHLIGHT): ... this macro.
46818 (draw_border): Set color state to `GRUB_TERM_COLOR_NORMAL' instead of
46819 `GRUB_TERM_COLOR_STANDARD'.
46820 (print_message): Use `grub_setcolorstate' to reload colors. Rename
46821 `normal_code' and `highlight_code' to `old_color_normal' and
46822 `old_color_highlight', respectively.
46823 (grub_menu_init_page): Update colors when drawing the menu, based on
46824 `menu_color_normal' and `menu_color_highlight' variables.
46825 (grub_menu_run): Rely on grub_wait_after_message() for waiting after
46826 a message is printed.
46827
46828 2008-01-05 Robert Millan <rmh@aybabtu.com>
46829
46830 * kern/env.c (grub_env_context_open): Propagate hooks for global
46831 variables to new context.
46832
46833 * kern/main.c (grub_set_root_dev): Export `root' variable.
46834
46835 2008-01-05 Robert Millan <rmh@aybabtu.com>
46836
46837 * util/biosdisk.c (get_os_disk): Check for devfs-style IDE and SCSI
46838 discs unconditionally, since udev and others have options to provide
46839 them.
46840
46841 2008-01-05 Robert Millan <rmh@aybabtu.com>
46842
46843 * normal/completion.c (iterate_dir): Skip `.' and `..' directories.
46844
46845 2008-01-04 Christian Franke <franke@computer.org>
46846
46847 * kern/i386/pc/init.c (grub_machine_init): Fix evaluation
46848 of eisa_mmap.
46849
46850 2008-01-03 Pavel Roskin <proski@gnu.org>
46851
46852 * kern/i386/linuxbios/init.c: Put "void" to all function
46853 declarations with no arguments.
46854 * kern/powerpc/ieee1275/init.c: Likewise.
46855 * term/i386/pc/at_keyboard.c: Likewise.
46856 * term/i386/pc/vga_text.c: Likewise.
46857 * util/grub-mkdevicemap.c: Likewise.
46858
46859 2008-01-02 Robert Millan <rmh@aybabtu.com>
46860
46861 * loader/i386/pc/multiboot.c (grub_multiboot_load_elf32): Improve error
46862 message when loaded image is out of bounds.
46863 (grub_multiboot_load_elf64): Likewise.
46864
46865 2008-01-02 Pavel Roskin <proski@gnu.org>
46866
46867 * util/grub.d/10_linux.in: Try version without ".old" when
46868 looking for initrd. It's better to use initrd from the newer
46869 kernel of the same version than no initrd at all.
46870
46871 2008-01-01 Robert Millan <rmh@aybabtu.com>
46872
46873 * util/biosdisk.c (get_os_disk): Fix check for IDE or SCSI discs.
46874
46875 2008-01-01 Vesa Jaaskelainen <chaac@nic.fi>
46876
46877 * include/grub/video.h: Added grub_video_unmap_color and
46878 grub_video_get_active_render_target.
46879 (grub_video_adapter): Added unmap_color and get_active_render_target.
46880
46881 * video/video.c: Added grub_video_unmap_color and
46882 grub_video_get_active_render_target.
46883 (grub_video_get_info): Changed method to accept NULL pointer as an
46884 argument to allow detection of active video adapter.
46885
46886 * video/i386/pc/vbe.c: Renamed grub_video_vbe_unmap_color as
46887 grub_video_vbe_unmap_color_int.
46888 Added grub_video_vbe_unmap_color and
46889 grub_video_vbe_get_active_render_target.
46890 (grub_video_vbe_adapter): Added unmap_color and
46891 get_active_render_target.
46892
46893 * video/i386/pc/vbeblit.c: Replaced grub_video_vbe_unmap_color usage
46894 with grub_video_vbe_unmap_color_int.
46895
46896 * term/gfxterm.c (DEFAULT_STANDARD_COLOR): Added.
46897 (DEFAULT_NORMAL_COLOR): Likewise.
46898 (DEFAULT_HIGHLIGHT_COLOR) Likewise.
46899 (DEFAULT_FG_COLOR): Removed.
46900 (DEFAULT_BG_COLOR): Likewise.
46901 (DEFAULT_CURSOR_COLOR): Changed value.
46902 (grub_virtual_screen): Added standard_color_setting,
46903 normal_color_setting, highlight_color_setting and term_color.
46904 (grub_virtual_screen): Removed fg_color_setting and bg_color_setting.
46905 (bitmap_width): Added.
46906 (bitmap_height): Likewise.
46907 (bitmap): Likewise.
46908 (set_term_color): Likewise.
46909 (grub_virtual_screen_setup): Changed to use new terminal coloring
46910 settings.
46911 (grub_gfxterm_init): Added init for bitmap.
46912 (grub_gfxterm_fini): Added destroy for bitmap.
46913 (redraw_screen_rect): Updated to use background bitmap and new
46914 terminal coloring.
46915 (scroll_up): Added optimization for case when there is no bitmap.
46916 (grub_gfxterm_cls): Fixed to use correct background color.
46917 (grub_virtual_screen_setcolorstate): Changed to use new terminal
46918 coloring.
46919 (grub_virtual_screen_setcolor): Likewise.
46920 (grub_virtual_screen_getcolor): Added.
46921 (grub_gfxterm_background_image_cmd): Likewise.
46922 (grub_video_term): Added setcolor and getcolor.
46923 (MOD_INIT): Added registration of background_image command.
46924 (MOD_TERM): Added unregistration for background_image command.
46925
46926 2007-12-30 Pavel Roskin <proski@gnu.org>
46927
46928 * loader/multiboot_loader.c: Fix multiboot command
46929 unregistration. Fix all typos in the word "multiboot".
46930
46931 2007-12-29 Pavel Roskin <proski@gnu.org>
46932
46933 * util/grub.d/10_linux.in: Refactor search for initrd. Add
46934 support for initrd names used in Fedora.
46935
46936 2007-12-26 Bean <bean123ch@gmail.com>
46937
46938 * conf/common.rmk (pkgdata_MODULES): Add cpio.mod.
46939 (cpio_mod_SOURCES): New variable.
46940 (cpio_mod_CFLAGS): Likewise.
46941 (cpio_mod_LDFLAGS): Likewise.
46942
46943 * fs/cpio.c: New file.
46944
46945 * conf/i386-pc.rmk (grub_emu_SOURCES): Add cpio.c.
46946
46947 * conf/i386-efi.rmk (grub_emu_SOURCES): Likewise.
46948
46949 * conf/i386-linuxbios.rmk (grub_emu_SOURCES): Likewise.
46950
46951 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
46952
46953 2007-12-25 Robert Millan <rmh@aybabtu.com>
46954
46955 * include/grub/term.h (struct grub_term): Add `getcolor' function.
46956 (grub_getcolor): New function.
46957
46958 * kern/term.c (grub_getcolor): New function.
46959 * normal/menu.c (GRUB_COLOR_MENU_NORMAL): New macro.
46960 (GRUB_COLOR_MENU_HIGHLIGHT): New macro.
46961 (print_entry): Set normal and highlight colors to
46962 `GRUB_COLOR_MENU_NORMAL' and `GRUB_COLOR_MENU_HIGHLIGHT',
46963 respectively, before printing and restore them to old
46964 values afterwards.
46965 (grub_menu_init_page): Likewise. Fill an additional colored space
46966 that would otherwise be left blank.
46967
46968 * term/efi/console.c (grub_console_getcolor): New function.
46969 (struct grub_console_term.getcolor): New variable.
46970 * term/i386/pc/console.c (grub_console_getcolor): New function.
46971 (struct grub_console_term.getcolor): New variable.
46972 * term/ieee1275/ofconsole.c (grub_ofconsole_getcolor): New function.
46973 (struct grub_console_term.getcolor): New variable.
46974
46975 * term/i386/pc/serial.c (grub_serial_setcolor): Remove function.
46976 (struct grub_console_term.setcolor): Remove variable.
46977 * term/i386/pc/vesafb.c (grub_virtual_screen_setcolor): Remove function.
46978 (struct grub_console_term.setcolor): Remove variable.
46979 * term/i386/pc/vga.c (grub_vga_setcolor): Remove function.
46980 (struct grub_console_term.setcolor): Remove variable.
46981 * term/gfxterm.c (grub_virtual_screen_setcolor): Remove function.
46982 (struct grub_console_term.setcolor): Remove variable.
46983
46984 2007-12-25 Robert Millan <rmh@aybabtu.com>
46985
46986 * configure.ac: Search for possible unifont.hex locations, and
46987 define UNIFONT_HEX if found.
46988
46989 * Makefile.in (UNIFONT_HEX): Define variable.
46990 (DATA): Rename to ...
46991 (PKGLIB): ... this. Update all users.
46992 (PKGDATA): New variable.
46993 (pkgdata_IMAGES): Rename to ...
46994 (pkglib_IMAGES): ... this. Update all users.
46995 (pkgdata_MODULES): Rename to ...
46996 (pkglib_MODULES): ... this. Update all users.
46997 (pkgdata_PROGRAMS): Rename to ...
46998 (pkglib_PROGRAMS): ... this. Update all users.
46999 (pkgdata_DATA): Rename to ...
47000 (pkglib_DATA): ... this. Update all users.
47001 (CLEANFILES): Redefine to `$(pkglib_DATA) $(pkgdata_DATA)'.
47002 (unicode.pff, ascii.pff): New rules.
47003 (all-local): Add `$(PKGDATA)' dependency.
47004 (install-local): Process `$(PKGDATA)'.
47005
47006 * util/update-grub_lib.in (font_path): Search for *.pff files in
47007 a few more locations, including `${pkgdata}'.
47008
47009 2007-12-23 Robert Millan <rmh@aybabtu.com>
47010
47011 Patch from Bean <bean123ch@gmail.com>:
47012 * disk/loopback.c (grub_loopback_read): Add missing bit shift to
47013 `size'.
47014
47015 2007-12-21 Bean <bean123ch@gmail.com>
47016
47017 * conf/common.rmk (pkgdata_MODULES): Add ntfscomp.mod.
47018 (ntfscomp_mod_SOURCES): New variable.
47019 (ntfscomp_mod_CFLAGS): Likewise.
47020 (ntfscomp_mod_LDFLAGS): Likewise.
47021
47022 * conf/i386-pc.rmk (grub_setup_SOURCES): Add fs/ntfscomp.c.
47023 (grub_probe_SOURCES): Likewise.
47024 (grub_emu_SOURCES): Likewise.
47025
47026 * conf/i386-efi.rmk (grub_probe_SOURCES): Add fs/ntfscomp.c.
47027 (grub_emu_SOURCES): Likewise.
47028
47029 * conf/i386-linuxbios.rmk (grub_probe_SOURCES): Add fs/ntfscomp.c.
47030 (grub_emu_SOURCES): Likewise.
47031
47032 * conf/powerpc-ieee1275.rmk (grub_probe_SOURCES): Add fs/ntfscomp.c.
47033 (grub_emu_SOURCES): Likewise.
47034
47035 * fs/ntfs.c (grub_ntfscomp_func): New variable.
47036 (read_run_list): Renamed to grub_ntfs_read_run_list.
47037 (decomp_nextvcn): Moved to ntfscomp.c.
47038 (decomp_getch): Likewise.
47039 (decomp_get16): Likewise.
47040 (decomp_block): Likewise.
47041 (read_block): Likewise.
47042 (read_data): Partially moved to ntfscomp.c.
47043 (fixup): Change unsigned to grub_uint16_t.
47044 (read_mft): Change unsigned long to grub_uint32_t.
47045 (read_attr): Likewise.
47046 (read_data): Likewise.
47047 (read_run_data): Likewise.
47048 (read_run_list): Likewise.
47049 (read_mft): Likewise.
47050
47051 * fs/ntfscomp.c: New file.
47052
47053 * include/grub/ntfs.h: New file.
47054
47055 2007-12-16 Robert Millan <rmh@aybabtu.com>
47056
47057 * util/grub-mkdevicemap.c (make_device_map): Iterate up to 20 for
47058 IDE disk check, since Linux is known to support 20 IDE disks.
47059 Reported by Colin Watson.
47060
47061 2007-12-15 Bean <bean123ch@gmail.com>
47062
47063 * conf/i386-pc.rmk (pkgdata_IMAGES): Add lnxboot.img.
47064 (lnxboot_img_SOURCES): New variable.
47065 (lnxboot_img_ASFLAGS): Likewise.
47066 (lnxboot_img_LDFLAGS): Likewise.
47067
47068 * boot/i386/pc/lnxboot.S: New file.
47069
47070 2007-11-24 Pavel Roskin <proski@gnu.org>
47071
47072 * configure.ac: Test if '--build-id=none' is supported by the
47073 linker. If yes, add it to TARGET_LDFLAGS. Build ID causes
47074 objcopy to generate incorrect binary files (binutils
47075 2.17.50.0.18-1 as shipped by Fedora 8).
47076 * aclocal.m4 (grub_PROG_OBJCOPY_ABSOLUTE): Use LDFLAGS when
47077 linking, so that build ID doesn't break the test.
47078
47079 2007-11-24 Pavel Roskin <proski@gnu.org>
47080
47081 * include/grub/i386/time.h: use "void" in the argument list
47082 of grub_cpu_idle().
47083 * include/grub/powerpc/time.h: Likewise.
47084 * include/grub/sparc64/time.h: Likewise.
47085
47086 2007-11-18 Christian Franke <franke@computer.org>
47087
47088 * util/console.c (grub_ncurses_getkey): Change curses KEY_* mapping,
47089 now return control chars instead of GRUB_CONSOLE_KEY_* constants.
47090 This fixes the problem that function keys did not work in grub-emu.
47091
47092 2007-11-18 Christian Franke <franke@computer.org>
47093
47094 * disk/host.c (grub_host_open): Remove attribute unused from
47095 name parameter. Add check for "host". This fixes the problem
47096 that grub-emu does not find partitions.
47097
47098 2007-11-18 Christian Franke <franke@computer.org>
47099
47100 * util/hostfs.c (is_dir): New function.
47101 (grub_hostfs_dir): Handle missing dirent.d_type case.
47102 (grub_hostfs_read): Add missing fseek().
47103 (grub_hostfs_label): Clear label pointer. This fixes a crash
47104 of grub-emu on "ls (host)".
47105
47106 2007-11-18 Christian Franke <franke@computer.org>
47107
47108 * include/grub/i386/pc/init.h (struct grub_machine_mmap_entry):
47109 Add attribute packed, gcc 3.4.4 on Cygwin aligns this
47110 to 64 bit boundary by default.
47111
47112 2007-11-18 Bean <bean123ch@gmail.com>
47113
47114 * conf/common.rmk (pkgdata_MODULES): Add hexdump.mod.
47115 (hexdump_mod_SOURCES): New variable.
47116 (hexdump_mod_CFLAGS): Likewise.
47117 (hexdump_mod_LDFLAGS): Likewise.
47118
47119 * conf/i386-pc.rmk (grub_emu_SOURCES): Add command/hexdump.c.
47120
47121 * conf/i386-efi.rmk (grub_emu_SOURCES): Add command/hexdump.c.
47122
47123 * conf/i386-linuxbios.rmk (grub_emu_SOURCES): Add command/hexdump.c.
47124
47125 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add command/hexdump.c.
47126
47127 * include/grub/hexdump.h: New file.
47128
47129 * commands/hexdump.c: New file.
47130
47131 2007-11-10 Robert Millan <rmh@aybabtu.com>
47132
47133 * commands/i386/pc/play.c (beep_off): Switch order of arguments
47134 in grub_outb() calls.
47135 (beep_on): Likewise.
47136
47137 2007-11-10 Christian Franke <franke@computer.org>
47138
47139 * normal/menu.c (run_menu): Check for empty menu to avoid crash.
47140 (grub_menu_run): Likewise.
47141
47142 2007-11-10 Robert Millan <rmh@aybabtu.com>
47143
47144 * include/grub/i386/efi/machine.h: New file.
47145 * include/grub/i386/linuxbios/machine.h: Likewise.
47146 * include/grub/i386/pc/machine.h: Likewise.
47147 * include/grub/powerpc/ieee1275/machine.h: Likewise.
47148 * include/grub/sparc64/ieee1275/machine.h: Likewise.
47149
47150 * term/i386/pc/serial.c: Include <grub/machine/machine.h>.
47151 (serial_hw_io_addr): New variable.
47152 (serial_hw_get_port): Obtain port address from `serial_hw_io_addr'
47153 instead of `(unsigned short *) 0x400'.
47154
47155 2007-11-10 Bean <bean123ch@gmail.com>
47156
47157 * fs/ntfs.c (read_block): Fix a bug caused by adjacent blocks.
47158
47159 2007-11-10 Vesa Jaaskelainen <chaac@nic.fi>
47160
47161 * conf/i386-pc.rmk (pkgdata_MODULES): Added vga.mod.
47162 (vga_mod_SOURCES): Added.
47163 (vga_mod_CFLAGS): Likewise.
47164 (vga_mod_LDFLAGS): Likewise.
47165
47166 * term/i386/pc/vga.c (get_map_mask): Switch order of arguments in
47167 grub_outb() calls.
47168 (set_map_mask): Likewise.
47169 (set_read_map): Likewise.
47170 (set_read_address): Likewise.
47171 (vga_font): Removed variable.
47172 (get_vga_glyph): Removed function.
47173 (invalidate_char): Likewise.
47174 (write_char): Changed to use grub_font_get_glyph() for font
47175 information.
47176 (grub_vga_putchar): Likewise.
47177 (grub_vga_getcharwidth): Likewise.
47178
47179 2007-11-10 Vesa Jaaskelainen <chaac@nic.fi>
47180
47181 * conf/i386-pc.rmk (boot_img_LDFLAGS): Use COMMON_LDFLAGS for target
47182 flags.
47183 (pxeboot_img_LDFLAGS): Likewise.
47184 (diskboot_img_LDFLAGS): Likewise.
47185 (kernel_img_LDFLAGS): Likewise.
47186
47187 2007-11-06 Robert Millan <rmh@aybabtu.com>
47188
47189 * term/i386/pc/serial.c (serial_hw_put): Switch order of arguments
47190 in grub_outb() calls.
47191 (serial_hw_init): Likewise.
47192
47193 2007-11-05 Robert Millan <rmh@aybabtu.com>
47194
47195 * util/update-grub.in: Allow files in ${update_grub_dir} to contain
47196 spaces. Skip non-regular files.
47197
47198 2007-11-05 Robert Millan <rmh@aybabtu.com>
47199
47200 * kern/disk.c (grub_disk_firmware_fini)
47201 (grub_disk_firmware_is_tainted): New variables.
47202
47203 * include/grub/disk.h (grub_disk_firmware_fini)
47204 (grub_disk_firmware_is_tainted): Likewise.
47205
47206 * disk/i386/pc/biosdisk.c (GRUB_MOD_FINI(biosdisk)): Moved from here ...
47207 (grub_disk_biosdisk_fini): ... to here.
47208 (GRUB_MOD_FINI(biosdisk)): Implement using grub_disk_biosdisk_fini().
47209 (GRUB_MOD_INIT(biosdisk)): Abort when `grub_disk_firmware_is_tainted'
47210 is set. Register grub_disk_biosdisk_fini() in
47211 `grub_disk_firmware_fini'.
47212
47213 * disk/ata.c: Remove `<grub/machine/biosdisk.h>'.
47214 (GRUB_MOD_INIT(ata)): Remove grub_biosdisk_fini() call.
47215 Use `grub_disk_firmware_is_tainted' and `grub_disk_firmware_fini'
47216 to finish existing firmware disk interface.
47217
47218 * conf/i386-linuxbios.rmk (pkgdata_MODULES): Add `ata.mod'.
47219 (ata_mod_SOURCES): New variable.
47220 (ata_mod_CFLAGS): Likewise.
47221 (ata_mod_LDFLAGS): Likewise.
47222
47223 2007-11-05 Robert Millan <rmh@aybabtu.com>
47224
47225 * disk/ata.c: Remove `<grub/machine/time.h>'. Include `<grub/time.h>'.
47226 (grub_ata_wait): Reimplement using grub_millisleep().
47227
47228 * include/grub/misc.h (grub_div_roundup): Fix parenthesization.
47229 * include/grub/i386/time.h (grub_cpu_idle): Disable `hlt' instruction.
47230
47231 2007-11-03 Marco Gerards <marco@gnu.org>
47232
47233 * term/i386/pc/vga_text.c: Include <grub/cpu/io.h>.
47234 (CRTC_ADDR_PORT): New macro.
47235 (CRTC_DATA_PORT): Likewise.
47236 (CRTC_CURSOR): Likewise.
47237 (CRTC_CURSOR_ADDR_HIGH): Likewise.
47238 (CRTC_CURSOR_ADDR_LOW): Likewise.
47239 (update_cursor): New function.
47240 (grub_console_real_putchar): Call `update_cursor'.
47241 (grub_console_gotoxy): Likewise.
47242 (grub_console_cls): Set the default color when clearing the
47243 screen.
47244 (grub_console_setcursor): Implemented.
47245
47246 2007-11-03 Marco Gerards <marco@gnu.org>
47247
47248 * disk/ata.c (grub_ata_pio_read): Don't wait for the command to
47249 become activate.
47250 (grub_ata_pio_write): Likewise.
47251
47252 (grub_atapi_identify): Wait after issuing an ATA command.
47253 (grub_atapi_packet): Likewise.
47254 (grub_ata_identify): Likewise.
47255 (grub_ata_readwrite): Likewise.
47256
47257 2007-11-03 Marco Gerards <marco@gnu.org>
47258
47259 * disk/ata.c (grub_ata_pio_read): Detect and return the error code.
47260 (grub_ata_pio_write): Likewise.
47261 (grub_ata_readwrite): Use `grub_error', instead of
47262 returning `grub_errno'.
47263
47264 2007-11-03 Marco Gerards <marco@gnu.org>
47265
47266 * disk/ata.c (grub_ata_readwrite): Call grub_ata_pio_read and
47267 grub_ata_pio_write once for every single sector, instead of for
47268 multiple sectors.
47269
47270 2007-10-31 Robert Millan <rmh@aybabtu.com>
47271
47272 * configure.ac: Add `i386-linuxbios' to the list of supported targets.
47273
47274 * conf/i386-linuxbios.rmk: New file.
47275
47276 * kern/i386/pc/hardware.c: Likewise.
47277 * term/i386/pc/at_keyboard.c: Likewise.
47278 * term/i386/pc/vga_text.c: Likewise.
47279
47280 * include/grub/i386/linuxbios/boot.h: Likewise.
47281 * include/grub/i386/linuxbios/console.h: Likewise.
47282 * include/grub/i386/linuxbios/init.h: Likewise.
47283 * include/grub/i386/linuxbios/kernel.h: Likewise.
47284 * include/grub/i386/linuxbios/loader.h: Likewise.
47285 * include/grub/i386/linuxbios/memory.h: Likewise.
47286 * include/grub/i386/linuxbios/serial.h: Likewise.
47287 * include/grub/i386/linuxbios/time.h: Likewise.
47288
47289 * kern/i386/linuxbios/init.c: Likewise.
47290 * kern/i386/linuxbios/startup.S: Likewise.
47291 * kern/i386/linuxbios/table.c: Likewise.
47292
47293 2007-10-31 Marco Gerards <marco@gnu.org>
47294
47295 * conf/i386-pc.rmk (pkgdata_MODULES): Add `ata.mod'.
47296 (ata_mod_SOURCES): New variable.
47297 (ata_mod_CFLAGS): Likewise.
47298 (ata_mod_LDFLAGS): Likewise.
47299
47300 * disk/ata.c: New file.
47301
47302 * include/grub/disk.h (grub_disk_dev_id): Add
47303 `GRUB_DISK_DEV_ATA_ID'.
47304
47305 2007-10-31 Robert Millan <rmh@aybabtu.com>
47306
47307 * include/grub/i386/pc/init.h (grub_lower_mem): Moved from here ...
47308 * include/grub/i386/pc/memory.h (grub_lower_mem): ... to here.
47309
47310 * include/grub/i386/pc/init.h (grub_upper_mem): Moved from here ...
47311 * include/grub/i386/pc/memory.h (grub_upper_mem): ... to here.
47312
47313 * include/grub/i386/pc/memory.h: Include `<grub/symbol.h>' and
47314 `<grub/types.h>'.
47315
47316 * loader/i386/pc/multiboot.c: Include `<grub/machine/memory.h>'.
47317
47318 2007-10-27 Robert Millan <rmh@aybabtu.com>
47319
47320 * include/grub/types.h (ULONG_MAX): Define macro.
47321
47322 2007-10-22 Robert Millan <rmh@aybabtu.com>
47323
47324 * kern/i386/pc/startup.S: Remove `"kern/i386/realmode.S"'. Include
47325 `"../realmode.S"'.
47326 Remove `"kern/i386/loader.S"'. Include `"../loader.S"'.
47327
47328 2007-10-22 Robert Millan <rmh@aybabtu.com>
47329
47330 * conf/i386-pc.rmk (kernel_img_SOURCES): Remove `disk/i386/pc/biosdisk.c'.
47331 (pkgdata_MODULES): Add `biosdisk.mod'.
47332 (biosdisk_mod_SOURCES, biosdisk_mod_CFLAGS, biosdisk_mod_LDFLAGS): New
47333 variables.
47334
47335 * disk/i386/pc/biosdisk.c: Include `<grub/dl.h>'.
47336 (grub_biosdisk_init): Replace with ...
47337 (GRUB_MOD_INIT(biosdisk)): ... this.
47338 (grub_biosdisk_fini): Replace with ...
47339 (GRUB_MOD_FINI(biosdisk)): ... this.
47340
47341 * kern/i386/pc/init.c: Remove `<grub/machine/biosdisk.h>'.
47342 (grub_machine_init): Remove call to grub_biosdisk_init().
47343 (grub_machine_fini): Remove call to grub_machine_fini().
47344
47345 * util/i386/pc/grub-install.in (modules): Add `biosdisk'.
47346
47347 2007-10-22 Robert Millan <rmh@aybabtu.com>
47348
47349 * include/grub/time.h: New file.
47350 * include/grub/i386/time.h: Likewise.
47351 * include/grub/powerpc/time.h: Likewise.
47352 * include/grub/sparc64/time.h: Likewise.
47353
47354 * include/grub/i386/pc/time.h (KERNEL_TIME_HEADER): Rename all
47355 instances to ...
47356 (KERNEL_MACHINE_TIME_HEADER): ... this.
47357 * include/grub/powerpc/ieee1275/time.h (KERNEL_TIME_HEADER): Rename all
47358 instances to ...
47359 (KERNEL_MACHINE_TIME_HEADER): ... this.
47360 * include/grub/sparc64/ieee1275/time.h (KERNEL_TIME_HEADER): Rename all
47361 instances to ...
47362 (KERNEL_MACHINE_TIME_HEADER): ... this.
47363
47364 * kern/i386/efi/init.c: Include `<grub/time.h>'.
47365 (grub_millisleep): New function.
47366 * kern/i386/pc/init.c: Include `<grub/time.h>'.
47367 (grub_millisleep): New function.
47368 * kern/powerpc/ieee1275/init.c: Include `<grub/time.h>'.
47369 Remove `grub/machine/time.h' include.
47370 (grub_millisleep): New function.
47371 * kern/sparc64/ieee1275/init.c: Include `<grub/time.h>'.
47372 Remove `grub/machine/time.h' include.
47373 (grub_millisleep): New function.
47374
47375 * include/grub/misc.h (grub_div_roundup): New function.
47376
47377 * kern/misc.c: Include `<grub/time.h>'.
47378 (grub_millisleep_generic): New function.
47379
47380 * conf/i386-efi.rmk (kernel_mod_HEADERS): Remove `i386/efi/time.h'.
47381 Add `time.h'.
47382 * conf/i386-pc.rmk (kernel_img_HEADERS): Remove `machine/time.h'.
47383 Add `time.h'.
47384 * conf/powerpc-ieee1275.rmk (kernel_elf_HEADERS): Remove
47385 `machine/time.h'. Add `time.h'.
47386 * conf/sparc64-ieee1275.rmk (kernel_elf_HEADERS): Likewise.
47387
47388 2007-10-21 Robert Millan <rmh@aybabtu.com>
47389
47390 * include/grub/misc.h (grub_max): New function.
47391
47392 2007-10-21 Robert Millan <rmh@aybabtu.com>
47393
47394 * util/misc.c (grub_util_info): Call fflush() before returning.
47395
47396 2007-10-20 Robert Millan <rmh@aybabtu.com>
47397
47398 * genmk.rb (Image): Copy `extra_flags' from here ...
47399 (PModule): ... to here. Use it in `#{obj}: #{src}' rule.
47400
47401 * commands/i386/cpuid.c (grub_cmd_cpuid): Add __attribute__ ((unused))
47402 to `argc' and `args' arguments.
47403
47404 2007-10-17 Robert Millan <rmh@aybabtu.com>
47405
47406 * kern/i386/loader.S: New file.
47407
47408 * kern/i386/pc/startup.S (grub_linux_prot_size): Moved from here ...
47409 * kern/i386/loader.S (grub_linux_prot_size)... to here.
47410 * kern/i386/pc/startup.S (grub_linux_tmp_addr): Moved from here ...
47411 * kern/i386/loader.S (grub_linux_tmp_addr)... to here.
47412 * kern/i386/pc/startup.S (grub_linux_real_addr): Moved from here ...
47413 * kern/i386/loader.S (grub_linux_real_addr)... to here.
47414 * kern/i386/pc/startup.S (grub_linux_boot_zimage): Moved from here ...
47415 * kern/i386/loader.S (grub_linux_boot_zimage)... to here.
47416 * kern/i386/pc/startup.S (grub_linux_boot_bzimage): Moved from here ...
47417 * kern/i386/loader.S (grub_linux_boot_bzimage)... to here.
47418 * kern/i386/pc/startup.S (grub_multiboot_real_boot): Moved from here ...
47419 * kern/i386/loader.S (grub_multiboot_real_boot)... to here.
47420 * kern/i386/pc/startup.S (grub_multiboot2_real_boot): Moved from here ...
47421 * kern/i386/loader.S (grub_multiboot2_real_boot)... to here.
47422
47423 * kern/i386/realmode.S: New file.
47424
47425 * kern/i386/pc/startup.S (protstack): Moved from here ...
47426 * kern/i386/realmode.S (protstack)... to here.
47427 * kern/i386/pc/startup.S (gdt): Moved from here ...
47428 * kern/i386/realmode.S (gdt)... to here.
47429 * kern/i386/pc/startup.S (prot_to_real): Moved from here ...
47430 * kern/i386/realmode.S (prot_to_real)... to here.
47431
47432 * kern/i386/pc/startup.S: Include `kern/i386/loader.S' and
47433 `kern/i386/realmode.S'.
47434
47435 2007-10-17 Robert Millan <rmh@aybabtu.com>
47436
47437 * include/grub/i386/loader.h: New file.
47438
47439 * include/grub/i386/pc/loader.h (grub_linux_prot_size)
47440 (grub_linux_tmp_addr, grub_linux_real_addr, grub_os_area_addr)
47441 (grub_os_area_size, grub_linux_boot_zimage, grub_linux_boot_bzimage)
47442 (grub_multiboot_real_boot, grub_multiboot2_real_boot)
47443 (grub_rescue_cmd_linux, grub_rescue_cmd_initrd): Moved from here ...
47444 * include/grub/i386/loader.h (grub_linux_prot_size)
47445 (grub_linux_tmp_addr, grub_linux_real_addr, grub_os_area_addr)
47446 (grub_os_area_size, grub_linux_boot_zimage, grub_linux_boot_bzimage)
47447 (grub_multiboot_real_boot, grub_multiboot2_real_boot)
47448 (grub_rescue_cmd_linux, grub_rescue_cmd_initrd): ... to here.
47449
47450 * include/grub/i386/pc/loader.h: Include `grub/cpu/loader.h'.
47451
47452 2007-10-15 Robert Millan <rmh@aybabtu.com>
47453
47454 * normal/misc.c (grub_normal_print_device_info): Do not probe for
47455 filesystem when dev->disk is unset.
47456 Do probe for filesystem even when dev->disk->has_partitions is set.
47457 In case a filesystem is found, always report it.
47458 In case it isn't, if dev->disk->has_partitions is set, report that
47459 a partition table was found instead of reporting that no filesystem
47460 could be identified.
47461
47462 2007-10-12 Robert Millan <rmh@aybabtu.com>
47463
47464 * conf/powerpc-ieee1275.rmk (grub_mkimage_SOURCES): Replace reference
47465 to util/powerpc/ieee1275/grub-mkimage.c with util/elf/grub-mkimage.c.
47466
47467 * include/grub/types.h (grub_host_to_target16): New macro.
47468 (grub_host_to_target32): Likewise.
47469 (grub_host_to_target64): Likewise.
47470 (grub_target_to_host16): Likewise.
47471 (grub_target_to_host32): Likewise.
47472 (grub_target_to_host64): Likewise.
47473
47474 * include/grub/powerpc/ieee1275/kernel.h (GRUB_IEEE1275_MOD_ALIGN):
47475 Renamed from to ...
47476 (GRUB_MOD_ALIGN): ...this. Update all users.
47477
47478 * util/elf/grub-mkimage.c (load_note): Replace grub_cpu_to_be32 with
47479 grub_host_to_target32.
47480 Replace grub_be_to_cpu32 with grub_target_to_host32.
47481 (load_modules): Likewise.
47482 (add_segments): Replace grub_be_to_cpu16 with grub_target_to_host16.
47483 Replace grub_be_to_cpu32 with grub_target_to_host32.
47484 Replace grub_cpu_to_be16 with grub_host_to_target16.
47485 Replace grub_cpu_to_be32 grub_host_to_target32.
47486
47487 2007-10-12 Robert Millan <rmh@aybabtu.com>
47488
47489 * util/powerpc/ieee1275/grub-mkimage.c: Moved to ...
47490 * util/elf/grub-mkimage.c: ... here.
47491
47492 * DISTLIST: Add `util/elf/grub-mkimage.c'. Remove
47493 `util/powerpc/ieee1275/grub-mkimage.c'.
47494
47495 2007-10-07 Robert Millan <rmh@aybabtu.com>
47496
47497 * kern/powerpc/ieee1275/init.c: Rename HEAP_LIMIT to HEAP_MAX_ADDR,
47498 and make it easier to figure out.
47499 Add HEAP_MIN_SIZE and HEAP_MAX_ADDR definitions.
47500 (grub_claim_heap): Use HEAP_MAX_ADDR rather than taking a parameter.
47501 Do not avoid claiming a region above HEAP_MAX_ADDR if that would
47502 leave us with less than HEAP_MIN_SIZE total heap.
47503 Avoid our total amount of heap to surpass HEAP_MAX_SIZE.
47504
47505 2007-10-03 Robert Millan <rmh@aybabtu.com>
47506
47507 * include/grub/i386/io.h: New file.
47508 * commands/i386/pc/play.c (inb): Removed.
47509 (outb): Removed.
47510 Include grub/cpu/io.h. Replace inb() with grub_inb() and outb()
47511 with grub_outb().
47512 * term/i386/pc/serial.c (inb): Removed.
47513 (outb): Removed.
47514 Include grub/cpu/io.h. Replace inb() with grub_inb() and outb()
47515 with grub_outb().
47516 * term/i386/pc/vga.c (inb): Removed.
47517 (outb): Removed.
47518 Include grub/cpu/io.h. Replace inb() with grub_inb() and outb()
47519 with grub_outb().
47520
47521 2007-10-02 Robert Millan <rmh@aybabtu.com>
47522
47523 * conf/i386-efi.rmk (grub_emu_SOURCES): Add util/hostfs.c.
47524 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
47525 Reported by Marcin Kurek.
47526
47527 2007-09-07 Robert Millan <rmh@aybabtu.com>
47528
47529 * kern/powerpc/ieee1275/cmain.c (grub_ieee1275_test_flag): Detect
47530 SmartFirmware version updates (as released by Sven Luther), and avoid
47531 setting GRUB_IEEE1275_FLAG_NO_PARTITION_0 or
47532 GRUB_IEEE1275_FLAG_0_BASED_PARTITIONS unless the running version is
47533 known broken.
47534
47535 2007-09-03 Yoshinori K. Okuji <okuji@enbug.org>
47536
47537 From Hitoshi Ozeki:
47538 * kern/i386/pc/init.c (compact_mem_regions): Decrease NUM_REGIONS
47539 when merging two regions.
47540
47541 2007-09-03 Yoshinori K. Okuji <okuji@enbug.org>
47542
47543 * kern/rescue.c (grub_enter_rescue_mode): Free ARGS.
47544 * normal/completion.c (grub_normal_do_completion): Likewise.
47545 Reported by Hitoshi Ozeki.
47546
47547 2007-09-03 Yoshinori K. Okuji <okuji@enbug.org>
47548
47549 Do not use devices at boot in chainloading.
47550
47551 * loader/i386/pc/chainloader.c (boot_drive): New variable.
47552 (boot_part_addr): Likewise.
47553 (grub_chainloader_boot): Simply call grub_chainloader_real_boot
47554 with BOOT_DRIVE and BOOT_PART_ADDR.
47555 (grub_chainloader_cmd): Set BOOT_DRIVE and BOOT_PART_ADDR.
47556 Reported by Hitoshi Ozeki <h-ozeki@ck2.so-net.ne.jp>.
47557
47558 2007-08-29 Robert Millan <rmh@aybabtu.com>
47559
47560 Patch from Simon Peter <dn.tlp@gmx.net>:
47561 * genmk.rb (Utility): Append $(#{src}_DEPENDENCIES) to #{obj} targets.
47562 * conf/i386-pc.rmk: Replace grub-probe_DEPENDENCIES with
47563 util/grub-probe.c_DEPENDENCIES. Replace grub-setup_DEPENDENCIES with
47564 util/i386/pc/grub-setup.c_DEPENDENCIES.
47565 * conf/i386-efi.rmk: Replace grub-probe_DEPENDENCIES with
47566 util/grub-probe.c_DEPENDENCIES.
47567 * conf/powerpc-ieee1275.rmk: Likewise.
47568
47569 2007-08-28 Robert Millan <rmh@aybabtu.com>
47570
47571 * util/i386/get_disk_name.c: New. Implement grub_util_get_disk_name()
47572 to tell grub-mkdevicemap how to name devices.
47573 * util/ieee1275/get_disk_name.c: Likewise (using "ofpathname -a"
47574 feature).
47575
47576 * conf/i386-efi.rmk (grub_mkdevicemap_SOURCES): Add
47577 util/i386/get_disk_name.c.
47578 * conf/i386-pc.rmk (grub_mkdevicemap_SOURCES): Likewise.
47579 * conf/powerpc-ieee1275.rmk (grub_mkdevicemap_SOURCES): Add
47580 util/ieee1275/get_disk_name.c.
47581
47582 * include/grub/util/misc.h: grub_util_get_disk_name() declaration.
47583
47584 * DISTLIST: Add util/i386/get_disk_name.c and
47585 util/ieee1275/get_disk_name.c.
47586
47587 * util/grub-mkdevicemap.c: Replace device naming logic with
47588 grub_util_get_disk_name() calls.
47589
47590 2007-08-20 Robert Millan <rmh@aybabtu.com>
47591
47592 * normal/menu.c (run_menu): Refer to seconds as "s" not "seconds"
47593 (so that it works for both plural and singular quantities).
47594
47595 2007-08-05 Robert Millan <rmh@aybabtu.com>
47596
47597 * util/grub.d/10_linux.in (test_gt): Strip out vmlinu[xz]- prefix
47598 so that [xz] isn't taken into account when determining order.
47599
47600 2007-08-02 Marco Gerards <marco@gnu.org>
47601
47602 * DISTLIST: Add `disk/host.c', `fs/ntfs.c', `include/multiboot.h',
47603 `include/multiboot2.h', `include/grub/elfload.h',
47604 `include/multiboot.h', `include/grub/multiboot.h',
47605 `include/grub/multiboot_loader.h', `include/grub/multiboot2.h',
47606 `include/grub/i386/pc/biosdisk.h', `include/grub/util/biosdisk.h',
47607 `kern/elf.c', `loader/multiboot_loader.c',
47608 `loader/multiboot_loader_normal.c', `loader/multiboot2.c',
47609 `loader/i386/pc/multiboot2.c',
47610 `loader/powerpc/ieee1275/multiboot2.c', `util/hostfs.c' and
47611 `util/i386/pc/grub-mkrescue.in'. Remove
47612 `include/grub/biosdisk.h', `include/grub/i386/pc/multiboot.h',
47613 `include/grub/i386/pc/util/biosdisk.h' and
47614 `include/grub/powerpc/ieee1275/multiboot.h'.
47615
47616 2007-08-02 Bean <bean123ch@gmail.com>
47617
47618 * conf/common.rmk (pkgdata_MODULES): Add ntfs.mod.
47619 (ntfs_mod_SOURCES): New variable.
47620 (ntfs_mod_CFLAGS): Likewise.
47621 (ntfs_mod_LDFLAGS): Likewise.
47622
47623 * conf/i386-pc.rmk (grub_setup_SOURCES): Add fs/ntfs.c.
47624 (grub_probe_SOURCES): Likewise.
47625 (grub_emu_SOURCES): Likewise.
47626
47627 * conf/i386-efi.rmk (grub_probe_SOURCES): Add fs/ntfs.c.
47628 (grub_emu_SOURCES): Likewise.
47629
47630 * conf/powerpc-ieee1275.rmk (grub_probe_SOURCES): Add fs/ntfs.c.
47631 (grub_emu_SOURCES): Likewise.
47632
47633 * conf/misc.c (grub_utf16_to_utf8): Fix unicode conversion bug.
47634
47635 * fs/ntfs.c: New file.
47636
47637 2007-08-02 Bean <bean123ch@gmail.com>
47638
47639 * disk.h (grub_disk): Use NESTED_FUNC_ATTR.
47640
47641 * file.h (grub_file): Likewise.
47642
47643 * fshelp.h (grub_fshelp_read_file): Likewise.
47644
47645 * util/i386/pc/grub-setup.c (setup): Likewise.
47646 (save_first_sector): Likewise.
47647 (save_blocklists): Likewise.
47648
47649 * fs/affs.c (grub_affs_read_file): Likewise.
47650
47651 * fs/ext2.c (grub_ext2_read_file): Likewise.
47652
47653 * fs/fat.c (grub_fat_read_data): Likewise.
47654
47655 * fs/fshelp.c (grub_fshelp_read_file): Likewise.
47656
47657 * fs/hfs.c (grub_hfs_read_file): Likewise.
47658
47659 * fs/hfsplus.c (grub_hfsplus_read_file): Likewise.
47660
47661 * fs/jfs.c (grub_jfs_read_file): Likewise.
47662
47663 * fs/minix.c (grub_minix_read_file): Likewise.
47664
47665 * fs/sfs.c (grub_sfs_read_file): Likewise.
47666
47667 * fs/ufs.c (grub_ufs_read_file): Likewise.
47668
47669 * fs/xfs.c (grub_xfs_read_file): Likewise.
47670
47671 * command/blocklist.c (read_blocklist): Likewise.
47672 (print_blocklist): Likewise.
47673
47674 2007-08-02 Marco Gerards <marco@gnu.org>
47675
47676 * conf/i386-pc.rmk (grub_emu_SOURCES): Add `disk/host.c' and
47677 `util/hostfs.c'.
47678
47679 * disk/host.c: New file.
47680
47681 * util/hostfs.c: Likewise.
47682
47683 * fs/hfsplus.c (grub_hfsplus_mount): When reading out of disk,
47684 return `GRUB_ERR_BAD_FS'.
47685 * fs/sfs.c (grub_sfs_mount): Likewise.
47686 * fs/xfs.c (grub_xfs_mount): Likewise.
47687
47688 * include/grub/disk.h (enum grub_disk_dev_id): Add
47689 `GRUB_DISK_DEVICE_HOST_ID'.
47690
47691 * util/grub-emu.c (main): Initialize and de-initialize hostfs.
47692
47693 2007-07-24 Jerone Young <jerone@gmail.com>
47694
47695 * conf/i386-pc.rmk: Add Multiboot loader and multiboot 2 to multiboot
47696 modules for compilation.
47697 * conf/powerpc-ieee1275.rmk: Likewise.
47698
47699 * include/multiboot.h: Move multiboot definitions to one file. Rename
47700 many definitions to not get grub specific.
47701 * include/multiboot2.h: Create header with multiboot 2 definitions.
47702 * include/grub/multiboot.h: Header for grub specific function
47703 prototypes and definitions.
47704 * include/grub/multiboot2.h: Likewise.
47705 * include/grub/multiboot_loader.h: Likewise.
47706 * include/grub/i386/pc/multiboot.h: Removed.
47707 * include/grub/powerpc/ieee1275/multiboot.h: Removed.
47708
47709 * loader/multiboot_loader.c: Created to act as a proxy for multiboot 1
47710 and 2 to allow for one multiboot and module commands.
47711 * loader/multiboot2.c: Add multiboot2 functionality.
47712 * loader/i386/pc/multiboot.c: Modify for new multiboot header location
47713 and definition names.
47714 * loader/i386/pc/multiboot2.c: Created to add i386 specific multiboot
47715 2 functions.
47716 * loader/powerpc/ieee1275/multiboot2.c: Created to add powerpc
47717 ieee1275 specific multiboot2 code.
47718
47719 * kern/i386/pc/startup.S: Change headers and definition names for
47720 multiboot. Add function grub_multiboot2_real_boot for multiboot 2.
47721
47722 2007-07-22 Robert Millan <rmh@aybabtu.com>
47723
47724 * geninitheader.sh: Process file specified in first parameter rather
47725 than hardcoding grub_modules_init.lst.
47726 * geninit.sh: Likewise. Also, construct header name dynamically rather
47727 than hardcoding grub_modules_init.h.
47728
47729 * conf/common.rmk: Rename grub_modules_init.[ch] files associated with
47730 grub-emu to grub_emu_init.[ch]. Add rules to build analogous
47731 grub_probe_init.[ch] and grub_setup_init.[ch].
47732
47733 * conf/powerpc-ieee1275.rmk (grub_emu_DEPENDENCIES): Replace
47734 grub_modules_init.h with grub_emu_init.h.
47735 (grub_probe_DEPENDENCIES, grub_probe_SOURCES): Add new
47736 grub_probe_init.[ch] files.
47737 * conf/i386-efi.rmk: Likewise.
47738 * conf/i386-pc.rmk: Likewise.
47739 (grub_setup_DEPENDENCIES, grub_setup_SOURCES): Add new
47740 grub_setup_init.[ch] files.
47741
47742 * util/grub-emu.c: Replace grub_modules_init.h with grub_emu_init.h.
47743 * util/grub-probe.c: Include grub_probe_init.h. Use grub_init_all()
47744 to initialize modules rather than a list of hardcoded functions.
47745 * util/i386/pc/grub-setup.c: Include grub_setup_init.h. Use
47746 grub_init_all() to initialize modules rather than a list of hardcoded
47747 functions.
47748
47749 2007-07-22 Robert Millan <rmh@aybabtu.com>
47750
47751 * kern/powerpc/ieee1275/cmain.c (grub_ieee1275_find_options): Set
47752 GRUB_IEEE1275_FLAG_NO_PARTITION_0 flag when running on SmartFirmware.
47753
47754 2007-07-22 Robert Millan <rmh@aybabtu.com>
47755
47756 * include/grub/ieee1275/ieee1275.h (grub_ieee1275_flag): Add
47757 GRUB_IEEE1275_FLAG_BROKEN_OUTPUT flag.
47758 * kern/powerpc/ieee1275/cmain.c (grub_ieee1275_find_options): Set this
47759 flag when running on SmartFirmware.
47760 * term/ieee1275/ofconsole.c (grub_ofconsole_init): Avoid running
47761 "output-device output" command when GRUB_IEEE1275_FLAG_BROKEN_OUTPUT
47762 was set.
47763
47764 * kern/powerpc/ieee1275/openfw.c (grub_ieee1275_encode_devname):
47765 Increase partno when GRUB_IEEE1275_FLAG_0_BASED_PARTITIONS flag is set,
47766 rather than decreasing it.
47767
47768 * util/i386/pc/grub-setup.c (setup): When embedding is required, but
47769 there's not enough space to do it, fail in the same way as when it
47770 can't be done because there are no partitions.
47771
47772 * util/powerpc/ieee1275/grub-install.in: Improve error message shown
47773 when nvsetenv failed.
47774
47775 2007-07-22 Yoshinori K. Okuji <okuji@enbug.org>
47776
47777 * conf/i386-pc.rmk (CLEANFILES): Removed for grub-mkrescue,
47778 because this rule is automatically generated.
47779 (grub-mkrescue): Removed for the same reason as above.
47780
47781 2007-07-22 Yoshinori K. Okuji <okuji@enbug.org>
47782
47783 Migrate to GNU General Public License Version 3.
47784
47785 * COPYING: Replaced with the plain text version of GPLv3.
47786
47787 * config.guess: Updated from gnulib.
47788 * config.sub: Likewise.
47789
47790 * geninit.sh: Output a GPLv3 copyright notice.
47791 * geninitheader.sh: Likewise.
47792 * genmodsrc.sh: Likewise.
47793 * gensymlist.sh.in: Likewise.
47794
47795 * boot/i386/pc/boot.S: Upgraded to GPLv3.
47796 * boot/i386/pc/diskboot.S: Likewise.
47797 * boot/i386/pc/pxeboot.S: Likewise.
47798 * commands/blocklist.c: Likewise.
47799 * commands/boot.c: Likewise.
47800 * commands/cat.c: Likewise.
47801 * commands/cmp.c: Likewise.
47802 * commands/configfile.c: Likewise.
47803 * commands/echo.c: Likewise.
47804 * commands/help.c: Likewise.
47805 * commands/ls.c: Likewise.
47806 * commands/search.c: Likewise.
47807 * commands/terminal.c: Likewise.
47808 * commands/test.c: Likewise.
47809 * commands/videotest.c: Likewise.
47810 * commands/i386/cpuid.c: Likewise.
47811 * commands/i386/pc/halt.c: Likewise.
47812 * commands/i386/pc/play.c: Likewise.
47813 * commands/i386/pc/reboot.c: Likewise.
47814 * commands/i386/pc/vbeinfo.c: Likewise.
47815 * commands/i386/pc/vbetest.c: Likewise.
47816 * commands/ieee1275/halt.c: Likewise.
47817 * commands/ieee1275/reboot.c: Likewise.
47818 * commands/ieee1275/suspend.c: Likewise.
47819 * disk/loopback.c: Likewise.
47820 * disk/lvm.c: Likewise.
47821 * disk/raid.c: Likewise.
47822 * disk/efi/efidisk.c: Likewise.
47823 * disk/i386/pc/biosdisk.c: Likewise.
47824 * disk/ieee1275/ofdisk.c: Likewise.
47825 * font/manager.c: Likewise.
47826 * fs/affs.c: Likewise.
47827 * fs/ext2.c: Likewise.
47828 * fs/fat.c: Likewise.
47829 * fs/fshelp.c: Likewise.
47830 * fs/hfs.c: Likewise.
47831 * fs/hfsplus.c: Likewise.
47832 * fs/iso9660.c: Likewise.
47833 * fs/jfs.c: Likewise.
47834 * fs/minix.c: Likewise.
47835 * fs/sfs.c: Likewise.
47836 * fs/ufs.c: Likewise.
47837 * fs/xfs.c: Likewise.
47838 * hello/hello.c: Likewise.
47839 * include/grub/acorn_filecore.h: Likewise.
47840 * include/grub/arg.h: Likewise.
47841 * include/grub/bitmap.h: Likewise.
47842 * include/grub/boot.h: Likewise.
47843 * include/grub/cache.h: Likewise.
47844 * include/grub/device.h: Likewise.
47845 * include/grub/disk.h: Likewise.
47846 * include/grub/dl.h: Likewise.
47847 * include/grub/elfload.h: Likewise.
47848 * include/grub/env.h: Likewise.
47849 * include/grub/err.h: Likewise.
47850 * include/grub/file.h: Likewise.
47851 * include/grub/font.h: Likewise.
47852 * include/grub/fs.h: Likewise.
47853 * include/grub/fshelp.h: Likewise.
47854 * include/grub/gzio.h: Likewise.
47855 * include/grub/hfs.h: Likewise.
47856 * include/grub/kernel.h: Likewise.
47857 * include/grub/loader.h: Likewise.
47858 * include/grub/lvm.h: Likewise.
47859 * include/grub/misc.h: Likewise.
47860 * include/grub/mm.h: Likewise.
47861 * include/grub/net.h: Likewise.
47862 * include/grub/normal.h: Likewise.
47863 * include/grub/parser.h: Likewise.
47864 * include/grub/partition.h: Likewise.
47865 * include/grub/pc_partition.h: Likewise.
47866 * include/grub/raid.h: Likewise.
47867 * include/grub/rescue.h: Likewise.
47868 * include/grub/script.h: Likewise.
47869 * include/grub/setjmp.h: Likewise.
47870 * include/grub/symbol.h: Likewise.
47871 * include/grub/term.h: Likewise.
47872 * include/grub/terminfo.h: Likewise.
47873 * include/grub/tparm.h: Likewise.
47874 * include/grub/types.h: Likewise.
47875 * include/grub/video.h: Likewise.
47876 * include/grub/efi/api.h: Likewise.
47877 * include/grub/efi/chainloader.h: Likewise.
47878 * include/grub/efi/console.h: Likewise.
47879 * include/grub/efi/console_control.h: Likewise.
47880 * include/grub/efi/disk.h: Likewise.
47881 * include/grub/efi/efi.h: Likewise.
47882 * include/grub/efi/pe32.h: Likewise.
47883 * include/grub/efi/time.h: Likewise.
47884 * include/grub/i386/linux.h: Likewise.
47885 * include/grub/i386/setjmp.h: Likewise.
47886 * include/grub/i386/types.h: Likewise.
47887 * include/grub/i386/efi/kernel.h: Likewise.
47888 * include/grub/i386/efi/loader.h: Likewise.
47889 * include/grub/i386/efi/time.h: Likewise.
47890 * include/grub/i386/pc/biosdisk.h: Likewise.
47891 * include/grub/i386/pc/boot.h: Likewise.
47892 * include/grub/i386/pc/chainloader.h: Likewise.
47893 * include/grub/i386/pc/console.h: Likewise.
47894 * include/grub/i386/pc/init.h: Likewise.
47895 * include/grub/i386/pc/kernel.h: Likewise.
47896 * include/grub/i386/pc/loader.h: Likewise.
47897 * include/grub/i386/pc/memory.h: Likewise.
47898 * include/grub/i386/pc/multiboot.h: Likewise.
47899 * include/grub/i386/pc/serial.h: Likewise.
47900 * include/grub/i386/pc/time.h: Likewise.
47901 * include/grub/i386/pc/vbe.h: Likewise.
47902 * include/grub/i386/pc/vbeblit.h: Likewise.
47903 * include/grub/i386/pc/vbefill.h: Likewise.
47904 * include/grub/i386/pc/vbeutil.h: Likewise.
47905 * include/grub/i386/pc/vga.h: Likewise.
47906 * include/grub/ieee1275/ieee1275.h: Likewise.
47907 * include/grub/ieee1275/ofdisk.h: Likewise.
47908 * include/grub/powerpc/libgcc.h: Likewise.
47909 * include/grub/powerpc/setjmp.h: Likewise.
47910 * include/grub/powerpc/types.h: Likewise.
47911 * include/grub/powerpc/ieee1275/biosdisk.h: Likewise.
47912 * include/grub/powerpc/ieee1275/console.h: Likewise.
47913 * include/grub/powerpc/ieee1275/ieee1275.h: Likewise.
47914 * include/grub/powerpc/ieee1275/kernel.h: Likewise.
47915 * include/grub/powerpc/ieee1275/loader.h: Likewise.
47916 * include/grub/powerpc/ieee1275/multiboot.h: Likewise.
47917 * include/grub/powerpc/ieee1275/time.h: Likewise.
47918 * include/grub/powerpc/ieee1275/util/biosdisk.h: Likewise.
47919 * include/grub/sparc64/libgcc.h: Likewise.
47920 * include/grub/sparc64/setjmp.h: Likewise.
47921 * include/grub/sparc64/types.h: Likewise.
47922 * include/grub/sparc64/ieee1275/console.h: Likewise.
47923 * include/grub/sparc64/ieee1275/ieee1275.h: Likewise.
47924 * include/grub/sparc64/ieee1275/kernel.h: Likewise.
47925 * include/grub/sparc64/ieee1275/time.h: Likewise.
47926 * include/grub/util/biosdisk.h: Likewise.
47927 * include/grub/util/getroot.h: Likewise.
47928 * include/grub/util/lvm.h: Likewise.
47929 * include/grub/util/misc.h: Likewise.
47930 * include/grub/util/raid.h: Likewise.
47931 * include/grub/util/resolve.h: Likewise.
47932 * io/gzio.c: Likewise.
47933 * kern/device.c: Likewise.
47934 * kern/disk.c: Likewise.
47935 * kern/dl.c: Likewise.
47936 * kern/elf.c: Likewise.
47937 * kern/env.c: Likewise.
47938 * kern/err.c: Likewise.
47939 * kern/file.c: Likewise.
47940 * kern/fs.c: Likewise.
47941 * kern/loader.c: Likewise.
47942 * kern/main.c: Likewise.
47943 * kern/misc.c: Likewise.
47944 * kern/mm.c: Likewise.
47945 * kern/parser.c: Likewise.
47946 * kern/partition.c: Likewise.
47947 * kern/rescue.c: Likewise.
47948 * kern/term.c: Likewise.
47949 * kern/efi/efi.c: Likewise.
47950 * kern/efi/init.c: Likewise.
47951 * kern/efi/mm.c: Likewise.
47952 * kern/i386/dl.c: Likewise.
47953 * kern/i386/efi/init.c: Likewise.
47954 * kern/i386/efi/startup.S: Likewise.
47955 * kern/i386/pc/init.c: Likewise.
47956 * kern/i386/pc/lzo1x.S: Likewise.
47957 * kern/i386/pc/startup.S: Likewise.
47958 * kern/ieee1275/ieee1275.c: Likewise.
47959 * kern/powerpc/cache.S: Likewise.
47960 * kern/powerpc/dl.c: Likewise.
47961 * kern/powerpc/ieee1275/cmain.c: Likewise.
47962 * kern/powerpc/ieee1275/crt0.S: Likewise.
47963 * kern/powerpc/ieee1275/init.c: Likewise.
47964 * kern/powerpc/ieee1275/openfw.c: Likewise.
47965 * kern/sparc64/cache.S: Likewise.
47966 * kern/sparc64/dl.c: Likewise.
47967 * kern/sparc64/ieee1275/init.c: Likewise.
47968 * kern/sparc64/ieee1275/openfw.c: Likewise.
47969 * loader/efi/chainloader.c: Likewise.
47970 * loader/efi/chainloader_normal.c: Likewise.
47971 * loader/i386/efi/linux.c: Likewise.
47972 * loader/i386/efi/linux_normal.c: Likewise.
47973 * loader/i386/pc/chainloader.c: Likewise.
47974 * loader/i386/pc/chainloader_normal.c: Likewise.
47975 * loader/i386/pc/linux.c: Likewise.
47976 * loader/i386/pc/linux_normal.c: Likewise.
47977 * loader/i386/pc/multiboot.c: Likewise.
47978 * loader/i386/pc/multiboot_normal.c: Likewise.
47979 * loader/powerpc/ieee1275/linux.c: Likewise.
47980 * loader/powerpc/ieee1275/linux_normal.c: Likewise.
47981 * normal/arg.c: Likewise.
47982 * normal/cmdline.c: Likewise.
47983 * normal/command.c: Likewise.
47984 * normal/completion.c: Likewise.
47985 * normal/execute.c: Likewise.
47986 * normal/function.c: Likewise.
47987 * normal/lexer.c: Likewise.
47988 * normal/main.c: Likewise.
47989 * normal/menu.c: Likewise.
47990 * normal/menu_entry.c: Likewise.
47991 * normal/misc.c: Likewise.
47992 * normal/parser.y: Likewise.
47993 * normal/script.c: Likewise.
47994 * normal/i386/setjmp.S: Likewise.
47995 * normal/powerpc/setjmp.S: Likewise.
47996 * normal/sparc64/setjmp.S: Likewise.
47997 * partmap/acorn.c: Likewise.
47998 * partmap/amiga.c: Likewise.
47999 * partmap/apple.c: Likewise.
48000 * partmap/gpt.c: Likewise.
48001 * partmap/pc.c: Likewise.
48002 * partmap/sun.c: Likewise.
48003 * term/gfxterm.c: Likewise.
48004 * term/terminfo.c: Likewise.
48005 * term/efi/console.c: Likewise.
48006 * term/i386/pc/console.c: Likewise.
48007 * term/i386/pc/serial.c: Likewise.
48008 * term/i386/pc/vesafb.c: Likewise.
48009 * term/i386/pc/vga.c: Likewise.
48010 * term/ieee1275/ofconsole.c: Likewise.
48011 * util/biosdisk.c: Likewise.
48012 * util/console.c: Likewise.
48013 * util/genmoddep.c: Likewise.
48014 * util/getroot.c: Likewise.
48015 * util/grub-emu.c: Likewise.
48016 * util/grub-mkdevicemap.c: Likewise.
48017 * util/grub-probe.c: Likewise.
48018 * util/lvm.c: Likewise.
48019 * util/misc.c: Likewise.
48020 * util/raid.c: Likewise.
48021 * util/resolve.c: Likewise.
48022 * util/update-grub.in: Likewise.
48023 * util/update-grub_lib.in: Likewise.
48024 * util/grub.d/00_header.in: Likewise.
48025 * util/grub.d/10_hurd.in: Likewise.
48026 * util/grub.d/10_linux.in: Likewise.
48027 * util/i386/efi/grub-install.in: Likewise.
48028 * util/i386/efi/grub-mkimage.c: Likewise.
48029 * util/i386/pc/grub-install.in: Likewise.
48030 * util/i386/pc/grub-mkimage.c: Likewise.
48031 * util/i386/pc/grub-mkrescue.in: Likewise.
48032 * util/i386/pc/grub-setup.c: Likewise.
48033 * util/i386/pc/misc.c: Likewise.
48034 * util/powerpc/ieee1275/grub-install.in: Likewise.
48035 * util/powerpc/ieee1275/grub-mkimage.c: Likewise.
48036 * util/powerpc/ieee1275/misc.c: Likewise.
48037 * video/bitmap.c: Likewise.
48038 * video/video.c: Likewise.
48039 * video/i386/pc/vbe.c: Likewise.
48040 * video/i386/pc/vbeblit.c: Likewise.
48041 * video/i386/pc/vbefill.c: Likewise.
48042 * video/i386/pc/vbeutil.c: Likewise.
48043 * video/readers/tga.c: Likewise.
48044
48045 2007-07-02 Robert Millan <rmh@aybabtu.com>
48046
48047 * conf/i386-efi.rmk: Replace obsolete reference to
48048 util/i386/pc/biosdisk.c with util/biosdisk.c, and util/i386/pc/getroot.c
48049 with util/getroot.c.
48050 * conf/powerpc-ieee1275.rmk: Likewise.
48051 * conf/sparc64-ieee1275.rmk: Likewise.
48052
48053 * util/grub-emu.c (main): Fix unchecked pointer handling.
48054
48055 2007-07-02 Robert Millan <rmh@aybabtu.com>
48056
48057 * util/i386/efi/grub-install.in: Allow `grub_probe --target=partmap'
48058 invocation to fail, in order to support partition-less media.
48059
48060 * util/i386/pc/grub-install.in: Likewise.
48061
48062 * util/powerpc/ieee1275/grub-install.in: Use grub-probe to determine
48063 which fs or partmap modules are needed (akin to its sister scripts).
48064
48065 Also use grub-probe to get rid of unportable /proc/mounts check.
48066
48067 Print the same informational message that the other scripts do, before
48068 exiting.
48069
48070 2007-06-23 Robert Millan <rmh@aybabtu.com>
48071
48072 * util/update-grub_lib.in (font_path): New function. Determine whether
48073 a font file can be found and, if so, echo the GRUB path to it.
48074
48075 * util/update-grub.in: Handle multiple terminals depending on user
48076 input, platform availability and font file presence. Propagate
48077 variables of our findings to /etc/grub.d/ children.
48078
48079 * util/grub.d/00_header.in: Handle multiple terminals, based on
48080 environment setup by update-grub.
48081
48082 2007-06-23 Robert Millan <rmh@aybabtu.com>
48083
48084 * conf/i386-pc.rmk (pkgdata_MODULES): Add serial.mod.
48085
48086 2007-06-21 Robert Millan <rmh@aybabtu.com>
48087
48088 * include/grub/i386/pc/kernel.h: Define GRUB_KERNEL_MACHINE_DATA_END to
48089 indicate end of data section in kernel image.
48090 * include/grub/i386/efi/kernel.h: Define GRUB_KERNEL_MACHINE_PREFIX and
48091 GRUB_KERNEL_MACHINE_DATA_END.
48092
48093 * kern/i386/pc/startup.S: Do not initialize grub_prefix, only reserve
48094 space for it.
48095 * kern/i386/efi/startup.S: Likewise.
48096
48097 * util/i386/pc/grub-mkimage.c: Initialize grub_prefix to /boot/grub
48098 during image generation. Implement --prefix option to override this
48099 patch.
48100 * util/i386/efi/grub-mkimage.c: Likewise.
48101
48102 * util/update-grub_lib.in (convert_system_path_to_grub_path): Split
48103 code to make path relative to its root into a separate function.
48104
48105 * util/i386/pc/grub-install.in: Use newly provided
48106 make_system_path_relative_to_its_root() to convert ${grubdir}, then
48107 pass the result to grub-install --prefix.
48108
48109 2007-06-13 Robert Millan <rmh@aybabtu.com>
48110
48111 * include/grub/util/misc.h: Define DEFAULT_DIRECTORY and
48112 DEFAULT_DEVICE_MAP.
48113 * util/grub-emu.c: Use above definitions from misc.h instead of
48114 defining them.
48115 * util/grub-mkdevicemap.c: Likewise.
48116 * util/i386/pc/grub-setup.c: Likewise.
48117 * util/grub-probe.c: Likewise.
48118 (probe): Abort with grub_util_error() when either
48119 grub_guess_root_device or grub_util_get_grub_dev fails.
48120
48121 2007-06-12 Robert Millan <rmh@aybabtu.com>
48122
48123 * normal/command.c (grub_command_execute): Use NULL rather than 0 for
48124 "pager" assignment.
48125 * util/biosdisk.c (grub_util_biosdisk_get_grub_dev): Likewise for
48126 "pcdata".
48127 * util/grub-probe.c (probe): Likewise for "drive_name".
48128
48129 2007-06-11 Robert Millan <rmh@aybabtu.com>
48130
48131 * util/i386/pc/grub-mkrescue.in: Pad both floppy images with zeroes,
48132 not just the cdrom one.
48133
48134 2007-06-11 Robert Millan <rmh@aybabtu.com>
48135
48136 * util/i386/pc/grub-mkrescue.in: Add "set -e".
48137 Add --pkglibdir=DIR option to override pkglibdir.
48138 Mention --image-type=TYPE in help output.
48139 Fix --grub-mkimage (it was a no-op).
48140 Abort gracefully when no parameter is given.
48141
48142 2007-06-11 Robert Millan <rmh@aybabtu.com>
48143
48144 * util/i386/pc/grub-mkrescue.in: New file.
48145 * conf/i386-pc.rmk: Add its build declarations. Put it in bin_SCRIPTS.
48146 * Makefile.in: Handle bin_SCRIPTS.
48147
48148 2007-06-10 Vesa Jaaskelainen <chaac@nic.fi>
48149
48150 * term/gfxterm.c (grub_gfxterm_init): Added support for specifying
48151 list of video modes.
48152
48153 2007-06-06 Robert Millan <rmh@aybabtu.com>
48154
48155 * util/update-grub_lib.in (convert_system_path_to_grub_path): Abort if
48156 file doesn't exist, or if it is in a filesystem grub can't read.
48157
48158 * util/update-grub.in: Set fallback for GRUB_FS check to "unknown". Do
48159 not abort if GRUB_DRIVE could not be defined. Rearrange generated
48160 header comment to fit in 80 columns when the variables are resolved.
48161
48162 * util/grub.d/00_header.in: Only set root variable when GRUB_DRIVE
48163 could be identified by update-grub. Remove redundant check for
48164 unifont.pff existence (since convert_system_path_to_grub_path now
48165 handles that).
48166
48167 2007-06-04 Robert Millan <rmh@aybabtu.com>
48168
48169 * conf/i386-efi.rmk (grub_probe_SOURCES): Add partmap/apple.c.
48170
48171 * conf/i386-pc.rmk (grub_probe_SOURCES): Likewise.
48172
48173 * conf/powerpc-ieee1275.rmk (grub_probe_SOURCES): Add partmap/pc.c.
48174
48175 2007-06-04 Robert Millan <rmh@aybabtu.com>
48176
48177 * conf/powerpc-ieee1275.rmk: Enable grub-mkdevicemap and grub-probe.
48178
48179 * include/grub/partition.h: Declare grub_apple_partition_map_init and
48180 grub_apple_partition_map_fini.
48181
48182 * util/biosdisk.c
48183 (grub_util_biosdisk_open): Replace BLKGETSIZE with BLKGETSIZE64 (needed
48184 to access >2 TiB disks).
48185
48186 Print disk->total_sectors with %llu instead of %lu, since this
48187 variable is always 64-bit (prevents wrong disk size from being displayed
48188 on either >2 TiB disk or big-endian CPU).
48189
48190 (grub_util_biosdisk_get_grub_dev): Convert gpt_partition_map handling
48191 into a generic case that supports all (sane) partition maps.
48192
48193 Stop using grub_cpu_to_le32() on dos_part / bsd_part since it actually
48194 breaks big-endian.
48195
48196 * util/grub-probe.c: Call grub_apple_partition_map_init() before probe()
48197 and grub_apple_partition_map_fini() after that.
48198
48199 2007-06-01 Robert Millan <rmh@aybabtu.com>
48200
48201 * util/update-grub.in: Export GRUB_CMDLINE_LINUX.
48202
48203 * util/grub.d/00_header.in: Only enable gfxterm when
48204 convert_system_path_to_grub_path() succeeds.
48205
48206 2007-05-20 Robert Millan <rmh@aybabtu.com>
48207
48208 * util/update-grub_lib.in: New file.
48209 * DISTLIST: Add update-grub_lib.in.
48210 * conf/common.rmk: Generate update-grub_lib and install it in
48211 $(lib_DATA).
48212 * Makefile.in: Add install routine for $(lib_DATA).
48213
48214 * util/grub.d/00_header.in: Use convert_system_path_to_grub_path()
48215 function provided by update-grub_lib to support arbitrary paths of
48216 unifont.pff.
48217 * util/update-grub.in: Use convert_system_path_to_grub_path() to
48218 initialize GRUB_DRIVE_BOOT and GRUB_DRIVE_BOOT_GRUB variables.
48219
48220 2007-05-19 Robert Millan <rmh@aybabtu.com>
48221
48222 * commands/i386/cpuid.c: New module.
48223 * DISTLIST: Add it.
48224 * conf/i386-efi.rmk: Enable cpuid.mod.
48225 * conf/i386-pc.rmk: Likewise.
48226
48227 2007-05-18 Jeroen Dekkers <jeroen@dekkers.cx>
48228
48229 * kern/disk.c (grub_disk_read): Check return value of
48230 grub_realloc().
48231
48232 2007-05-18 Jeroen Dekkers <jeroen@dekkers.cx>
48233
48234 * util/getroot.c (grub_util_get_grub_dev): Support partitionable
48235 arrays.
48236 * disk/raid.c (grub_raid_open): Likewise.
48237
48238 2007-05-17 Jeroen Dekkers <jeroen@dekkers.cx>
48239
48240 * util/biosdisk.c (linux_find_partition): Allocate real_dev on the
48241 stack instead of on the heap.
48242
48243 * kern/disk.c (grub_disk_read): Make sure tmp_buf is big enough
48244 before doing a read on it.
48245
48246 * configure.ac: Only use -fno-stack-protector for the target
48247 environment.
48248
48249 2007-05-17 Jeroen Dekkers <jeroen@dekkers.cx>
48250
48251 * video/i386/pc/vbe.c (grub_video_vbe_create_render_target): Add
48252 __attribute_ ((unused)) to mode_type argument.
48253
48254 * util/getroot.c (grub_guess_root_device): Fix #endif.
48255
48256 * kern/misc.c (memcmp): Fix prototype.
48257
48258 * include/grub/partition.h [GRUB_UTIL]
48259 (grub_gpt_partition_map_init): Add prototype.
48260 (grub_gpt_partition_map_fini): Likewise.
48261
48262 * fs/jfs.c (struct grub_jfs_inode): Put __attribute__ ((packed)
48263 at the right place.
48264
48265 * fs/fat.c (grub_fat_mount): Replace ~0UL with ~0U.
48266 (grub_fat_read_data): Likewise.
48267 (grub_fat_find_dir): Likewise.
48268
48269 * font/manager.c (find_glyph): Make table a const.
48270 (grub_font_get_glyph): Remove bitmap from if statement.
48271
48272 2007-05-16 Jeroen Dekkers <jeroen@dekkers.cx>
48273
48274 * util/getroot.c (grub_guess_root_device): Remove RAID and LVM
48275 code, first search for device in /dev/mapper, then in /dev.
48276 (grub_util_get_grub_dev): New function.
48277 * include/grub/util/getroot.h (grub_util_get_grub_dev): Add
48278 prototype.
48279 * util/grub-probe.c (probe): Remove check for RAID, call
48280 grub_util_get_grub_dev() instead of
48281 grub_util_biosdisk_get_grub_dev().
48282 * util/grub-emu.c (main): Call grub_util_get_grub_dev() instead of
48283 grub_util_biosdisk_get_grub_dev().
48284 * util/i386/pc/grub-setup.c (main): Likewise.
48285
48286 2007-05-16 Robert Millan <rmh@aybabtu.com>
48287
48288 * DISTLIST: Update for the latest changes.
48289 * conf/i386-pc.rmk: Use the new paths for util/getroot.c,
48290 util/grub-mkdevicemap.c, util/grub-probe.c and util/biosdisk.c.
48291 * util/grub-emu.c: Replace grub/i386/pc/util/biosdisk.h with
48292 grub/util/biosdisk.h.
48293 * util/i386/pc/grub-setup.c: Replace grub/machine/util/biosdisk.h with
48294 grub/util/biosdisk.h.
48295
48296 2007-05-16 Robert Millan <rmh@aybabtu.com>
48297
48298 * util/grub.d/00_header.in: Set default gfxmode to `640x480'.
48299
48300 2007-05-16 Robert Millan <rmh@aybabtu.com>
48301
48302 * util/i386/efi/grub-install.in: New.
48303 * conf/i386-efi.rmk: Enable grub-mkdevicemap, grub-probe and the
48304 newly added grub-install.
48305 * util/biosdisk.c: Remove unnecessary grub/machine/biosdisk.h
48306 include.
48307 * util/getroot.c: Replace grub/i386/pc/util/biosdisk.h with
48308 grub/util/biosdisk.h.
48309 * util/grub-probe.c: Replace grub/machine/util/biosdisk.h with
48310 grub/util/biosdisk.h.
48311
48312 2007-05-16 Robert Millan <rmh@aybabtu.com>
48313
48314 * include/grub/i386/pc/util/biosdisk.h: Moved to ...
48315 * include/grub/util/biosdisk.h: ... here.
48316 * util/i386/pc/biosdisk.c: Moved to ...
48317 * util/biosdisk.c: ... here.
48318 * util/i386/pc/getroot.c: Moved to ...
48319 * util/getroot.c: ... here.
48320 * util/i386/pc/grub-mkdevicemap.c: Moved to ...
48321 * util/grub-mkdevicemap.c: ... here.
48322 * util/i386/pc/grub-probe.c: Moved to ...
48323 * util/grub-probe.c: ... here.
48324
48325 2007-05-15 Robert Millan <rmh@aybabtu.com>
48326
48327 * util/update-grub.in: Remove duplicated line in grub.cfg header
48328 message.
48329
48330 2007-05-13 Robert Millan <rmh@aybabtu.com>
48331
48332 * util/update-grub.in: Fix a few assumptions about the devices holding
48333 /, /boot and /boot/grub being the same.
48334 * util/grub.d/00_header.in: Likewise.
48335 * util/grub.d/10_hurd.in: Likewise.
48336 * util/grub.d/10_linux.in: Likewise.
48337
48338 * util/grub.d/10_linux.in: Implement Linux image sorting with arbitrary
48339 patterns. Use that to define the `.old' suffix as older than `'.
48340
48341 * util/grub.d/00_header.in: Set default gfxmode to `800x600x16'.
48342
48343 * util/update-grub.in: Add a reference to ${sysconfdir}/default/grub in
48344 the grub.cfg header message.
48345
48346 2007-05-11 Robert Millan <rmh@aybabtu.com>
48347
48348 * util/update-grub.in: Create device.map if it doesn't already exist,
48349 before attempting to run grub-probe.
48350 Check for grub-probe and grub-mkdevicemap with the same code
48351 grub-install is using.
48352 Remove test mode.
48353
48354 2007-05-09 Jeroen Dekkers <jeroen@dekkers.cx>
48355
48356 * Makefile.in: Add the datarootdir autoconf variable.
48357
48358 2007-05-09 Robert Millan <rmh@aybabtu.com>
48359
48360 * util/i386/pc/grub-probe.c (probe): When detecting partition map,
48361 fail gracefully if dev->disk->partition == NULL.
48362
48363 2007-05-07 Robert Millan <rmh@aybabtu.com>
48364
48365 * util/i386/pc/grub-probe.c: Add `grub-probe -t partmap' parameter to
48366 determine partition map module.
48367 * util/i386/pc/grub-install.in: Use this feature to decide which
48368 partition module to load, instead of hardcoding pc and gpt.
48369
48370 2007-05-07 Robert Millan <rmh@aybabtu.com>
48371
48372 * Makefile.in: Fix assumption that $(srcdir) has a trailing slash when
48373 source directory differs from build directory.
48374
48375 2007-05-05 Robert Millan <rmh@aybabtu.com>
48376
48377 * util/powerpc/ieee1275/grub-install.in: Fix syntax error in pkglibdir
48378 initialisation.
48379
48380 2007-05-05 Robert Millan <rmh@aybabtu.com>
48381
48382 * util/update-grub.in: Create ${grub_prefix} if it doesn't exist.
48383
48384 2007-05-05 Robert Millan <rmh@aybabtu.com>
48385
48386 * util/grub.d/10_linux.in: Allow the administrator to insert Linux
48387 command-line arguments via ${GRUB_CMDLINE_LINUX}.
48388
48389 2007-05-05 Robert Millan <rmh@aybabtu.com>
48390
48391 * conf/i386-pc.rmk (grub_setup_SOURCES): Add partmap/gpt.c.
48392 (grub_probe_SOURCES): Likewise.
48393 * util/i386/pc/biosdisk.c (grub_util_biosdisk_get_grub_dev): Detect
48394 GPT and initialize dos_part and bsd_part accordingly.
48395 * util/i386/pc/grub-setup.c (setup): Ditto for install_dos_part and
48396 install_bsd_part.
48397 (main): Activate gpt module for use during partition identification,
48398 and deactivate it afterwards.
48399 * util/i386/pc/grub-install.in: Add gpt module to core.img.
48400 * util/i386/pc/grub-probe.c (main): Activate gpt module for use during
48401 partition identification, and deactivate it afterwards.
48402
48403 2007-05-05 Robert Millan <rmh@aybabtu.com>
48404
48405 * term/i386/pc/console.c (grub_console_fini): Call
48406 grub_term_set_current() before grub_term_unregister().
48407
48408 2007-05-04 Robert Millan <rmh@aybabtu.com>
48409
48410 * DISTLIST: Add util/update-grub.in, util/grub.d/00_header.in,
48411 util/grub.d/10_hurd.in, util/grub.d/10_linux.in and util/grub.d/README.
48412 * Makefile.in: Build update-grub_SCRIPTS. Install update-grub_SCRIPTS
48413 and update-grub_DATA.
48414 * conf/common.rmk: Build and install update-grub components.
48415 * conf/common.mk: Regenerate.
48416 * util/update-grub.in: New. Core of update-grub.
48417 * util/grub.d/00_header.in: New. Generates grub.cfg header.
48418 * util/grub.d/10_hurd.in: New. Generates boot entries for the Hurd.
48419 * util/grub.d/10_linux.in: New. Generates boot entries for Linux.
48420 * util/grub.d/README: New. Document grub.d directory layout.
48421
48422 2007-05-01 Robert Millan <rmh@aybabtu.com>
48423
48424 * util/grub-emu.c: Move initialization functions
48425 grub_util_biosdisk_init() and grub_init_all() before
48426 grub_util_biosdisk_get_grub_dev(), which relies on them.
48427
48428 2007-04-19 Robert Millan <rmh@aybabtu.com>
48429
48430 * util/powerpc/ieee1275/grub-install.in: Initialize ${bindir}, since
48431 it is used later.
48432
48433 2007-04-18 Jerone Young <jerone@gmail.com>
48434
48435 * kernel/elf.c: Add missing parenthesis for conditional statement
48436 stanza.
48437
48438 2007-04-10 Jerone Young <jerone@gmail.com>
48439
48440 * util/i386/pc/getroot.c: Update so that if root device is /dev/root ,
48441 continue on and look for device node with real device name.
48442
48443 2007-04-10 Jerone Young <jerone@gmail.com>
48444
48445 * configure.ac: Add argument for autoconf to use transformation
48446 ability.
48447 * Makefile.in: Add autoconf package transformation code.
48448 * util/i386/pc/grub-install.in: Likewise.
48449 * util/powerpc/ieee1275/grub-install.in: Likewise.
48450
48451 2007-03-19 Yoshinori K. Okuji <okuji@enbug.org>
48452
48453 * fs/ext2.c (EXT2_GOOD_OLD_REVISION): New macro.
48454 (EXT2_GOOD_OLD_INODE_SIZE): Likewise.
48455 (EXT2_REVISION): Likewise.
48456 (EXT2_INODE_SIZE): Likewise.
48457 (struct grub_ext2_block_group): Added a missing member
48458 "used_dirs".
48459 (grub_ext2_read_inode): Divide by the inode size in a superblock
48460 instead of 128 to obtain INODES_PER_BLOCK.
48461 Use the macro EXT2_INODE_SIZE instead of directly using
48462 SBLOCK->INODE_SIZE.
48463
48464 2007-03-18 Yoshinori K. Okuji <okuji@enbug.org>
48465
48466 * fs/ext2.c (grub_ext2_read_inode): Use the inode size in a
48467 superblock instead of the structure size to compute an
48468 offset. This fixes the problem that GRUB could not read a
48469 filesystem when inode size is different from 128-byte.
48470
48471 2007-03-05 Marco Gerards <marco@gnu.org>
48472
48473 * normal/main.c (read_config_file): When "menu" is not set, create
48474 an initial context.
48475
48476 2007-02-21 Hollis Blanchard <hollis@penguinppc.org>
48477
48478 * kern/powerpc/ieee1275/init.c (HEAP_SIZE): Removed.
48479 (HEAP_LIMIT): New macro.
48480 (grub_claim_heap): Claim memory up to `heaplimit'.
48481
48482 2007-02-21 Hollis Blanchard <hollis@penguinppc.org>
48483
48484 * conf/powerpc-ieee1275.rmk (kernel_elf_LDFLAGS): Link at 64KB.
48485 * kern/powerpc/ieee1275/init.c (_end): Add declaration.
48486 (_start): Likewise.
48487 (grub_arch_modules_addr): Return address after `_end'.
48488 * util/powerpc/ieee1275/grub-mkimage.c: Include grub/misc.h.
48489 (load_modules): Use new parameter as `p_paddr' and `p_vaddr'.
48490 (add_segments): Calculate `_end' from phdr size and location.
48491 (ALIGN_UP): Moved to ...
48492 * include/grub/misc.h: here.
48493 * include/grub/powerpc/ieee1275/kernel.h (GRUB_IEEE1275_MOD_ALIGN):
48494 New macro.
48495 (GRUB_IEEE1275_MODULE_BASE): Removed.
48496
48497 2007-02-20 Hollis Blanchard <hollis@penguinppc.org>
48498
48499 * kern/powerpc/ieee1275/openfw.c (grub_available_iterate): Correct
48500 loop boundary.
48501
48502 2007-02-20 Hollis Blanchard <hollis@penguinppc.org>
48503
48504 * include/grub/elfload.h (grub_elf32_load_hook_t): Return grub_err_t.
48505 All users updated.
48506 (grub_elf64_load_hook_t): Likewise.
48507 * kern/elf.c: Call `grub_error_push' before `grub_error'. Improve
48508 debug output.
48509
48510 2007-02-20 Hollis Blanchard <hollis@penguinppc.org>
48511
48512 * kern/mm.c: Update copyright.
48513 (grub_mm_debug): Correct syntax error.
48514 (grub_mm_dump_free): New function.
48515 (grub_debug_free): Call `grub_free'.
48516 * include/grub/mm.h: Update copyright.
48517 (grub_mm_dump_free): Add declaration.
48518
48519 2007-02-12 Hollis Blanchard <hollis@penguinppc.org>
48520
48521 * include/grub/ieee1275/ieee1275.h: Update copyright.
48522 * kern/powerpc/ieee1275/init.c: Likewise.
48523 * kern/powerpc/ieee1275/openfw.c: Likewise.
48524
48525 * loader/powerpc/ieee1275/linux.c: Likewise.
48526 * include/grub/elfload.h: Likewise.
48527 * kern/elf.c: Likewise.
48528 (grub_elf32_load): Pass `base' and `size' parameters. Update all
48529 callers.
48530 (grub_elf64_load): Likewise.
48531 (grub_elf32_load_segment): Move to a nested function.
48532 (grub_elf64_load_segment): Likewise.
48533
48534 2007-02-12 Hollis Blanchard <hollis@penguinppc.org>
48535
48536 * include/grub/ieee1275/ieee1275.h (grub_available_iterate): New
48537 prototype.
48538 * kern/powerpc/ieee1275/init.c (grub_heap_start): Removed.
48539 (grub_heap_len): Likewise.
48540 (HEAP_SIZE): New macro.
48541 (grub_claim_heap): New function.
48542 (grub_machine_init): Don't claim heap directly. Call
48543 `grub_claim_heap'.
48544 * kern/powerpc/ieee1275/openfw.c: Include alloca.h.
48545 (grub_available_iterate): New function.
48546
48547 2007-02-03 Thomas Schwinge <tschwinge@gnu.org>
48548
48549 * aclocal.m4 (grub_CHECK_STACK_PROTECTOR): New definition.
48550 * configure.ac: Use it for testing the HOST and TARGET compilers.
48551
48552 2006-12-13 Thomas Schwinge <tschwinge@gnu.org>
48553
48554 * Makefile.in (enable_grub_emu): New variable.
48555 * configure.ac (--enable-grub-emu): New option.
48556 Do the checks for (n)curses only if `--enable-grub-emu' is requested.
48557 * conf/i386-efi.rmk (sbin_UTILITIES): Add `grub-emu' only if requested.
48558 * conf/i386-pc.rmk: Likewise.
48559 * conf/powerpc-ieee1275.rmk: Likewise.
48560 * conf/sparc64-ieee1275.rmk (bin_UTILITIES): Likewise.
48561
48562 2006-12-12 Marco Gerards <marco@gnu.org>
48563
48564 * include/grub/err.h (grub_err_t): Add `GRUB_ERR_MENU'.
48565
48566 * kern/env.c (grub_env_unset): Don't free the member `value' when
48567 the type is GRUB_ENV_VAR_DATA, in this case it's a user defined
48568 pointer.
48569
48570 * normal/main.c (current_menu): Removed.
48571 (free_menu): Unset the `menu' environment variable.
48572 (grub_normal_menu_addentry): Make use of the environment variable
48573 `menu', instead of using the global `current_menu'. Allocate
48574 memory for the sourcecode of this entry.
48575 (read_config_file): New argument `nested', changed all callers.
48576 Only in the case of a new context, initialize a new menu. Set the
48577 `menu' environment variable.
48578 (grub_normal_execute): Don't set and unset the environment
48579 variable `menu' here anymore. Only free the menu when leaving the
48580 context.
48581
48582 * util/i386/pc/biosdisk.c (linux_find_partition): Fixed a memory
48583 leak.
48584
48585 2006-12-11 Marco Gerards <marco@gnu.org>
48586
48587 * normal/menu_entry.c (run): Fix off by one bug so the last line
48588 is executed. Move the loader check to outside the loop.
48589
48590 2006-12-08 Hollis Blanchard <hollis@penguinppc.org>
48591
48592 * kern/powerpc/ieee1275/cmain.c (cmain): Mark r3 and r4 as `UNUSED'.
48593
48594 2006-11-25 Yoshinori K. Okuji <okuji@enbug.org>
48595
48596 * util/i386/pc/grub-mkimage.c (generate_image): Fix the offset of
48597 the number of sectors. Reported by Andrey Shuvikov
48598 <mr_hyro@yahoo.com>.
48599
48600 2006-11-11 Jeroen Dekkers <jeroen@dekkers.cx>
48601
48602 * kern/disk.c (grub_disk_read): When there is a read error, always
48603 try to read only the necessary data.
48604
48605 * conf/i386-pc.rmk (grub_probe_SOURCES): Add disk/lvm.c and
48606 disk/raid.c.
48607 * include/grub/disk.h [GRUB_UTIL] (grub_raid_init): New
48608 prototype.
48609 [GRUB_UTIL] (grub_raid_fini): Likewise.
48610 [GRUB_UTIL] (grub_lvm_init): Likewise.
48611 [GRUB_UTIL] (grub_lvm_fini): Likewise.
48612 * util/i386/pc/grub-probe.c (probe): Check whether DEVICE_NAME is
48613 RAID device and copy DEVICE_NAME to DRIVE_NAME in that case.
48614 (main): Call grub_raid_init(), grub_lvm_init(), grub_lvm_fini()
48615 and grub_raid_fini().
48616
48617 2006-11-09 Jeroen Dekkers <jeroen@dekkers.cx>
48618
48619 * include/grub/types.h (__unused): Rename to UNUSED.
48620 * kern/elf.c (grub_elf32_size): Use UNUSED instead of __unused.
48621 (grub_elf64_size): Likewise.
48622
48623 2006-11-03 Hollis Blanchard <hollis@penguinppc.org>
48624
48625 * kern/elf.c (grub_elf_file): Call grub_file_seek. Call
48626 grub_error_push and grub_error_pop in the error-handling path.
48627 (grub_elf32_load_segment): Only call grub_file_read with non-zero
48628 length.
48629
48630 2006-11-03 Hollis Blanchard <hollis@penguinppc.org>
48631
48632 * conf/i386-efi.rmk (grub_emu_SOURCES): Add kern/elf.c.
48633 * conf/i386-pc.rmk (grub_emu_SOURCES): Likewise.
48634 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
48635 (kernel_elf_SOURCES): Likewise.
48636 * conf/i386-efi.rmk (kernel_mod_HEADERS): Add elfload.h and cache.h.
48637 * conf/i386-pc.rmk (kernel_mod_HEADERS): Likewise.
48638 * conf/powerpc-ieee1275.rmk (kernel_elf_HEADERS): Likewise.
48639 * conf/sparc64-ieee1275.rmk (kernel_elf_HEADERS): Likewise.
48640 * conf/common.rmk (pkgdata_MODULES): Add elf.mod.
48641 (elf_mod_SOURCES): New variable.
48642 (elf_mod_CFLAGS): Likewise.
48643 (elf_mod_LDFLAGS): Likewise.
48644 * include/grub/types.h (__unused): New macro.
48645 * include/grub/elfload.h: New file.
48646 * kern/elf.c: Likewise.
48647 * loader/powerpc/ieee1275/linux.c: Include elfload.h.
48648 (ELF32_LOADMASK): New macro.
48649 (ELF64_LOADMASK): Likewise.
48650 (vmlinux): Removed.
48651 (grub_linux_load32): New function.
48652 (grub_linux_load64): Likewise.
48653 (grub_rescue_cmd_linux): Call grub_linux_load32 or grub_linux_load64.
48654 Use grub_elf_t instead of grub_file_t.
48655
48656 2006-11-02 Hollis Blanchard <hollis@penguinppc.org>
48657
48658 * kern/ieee1275/ieee1275.c (grub_ieee1275_set_color): Add
48659 `catch_result' to struct set_color_args.
48660
48661 2006-10-28 Yoshinori K. Okuji <okuji@enbug.org>
48662
48663 * normal/menu.c: Include grub/script.h.
48664 * normal/menu_entry.c: Likewise.
48665 * include/grub/normal.h: Do not include grub/script.h.
48666
48667 2006-10-27 Hollis Blanchard <hollis@penguinppc.org>
48668
48669 * kern/disk.c (grub_disk_read): Correct debug printf formatting.
48670
48671 2006-10-27 Hollis Blanchard <hollis@penguinppc.org>
48672
48673 * kern/disk.c (grub_disk_open): Print debug messages when opening a
48674 disk.
48675 (grub_disk_close): Print debug messages when closing a disk.
48676 (grub_disk_read): Print debug messages when disk read fails.
48677 * kern/fs.c (grub_fs_probe): Print debug messages when detecting
48678 filesystem type.
48679 * kern/partition.c: Include misc.h.
48680 (grub_partition_iterate): Print debug messages when detecting
48681 partition type.
48682
48683 2006-10-27 Hollis Blanchard <hollis@penguinppc.org>
48684
48685 * disk/ieee1275/ofdisk.c (grub_ofdisk_read): Return error if `status'
48686 is negative.
48687 * kern/ieee1275/ieee1275.c (IEEE1275_IHANDLE_INVALID): Change to 0.
48688
48689 2006-10-26 Hollis Blanchard <hollis@penguinppc.org>
48690
48691 * kern/powerpc/ieee1275/openfw.c (grub_ieee1275_encode_devname):
48692 Reverse GRUB_IEEE1275_FLAG_0_BASED_PARTITIONS test.
48693
48694 2006-10-25 Jeroen Dekkers <jeroen@dekkers.cx>
48695
48696 * disk/lvm.c (grub_lvm_scan_device): Malloc sizeof(*lv) bytes
48697 instead of sizeof(lv). Patch by Michael Guntsche.
48698
48699 2006-10-18 Jeroen Dekkers <jeroen@dekkers.cx>
48700
48701 * disk/lvm.c: Rename VGS to VG_LIST.
48702 (grub_lvm_iterate): Change VGS->LV to VG-LV.
48703 (grub_lvm_open): Likewise.
48704 Thanks to Michael Guntsche for finding this bug.
48705
48706 2006-10-15 Yoshinori K. Okuji <okuji@enbug.org>
48707
48708 * configure.ac (AC_INIT): Bumped to 1.95.
48709
48710 2006-10-14 Robert Millan <rmh@aybabtu.com>
48711
48712 * util/i386/pc/getroot.c (grub_guess_root_device): Don't compare os_dev
48713 with "/dev/.static/dev/md".
48714
48715 2006-10-14 Yoshinori K. Okuji <okuji@enbug.org>
48716
48717 * util/i386/pc/grub-probe.c (probe): Print DEVICE_NAME instead of
48718 DRIVE_NAME when grub_util_biosdisk_get_grub_dev fails. Open
48719 DRIVE_NAME instead of DEVICE_NAME. Make sure that DEVICE_NAME and
48720 DRIVE_NAME are always freed.
48721
48722 * util/i386/pc/biosdisk.c (make_device_name): Add one into
48723 DOS_PART, as a DOS partition is counted from one instead of zero
48724 now. Reported by Robert Millan.
48725
48726 2006-10-14 Robert Millan <rmh@aybabtu.com>
48727
48728 * util/i386/pc/getroot.c (grub_guess_root_device): Stop using
48729 grub_util_biosdisk_get_grub_dev to convert system device to GRUB device.
48730 * util/grub-emu.c (main): Use grub_util_biosdisk_get_grub_dev with the
48731 string returned by grub_guess_root_device.
48732 * util/i386/pc/grub-setup.c: Likewise.
48733 * util/i386/pc/grub-probefs.c: Likewise.
48734
48735 * util/i386/pc/grub-probefs.c: Rename to ...
48736 * util/i386/pc/grub-probe.c: ... this.
48737 * DISTLIST: Remove grub-probefs, add grub-probe.
48738 * conf/i386-efi.rmk: Likewise.
48739 * conf/i386-pc.rmk: Likewise.
48740 * util/i386/pc/grub-install.in: Likewise.
48741
48742 * util/i386/pc/grub-probe.c: Add --target=(fs|device|drive) option to
48743 choose which information we want to print.
48744
48745 2006-10-14 Yoshinori K. Okuji <okuji@enbug.org>
48746
48747 * DISTLIST: Added commands/echo.c, disk/lvm.c, disk/raid.c,
48748 include/grub/bitmap.h, include/grub/lvm.h, include/grub/raid.h,
48749 include/grub/i386/pc/vbeutil.h, include/grub/util/lvm.h,
48750 include/grub/util/raid.h, util/lvm.c, util/raid.c, video/bitmap.c,
48751 video/readers/tga.c and video/i386/pc/vbeutil.c.
48752
48753 2006-10-14 Jeroen Dekkers <jeroen@dekkers.cx>
48754
48755 Added support for RAID and LVM.
48756
48757 * disk/lvm.c: New file.
48758 * disk/raid.c: Likewise.
48759 * include/grub/lvm.h: Likewise.
48760 * include/grub/raid.h: Likewise.
48761 * include/grub/util/lvm.h: Likewise.
48762 * include/grub/util/raid.h: Likewise.
48763 * util/lvm.c: Likewise.
48764 * util/raid.c: Likewise.
48765
48766 * include/grub/disk.h (grub_disk_dev_id): Add
48767 GRUB_DISK_DEVICE_RAID_ID and GRUB_DISK_DEVICE_LVM_ID.
48768 (grub_disk_get_size): New prototype.
48769 * kern/disk.c (grub_disk_open): Check whether grub_partition_probe()
48770 returns a partition.
48771 (grub_disk_get_size): New function.
48772
48773 * kern/i386/pc/init.c (make_install_device): Copy the prefix
48774 verbatim if grub_install_dos_part is -2.
48775
48776 * util/i386/pc/getroot.c (grub_guess_root_device): Support RAID
48777 and LVM devices.
48778
48779 * util/i386/pc/grub-setup.c (setup): New argument
48780 MUST_EMBED. Force embedding of GRUB when the argument is
48781 true. Close FILE before returning.
48782 (main): Add support for RAID and LVM.
48783
48784 * conf/common.rmk: Add RAID and LVM modules.
48785 * conf/i386-pc.rmk (grub_setup_SOURCES): Add util/raid.c and
48786 util/lvm.c.
48787 (grub_emu_SOURCES): Add disk/raid.c and disk/lvm.c.
48788
48789 * kern/misc.c (grub_strstr): New function.
48790 * include/grub/misc.h (grub_strstr): New prototype.
48791
48792 2006-10-10 Tristan Gingold <tristan.gingold@bull.net>
48793
48794 * include/grub/efi/api.h (GRUB_EFI_ERROR_CODE): Long constant.
48795
48796 2006-10-05 Tristan Gingold <tristan.gingold@bull.net>
48797
48798 * kern/misc.c (grub_strtoull): Guess the base only if not
48799 specified.
48800
48801 2006-10-01 Hollis Blanchard <hollis@penguinppc.org>
48802
48803 * kern/powerpc/ieee1275/cmain.c (cmain): Remove incomplete Old World
48804 PowerMac support.
48805
48806 2006-10-01 Hollis Blanchard <hollis@penguinppc.org>
48807
48808 * disk/ieee1275/ofdisk.c (grub_ofdisk_iterate): Cast `size' to long.
48809
48810 * include/grub/ieee1275/ieee1275.h (grub_ieee1275_next_property):
48811 Remove `flags' argument. All callers changed.
48812 * kern/ieee1275/ieee1275.c (IEEE1275_PHANDLE_ROOT): Removed.
48813 (IEEE1275_IHANDLE_INVALID): New variable.
48814 (IEEE1275_CELL_INVALID): New variable.
48815 (grub_ieee1275_finddevice, grub_ieee1275_get_property,
48816 grub_ieee1275_get_property_length, grub_ieee1275_instance_to_package,
48817 grub_ieee1275_package_to_path, grub_ieee1275_instance_to_path,
48818 grub_ieee1275_peer, grub_ieee1275_child, grub_ieee1275_open,
48819 grub_ieee1275_claim, grub_ieee1275_set_property): Error-check return
48820 codes from Open Firmware. All callers updated.
48821 (grub_ieee1275_next_property): Directly return Open Firmware return
48822 code.
48823 * kern/powerpc/ieee1275/cmain.c (grub_ieee1275_find_options):
48824 Standardize error checking from `grub_ieee1275_get_property'.
48825 * kern/powerpc/ieee1275/openfw.c (grub_devalias_iterate): Rename
48826 `devalias' to `aliases'. Correct comments. Consolidate error paths.
48827
48828 2006-10-01 Hollis Blanchard <hollis@penguinppc.org>
48829
48830 * kern/ieee1275/ieee1275.c (grub_ieee1275_instance_to_path): Rename
48831 `instance_to_package_args' to `instance_to_path_args'.
48832
48833 * kern/powerpc/ieee1275/init.c (grub_machine_init): Use
48834 `grub_ieee1275_chosen'.
48835
48836 * term/ieee1275/ofconsole.c (grub_ofconsole_init): Call
48837 `grub_ieee1275_interpret'.
48838
48839 2006-09-25 Hollis Blanchard <hollis@penguinppc.org>
48840
48841 * util/powerpc/ieee1275/grub-mkimage.c: Include config.h.
48842
48843 2006-09-25 Hollis Blanchard <hollis@penguinppc.org>
48844
48845 * include/grub/powerpc/libgcc.h (__floatdisf): New prototype.
48846 (__cmpdi): Likewise.
48847
48848 * kern/powerpc/ieee1275/openfw.c (grub_devalias_iterate): Pass 0 as
48849 `flags' to `grub_ieee1275_next_property'. Change `pathlen' to type
48850 `grub_ssize_t'.
48851
48852 * kern/powerpc/ieee1275/cmain.c: Include grub/misc.h.
48853
48854 * loader/powerpc/ieee1275/linux.c (grub_linux_boot): Change `actual'
48855 to type `grub_ssize_t'.
48856 (grub_rescue_cmd_linux): Cast -1 to `grub_off_t'.
48857
48858 2006-09-22 Marco Gerards <marco@gnu.org>
48859
48860 * normal/script.c (grub_script_create_cmdmenu): Skip leading
48861 newlines.
48862
48863 2006-09-22 Marco Gerards <marco@gnu.org>
48864
48865 * commands/echo.c: New file.
48866
48867 * conf/i386-pc.rmk (grub_emu_SOURCES): Add `commands/echo.c'.
48868
48869 * conf/common.rmk (echo_mod_SOURCES): New variable.
48870 (echo_mod_CFLAGS): Likewise.
48871 (echo_mod_LDFLAGS): Likewise.
48872
48873 2006-09-22 Marco Gerards <marco@gnu.org>
48874
48875 * normal/main.c (get_line): Malloc memory instead of using
48876 preallocated memory. Removed the arguments `cmdline' and
48877 `max_len'. Updated all callers.
48878
48879 2006-09-22 Marco Gerards <marco@gnu.org>
48880
48881 * conf/i386-efi.rmk (grub_emu_DEPENDENCIES): New variable.
48882 (normal_mod_DEPENDENCIES): Likewise.
48883
48884 * conf/powerpc-ieee1275.rmk (grub_emu_DEPENDENCIES): Likewise.
48885 (normal_mod_DEPENDENCIES): Likewise.
48886
48887 * conf/sparc64-ieee1275.rmk (normal_mod_DEPENDENCIES): Likewise.
48888
48889 2006-09-22 Johan Rydberg <jrydberg@gnu.org>
48890
48891 * genmk.rb: Add DEPENDENCIES variables to modules, utilities, and
48892 programs.
48893 * conf/i386-pc.rmk (grub_emu_DEPENDENCIES): Declare.
48894 (normal_mod_DEPENDENCIES): Likewise.
48895 * conf/i386-pc.mk: Regenerate.
48896 * conf/i386-efi.mk: Likewise
48897 * conf/common.mk: Likewise.
48898 * conf/powerpc-ieee1275.mk: Likewise.
48899 * conf/sparc64-ieee1275.mk: Likewise.
48900
48901 2006-09-22 Robert Millan <rmh@aybabtu.com>
48902
48903 Sync with i386 version.
48904 * conf/powerpc-ieee1275.rmk (bin_UTILITIES): Remove grub-emu, add grub-mkimage.
48905 * conf/powerpc-ieee1275.rmk (sbin_UTILITIES): Remove grub-mkimage, add grub-emu.
48906
48907 2006-09-21 Robert Millan <rmh@aybabtu.com>
48908
48909 Import from GRUB Legacy (lib/device.c):
48910 * util/i386/pc/grub-mkdevicemap.c (get_i2o_disk_name): New function.
48911 (init_device_map) [__linux__]: Add support for I2O devices.
48912
48913 2006-09-14 Marco Gerards <marco@gnu.org>
48914
48915 * conf/i386-pc.rmk (COMMON_LDFLAGS): Use `-m32' instead of
48916 `-melf_i386'.
48917
48918 2006-09-14 Robert Millan <rmh@aybabtu.com>
48919
48920 * util/i386/pc/grub-install.in: Skip menu.lst when removing
48921 /boot/grub/*.lst.
48922
48923 * util/i386/pc/getroot.c: Don't recurse into dotdirs (e.g. ".static").
48924
48925 * util/i386/pc/grub-mkdevicemap.c: Make sure the floppy device exists
48926 before adding it to device.map.
48927
48928 2006-08-15 Johan Rydberg <jrydberg@gnu.org>
48929
48930 * genmk.rb: Let GCC generate dependencies the first time it
48931 compiles a file; using the -MD option.
48932 * conf/common.mk: Regenerate.
48933 * conf/i386-pc.mk: Likewise.
48934 * conf/i386-efi.mk: Likewise.
48935 * conf/powerpc-ieee1275.mk: Likewise.
48936 * conf/sparc64-ieee1275.mk: Likewise.
48937
48938 2006-08-04 Yoshinori K. Okuji <okuji@enbug.org>
48939
48940 Move the prototypes of grub_setjmp and grub_longjmp to
48941 cpu/setjmp.h, so that each architecture may specify different
48942 attributes.
48943
48944 * include/grub/i386/setjmp.h (grub_setjmp): New prototype.
48945 (grub_longjmp): Likewise.
48946 * include/grub/powerpc/setjmp.h (grub_setjmp): Likewise..
48947 (grub_longjmp): Likewise.
48948 * include/grub/sparc64/setjmp.h (grub_setjmp): Likewise..
48949 (grub_longjmp): Likewise.
48950
48951 * include/grub/setjmp.h [!GRUB_UTIL] (grub_setjmp): Removed.
48952 [!GRUB_UTIL] (grub_longjmp): Removed.
48953
48954 2006-08-01 Pelletier Vincent <subdino2004@yahoo.fr>
48955
48956 * kern/ieee1275/ieee1275.c (grub_ieee1275_set_color): IEEE1275
48957 "color!" method does not return any value.
48958
48959 2006-07-29 Vesa Jaaskelainen <chaac@nic.fi>
48960
48961 * include/grub/bitmap.h: New file.
48962
48963 * include/grub/i386/pc/vbeutil.h: Likewise.
48964
48965 * video/bitmap.c: Likewise.
48966
48967 * video/readers/tga.c: Likewise.
48968
48969 * video/i386/pc/vbeutil.c: Likewise.
48970
48971 * commands/videotest.c: Code cleanup and updated to reflect to new
48972 video API.
48973
48974 * term/gfxterm.c: Likewise.
48975
48976 * video/video.c: Likewise.
48977
48978 * conf/i386-pc.rmk (pkgdata_MODULES): Added tga.mod and bitmap.mod.
48979 (vbe_mod_SOURCES): Added video/i386/pc/vbeutil.c.
48980 (bitmap_mod_SOURCES): New entry.
48981 (bitmap_mod_CFLAGS): Likewise.
48982 (bitmap_mod_LDFLAGS): Likewise.
48983 (tga_mod_SOURCES): Likewise.
48984 (tga_mod_CFLAGS): Likewise.
48985 (tga_mod_LDFLAGS): Likewise.
48986
48987 * include/grub/video.h (grub_video_blit_operators): New enum type.
48988 (grub_video_render_target): Changed as forward declaration and moved
48989 actual definition to be video driver specific.
48990 (grub_video_adapter.blit_bitmap): Added blitting operator.
48991 (grub_video_adapter.blit_render_target): Likewise.
48992 (grub_video_blit_bitmap): Likewise.
48993 (grub_video_blit_render_target): Likewise.
48994
48995 * include/grub/i386/pc/vbe.h (grub_video_render_target): Added
48996 driver specific render target definition.
48997 (grub_video_vbe_map_rgba): Added driver internal helper.
48998 (grub_video_vbe_unmap_color): Updated to use
48999 grub_video_i386_vbeblit_info.
49000 (grub_video_vbe_get_video_ptr): Likewise.
49001
49002 * include/grub/i386/pc/vbeblit.h
49003 (grub_video_i386_vbeblit_R8G8B8A8_R8G8B8A8): Updated to use
49004 grub_video_i386_vbeblit_info.
49005 (grub_video_i386_vbeblit_R8G8B8_R8G8B8A8): Likewise.
49006 (grub_video_i386_vbeblit_index_R8G8B8A8): Likewise.
49007 (grub_video_i386_vbeblit_R8G8B8A8_R8G8B8): Likewise.
49008 (grub_video_i386_vbeblit_R8G8B8_R8G8B8): Likewise.
49009 (grub_video_i386_vbeblit_index_R8G8B8): Likewise.
49010 (grub_video_i386_vbeblit_index_index): Likewise.
49011 (grub_video_i386_vbeblit_R8G8B8X8_R8G8B8X8): New blitter function.
49012 (grub_video_i386_vbeblit_R8G8B8_R8G8B8X8): Likewise.
49013 (grub_video_i386_vbeblit_index_R8G8B8X8): Likewise.
49014 (grub_video_i386_vbeblit_blend): Added generic blitter for blend
49015 operator.
49016 (grub_video_i386_vbeblit_replace): Added generic blitter for replace
49017 operator.
49018
49019 * video/i386/pc/vbeblit.c: Updated to reflect changes on
49020 include/grub/i386/pc/vbeblit.h.
49021
49022 * include/grub/i386/pc/vbefill.h (grub_video_i386_vbefill_R8G8B8A8):
49023 Updated to use grub_video_i386_vbeblit_info.
49024 (grub_video_i386_vbefill_R8G8B8): Likewise.
49025 (grub_video_i386_vbefill_index): Likewise.
49026 (grub_video_i386_vbefill): Added generic filler.
49027
49028 * video/i386/pc/vbefill.c: Updated to reflect changes on
49029 include/grub/i386/pc/vbefill.h.
49030
49031 * video/i386/pc/vbe.c (grub_video_vbe_get_video_ptr): Updated to use
49032 grub_video_i386_vbeblit_info.
49033 (grub_video_vbe_unmap_color): Likewise.
49034 (grub_video_vbe_blit_glyph): Likewise.
49035 (grub_video_vbe_scroll): Likewise.
49036 (grub_video_vbe_draw_pixel): Removed function.
49037 (grub_video_vbe_get_pixel): Likewise.
49038 (grub_video_vbe_fill_rect): Moved all blitters to vbefill.c and
49039 updated code to use it.
49040 (common_blitter): Added common blitter for render target and bitmap.
49041 (grub_video_vbe_blit_bitmap): Updated to use common_blitter.
49042 (grub_video_vbe_blit_render_target): Likewise.
49043
49044 2006-07-30 Johan Rydberg <jrydberg@gnu.org>
49045
49046 * kern/efi/efi.c (grub_efi_set_text_mode): Assume console already
49047 is in text mode if there is no console control protocol instance
49048 available.
49049
49050 2006-07-29 Vesa Jaaskelainen <chaac@nic.fi>
49051
49052 * include/grub/video.h: Code cleanup.
49053
49054 * include/grub/i386/pc/vbe.h: Likewise.
49055
49056 * video/i386/pc/vbe.c: Likewise.
49057
49058 * video/i386/pc/vbeblit.c: Likewise.
49059
49060 * video/i386/pc/vbefill.c: Likewise.
49061
49062 * video/video.c: Likewise. Also added more comments.
49063
49064 2006-07-29 Vesa Jaaskelainen <chaac@nic.fi>
49065
49066 * disk/i386/pc/biosdisk.c (struct grub_biosdisk_drp): Moved to ...
49067 (struct grub_biosdisk_dap): Likewise.
49068
49069 * include/grub/i386/pc/biosdisk.h: ... to here. Also corrected
49070 linkage settings for all functions.
49071
49072 2006-07-12 Marco Gerards <marco@gnu.org>
49073
49074 * configure.ac (--enable-mm-debug): Fix typo.
49075
49076 * genkernsyms.sh.in: Use proper quoting for `CC'.
49077
49078 2006-07-02 Jeroen Dekkers <jeroen@dekkers.cx>
49079
49080 * conf/i386-pc.rmk (COMMON_ASFLAGS): Add "-m32".
49081 (normal_mod_ASFLAGS): Remove "-m32".
49082
49083 2006-06-14 Yoshinori K. Okuji <okuji@enbug.org>
49084
49085 * util/misc.c: Include config.h.
49086 [!HAVE_MEMALIGN]: Do not include malloc.h.
49087 (grub_memalign): Use posix_memalign, if present. Then, use
49088 memalign, if present. Otherwise, emit an error.
49089
49090 * util/grub-emu.c: Do not include malloc.h.
49091
49092 * include/grub/util/misc.h: Include unistd.h. This is required for
49093 FreeBSD, because off_t is defined in unistd.h. Reported by Harley
49094 D. Eades III <hde@foobar-qux.org>.
49095
49096 * configure.ac (AC_GNU_SOURCE): Added.
49097 (AC_CHECK_FUNCS): Check posix_memalign and memalign for the host
49098 type.
49099
49100 2006-06-09 Yoshinori K. Okuji <okuji@enbug.org>
49101
49102 * loader/i386/pc/linux.c (grub_rescue_cmd_initrd): Make sure that
49103 ADDR_MAX does not exceed GRUB_LINUX_INITRD_MAX_ADDRESS.
49104
49105 2006-06-07 Jeroen Dekkers <jeroen@dekkers.cx>
49106
49107 * include/grub/types.h (grub_host_addr_t): Rename to
49108 grub_target_addr_t.
49109 (grub_host_off_t): Rename to grub_target_off_t.
49110 (grub_host_size_t): Rename to grub_target_size_t.
49111 (grub_host_ssize_t): Rename to grub_target_ssize_t.
49112 Refer to GRUB_TARGET_SIZEOF_VOID_P to define those variables.
49113
49114 * include/grub/kernel.h (struct grub_module_header): Change type
49115 of OFFSET to grub_target_off_t and type of SIZE to grub_target_size_t.
49116 (grub_module_info): Likewise.
49117
49118 2006-06-05 Yoshinori K. Okuji <okuji@enbug.org>
49119
49120 * loader/i386/pc/linux.c (grub_rescue_cmd_initrd): The conditional
49121 of checking LINUX_MEM_SIZE was reverse. Reported by Jesus
49122 Velazquez <jesus.velazquez@gmail.com>.
49123
49124 2006-06-05 Yoshinori K. Okuji <okuji@enbug.org>
49125
49126 Count partitions from 1 instead of 0 in the string representation
49127 of partitions. Still use 0-based internally.
49128
49129 * partmap/sun.c (grub_sun_is_valid): A cosmetic change.
49130 (sun_partition_map_iterate): Use grub_partition_t instead of
49131 struct grub_partition *. Cast DESC->START_CYLINDER to
49132 grub_uint64_t after converting the endian.
49133 (sun_partition_map_probe): Subtract 1 for PARTNUM.
49134 (sun_partition_map_get_name): Add 1 to P->INDEX.
49135
49136 * partmap/pc.c (grub_partition_parse): Subtract 1 for
49137 PCDATA->DOS_PART.
49138 (pc_partition_map_get_name): Add 1 into PCDATA->DOS_PART.
49139
49140 * partmap/gpt.c (gpt_partition_map_iterate): Initialize PARTNO to
49141 zero instead of one.
49142 (gpt_partition_map_probe): Subtract 1 for PARTNUM.
49143 (gpt_partition_map_get_name): Add 1 into P->INDEX.
49144
49145 * partmap/apple.c (apple_partition_map_iterate): Change the type
49146 of POS to unsigned.
49147 (apple_partition_map_probe): Subtract 1 for PARTNUM.
49148 (apple_partition_map_get_name): Add 1 into P->INDEX.
49149
49150 * partmap/amiga.c (amiga_partition_map_iterate): Change the type
49151 of POS to unsigned.
49152 (amiga_partition_map_iterate): Cast NEXT to grub_off_t to
49153 calculate the offset of a partition.
49154 (amiga_partition_map_probe): Subtract 1 for PARTNUM.
49155 (amiga_partition_map_get_name): Add 1 into P->INDEX.
49156
49157 * partmap/acorn.c (acorn_partition_map_find): Change the type of
49158 SECTOR to grub_disk_addr_t.
49159 (acorn_partition_map_iterate): Likewise.
49160 (acorn_partition_map_probe): Subtract 1 for PARTNUM.
49161 Change the type of SECTOR to grub_disk_addr_t. Declare P on the
49162 top.
49163 (acorn_partition_map_get_name): Add 1 into P->INDEX.
49164
49165 * kern/i386/pc/init.c (make_install_device): Add 1 into
49166 GRUB_INSTALL_DOS_PART.
49167
49168 * fs/iso9660.c (grub_iso9660_mount): Fixed a reversed
49169 conditional.
49170
49171 2006-06-04 Yoshinori K. Okuji <okuji@enbug.org>
49172
49173 Clean up the code to support 64-bit addressing in disks and
49174 files. This change is not enough for filesystems yet.
49175
49176 * util/i386/pc/grub-setup.c (struct boot_blocklist): Change the
49177 type of "start" to grub_uint64_t.
49178 (setup): Change the types of KERNEL_SECTOR and FIRST_SECTOR to
49179 grub_disk_addr_t * and grub_disk_addr_t. Fix the format string in
49180 save_first_sector and save_blocklists. Use grub_le_to_cpu64 to
49181 convert addresses.
49182
49183 * util/i386/pc/biosdisk.c (open_device): Change the type of SECTOR
49184 to grub_disk_addr_t.
49185
49186 * partmap/gpt.c (gpt_partition_map_iterate): Fix the format
49187 string.
49188
49189 * partmap/pc.c (pc_partition_map_iterate): Likewise.
49190
49191 * partmap/amiga.c (amiga_partition_map_iterate): Cast RDSK.MAGIC
49192 to char *.
49193
49194 * normal/script.c (grub_script_parse): Remove unused MEMFREE.
49195
49196 * normal/parser.y (YYLTYPE_IS_TRIVIAL): New macro.
49197
49198 * normal/lexer.c (grub_script_yyerror): Specify unused to LEX.
49199
49200 * loader/i386/pc/multiboot.c (grub_multiboot_load_elf64): Cast -1
49201 to grub_off_t, to detect an error from grub_file_seek.
49202 (grub_multiboot_load_elf32): Likewise.
49203
49204 * kern/misc.c (grub_strtoul): Use grub_strtoull. Return the
49205 maximum unsigned long value when an overflow is detected.
49206 (grub_strtoull): New function.
49207 (grub_divmod64): Likewise.
49208 (grub_lltoa): use grub_divmod64.
49209
49210 * kern/fs.c (struct grub_fs_block): Change the type of "offset" to
49211 grub_disk_addr_t.
49212 (grub_fs_blocklist_open): Increase P if P is not NULL to advance
49213 the pointer to next character. Use grub_strtoull instead of
49214 grub_strtoul.
49215 (grub_fs_blocklist_read): Change the types of SECTOR, OFFSET and
49216 SIZE to grub_disk_addr_t, grub_off_t and grub_size_t,
49217 respectively.
49218
49219 * kern/file.c (grub_file_read): Prevent an overflow of LEN, as the
49220 return value is signed.
49221 (grub_file_seek): Change the type of OLD to grub_off_t. Do not
49222 test if OFFSET is less than zero, as OFFSET is unsigned now.
49223
49224 * kern/disk.c (struct grub_disk_cache): Change the type of
49225 "sector" to grub_disk_addr_t.
49226 (grub_disk_cache_get_index): Change the type of SECTOR to
49227 grub_disk_addr_t. Calculate the hash with SECTOR casted to
49228 unsigned after shifting.
49229 (grub_disk_cache_invalidate): Change the type of SECTOR to
49230 grub_disk_addr_t.
49231 (grub_disk_cache_unlock): Likewise.
49232 (grub_disk_cache_store): Likewise.
49233 (grub_disk_check_range): Change the types of SECTOR, OFFSET, SIZE,
49234 START and LEN to grub_disk_addr_t *, grub_off_t *, grub_size_t,
49235 grub_disk_addr_t and grub_uint64_t, respectively.
49236 (grub_disk_read): Use an unsigned variable REAL_OFFSET for the
49237 body, as the value of OFFSET is tweaked by
49238 grub_disk_check_range. Change the types of START_SECTOR, LEN and
49239 POS to grub_disk_addr_t, grub_size_t and grub_size_t,
49240 respectively.
49241 (grub_disk_write): Use an unsigned variable REAL_OFFSET for the
49242 body, as the value of OFFSET is tweaked by
49243 grub_disk_check_range. Change the types of LEN and N to
49244 grub_size_t.
49245
49246 * io/gzio.c (struct grub_gzio): Change the types of "data_offset"
49247 and "saved_offset" to grub_off_t.
49248 (test_header): Cast BUF to char *.
49249 (get_byte): Cast GZIO->DATA_OFFSET to grub_off_t. Cast GZIO->INBUF
49250 to char *.
49251 (grub_gzio_read): Change the types of OFFSET and SIZE to
49252 grub_off_t and grub_size_t, respectively.
49253
49254 * include/grub/i386/pc/boot.h (GRUB_BOOT_MACHINE_FORCE_LBA):
49255 Removed.
49256 (GRUB_BOOT_MACHINE_BOOT_DRIVE): Changed to 0x4c.
49257 (GRUB_BOOT_MACHINE_KERNEL_ADDRESS): Changed to 0x40.
49258 (GRUB_BOOT_MACHINE_KERNEL_SEGMENT): Changed to 0x42.
49259 (GRUB_BOOT_MACHINE_DRIVE_CHECK): Changed to 0x4e.
49260 (GRUB_BOOT_MACHINE_LIST_SIZE): Increased to 12.
49261
49262 * include/grub/types.h (grub_off_t): Unconditionally set to
49263 grub_uint64_t.
49264 (grub_disk_addr_t): Changed to grub_uint64_t.
49265
49266 * include/grub/partition.h (struct grub_partition): Change the
49267 types of "start", "len" and "offset" to grub_disk_addr_t,
49268 grub_uint64_t and grub_disk_addr_t, respectively.
49269 (grub_partition_get_start): Return grub_disk_addr_t.
49270 (grub_partition_get_len): Return grub_uint64_t.
49271
49272 * include/grub/misc.h (grub_strtoull): New prototype.
49273 (grub_divmod64): Likewise.
49274
49275 * include/grub/fshelp.h (grub_fshelp_read_file): Change the types
49276 of SECTOR, LEN and FILESIZE to grub_disk_addr_t, grub_size_t and
49277 grub_off_t, respectively.
49278 All callers and references changed.
49279
49280 * include/grub/fs.h (struct grub_fs): Change the type of LEN to
49281 grub_size_t in "read".
49282 All callers and references changed.
49283
49284 * include/grub/file.h (struct grub_file): Change the types of
49285 "offset" and "size" to grub_off_t and grub_off_t,
49286 respectively. Change the type of SECTOR to grub_disk_addr_t in
49287 "read_hook".
49288 (grub_file_read): Change the type of LEN to grub_size_t.
49289 (grub_file_seek): Return grub_off_t. Change the type of OFFSET to
49290 grub_off_t.
49291 (grub_file_size): Return grub_off_t.
49292 (grub_file_tell): Likewise.
49293 All callers and references changed.
49294
49295 * include/grub/disk.h (struct grub_disk_dev): Change the types of
49296 SECTOR and SIZE to grub_disk_addr_t and grub_size_t in "read" and
49297 "write".
49298 (struct grub_disk): Change the type of "total_sectors" to
49299 grub_uint64_t. Change the type of SECTOR to grub_disk_addr_t in
49300 "read_hook".
49301 (grub_disk_read): Change the types of SECTOR, OFFSET and SIZE to
49302 grub_disk_addr_t, grub_off_t and grub_size_t, respectively.
49303 (grub_disk_write): Likewise.
49304 All callers and references changed.
49305
49306 * fs/iso9660.c (grub_iso9660_susp_iterate): Cast parameters to
49307 char * for grub_strncmp to silence gcc.
49308 (grub_iso9660_mount): Likewise.
49309 (grub_iso9660_mount): Likewise.
49310 (grub_iso9660_read_symlink): Likewise. Also, remove the nonsense
49311 return statement.
49312 (grub_iso9660_iterate_dir): Likewise.
49313 (grub_iso9660_label): Cast DATA->VOLDESC.VOLNAME to char *.
49314
49315 * fs/hfs.c (grub_hfs_read_file): Change the types of SECTOR and
49316 LEN to grub_disk_addr_t and grub_size_t, respectively.
49317
49318 * fs/hfsplus.c (grub_hfsplus_read_file): Likewise.
49319
49320 * fs/jfs.c (grub_jfs_read_file): Likewise.
49321
49322 * fs/minix.c (grub_jfs_read_file): Likewise.
49323
49324 * fs/sfs.c (grub_jfs_read_file): Likewise.
49325
49326 * fs/ufs.c (grub_jfs_read_file): Likewise.
49327
49328 * fs/xfs.c (grub_jfs_read_file): Likewise.
49329
49330 * fs/fat.c (grub_fat_read_data): Change the types of SECTOR, LEN
49331 and SIZE to grub_disk_addr_t, grub_size_t and grub_size_t,
49332 respectively.
49333
49334 * fs/ext2.c (grub_ext2_read_block): When an error happens, set
49335 BLKNR to -1 instead of returning GRUB_ERRNO.
49336 (grub_ext2_read_file): Change the types of SECTOR and
49337 LEN to grub_disk_addr_t and grub_size_t, respectively.
49338
49339 * fs/affs.c (grub_affs_read_file): Change the types of SECTOR and
49340 LEN to grub_disk_addr_t and grub_size_t, respectively.
49341
49342 * font/manager.c (grub_font_get_glyph): Cast BITMAP to char * for
49343 grub_file_read.
49344
49345 * disk/ieee1275/ofdisk.c (grub_ofdisk_read): Fix the format
49346 string. Do not cast SECTOR explicitly.
49347
49348 * disk/i386/pc/biosdisk.c (grub_biosdisk_open): Change the type of
49349 TOTAL_SECTORS to grub_uint64_t. Do not mask DRP->TOTAL_SECTORS.
49350 (grub_biosdisk_rw): Change the types of SECTOR and SIZE to
49351 grub_disk_addr_t and grub_size_t, respectively. If the sector is
49352 over 2TB and LBA mode is not supported, raise an error.
49353 (get_safe_sectors): New function.
49354 (grub_biosdisk_read): Use get_safe_sectors.
49355 (grub_biosdisk_write): Likewise.
49356
49357 * disk/efi/efidisk.c (grub_efidisk_read): Fix the format string.
49358 (grub_efidisk_write): Likewise.
49359
49360 * disk/loopback.c (delete_loopback): Cosmetic changes.
49361 (grub_cmd_loopback): Likewise. Also, test NEWDEV->FILENAME
49362 correctly.
49363 (grub_loopback_open): Likewise.
49364 (grub_loopback_read): Likewise. Also, change the type of POS to
49365 grub_off_t, and fix the usage of grub_memset.
49366
49367 * commands/i386/pc/play.c: Include grub/machine/time.h.
49368
49369 * commands/ls.c (grub_ls_list_files): Use "llu" instead of "d" to
49370 print FILE->SIZE.
49371
49372 * commands/configfile.c: Include grub/env.h.
49373
49374 * commands/cmp.c (grub_cmd_cmp): Do not use ERR, but use
49375 GRUB_ERRNO directly instead. Change the type of POS to
49376 grub_off_t. Follow the coding standard.
49377
49378 * commands/blocklist.c: Include grub/partition.h.
49379 (grub_cmd_blocklist): Return an error if the underlying device is
49380 not a disk. Take the starting sector of a partition into account,
49381 if a partition is used.
49382
49383 * boot/i386/pc/diskboot.S (bootloop): Adapted to the new offset of
49384 a length field.
49385 (lba_mode): Support 64-bit addresses.
49386 (chs_mode): Likewise.
49387 (copy_buffer): Adapted to the new offsets of a length field and a
49388 segment field.
49389 (blocklist_default_start): Allocate 64-bit space.
49390
49391 * boot/i386/pc/boot.S (force_lba): Removed.
49392 (boot_drive): Moved to under KERNEL_SECTOR.
49393 (kernel_sector): Moved to under KERNEL_SEGMENT. Allocate 64-bit
49394 space.
49395 (real_start): Set %si earlier. Remove code for FORCE_LBA, since it
49396 is useless.
49397 (lba_mode): Refactored to support a 64-bit address. More size
49398 optimization.
49399 (setup_sectors): Likewise.
49400
49401 2006-06-04 Yoshinori K. Okuji <okuji@enbug.org>
49402
49403 * DISTLIST: Added include/grub/i386/linux.h. Removed
49404 include/grub/i386/pc/linux.h
49405
49406 * configure.ac (AC_INIT): Bumped to 1.94.
49407
49408 * config.guess: Updated from gnulib.
49409 * config.sub: Likewise.
49410 * install-sh: Likewise.
49411 * mkinstalldirs: Likewise.
49412
49413 2006-06-02 Yoshinori K. Okuji <okuji@enbug.org>
49414
49415 * conf/common.rmk (grub_modules_init.lst): Depended on
49416 grub_emu_SOURCES, excluding grub_emu_init.c, instead of
49417 MODSRCFILES.
49418
49419 * genmk.rb (PModule::rule): Reverted the previous change.
49420
49421 2006-06-02 Yoshinori K. Okuji <okuji@enbug.org>
49422
49423 * conf/common.rmk (grub_modules_init.lst): Depends on
49424 $(MODSRCFILES). Grep only the files in $(MODSRCFILES). Make sure
49425 that the target does not exist before producing.
49426 (grub_modules_init.h): Remove the target before generating.
49427 (grub_emu_init.c): Likewise.
49428
49429 * genmk.rb (PModule::rule): Add source files into MODSRCFILES.
49430
49431 2006-05-31 Jeroen Dekkers <jeroen@dekkers.cx>
49432
49433 * configure.ac: Don't set host_m32 for x86_64. Also reset LIBS
49434 for the target-specific tests. Make sure that we also have the
49435 up-to-date target variables for those tests.
49436
49437 2006-05-31 Yoshinori K. Okuji <okuji@enbug.org>
49438
49439 * genmk.rb (Image::rule): Prefix CFLAGS or ASFLAGS with TARGET_.
49440 (PModule::rule): Likewise.
49441
49442 2006-05-31 Yoshinori K. Okuji <okuji@enbug.org>
49443
49444 * genmk.rb (Image::rule): Set FLAG to CFLAGS or ASFLAGS instead of
49445 TARGET_CFLAGS or TARGET_ASFLAGS. There is no reason why
49446 target-specific flags should be prefixed.
49447 (PModule::rule): Likewise.
49448
49449 2006-05-30 Yoshinori K. Okuji <okuji@enbug.org>
49450
49451 * configure.ac (CMP): Check if cmp is available explicitly.
49452
49453 2006-05-29 Yoshinori K. Okuji <okuji@enbug.org>
49454
49455 * util/powerpc/ieee1275/grub-install.in (host_cpu): Removed.
49456 (target_cpu): New variable.
49457 (pkglibdir): Use target_cpu instead of host_cpu.
49458
49459 * util/i386/pc/grub-install.in (host_cpu): Removed.
49460 (target_cpu): New variable.
49461 (pkglibdir): Use target_cpu instead of host_cpu.
49462
49463 * util/genmoddep.c: Removed.
49464
49465 * kern/efi/mm.c (filter_memory_map): Use GRUB_CPU_SIZEOF_VOID_P
49466 instead of GRUB_HOST_SIZEOF_VOID_P.
49467 * kern/dl.c: Likewise.
49468
49469 * include/grub/i386/types.h (GRUB_HOST_SIZEOF_VOID_P): Renamed to
49470 ...
49471 (GRUB_TARGET_SIZEOF_VOID_P): ... this.
49472 (GRUB_HOST_SIZEOF_LONG): Renamed to ...
49473 (GRUB_TARGET_SIZEOF_LONG): ... this.
49474 (GRUB_HOST_WORDS_BIGENDIAN): Renamed to ...
49475 (GRUB_TARGET_WORDS_BIGENDIAN): ... this.
49476 * include/grub/powerpc/types.h (GRUB_HOST_SIZEOF_VOID_P): Renamed
49477 to ...
49478 (GRUB_TARGET_SIZEOF_VOID_P): ... this.
49479 (GRUB_HOST_SIZEOF_LONG): Renamed to ...
49480 (GRUB_TARGET_SIZEOF_LONG): ... this.
49481 (GRUB_HOST_WORDS_BIGENDIAN): Renamed to ...
49482 (GRUB_TARGET_WORDS_BIGENDIAN): ... this.
49483 * include/grub/sparc64/types.h (GRUB_HOST_SIZEOF_VOID_P): Renamed
49484 to ...
49485 (GRUB_TARGET_SIZEOF_VOID_P): ... this.
49486 (GRUB_HOST_SIZEOF_LONG): Renamed to ...
49487 (GRUB_TARGET_SIZEOF_LONG): ... this.
49488 (GRUB_HOST_WORDS_BIGENDIAN): Renamed to ...
49489 (GRUB_TARGET_WORDS_BIGENDIAN): ... this.
49490
49491 * include/grub/types.h [!GRUB_UTIL] (GRUB_CPU_SIZEOF_VOID_P): Use
49492 GRUB_TARGET_SIZEOF_VOID_P instead of GRUB_HOST_SIZEOF_VOID_P.
49493 [!GRUB_UTIL] (GRUB_CPU_SIZEOF_LONG): Use GRUB_TARGET_SIZEOF_LONG
49494 instead of GRUB_HOST_SIZEOF_LONG.
49495 [!GRUB_UTIL]: Refer to GRUB_TARGET_WORDS_BIGENDIAN instead of
49496 GRUB_HOST_WORDS_BIGENDIAN to define or undefine
49497 GRUB_CPU_WORDS_BIGENDIAN.
49498 Refer to SIZEOF_VOID_P instead of GRUB_HOST_SIZEOF_VOID_P to
49499 define grub_host_addr_t, grub_host_off_t, grub_host_size_t and
49500 grub_host_ssize_t.
49501
49502 * conf/i386-efi.rmk (noinst_UTILITIES): Removed.
49503 (genmoddep_SOURCES): Likewise.
49504 * conf/i386-pc.rmk (noinst_UTILITIES): Likewise.
49505 (genmoddep_SOURCES): Likewise.
49506 * conf/conf/powerpc-ieee1275.rmk (noinst_UTILITIES): Likewise.
49507 (genmoddep_SOURCES): Likewise.
49508 * conf/conf/conf/sparc64-ieee1275.rmk (noinst_UTILITIES):
49509 Likewise.
49510 (genmoddep_SOURCES): Likewise.
49511
49512 * genmoddep.awk: New file.
49513
49514 * genmk.rb (Image::rule): Use TARGET_CC, TARGET_CPPFLAGS,
49515 TARGET_CFLAGS, TARGET_ASFLAGS and TARGET_LDFLAGS instead of CC,
49516 CPPFLAGS, CFLAGS, ASFLAGS and LDFLAGS, respectively.
49517 (PModule::rule): Likewise.
49518 (Program::rule): Likewise.
49519 (Utility::rule): Use CC, CPPFLAGS, CFLAGS and LDFLAGS instead of
49520 BUILD_CC, BUILD_CPPFLAGS, BUILD_CFLAGS and BUILD_LDFLAGS,
49521 respectively.
49522
49523 * configure.ac: Rewritten intensively to use host and target
49524 instead of build and host, respectively.
49525
49526 * Makefile.in (pkglibdir): Use target_cpu instead of host_cpu.
49527 (host_cpu): Removed.
49528 (target_cpu): New variable.
49529 (CPPFLAGS): Added @CPPFLAGS@ and -DGRUB_LIBDIR=\"$(pkglibdir)\".
49530 (BUILD_CC): Removed.
49531 (BUILD_CFLAGS): Likewise.
49532 (BUILD_CPPFLAGS): Likewise.
49533 (TARGET_CC): New variable.
49534 (TARGET_CFLAGS): Likewise.
49535 (TARGET_CPPFLAGS): Likewise.
49536 (TARGET_LDFLAGS): Likewise.
49537 (AWK): Likewise.
49538 (include): Use target_cpu instead of host_cpu.
49539 (moddep.lst:): Use genmoddep.awk instead of genmoddep.
49540
49541 * DISTLIST: Added genmoddep.awk. Removed util/genmoddep.c.
49542
49543 2006-05-29 Vesa Jaaskelainen <chaac@nic.fi>
49544
49545 * include/grub/script.h (grub_script_cmdif): Renamed field 'bool' to
49546 'exec_to_evaluate'. Renamed field 'true' to 'exec_on_true'. Renamed
49547 field 'false' to 'exec_on_false'.
49548 (grub_script_create_cmdif): Renamed argument names to reflect above
49549 changes.
49550
49551 * normal/execute.c (grub_script_execute_cmdif): Likewise.
49552
49553 * normal/script.c (grub_script_create_cmdif): Likewise.
49554
49555 2006-05-28 Yoshinori K. Okuji <okuji@enbug.org>
49556
49557 * fs/hfsplus.c (grub_hfsplus_btree_recoffset): Moved to near the
49558 top.
49559 (grub_hfsplus_btree_recptr): Likewise.
49560 (grub_hfsplus_find_block): Do not take RETRY any longer. Use
49561 FILEBLOCK both to pass a block number and store next block
49562 number.
49563 (grub_hfsplus_read_block): Rewritten heavily to support an extent
49564 overflow file correctly. Specify errors appropriately, because
49565 fshelp expects that GRUB_ERRNO is set when fails. Reuse
49566 grub_hfsplus_btree_recptr to get the pointer to a found key.
49567 (grub_hfsplus_btree_search): Return 1 instead of 0 when no match
49568 is found.
49569
49570 * conf/i386-efi.rmk (pkgdata_MODULES): Added _linux.mod and
49571 linux.mod.
49572 (_linux_mod_SOURCES): New variable.
49573 (_linux_mod_CFLAGS): Likewise.
49574 (_linux_mod_LDFLAGS): Likewise.
49575 (linux_mod_SOURCES): Likewise.
49576 (linux_mod_CFLAGS): Likewise.
49577 (linux_mod_LDFLAGS): Likewise.
49578
49579 * DISTLIST: Added loader/i386/efi/linux.c,
49580 loader/i386/efi/linux_normal.c and
49581 include/grub/i386/efi/loader.h.
49582
49583 * loader/i386/efi/linux.c: New file.
49584 * loader/i386/efi/linux_normal.c: Likewise.
49585 * include/grub/i386/efi/loader.h: Likewise.
49586
49587 2006-05-27 Yoshinori K. Okuji <okuji@enbug.org>
49588
49589 * commands/blocklist.c: New file.
49590
49591 * DISTLIST: Added commands/blocklist.c.
49592
49593 * term/efi/console.c (grub_console_highlight_color): Use a lighter
49594 color for the background, and a darker color for the foreground.
49595 (grub_console_checkkey): Return READ_KEY.
49596 (grub_console_cls): Set the background to
49597 GRUB_EFI_BACKGROUND_BLACK temporarily to clean out the screen.
49598
49599 * kern/efi/efi.c (grub_efi_exit_boot_services): New function.
49600
49601 * include/grub/i386/linux.h (struct linux_kernel_params): Fixed
49602 the size of "padding5", "hd0_drive_info" and "hd1_drive_info".
49603
49604 * include/grub/efi/efi.h (grub_efi_exit_boot_services): New
49605 prototype.
49606
49607 * include/grub/efi/api.h (GRUB_EFI_TEXT_ATTR): Do not shift
49608 BG. The spec is wrong again.
49609
49610 * include/grub/normal.h [GRUB_UTIL] (grub_blocklist_init): New
49611 prototype.
49612 [GRUB_UTIL] (grub_blocklist_fini): Likewise.
49613
49614 * conf/i386-pc.rmk (grub_emu_SOURCES): Added
49615 commands/blocklist.c.
49616 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
49617
49618 * conf/common.rmk (pkgdata_MODULES): Added blocklist.mod.
49619 (blocklist_mod_SOURCES): New variable.
49620 (blocklist_mod_CFLAGS): Likewise.
49621 (blocklist_mod_LDFLAGS): Likewise.
49622
49623 2006-05-20 Yoshinori K. Okuji <okuji@enbug.org>
49624
49625 * boot/i386/pc/boot.S (real_start): Set %si earlier to eliminate
49626 duplication.
49627 (lba_mode): Use %eax more intensively to reduce the code size.
49628
49629 2006-05-20 Marco Gerards <marco@gnu.org>
49630
49631 * normal/lexer.c (grub_script_yylex): Don't filter out newlines.
49632
49633 * normal/parser.y (commandblock): Defined as <cmd>. A subroutine
49634 for `menuentry'.
49635 (script): Accept leading newlines.
49636 (newlines): New rule to describe 0 or more newlines.
49637 (commands): Accept `command' with trailing newline. Fixed the
49638 order in which arguments were passed to `grub_script_add_cmd'.
49639 Accept commands separated by newlines.
49640 (function): Changed to accept newlines.
49641 (menuentry) Rewritten.
49642
49643 * normal/script.c (grub_script_create_cmdmenu): Add new entries in
49644 front of the list, instead of to the end.
49645
49646 2006-05-19 Yoshinori K. Okuji <okuji@enbug.org>
49647
49648 * util/i386/pc/grub-install.in (bindir): New variable.
49649 (grub_mkimage): Use BINDIR instead of SBINDIR. Reported by Lee
49650 Shaver <lbgwjl@gmail.com>.
49651
49652 2006-05-14 Yoshinori K. Okuji <okuji@enbug.org>
49653
49654 * kern/i386/pc/startup.S: Include grub/cpu/linux.h instead of
49655 grub/machine/linux.h
49656 * loader/i386/pc/linux.c: Likewise.
49657
49658 * include/grub/i386/pc/linux.h: Moved to ...
49659 * include/grub/i386/linux.h: ... here.
49660
49661 * include/grub/i386/linux.h (struct linux_kernel_params): New
49662 struct.
49663
49664 2006-05-09 Vesa Jaaskelainen <chaac@nic.fi>
49665
49666 * video/i386/pc/vbe.c (grub_video_vbe_fill_rect): Corrected bounds
49667 checking.
49668 (grub_video_vbe_blit_glyph): Likewise.
49669 (grub_video_vbe_blit_bitmap): Likewise.
49670 (grub_video_vbe_blit_render_target): Likewise.
49671
49672 2006-05-09 Yoshinori K. Okuji <okuji@enbug.org>
49673
49674 * configure.ac (--with-platform): Properly quote the square
49675 brackets.
49676
49677 2006-05-08 Marco Gerards <marco@gnu.org>
49678
49679 * conf/powerpc-ieee1275.rmk (grubof_HEADERS): Renamed from
49680 this...
49681 (kernel_elf_HEADERS): ...to this. Updated all users.
49682 (grubof_symlist.c): Renamed from this...
49683 (kernel_elf_symlist.c): ...to this. Updated all users.
49684 (pkgdata_PROGRAMS): Changed `grubof' to `kernel.elf'.
49685 (grubof_SOURCES): Renamed from this...
49686 (kernel_elf_SOURCES): ...to this.
49687 (grubof_HEADERS): Renamed from this...
49688 (kernel_elf_HEADERS): ...to this.
49689 (grubof_CFLAGS): Renamed from this...
49690 (kernel_elf_CFLAGS): ...to this.
49691 (grubof_ASFLAGS): Renamed from this...
49692 (kernel_elf_ASFLAGS): ...to this.
49693 (grubof_LDFLAGS): Renamed from this...
49694 (kernel_elf_LDFLAGS): ...to this.
49695
49696 * conf/sparc64-ieee1275.rmk (grubof_HEADERS): Renamed from
49697 this...
49698 (kernel_elf_HEADERS): ...to this. Updated all users.
49699 (grubof_symlist.c): Renamed from this...
49700 (kernel_elf_symlist.c): ...to this. Updated all users.
49701 (pkgdata_PROGRAMS): Changed `grubof' to `kernel.elf'.
49702 (grubof_SOURCES): Renamed from this...
49703 (kernel_elf_SOURCES): ...to this.
49704 (grubof_HEADERS): Renamed from this...
49705 (kernel_elf_HEADERS): ...to this.
49706 (grubof_CFLAGS): Renamed from this...
49707 (kernel_elf_CFLAGS): ...to this.
49708 (grubof_ASFLAGS): Renamed from this...
49709 (kernel_elf_ASFLAGS): ...to this.
49710 (grubof_LDFLAGS): Renamed from this...
49711 (kernel_elf_LDFLAGS): ...to this.
49712
49713 * util/powerpc/ieee1275/grub-mkimage.c (add_segments): Use
49714 `kernel.elf' instead of `grubof'.
49715
49716 2006-05-08 Yoshinori K. Okuji <okuji@enbug.org>
49717
49718 Add --with-platform to configure. Use pkglibdir instead of
49719 pkgdatadir. This is reported by Roger Leigh.
49720
49721 * util/powerpc/ieee1275/grub-install.in (datadir): Removed.
49722 (host_vendor): Likewise.
49723 (host_os): Likewise.
49724 (pkgdatadir): Likewise.
49725 (platform): New variable.
49726 (pkglibdir): Likewise.
49727 Use PKGLIBDIR instead of PKGDATADIR.
49728
49729 * util/i386/pc/grub-install.in (datadir): Removed.
49730 (host_vendor): Likewise.
49731 (host_os): Likewise.
49732 (pkgdatadir): Likewise.
49733 (platform): New variable.
49734 (pkglibdir): Likewise.
49735 Use PKGLIBDIR instead of PKGDATADIR.
49736
49737 * util/powerpc/ieee1275/grub-mkimage.c (usage): Use GRUB_LIBDIR
49738 instead of GRUB_DATADIR.
49739 (main): Likewise.
49740 * util/i386/pc/grub-mkimage.c (usage): Likewise.
49741 (main): Likewise.
49742 * util/i386/efi/grub-mkimage.c (usage): Likewise.
49743 (main): Likewise.
49744
49745 * configure.ac (--with-platform): New option.
49746 Use PLATFORM instead of HOST_VENDOR to specify a platform.
49747
49748 * Makefile.in: Include a makefile based on PLATFORM instead of
49749 HOST_VENDOR.
49750 (pkgdatadir): Not appended by the machine type.
49751 (pkglibdir): Appended by the machine type.
49752 (host_vendor): Removed.
49753 (platform): New variable.
49754 (BUILD_CPPFLAGS): Specify GRUB_LIBDIR instead of GRUB_DATADIR.
49755 (install-local): Use PKGLIBDIR instead of PKGDATADIR.
49756 (uninstall): Likewise.
49757
49758 2006-05-07 Yoshinori K. Okuji <okuji@enbug.org>
49759
49760 Use the environment context in the menu. Remove the commands
49761 "default" and "timeout", and use variables instead.
49762
49763 * normal/menu.c: Include grub/env.h.
49764 (print_entry): Cast TITLE to silence gcc.
49765 (get_timeout): New function.
49766 (set_timeout): Likewise.
49767 (get_entry_number): Likewise.
49768 (run_menu): Use a default entry, a fallback entry and a timeout
49769 in the environment variables "default", "fallback" and
49770 "timeout". Also, tweak the default entry if it is not within the
49771 current menu entries.
49772 (grub_menu_run): Use a fallback entry in the environment variable
49773 "fallback".
49774
49775 * normal/main.c (read_config_file): Do not initialize
49776 NEWMENU->DEFAULT_ENTRY, NEWMENU->FALLBACK_ENTRY or
49777 NEWMENU->TIMEOUT.
49778 (grub_normal_execute): Use a data slot to store the menu.
49779
49780 * include/grub/normal.h (struct grub_menu): Removed default_entry,
49781 fallback_entry and timeout.
49782 (struct grub_menu_list): Removed.
49783 (grub_menu_list_t): Likewise.
49784 (struct grub_context): Likewise.
49785 (grub_context_t): Likewise.
49786 (grub_context_get): Likewise.
49787 (grub_context_get_current_menu): Likewise.
49788 (grub_context_push_menu): Likewise.
49789 (grub_context_pop_menu): Likewise.
49790 (grub_default_init): Likewise.
49791 (grub_default_fini): Likewise.
49792 (grub_timeout_init): Likewise.
49793 (grub_timeout_fini): Likewise.
49794
49795 * conf/sparc64-ieee1275.rmk (pkgdata_MODULES): Removed default.mod
49796 and timeout.mod.
49797 (normal_mod_SOURCES): Removed normal/context.c.
49798
49799 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Removed
49800 commands/default.c, commands/timeout.c and normal/context.c.
49801 (normal_mod_SOURCES): Removed normal/context.c.
49802
49803 * conf/i386-pc.rmk (grub_emu_SOURCES): Removed commands/default.c,
49804 commands/timeout.c and normal/context.c.
49805 (normal_mod_SOURCES): Removed normal/context.c.
49806
49807 * conf/i386-efi.rmk (grub_emu_SOURCES): Removed
49808 commands/default.c, commands/timeout.c and normal/context.c.
49809 (normal_mod_SOURCES): Removed normal/context.c.
49810
49811 * conf/common.rmk (pkgdata_MODULES): Removed default.mod and
49812 timeout.mod.
49813 (default_mod_SOURCES): Removed.
49814 (default_mod_CFLAGS): Likewise.
49815 (default_mod_LDFLAGS): Likewise.
49816 (timeout_mod_SOURCES): Removed.
49817 (timeout_mod_CFLAGS): Likewise.
49818 (timeout_mod_LDFLAGS): Likewise.
49819
49820 * DISTLIST: Removed commands/default.c, commands/timeout.c and
49821 normal/context.c.
49822
49823 * commands/default.c: Removed.
49824 * commands/timeout.c: Likewise.
49825 * normal/context.c: Likewise.
49826
49827 2006-05-07 Vesa Jaaskelainen <chaac@nic.fi>
49828
49829 * kern/i386/pc/startup.S (grub_exit): Added missing .code32 tag.
49830
49831 2006-05-02 Yoshinori K. Okuji <okuji@enbug.org>
49832
49833 * kern/env.c (struct grub_env_context): Removed "sorted". Renamed
49834 "next" to "prev" for readability.
49835 (struct grub_env_sorted_var): New struct.
49836 (grub_env_context): Renamed to ...
49837 (initial_context): ... this.
49838 (grub_env_var_context): Renamed to ...
49839 (current_context): ... this.
49840 (grub_env_find): Look only at CURRENT_CONTEXT.
49841 (grub_env_context_open): Rewritten to copy exported variables from
49842 previous context.
49843 (grub_env_context_close): Rewritten according to the new
49844 scheme. Also, add an assertion to prevent the initial context from
49845 removed.
49846 (grub_env_insert): Removed the code for the sorted list.
49847 (grub_env_remove): Likewise.
49848 (grub_env_export): Simply mark the variable with
49849 GRUB_ENV_VAR_GLOBAL.
49850 (grub_env_set): A cosmetic change for naming consistency.
49851 (grub_env_get): Likewise.
49852 (grub_env_unset): Likewise.
49853 (grub_env_iterate): Rewritten to sort variables within this
49854 function.
49855 (grub_register_variable_hook): Fixed for naming consistency. Call
49856 grub_env_find again, only if NAME is not found at the first time.
49857 (mangle_data_slot_name): New function.
49858 (grub_env_set_data_slot): Likewise.
49859 (grub_env_get_data_slot): Likewise.
49860 (grub_env_unset_data_slot): Likewise.
49861
49862 * include/grub/env.h (grub_env_var_type): New enum.
49863 (GRUB_ENV_VAR_LOCAL): New constant.
49864 (GRUB_ENV_VAR_GLOBAL): Likewise.
49865 (GRUB_ENV_VAR_DATA): Likewise.
49866 (struct grub_env_var): Removed "sort_next" and "sort_prevp". Added
49867 "type".
49868 (grub_env_set): Replace VAR with NAME for consistency.
49869 (grub_register_variable_hook): Likewise.
49870 (grub_env_export): Specify the name of the argument.
49871 (grub_env_set_data_slot): New prototype.
49872 (grub_env_get_data_slot): Likewise.
49873 (grub_env_unset_data_slot): Likewise.
49874
49875 2006-04-30 Yoshinori K. Okuji <okuji@enbug.org>
49876
49877 Extend the loader so that GRUB can accept a loader which comes
49878 back to GRUB when a loaded image exits. Also, this change adds
49879 support for a chainloader on EFI.
49880
49881 * term/efi/console.c: Include grub/misc.h.
49882 (grub_console_checkkey): Display a scan code on the top for
49883 debugging. This will be removed once the EFI port gets stable.
49884 Correct the scan code mapping.
49885
49886 * kern/efi/mm.c (sort_memory_map): Sort in a descending order to
49887 allocate memory from larger regions, in order to reduce the number
49888 of allocated regions. Otherwise, the MacOSX loader panics.
49889 (filter_memory_map): Avoid less than 1MB for compatibility with
49890 other loaders.
49891 (add_memory_regions): Allocate from the tail of a region, if
49892 possible, to avoid allocating a region near to 1MB, for the MacOSX
49893 loader.
49894
49895 * kern/efi/init.c (grub_efi_set_prefix): Specify
49896 GRUB_EFI_IMAGE_HANDLE to grub_efi_get_loaded_image.
49897
49898 * kern/efi/efi.c (grub_efi_get_loaded_image): Accept a new
49899 argument IMAGE_HANDLE and specify it to get a loaded image.
49900 (grub_arch_modules_addr): Specify GRUB_EFI_IMAGE_HANDLE to
49901 grub_efi_get_loaded_image.
49902 (grub_efi_get_filename): Divide the length by the size of
49903 grub_efi_char16_t.
49904 (grub_efi_get_device_path): New function.
49905 (grub_efi_print_device_path): Print End Device Path nodes. Divide
49906 the length by the size of grub_efi_char16_t for a file path device
49907 path node.
49908
49909 * kern/loader.c (grub_loader_noreturn): New variable.
49910 (grub_loader_set): Accept a new argument NORETURN. Set
49911 GRUB_LOADER_NORETURN to NORETURN.
49912 All callers changed.
49913 (grub_loader_boot): If GRUB_LOADER_NORETURN is false, do not call
49914 grub_machine_fini.
49915
49916 * include/grub/efi/efi.h (grub_efi_get_device_path): New
49917 prototype.
49918 (grub_efi_get_loaded_image): Take an argument to specify an image
49919 handle.
49920
49921 * include/grub/loader.h (grub_loader_set): Added one more argument
49922 NORETURN.
49923
49924 * disk/efi/efidisk.c (make_devices): Use grub_efi_get_device_path
49925 instead of grub_efi_open_protocol.
49926 (grub_efidisk_get_device_name): Likewise.
49927 (grub_efidisk_close): Print a newline.
49928 (grub_efidisk_get_device_handle): Fixed to use
49929 GRUB_EFI_DEVICE_PATH_SUBTYPE instead of
49930 GRUB_EFI_DEVICE_PATH_TYPE.
49931
49932 * disk/efi/efidisk.c (device_path_guid): Moved to ...
49933 * kern/efi/efi.c (device_path_guid): ... here.
49934
49935 * conf/i386-efi.rmk (pkgdata_MODULES): Added _chain.mod and
49936 chain.mod.
49937 (kernel_mod_HEADERS): Added efi/disk.h.
49938 (_chain_mod_SOURCES): New variable.
49939 (_chain_mod_CFLAGS): Likewise.
49940 (_chain_mod_LDFLAGS): Likewise.
49941 (chain_mod_SOURCES): Likewise.
49942 (chain_mod_CFLAGS): Likewise.
49943 (chain_mod_LDFLAGS): Likewise.
49944
49945 * DISTLIST: Added include/grub/efi/chainloader.h,
49946 loader/efi/chainloader.c and loader/efi/chainloader_normal.c.
49947
49948 * include/grub/efi/chainloader.h: New file.
49949 * loader/efi/chainloader.c: Likewise.
49950 * loader/efi/chainloader_normal.c: Likewise.
49951
49952 2006-04-30 Marco Gerards <marco@gnu.org>
49953
49954 * commands/configfile.c (grub_cmd_source): New function.
49955 (GRUB_MOD_INIT): Register the commands `source' and `.'.
49956 (GRUB_MOD_FINI): De-register the commands `source' and `.'.
49957
49958 2006-04-30 Marco Gerards <marco@gnu.org>
49959
49960 * normal/execute.c (grub_script_execute_cmd): Change the return
49961 type to `grub_err_t'. Correctly return the error.
49962 (grub_script_execute_cmdline): In case a command line is not a
49963 command or a function, try to interpret it as an assignment.
49964
49965 2006-04-30 Yoshinori K. Okuji <okuji@enbug.org>
49966
49967 * fs/hfsplus.c (grub_hfsplus_read_block): Fixed a memory leak.
49968 (grub_hfsplus_iterate_dir): Reordered to skip unknown nodes. Also,
49969 skip a node whose name is obviously invalid as UTF-16,
49970 i.e. contains a NUL character. Stop the iteration when the last
49971 directory entry is found. Instead of using the return value of
49972 grub_hfsplus_btree_iterate_node, store the value in RET and use
49973 it, because the iterator can be stopped by the last directory
49974 entry.
49975
49976 2006-04-30 Marco Gerards <marco@gnu.org>
49977
49978 * include/grub/env.h (grub_env_export): New prototype. Reported
49979 by Jan C. Kleinsorge <jan.kleinsorge@udo.edu>.
49980
49981 2006-04-30 Marco Gerards <marco@gnu.org>
49982
49983 * fs/hfsplus.c (grub_hfsplus_iterate_dir): Correctly calculate the
49984 size of the extents in a catalog file record.
49985
49986 2006-04-29 Marco Gerards <marco@gnu.org>
49987
49988 * commands/configfile.c (grub_cmd_configfile): Execute the
49989 configfile within its own context.
49990
49991 * include/grub/env.h (grub_env_context_open): New prototype.
49992 (grub_env_context_close): Likewise.
49993
49994 * kern/env.c (grub_env): Removed.
49995 (grub_env_sorted): Likewise.
49996 (grub_env_context): New variable.
49997 (grub_env_var_context): Likewise.
49998 (grub_env_find): Search both the active context and the global
49999 context.
50000 (grub_env_context_open): New function.
50001 (grub_env_context_close): Likewise.
50002 (grub_env_insert): Likewise.
50003 (grub_env_remove): Likewise.
50004 (grub_env_export): Likewise.
50005 (grub_env_set): Changed to use helper functions to avoid code
50006 duplication.
50007 (grub_env_iterate): Rewritten so both the current context and the
50008 global context are being used.
50009
50010 * normal/command.c (export_command): New function.
50011 (grub_command_init): Register the `export' function.
50012
50013 2006-04-26 Yoshinori K. Okuji <okuji@enbug.org>
50014
50015 * util/i386/pc/grub-mkimage.c (compress_kernel): Cast arguments
50016 explicitly to suppress gcc's warnings.
50017 * fs/fat.c (grub_fat_find_dir): Likewise.
50018 (grub_fat_label): Likewise.
50019 * fs/xfs.c (grub_xfs_read_inode): Likewise.
50020 (grub_xfs_mount): Likewise.
50021 (grub_xfs_label): Likewise.
50022 * fs/affs.c (grub_affs_mount): Likewise.
50023 (grub_affs_label): Likewise.
50024 (grub_affs_iterate_dir): Likewise.
50025 * fs/sfs.c (grub_sfs_mount): Likewise.
50026 (grub_sfs_iterate_dir): Likewise.
50027 * fs/ufs.c (grub_ufs_lookup_symlink): Likewise.
50028 * fs/hfs.c (grub_hfs_mount): Likewise.
50029 (grub_hfs_cmp_catkeys): Likewise.
50030 (grub_hfs_find_dir): Likewise.
50031 (grub_hfs_dir): Likewise.
50032 (grub_hfs_label): Likewise.
50033 * fs/jfs.c (grub_jfs_mount): Likewise.
50034 (grub_jfs_opendir): Likewise.
50035 (grub_jfs_getent): Likewise.
50036 (grub_jfs_lookup_symlink): Likewise.
50037 (grub_jfs_label): Likewise.
50038 * fs/hfsplus.c (grub_hfsplus_cmp_catkey): Likewise.
50039 (grub_hfsplus_iterate_dir): Likewise.
50040 (grub_hfsplus_btree_iterate_node): Made static.
50041
50042 * util/grub-emu.c (prefix): New variable.
50043 (grub_machine_set_prefix): New function.
50044 (main): Do not set the environment variable "prefix" here. Only
50045 set PREFIX, which is used later by grub_machine_set_prefix.
50046
50047 * include/grub/video.h: Do not include grub/symbol.h.
50048 (grub_video_register): Not exported. This symbol is not defined in
50049 the kernel.
50050 (grub_video_unregister): Likewise.
50051 (grub_video_iterate): Likewise.
50052 (grub_video_setup): Likewise.
50053 (grub_video_restore): Likewise.
50054 (grub_video_get_info): Likewise.
50055 (grub_video_get_blit_format): Likewise.
50056 (grub_video_set_palette): Likewise.
50057 (grub_video_get_palette): Likewise.
50058 (grub_video_set_viewport): Likewise.
50059 (grub_video_get_viewport): Likewise.
50060 (grub_video_map_color): Likewise.
50061 (grub_video_map_rgb): Likewise.
50062 (grub_video_map_rgba): Likewise.
50063 (grub_video_fill_rect): Likewise.
50064 (grub_video_blit_glyph): Likewise.
50065 (grub_video_blit_bitmap): Likewise.
50066 (grub_video_blit_render_target): Likewise.
50067 (grub_video_scroll): Likewise.
50068 (grub_video_swap_buffers): Likewise.
50069 (grub_video_create_render_target): Likewise.
50070 (grub_video_delete_render_target): Likewise.
50071 (grub_video_set_active_render_target): Likewise.
50072
50073 * include/grub/symbol.h [GRUB_SYMBOL_GENERATOR] (EXPORT_FUNC):
50074 Undefined.
50075 [GRUB_SYMBOL_GENERATOR] (EXPORT_VAR): Likewise.
50076
50077 * conf/sparc64-ieee1275.rmk (grubof_symlist.c): Depended on
50078 config.h. Use gensymlist.sh instead of $(srcdir)/gensymlist.sh.
50079 (kernel_syms.lst): Depended on config.h. Use genkernsyms.sh
50080 instead of $(srcdir)/genkernsyms.sh.
50081
50082 * conf/powerpc-ieee1275.rmk (grubof_symlist.c): Depended on
50083 config.h. Use gensymlist.sh instead of $(srcdir)/gensymlist.sh.
50084 (kernel_syms.lst): Depended on config.h. Use genkernsyms.sh
50085 instead of $(srcdir)/genkernsyms.sh.
50086
50087 * conf/i386-pc.rmk (symlist.c): Depended on config.h. Use
50088 gensymlist.sh instead of $(srcdir)/gensymlist.sh.
50089 (kernel_syms.lst): Depended on config.h. Use genkernsyms.sh
50090 instead of $(srcdir)/genkernsyms.sh.
50091
50092 * conf/i386-efi.rmk (symlist.c): Depended on config.h. Use
50093 gensymlist.sh instead of $(srcdir)/gensymlist.sh.
50094 (kernel_syms.lst): Depended on config.h. Use genkernsyms.sh
50095 instead of $(srcdir)/genkernsyms.sh.
50096
50097 * configure.ac (AC_CONFIG_FILES): Added gensymlist.sh and
50098 genkernsyms.sh.
50099
50100 * Makefile.in (DISTCLEANFILES): Added gensymlist.sh and
50101 genkernsyms.sh.
50102 (gensymlist.sh): New target.
50103 (genkernsyms.sh): Likewise.
50104
50105 * DISTLIST: Removed genkernsyms.sh and gensymlist.sh. Added
50106 genkernsyms.sh.in and gensymlist.sh.in.
50107
50108 * genkernsyms.sh: Removed.
50109 * gensymlist.sh: Likewise.
50110
50111 * genkernsyms.sh.in: New file.
50112 * gensymlist.sh.in: Likewise.
50113
50114 2006-04-25 Hollis Blanchard <hollis@penguinppc.org>
50115
50116 * kern/powerpc/ieee1275/init.c (grub_machine_set_prefix): Do not
50117 clobber "prefix", since we may have already set it manually.
50118
50119 2006-04-25 Hollis Blanchard <hollis@penguinppc.org>
50120
50121 * kern/misc.c (abort): New alias for grub_abort.
50122
50123 2006-04-25 Yoshinori K. Okuji <okuji@enbug.org>
50124
50125 A new machine-specific function "grub_machine_set_prefix" is
50126 defined. This is called after loading modules, so that a prefix
50127 initialization can use modules. Also, this change adds an
50128 intensive debugging feature for the memory manager via the
50129 configure option "--enable-mm-debug".
50130
50131 * partmap/gpt.c (gpt_partition_map_iterate): Add one more into
50132 PART.LEN.
50133
50134 * kern/sparc64/ieee1275/init.c (abort): Removed.
50135 (grub_stop): Likewise.
50136 (grub_exit): New function.
50137 (grub_set_prefix): Renamed to ...
50138 (grub_machine_set_prefix): ... this.
50139 (grub_machine_init): Do not call grub_set_prefix.
50140
50141 * kern/powerpc/ieee1275/init.c (grub_set_prefix): Renamed to ...
50142 (grub_machine_set_prefix): ... this.
50143 (grub_machine_init): Do not call grub_set_prefix.
50144
50145 * kern/i386/pc/init.c (grub_machine_set_prefix): New function.
50146 (grub_machine_init): Do not set the prefix here.
50147
50148 * kern/i386/efi/init.c (grub_machine_set_prefix): New function.
50149
50150 * kern/efi/init.c: Include grub/mm.h.
50151 (grub_efi_set_prefix): New function.
50152
50153 * kern/efi/efi.c (grub_exit): Call grub_efi_fini.
50154 (grub_efi_get_filename): New function.
50155 (grub_print_device_path): Renamed to ...
50156 (grub_efi_print_device_path): ... this.
50157
50158 * kern/mm.c [MM_DEBUG] (grub_malloc): Undefined.
50159 [MM_DEBUG] (grub_realloc): Likewise.
50160 [MM_DEBUG] (grub_free): Likewise.
50161 [MM_DEBUG] (grub_memalign): Likewise.
50162 [MM_DEBUG] (grub_mm_debug): New variable.
50163 [MM_DEBUG] (grub_debug_malloc): New function.
50164 [MM_DEBUG] (grub_debug_free): New function.
50165 [MM_DEBUG] (grub_debug_realloc): New function.
50166 [MM_DEBUG] (grub_debug_memalign): New function.
50167
50168 * kern/misc.c (grub_abort): Print a newline to distinguish
50169 the message.
50170
50171 * kern/main.c (grub_main): Call grub_machine_set_prefix and
50172 grub_set_root_dev after loading modules. This is necessary when
50173 setting a prefix depends on modules.
50174
50175 * include/grub/efi/efi.h (grub_print_device_path): Renamed to ...
50176 (grub_efi_print_device_path): ... this.
50177 (grub_efi_get_filename): New prototype.
50178 (grub_efi_set_prefix): Likewise.
50179
50180 * include/grub/efi/disk.h: Include grub/efi/api.h, grub/symbol.h
50181 and grub/disk.h.
50182 (grub_efidisk_get_device_handle): New prototype.
50183 (grub_efidisk_get_device_name): Likewise.
50184
50185 * include/grub/mm.h: Include config.h.
50186 (MM_DEBUG): Removed.
50187 [MM_DEBUG && !GRUB_UTIL] (grub_mm_debug): New prototype.
50188 [MM_DEBUG && !GRUB_UTIL] (grub_malloc): New macro.
50189 [MM_DEBUG && !GRUB_UTIL] (grub_realloc): Likewise.
50190 [MM_DEBUG && !GRUB_UTIL] (grub_memalign): Likewise.
50191 [MM_DEBUG && !GRUB_UTIL] (grub_free): Likewise.
50192 [MM_DEBUG && !GRUB_UTIL] (grub_debug_malloc): New prototype.
50193 [MM_DEBUG && !GRUB_UTIL] (grub_debug_realloc): New prototype.
50194 [MM_DEBUG && !GRUB_UTIL] (grub_debug_memalign): New prototype.
50195 [MM_DEBUG && !GRUB_UTIL] (grub_debug_free): New prototype.
50196
50197 * include/grub/kernel.h (grub_machine_set_prefix): New prototype.
50198
50199 * disk/efi/efidisk.c: Include grub/partition.h.
50200 (iterate_child_devices): New function.
50201 (add_device): First, compare only last device path nodes, so that
50202 devices are sorted by the types.
50203 (grub_efidisk_get_device_handle): New function.
50204 (grub_efidisk_get_device_name): Likewise.
50205
50206 * configure.ac (--enable-mm-debug): New option to enable the
50207 memory manager debugging feature. This makes the binary much
50208 bigger, so is disabled by default.
50209
50210 2006-04-23 Yoshinori K. Okuji <okuji@enbug.org>
50211
50212 Use grub_abort instead of grub_stop, and grub_exit must be
50213 define in each architecture now. Also, this change adds support
50214 for EFI disks.
50215
50216 * util/i386/pc/grub-probefs.c: Include grub/term.h.
50217 (grub_getkey): New function.
50218 (grub_term_get_current): Likewise.
50219
50220 * util/i386/pc/grub-setup.c: Include grub/term.h.
50221 (grub_getkey): New function.
50222 (grub_term_get_current): Likewise.
50223
50224 * util/misc.c (grub_stop): Renamed to ...
50225 (grub_exit): ... this.
50226
50227 * kern/powerpc/ieee1275/init.c (abort): Renamed to ...
50228 (grub_exit): ... this.
50229 (grub_machine_init): Use grub_abort instead of abort.
50230 (grub_stop): Removed.
50231
50232 * kern/powerpc/ieee1275/cmain.c (cmain): Use grub_abort instead of
50233 abort.
50234
50235 * kern/i386/pc/startup.S (grub_exit): New function.
50236 (cold_reboot): New label.
50237
50238 * kern/efi/init.c: Include grub/efi/disk.h and grub/env.h.
50239 (grub_efi_init): Call grub_efidisk_init.
50240 (grub_efi_fini): Call grub_efidisk_fini.
50241
50242 * kern/efi/efi.c: Include grub/mm.h.
50243 (grub_efi_console_control_guid): Renamed to ...
50244 (console_control_guid): ... this.
50245 (grub_efi_loaded_image_guid): Renamed to ...
50246 (loaded_image_guid): ... this.
50247 (grub_efi_locate_handle): New function.
50248 (grub_efi_open_protocol): Likewise.
50249 (grub_efi_set_text_mode): Use CONSOLE_CONTROL_GUID instead of
50250 GRUB_EFI_CONSOLE_CONTROL_GUID.
50251 (grub_efi_exit): Removed.
50252 (grub_stop): Likewise.
50253 (grub_efi_get_loaded_image): Use grub_efi_open_protocol.
50254 (grub_exit): New function.
50255 (grub_print_device_path): Likewise.
50256
50257 * kern/rescue.c (grub_rescue_cmd_exit): New function.
50258 (grub_enter_rescue_mode): Register "exit".
50259
50260 * kern/misc.c (grub_real_dprintf): A cosmetic change.
50261 (grub_abort): New function.
50262
50263 * kern/err.c (grub_fatal): Use grub_abort instead of grub_stop.
50264
50265 * include/grub/sparc64/ieee1275/kernel.h (abort): Removed.
50266
50267 * include/grub/powerpc/ieee1275/kernel.h (abort): Removed.
50268
50269 * include/grub/efi/efi.h (grub_efi_exit): Removed.
50270 (grub_print_device_path): New prototype.
50271 (grub_efi_locate_handle): Likewise.
50272 (grub_efi_open_protocol): Likewise.
50273
50274 * include/grub/efi/disk.h (grub_efidisk_fini): New file.
50275 * disk/efi/efidisk.c: Likewise.
50276
50277 * DISTLIST: Added disk/efi/efidisk.c and include/grub/efi/disk.h.
50278
50279 * include/grub/efi/console_control.h
50280 (GRUB_EFI_CONSOLE_CONTROL_GUID): Use an array for the last 8 bytes.
50281
50282 * include/grub/efi/api.h (GRUB_EFI_LOADED_IMAGE_GUID): Specify the
50283 last 8 bytes as an array.
50284 (GRUB_EFI_DISK_IO_GUID): New macro.
50285 (GRUB_EFI_BLOCK_IO_GUID): Likewise.
50286 (GRUB_EFI_DEVICE_PATH_GUID): Likewise.
50287 (grub_efi_ipv6_address_t): Change the type to grub_uint16_t from
50288 grub_uint8_t.
50289 (struct grub_efi_guid): Use an array to specify the last 8 bytes.
50290 (struct grub_efi_device_path): Rename the member "sub_type" to
50291 "subtype".
50292 (GRUB_EFI_DEVICE_PATH_TYPE): New macro.
50293 (GRUB_EFI_DEVICE_PATH_SUBTYPE): Likewise.
50294 (GRUB_EFI_DEVICE_PATH_LENGTH): Likewise.
50295 (GRUB_EFI_END_DEVICE_PATH_TYPE): Likewise.
50296 (GRUB_EFI_END_ENTIRE_DEVICE_PATH_SUBTYPE): Likewise.
50297 (GRUB_EFI_END_THIS_DEVICE_PATH_SUBTYPE): Likewise.
50298 (GRUB_EFI_END_ENTIRE_DEVICE_PATH): Likewise.
50299 (GRUB_EFI_NEXT_DEVICE_PATH): Likewise.
50300 (GRUB_EFI_HARDWARE_DEVICE_PATH_TYPE): Likewise.
50301 (GRUB_EFI_PCI_DEVICE_PATH_SUBTYPE): Likewise.
50302 (struct grub_efi_pci_device_path): New structure.
50303 (grub_efi_pci_device_path_t): New type.
50304 (GRUB_EFI_PCCARD_DEVICE_PATH_SUBTYPE): New macro.
50305 (struct grub_efi_pccard_device_path): New structure.
50306 (grub_efi_pccard_device_path_t): New type.
50307 (GRUB_EFI_MEMORY_MAPPED_DEVICE_PATH_SUBTYPE): New macro.
50308 (struct grub_efi_memory_mapped_device_path): New structure.
50309 (grub_efi_memory_mapped_device_path_t): New type.
50310 (GRUB_EFI_VENDOR_DEVICE_PATH_SUBTYPE): New macro.
50311 (struct grub_efi_vendor_device_path): New structure.
50312 (grub_efi_vendor_device_path_t): New type.
50313 (GRUB_EFI_CONTROLLER_DEVICE_PATH_SUBTYPE): New macro.
50314 (struct grub_efi_controller_device_path): New structure.
50315 (grub_efi_controller_device_path_t): New type.
50316 (GRUB_EFI_ACPI_DEVICE_PATH_TYPE): New macro.
50317 (GRUB_EFI_ACPI_DEVICE_PATH_SUBTYPE): Likewise.
50318 (struct grub_efi_acpi_device_path): New structure.
50319 (grub_efi_acpi_device_path_t): New type.
50320 (GRUB_EFI_EXPANDED_ACPI_DEVICE_PATH_SUBTYPE): New macro.
50321 (struct grub_efi_expanded_acpi_device_path): New structure.
50322 (grub_efi_expanded_acpi_device_path_t): New type.
50323 (GRUB_EFI_EXPANDED_ACPI_HIDSTR): New macro.
50324 (GRUB_EFI_EXPANDED_ACPI_UIDSTR): Likewise.
50325 (GRUB_EFI_EXPANDED_ACPI_CIDSTR): Likewise.
50326 (GRUB_EFI_MESSAGING_DEVICE_PATH_TYPE): Likewise.
50327 (GRUB_EFI_ATAPI_DEVICE_PATH_SUBTYPE): Likewise.
50328 (struct grub_efi_atapi_device_path): New structure.
50329 (grub_efi_atapi_device_path_t): New type.
50330 (GRUB_EFI_FIBRE_CHANNEL_DEVICE_PATH_SUBTYPE): New macro.
50331 (struct grub_efi_fibre_channel_device_path): New structure.
50332 (grub_efi_fibre_channel_device_path_t): New type.
50333 (GRUB_EFI_1394_DEVICE_PATH_SUBTYPE): New macro.
50334 (struct grub_efi_1394_device_path): New structure.
50335 (grub_efi_1394_device_path_t): New type.
50336 (GRUB_EFI_USB_DEVICE_PATH_SUBTYPE): New macro.
50337 (struct grub_efi_usb_device_path): New structure.
50338 (grub_efi_usb_device_path_t): New type.
50339 (GRUB_EFI_USB_CLASS_DEVICE_PATH_SUBTYPE): New macro.
50340 (struct grub_efi_usb_class_device_path): New structure.
50341 (grub_efi_usb_class_device_path_t): New type.
50342 (GRUB_EFI_I2O_DEVICE_PATH_SUBTYPE): New macro.
50343 (struct grub_efi_i2o_device_path): New structure.
50344 (grub_efi_i2o_device_path_t): New type.
50345 (GRUB_EFI_MAC_ADDRESS_DEVICE_PATH_SUBTYPE): New macro.
50346 (struct grub_efi_mac_address_device_path): New structure.
50347 (grub_efi_mac_address_device_path_t): New type.
50348 (GRUB_EFI_IPV4_DEVICE_PATH_SUBTYPE): New macro.
50349 (struct grub_efi_ipv4_device_path): New structure.
50350 (grub_efi_ipv4_device_path_t): New type.
50351 (GRUB_EFI_IPV6_DEVICE_PATH_SUBTYPE): New macro.
50352 (struct grub_efi_ipv6_device_path): New structure.
50353 (grub_efi_ipv6_device_path_t): New type.
50354 (GRUB_EFI_INFINIBAND_DEVICE_PATH_SUBTYPE): New macro.
50355 (struct grub_efi_infiniband_device_path): New structure.
50356 (grub_efi_infiniband_device_path_t): New type.
50357 (GRUB_EFI_UART_DEVICE_PATH_SUBTYPE): New macro.
50358 (struct grub_efi_uart_device_path): New structure.
50359 (grub_efi_uart_device_path_t): New type.
50360 (GRUB_EFI_VENDOR_MESSAGING_DEVICE_PATH_SUBTYPE): New macro.
50361 (struct grub_efi_vendor_messaging_device_path): New structure.
50362 (grub_efi_vendor_messaging_device_path_t): New type.
50363 (GRUB_EFI_MEDIA_DEVICE_PATH_TYPE): New macro.
50364 (GRUB_EFI_HARD_DRIVE_DEVICE_PATH_SUBTYPE): Likewise.
50365 (struct grub_efi_hard_drive_device_path): New structure.
50366 (grub_efi_hard_drive_device_path_t): New type.
50367 (GRUB_EFI_CDROM_DEVICE_PATH_SUBTYPE): New macro.
50368 (struct grub_efi_cdrom_device_path): New structure.
50369 (grub_efi_cdrom_device_path_t): New type.
50370 (GRUB_EFI_VENDOR_MEDIA_DEVICE_PATH_SUBTYPE): New macro.
50371 (struct grub_efi_vendor_media_device_path): New structure.
50372 (grub_efi_vendor_media_device_path_t): New type.
50373 (GRUB_EFI_FILE_PATH_DEVICE_PATH_SUBTYPE): New macro.
50374 (struct grub_efi_file_path_device_path): New structure.
50375 (grub_efi_file_path_device_path_t): New type.
50376 (GRUB_EFI_PROTOCOL_DEVICE_PATH_SUBTYPE): New macro.
50377 (struct grub_efi_protocol_device_path): New structure.
50378 (grub_efi_protocol_device_path_t): New type.
50379 (GRUB_EFI_BIOS_DEVICE_PATH_TYPE): New macro.
50380 (GRUB_EFI_BIOS_DEVICE_PATH_SUBTYPE): Likewise.
50381 (struct grub_efi_bios_device_path): New structure.
50382 (grub_efi_bios_device_path_t): New type.
50383 (struct grub_efi_disk_io): New structure.
50384 (grub_efi_disk_io_t): New type.
50385 (struct grub_efi_block_io_media): New structure.
50386 (grub_efi_block_io_media_t): New type.
50387 (struct grub_efi_block_io): New structure.
50388 (grub_efi_block_io_t): New type.
50389
50390 * include/grub/misc.h (grub_stop): Removed.
50391 (grub_exit): New prototype.
50392 (grub_abort): Likewise.
50393
50394 * include/grub/disk.h (enum grub_disk_dev_id): Added
50395 GRUB_DISK_DEVICE_EFIDISK_ID.
50396
50397 * conf/i386-efi.rmk (kernel_mod_SOURCES): Added
50398 disk/efi/efidisk.c.
50399 (kernel_syms.lst): Remove the target if an error occurs.
50400
50401 2006-04-22 Yoshinori K. Okuji <okuji@enbug.org>
50402
50403 * kern/misc.c (grub_lltoa): Rewritten the decimal conversion part,
50404 as it was simply too buggy.
50405
50406 2006-04-21 Yoshinori K. Okuji <okuji@enbug.org>
50407
50408 * kern/misc.c (grub_lltoa): New function.
50409 (grub_vsprintf): Added support for the long long suffix,
50410 i.e. "ll".
50411
50412 2006-04-20 Hollis Blanchard <hollis@penguinppc.org>
50413
50414 * Makefile.in (LDFLAGS): Add variable.
50415 (LD): Remove variable.
50416 * configure.ac: Add -m32 to LDFLAGS.
50417 * genmk.rb (PModule#rule): Use $(CC) instead of $(LD).
50418 * conf/powerpc-ieee1275.rmk (COMMON_LDFLAGS): Add variable.
50419 (grubof_LDFLAGS): Use $(COMMON_LDFLAGS).
50420 (_linux_mod_LDFLAGS, linux_mod_LDFLAGS, normal_mod_LDFLAGS,
50421 suspend_mod_LDFLAGS, reboot_mod_LDFLAGS, halt_mod_LDFLAGS): New
50422 variables.
50423 * conf/sparc64-ieee1275.rmk (COMMON_LDFLAGS): Add -nostdlib.
50424 * conf/i386-pc.rmk (COMMON_LDFLAGS): Add -nostdlib.
50425 * conf/i386-efi.rmk (COMMON_LDFLAGS): Add -nostdlib.
50426
50427 2006-04-20 Vesa Jaaskelainen <chaac@nic.fi>
50428
50429 * term/gfxterm.c (grub_gfxterm_getcharwidth): Fixed character
50430 length for unknown glyph.
50431
50432 2006-04-20 Yoshinori K. Okuji <okuji@enbug.org>
50433
50434 Add support for pre-loaded modules into the EFI port.
50435
50436 * util/i386/efi/grub-mkimage.c (make_mods_section): Rewritten
50437 completely. Accept one more argument DIR. The caller has changed.
50438
50439 * kern/i386/efi/init.c (grub_arch_modules_addr): Removed.
50440
50441 * kern/efi/efi.c: Include grub/efi/pe32.h and grub/kernel.h.
50442 (grub_efi_loaded_image_guid): New variable.
50443 (grub_efi_get_loaded_image): New function.
50444 (grub_arch_modules_addr): Likewise.
50445
50446 * include/grub/efi/efi.h (grub_efi_get_loaded_image): New
50447 prototype.
50448
50449 * include/grub/efi/api.h (GRUB_EFI_LOADED_IMAGE_GUID): New macro.
50450 (struct grub_efi_loaded_image): New structure.
50451 (grub_efi_loaded_image_t): New type.
50452
50453 2006-04-20 Yoshinori K. Okuji <okuji@enbug.org>
50454
50455 * loader/i386/pc/linux.c (grub_rescue_cmd_linux): Compare the file
50456 size with GRUB_OS_AREA_SIZE as grub_size_t instead of
50457 grub_ssize_t. Reported by Jeff Chua <jeff84@silk.corp.fedex.com>.
50458
50459 2006-04-19 Roger Leigh <rleigh@whinlatter.ukfsn.org>
50460
50461 * DISTLIST: Added `util/powerpc/ieee1275/grub-install.in'.
50462
50463 2006-04-19 Yoshinori K. Okuji <okuji@enbug.org>
50464
50465 * DISTLIST: Added include/grub/efi/console.h,
50466 include/grub/efi/time.h, include/grub/i386/efi/kernel.h,
50467 kern/efi/init.c, kern/efi/mm.c, and term/efi/console.c.
50468
50469 * include/grub/efi/console.h: New file.
50470 * include/grub/efi/time.h: Likewise.
50471 * include/grub/i386/efi/kernel.h: Likewise.
50472 * kern/efi/init.c: Likewise.
50473 * kern/efi/mm.c: Likewise.
50474 * term/efi/console.c: Likewise.
50475
50476 * kern/i386/efi/init.c: Do not include grub/machine/time.h.
50477 (grub_stop): Removed.
50478 (grub_get_rtc): Likewise.
50479 (grub_machine_init): Simply call grub_efi_init.
50480 (grub_machine_fini): Call grub_efi_fini.
50481
50482 * kern/efi/efi.c: Include grub/machine/time.h and grub/term.h.
50483 (grub_efi_output_string): Removed.
50484 (grub_efi_stall): New function.
50485 (grub_stop): Likewise.
50486 (grub_get_rtc): Likewise.
50487
50488 * include/grub/efi/efi.h (grub_efi_output_string): Removed.
50489 (grub_efi_stall): New prototype.
50490 (grub_efi_allocate_pages): Likewise.
50491 (grub_efi_free_pages): Likewise.
50492 (grub_efi_get_memory_map): Likewise.
50493 (grub_efi_mm_init): Likewise.
50494 (grub_efi_mm_fini): Likewise.
50495 (grub_efi_init): Likewise.
50496 (grub_efi_fini): Likewise.
50497
50498 * include/grub/i386/efi/time.h: Do not include
50499 grub/symbol.h. Include grub/efi/time.h.
50500 (GRUB_TICKS_PER_SECOND): Removed.
50501 (grub_get_rtc): Likewise.
50502
50503 * include/grub/efi/api.h (struct grub_efi_memory_descriptor):
50504 Added padding. The EFI spec is buggy.
50505 (GRUB_EFI_BLACK): New macro.
50506 (GRUB_EFI_BLUE): Likewise.
50507 (GRUB_EFI_GREEN): Likewise.
50508 (GRUB_EFI_CYAN): Likewise.
50509 (GRUB_EFI_RED): Likewise.
50510 (GRUB_EFI_MAGENTA): Likewise.
50511 (GRUB_EFI_BROWN): Likewise.
50512 (GRUB_EFI_LIGHTGRAY): Likewise.
50513 (GRUB_EFI_BRIGHT): Likewise.
50514 (GRUB_EFI_DARKGRAY): Likewise.
50515 (GRUB_EFI_LIGHTBLUE): Likewise.
50516 (GRUB_EFI_LIGHTGREEN): Likewise.
50517 (GRUB_EFI_LIGHTCYAN): Likewise.
50518 (GRUB_EFI_LIGHTRED): Likewise.
50519 (GRUB_EFI_LIGHTMAGENTA): Likewise.
50520 (GRUB_EFI_YELLOW): Likewise.
50521 (GRUB_EFI_WHITE): Likewise.
50522 (GRUB_EFI_BACKGROUND_BLACK): Likewise.
50523 (GRUB_EFI_BACKGROUND_BLUE): Likewise.
50524 (GRUB_EFI_BACKGROUND_GREEN): Likewise.
50525 (GRUB_EFI_BACKGROUND_CYAN): Likewise.
50526 (GRUB_EFI_BACKGROUND_RED): Likewise.
50527 (GRUB_EFI_BACKGROUND_MAGENTA): Likewise.
50528 (GRUB_EFI_BACKGROUND_BROWN): Likewise.
50529 (GRUB_EFI_BACKGROUND_LIGHTGRAY): Likewise.
50530 (GRUB_EFI_TEXT_ATTR): Likewise.
50531
50532 * conf/i386-efi.rmk (kernel_mod_SOURCES): Added kern/efi/efi.c,
50533 kern/efi/init.c, kern/efi/mm.c, and term/efi/console.c.
50534 (kernel_mod_HEADERS): Added efi/time.h.
50535
50536 2006-04-18 Yoshinori K. Okuji <okuji@enbug.org>
50537
50538 * DISTLIST: Added conf/i386-efi.mk, conf/i386-efi.rmk,
50539 include/grub/efi/api.h, include/grub/efi/console_control.h,
50540 include/grub/efi/efi.h, include/grub/efi/pe32.h,
50541 include/grub/i386/efi/time.h, kern/efi/efi.c,
50542 kern/i386/efi/init.c, kern/i386/efi/startup.S,
50543 and util/i386/efi/grub-mkimage.c.
50544
50545 * Makefile.in (RMKFILES): Added i386-efi.rmk.
50546
50547 * genmk.rb (PModule#rule): Do not export symbols if
50548 #{prefix}_EXPORTS is set to "no".
50549
50550 * conf/i386-efi.mk: New file.
50551 * conf/i386-efi.rmk: Likewise.
50552 * include/grub/efi/api.h: Likewise.
50553 * include/grub/efi/console_control.h: Likewise.
50554 * include/grub/efi/efi.h: Likewise.
50555 * include/grub/efi/pe32.h: Likewise.
50556 * include/grub/i386/efi/time.h: Likewise.
50557 * kern/efi/efi.c: Likewise.
50558 * kern/i386/efi/init.c: Likewise.
50559 * kern/i386/efi/startup.S: Likewise.
50560 * util/i386/efi/grub-mkimage.c: Likewise.
50561
50562 2006-04-17 Marco Gerards <marco@gnu.org>
50563
50564 * include/grub/script.h: Include <grub/parser.h> and
50565 "grub_script.tab.h".
50566 (struct grub_lexer_param): New struct.
50567 (struct grub_parser_param): Likewise.
50568 (grub_script_create_arglist): Pass the state in an argument.
50569 (grub_script_add_arglist): Likewise.
50570 (grub_script_create_cmdline): Likewise.
50571 (grub_script_create_cmdblock): Likewise.
50572 (grub_script_create_cmdif): Likewise.
50573 (grub_script_create_cmdmenu): Likewise.
50574 (grub_script_add_cmd): Likewise.
50575 (grub_script_arg_add): Likewise.
50576 (grub_script_lexer_ref): Likewise.
50577 (grub_script_lexer_deref): Likewise.
50578 (grub_script_lexer_record_start): Likewise.
50579 (grub_script_lexer_record_stop): Likewise.
50580 (grub_script_mem_record): Likewise.
50581 (grub_script_mem_record_stop): Likewise.
50582 (grub_script_malloc): Likewise.
50583 (grub_script_yylex): Likewise.
50584 (grub_script_yyparse): Likewise.
50585 (grub_script_yyerror): Likewise.
50586 (grub_script_yylex): Likewise.
50587 (grub_script_lexer_init): Return the state.
50588
50589 * normal/lexer.c (grub_script_lexer_state): Removed variable.
50590 (grub_script_lexer_done): Likewise.
50591 (grub_script_lexer_getline): Likewise.
50592 (grub_script_lexer_refs): Likewise.
50593 (script): Likewise.
50594 (newscript): Likewise.
50595 (record): Likewise.
50596 (recording): Likewise.
50597 (recordpos): Likewise.
50598 (recordlen): Likewise.
50599 (grub_script_lexer_init): Return the state instead of setting
50600 global variables.
50601 (grub_script_lexer_ref): Use the newly added argument for state
50602 instead of globals.
50603 (grub_script_lexer_deref): Likewise.
50604 (grub_script_lexer_record_start): Likewise.
50605 (grub_script_lexer_record_stop): Likewise.
50606 (recordchar): Likewise.
50607 (nextchar): Likewise.
50608 (grub_script_yylex2): Likewise.
50609 (grub_script_yylex): Likewise.
50610 (grub_script_yyerror): Likewise.
50611
50612 * normal/parser.y (func_mem): Removed variable.
50613 (menu_entry): Likewise.
50614 (err): Likewise.
50615 (%lex-param): New parser option.
50616 (%parse-param): Likewise.
50617 (script): Always return the AST.
50618 (argument): Pass the state around.
50619 (arguments): Likewise.
50620 (grubcmd): Likewise.
50621 (commands): Likewise.
50622 (function): Likewise.
50623 (menuentry): Likewise.
50624 (if_statement): Likewise.
50625 (if): Likewise.
50626
50627 * normal/script.c (grub_script_memused): Removed variable.
50628 (grub_script_parsed): Likewise.
50629 (grub_script_malloc): Added a state argument. Use that instead of
50630 global variables.
50631 (grub_script_mem_record): Likewise.
50632 (grub_script_mem_record_stop): Likewise.
50633 (grub_script_arg_add): Likewise.
50634 (grub_script_add_arglist): Likewise.
50635 (grub_script_create_cmdline): Likewise.
50636 (grub_script_create_cmdif): Likewise.
50637 (grub_script_create_cmdmenu): Likewise.
50638 (grub_script_add_cmd): Likewise.
50639 (grub_script_parse): Setup the state before calling the parser.
50640
50641 2006-04-16 Marco Gerards <marco@gnu.org>
50642
50643 * normal/command.c (grub_command_init): Remove the title command.
50644
50645 * normal/lexer.c (grub_script_yylex): Renamed from this...
50646 (grub_script_yylex2): ... to this.
50647 (grub_script_yylex): New function. Temporary
50648 introduced to filter some tokens.
50649 (grub_script_yyerror): Print a newline.
50650
50651 * normal/main.c (read_config_file): Output information about the
50652 lines that contain errors. Wait for a key after all lines have
50653 been processed. Don't return an empty menu.
50654
50655 * normal/parser.y (func_mem): Don't initialize.
50656 (menu_entry): Likewise.
50657 (err): New variable.
50658 (script): Don't return anything when an error was encountered.
50659 (ws, returns): Removed rules.
50660 (argument): Disabled concatenated variable support.
50661 (arguments): Remove explicit separators.
50662 (grubcmd): Likewise.
50663 (function): Likewise.
50664 (menuentry): Likewise.
50665 (if): Likewise.
50666 (commands): Likewise. Add error handling.
50667
50668 * normal/script.c (grub_script_create_cmdline): If
50669 `grub_script_parsed' is 0, assume the parser encountered an error.
50670
50671 2006-04-02 Yoshinori K. Okuji <okuji@enbug.org>
50672
50673 * configure.ac: Add support for EFI. Fix the typo
50674 BUILD_LDDFLAGS. Restore the LDFLAGS after testing.
50675
50676 2006-04-01 Vesa Jaaskelainen <chaac@nic.fi>
50677
50678 * util/unifont2pff.rb: Removed unnecessary byte ordering. Now
50679 foreign multibyte characters should be shown correctly.
50680
50681 2006-04-01 Vesa Jaaskelainen <chaac@nic.fi>
50682
50683 * normal/main.c (grub_normal_menu_addentry): Fixed menu size
50684 calculation.
50685 (read_config_file): Made it to close file before returning.
50686
50687 2006-03-31 Vesa Jaaskelainen <chaac@nic.fi>
50688
50689 * DISTLIST: Added include/grub/i386/pc/vbeblit.h,
50690 include/grub/i386/pc/vbefill.h, video/i386/pc/vbeblit.c,
50691 video/i386/pc/vbefill.c.
50692
50693 * conf/i386-pc.rmk (vbe_mod_SOURCES): Added video/i386/pc/vbeblit.c,
50694 video/i386/pc/vbefill.c.
50695
50696 * include/grub/video.h (grub_video_blit_format): New enum.
50697 (grub_video_mode_info): Added new member blit_format.
50698 (grub_video_get_blit_format): New function prototype.
50699
50700 * include/grub/i386/pc/vbe.h (grub_video_vbe_get_video_ptr): New
50701 function prototype.
50702 (grub_video_vbe_map_rgb): Likewise.
50703 (grub_video_vbe_unmap_color): Likewise.
50704
50705 * include/grub/i386/pc/vbeblit.h: New file.
50706
50707 * include/grub/i386/pc/vbefill.h: New file.
50708
50709 * video/video.c (grub_video_get_blit_format): New function.
50710 (grub_video_vbe_get_video_ptr): Re-declared as non-static.
50711 (grub_video_vbe_map_rgb): Likewise.
50712 (grub_video_vbe_unmap_color): Likewise.
50713
50714 * video/i386/pc/vbe.c (grub_video_vbe_fill_rect): Changed to use more
50715 optimized fills.
50716 (grub_video_vbe_blit_render_target): Changed to use more optimized
50717 blits.
50718 (grub_video_vbe_setup): Added detection for optimized settings.
50719 (grub_video_vbe_create_render_target): Likewise.
50720
50721 * video/i386/pc/vbeblit.c: New file.
50722
50723 * video/i386/pc/vbefill.c: New file.
50724
50725 2006-03-30 Vesa Jaaskelainen <chaac@nic.fi>
50726
50727 * font/manager.c (grub_font_get_glyph): Removed font fixup from
50728 here...
50729
50730 * util/unifont2pff.rb: ... and moved it to here. Improved argument
50731 parsing to support both hex and dec ranges. If filename was missing
50732 show usage information.
50733
50734 2006-03-14 Vesa Jaaskelainen <chaac@nic.fi>
50735
50736 * DISTLIST: Added include/grub/video.h, term/gfxterm.c,
50737 video/video.c, commands/videotest.c. Removed term/i386/pc/vesafb.c.
50738
50739 * conf/i386-pc.rmk (pkgdata_MODULES): Added video.mod,
50740 gfxterm.mod, videotest.mod. Removed vga.mod, vesafb.mod.
50741 (video_mod_SOURCES): Added.
50742 (video_mod_CFLAGS): Likewise.
50743 (video_mod_LDFLAGS): Likewise.
50744 (gfxterm_mod_SOURCES): Likewise.
50745 (gfxterm_mod_CFLAGS): Likewise.
50746 (gfxterm_mod_LDFLAGS): Likewise.
50747 (videotest_mod_SOURCES): Likewise.
50748 (videotest_mod_CFLAGS): Likewise.
50749 (videotest_mod_LDFLAGS): Likewise.
50750 (vesafb_mod_SOURCES): Removed.
50751 (vesafb_mod_CFLAGS): Likewise.
50752 (vesafb_mod_LDFLAGS): Likewise.
50753 (vga_mod_SOURCES): Likewise.
50754 (vga_mod_CFLAGS): Likewise.
50755 (vga_mod_LDFLAGS): Likewise.
50756
50757 * commands/videotest.c: New file.
50758
50759 * font/manager.c (fill_with_default_glyph): Modified to use
50760 grub_font_glyph.
50761 (grub_font_get_glyph): Likewise.
50762 (fontmanager): Renamed from this...
50763 (font_manager): ... to this.
50764
50765 * include/grub/font.h (grub_font_glyph): Added new structure.
50766 (grub_font_get_glyph): Modified to use grub_font_glyph.
50767
50768 * include/grub/misc.h (grub_abs): Added as inline function.
50769
50770 * include/grub/video.h: New file.
50771
50772 * include/grub/i386/pc/vbe.h (GRUB_VBE_STATUS_OK): New macro.
50773 (GRUB_VBE_MEMORY_MODEL_PACKED_PIXEL): Likewise.
50774 (GRUB_VBE_MEMORY_MODEL_DIRECT_COLOR): Likewise.
50775 (grub_vbe_get_controller_info): Renamed from this...
50776 (grub_vbe_bios_get_controller_info): ... to this.
50777 (grub_vbe_get_mode_info): Renamed from this...
50778 (grub_vbe_bios_get_mode_info): ... to this.
50779 (grub_vbe_set_mode): Renamed from this...
50780 (grub_vbe_bios_set_mode): ... to this.
50781 (grub_vbe_get_mode): Renamed from this...
50782 (grub_vbe_bios_get_mode): ... to this.
50783 (grub_vbe_set_memory_window): Renamed from this...
50784 (grub_vbe_bios_set_memory_window): ... to this.
50785 (grub_vbe_get_memory_window): Renamed from this...
50786 (grub_vbe_bios_get_memory_window): ... to this.
50787 (grub_vbe_set_scanline_length): Renamed from this...
50788 (grub_vbe_set_scanline_length): ... to this.
50789 (grub_vbe_get_scanline_length): Renamed from this...
50790 (grub_vbe_bios_get_scanline_length): ... to this.
50791 (grub_vbe_set_display_start): Renamed from this...
50792 (grub_vbe_bios_set_display_start): ... to this.
50793 (grub_vbe_get_display_start): Renamed from this...
50794 (grub_vbe_bios_get_display_start): ... to this.
50795 (grub_vbe_set_palette_data): Renamed from this...
50796 (grub_vbe_bios_set_palette_data): ... to this.
50797 (grub_vbe_set_pixel_rgb): Removed.
50798 (grub_vbe_set_pixel_index): Likewise.
50799
50800 * kern/i386/pc/startup.S (grub_vbe_get_controller_info): Renamed
50801 from this...
50802 (grub_vbe_bios_get_controller_info): ... to this.
50803 (grub_vbe_get_mode_info): Renamed from this...
50804 (grub_vbe_bios_get_mode_info): ... to this.
50805 (grub_vbe_set_mode): Renamed from this...
50806 (grub_vbe_bios_set_mode): ... to this.
50807 (grub_vbe_get_mode): Renamed from this...
50808 (grub_vbe_bios_get_mode): ... to this.
50809 (grub_vbe_set_memory_window): Renamed from this...
50810 (grub_vbe_bios_set_memory_window): ... to this.
50811 (grub_vbe_get_memory_window): Renamed from this...
50812 (grub_vbe_bios_get_memory_window): ... to this.
50813 (grub_vbe_set_scanline_length): Renamed from this...
50814 (grub_vbe_set_scanline_length): ... to this.
50815 (grub_vbe_get_scanline_length): Renamed from this...
50816 (grub_vbe_bios_get_scanline_length): ... to this.
50817 (grub_vbe_set_display_start): Renamed from this...
50818 (grub_vbe_bios_set_display_start): ... to this.
50819 (grub_vbe_get_display_start): Renamed from this...
50820 (grub_vbe_bios_get_display_start): ... to this.
50821 (grub_vbe_set_palette_data): Renamed from this...
50822 (grub_vbe_bios_set_palette_data): ... to this.
50823 (grub_vbe_bios_get_controller_info): Fixed problem with registers
50824 getting corrupted after calling it. Added more pushes and pops.
50825 (grub_vbe_bios_set_mode): Likewise.
50826 (grub_vbe_bios_get_mode): Likewise.
50827 (grub_vbe_bios_get_memory_window): Likewise.
50828 (grub_vbe_bios_set_scanline_length): Likewise.
50829 (grub_vbe_bios_get_scanline_length): Likewise.
50830 (grub_vbe_bios_get_display_start): Likewise.
50831 (grub_vbe_bios_set_palette_data): Likewise.
50832
50833 * normal/cmdline.c (cl_set_pos): Refresh the screen.
50834 (cl_insert): Likewise.
50835 (cl_delete): Likewise.
50836
50837 * term/gfxterm.c: New file.
50838
50839 * term/i386/pc/vesafb.c: Removed file.
50840
50841 * video/video.c: New file.
50842
50843 * video/i386/pc/vbe.c (real2pm): Added new function.
50844 (grub_video_vbe_draw_pixel): Likewise.
50845 (grub_video_vbe_get_video_ptr): Likewise.
50846 (grub_video_vbe_get_pixel): Likewise
50847 (grub_video_vbe_init): Likewise.
50848 (grub_video_vbe_fini): Likewise.
50849 (grub_video_vbe_setup): Likewise.
50850 (grub_video_vbe_get_info): Likewise.
50851 (grub_video_vbe_set_palette): Likewise.
50852 (grub_video_vbe_get_palette): Likewise.
50853 (grub_video_vbe_set_viewport): Likewise.
50854 (grub_video_vbe_get_viewport): Likewise.
50855 (grub_video_vbe_map_color): Likewise.
50856 (grub_video_vbe_map_rgb): Likewise.
50857 (grub_video_vbe_map_rgba): Likewise.
50858 (grub_video_vbe_unmap_color): Likewise.
50859 (grub_video_vbe_fill_rect): Likewise.
50860 (grub_video_vbe_blit_glyph): Likewise.
50861 (grub_video_vbe_blit_bitmap): Likewise.
50862 (grub_video_vbe_blit_render_target): Likewise.
50863 (grub_video_vbe_scroll): Likewise.
50864 (grub_video_vbe_swap_buffers): Likewise.
50865 (grub_video_vbe_create_render_target): Likewise.
50866 (grub_video_vbe_delete_render_target): Likewise.
50867 (grub_video_vbe_set_active_render_target): Likewise.
50868 (grub_vbe_set_pixel_rgb): Remove function.
50869 (grub_vbe_set_pixel_index): Likewise.
50870 (index_color_mode): Remove static variable.
50871 (active_mode): Likewise.
50872 (framebuffer): Likewise.
50873 (bytes_per_scan_line): Likewise.
50874 (grub_video_vbe_adapter): Added new static variable.
50875 (framebuffer): Likewise.
50876 (render_target): Likewise.
50877 (initial_mode): Likewise.
50878 (mode_in_use): Likewise.
50879 (mode_list): Likewise.
50880
50881 2006-03-10 Marco Gerards <marco@gnu.org>
50882
50883 * configure.ac (AC_INIT): Bumped to 1.93.
50884
50885 * DISTLIST: Added `include/grub/hfs.h'.
50886
50887 2006-02-01 Yoshinori K. Okuji <okuji@enbug.org>
50888
50889 * boot/i386/pc/boot.S (general_error): Before looping, try INT
50890 18H, which might help the BIOS falling back to next boot media.
50891
50892 2006-01-25 Yoshinori K. Okuji <okuji@enbug.org>
50893
50894 * util/i386/pc/grub-install.in: Escape a backslash. Reported by
50895 Poe Chen <poe.poechen@gmail.com>.
50896
50897 2006-01-17 Marco Gerards <marco@gnu.org>
50898
50899 * include/grub/normal.h: Include <grub/script.h>.
50900 (grub_command_list): Removed struct.
50901 (grub_command_list_t): Removed type.
50902 (grub_menu_entry): Remove members `num' and `command_list'. Add
50903 members `commands' and `sourcecode'.
50904 * include/grub/script.h: Add inclusion guards.
50905 (grub_script_cmd_menuentry): New struct.
50906 (grub_script_execute_menuentry): New prototype.
50907 (grub_script_lexer_record_start): Likewise.
50908 (grub_script_lexer_record_stop): Likewise.
50909 * normal/execute.c (grub_script_execute_menuentry): New function.
50910 * normal/lexer.c (record, recording, recordpos, recordlen): New
50911 variables.
50912 (grub_script_lexer_record_start): New function.
50913 (grub_script_lexer_record_stop): Likewise.
50914 (recordchar): Likewise.
50915 (nextchar): Likewise.
50916 (grub_script_yylex): Use `nextchar' to fetch new characters. Use
50917 2048 as the buffer size. Add the tokens `menuentry' and `@'.
50918 * normal/main.c: Include <grub/parser.h> and <grub/script.h>
50919 (current_menu): New variable.
50920 (free_menu): Mainly rewritten.
50921 (grub_normal_menu_addentry): New function.
50922 (read_config_file): Rewritten.
50923 * normal/menu.c (run_menu_entry): Mainly rewritten.
50924 * normal/menu_entry.c (make_screen): Rewritten the code to insert
50925 the menu entry.
50926 (run): Mainly rewritten.
50927 * normal/parser.y (menu_entry): New variable.
50928 (GRUB_PARSER_TOKEN_MENUENTRY): New token.
50929 (menuentry): New rule.
50930 (command): Add `menuentry'.
50931 (if_statement): Allow additional returns before `fi'.
50932 * normal/script.c (grub_script_create_cmdmenu): New function.
50933
50934 2006-01-03 Marco Gerards <marco@gnu.org>
50935
50936 * INSTALL: GNU Bison is required.
50937 * configure.ac: Rewritten the test to detect Bison.
50938 * Makefile.in (YACC): New variable. Reported by Xun Sun
50939 <xun.sun.cn@gmail.com>.
50940
50941 2006-01-03 Marco Gerards <marco@gnu.org>
50942
50943 * fs/hfsplus.c (grub_hfsplus_read_block): Convert the offset of
50944 the HFS+ filesystem to filesystem blocks.
50945 (grub_hfsplus_iterate_dir): Cast the `fileinfo' assignment so a
50946 GCC warning is silenced.
50947
50948 2006-01-03 Marco Gerards <marco@gnu.org>
50949
50950 * partmap/apple.c (apple_partition_map_iterate): Convert the data
50951 read from disk from big endian to host byte order.
50952
50953 2006-01-03 Hollis Blanchard <hollis@penguinppc.org>
50954
50955 * fs/hfs.c: Include <grub/hfs.h>. Added reference to the official
50956 documentation.
50957 (GRUB_HFS_EMBED_HFSPLUS_SIG): New macro.
50958 (grub_hfs_mount): Grammar fix in error. Make sure this is not an
50959 embedded HFS+ filesystem.
50960 (GRUB_HFS_MAGIC, grub_hfs_extent, grub_hfs_datarecord_t)
50961 (grub_hfs_sblock): Move from here...
50962 * include/grub/hfs.h: To here... New file.
50963 * fs/hfsplus.c: Include <grub/hfs.h>. Added reference to the official
50964 documentation.
50965 (GRUB_HFSPLUS_MAGIC, GRUB_HFSPLUSX_MAGIC, GRUB_HFSPLUS_SBLOCK):
50966 New macros.
50967 (grub_hfsplus_volheader): Change type of member `magic' to
50968 `grub_uint16_t'.
50969 (grub_hfsplus_data): Add new member `embedded_offset'.
50970 (grub_hfsplus_read_block): Add the HFS+ wrapper offset to the
50971 returned block.
50972 (grub_hfsplus_mount): Read the HFS+ wrapper if it exists.
50973 Calculate the offset.
50974
50975 2005-12-25 Yoshinori K. Okuji <okuji@enbug.org>
50976
50977 * include/grub/i386/pc/boot.h (GRUB_BOOT_MACHINE_DRP_ADDR):
50978 Removed.
50979 (GRUB_BOOT_MACHINE_DRP_SIZE): Likewise.
50980
50981 2005-12-25 Yoshinori K. Okuji <okuji@enbug.org>
50982
50983 * kern/env.c (grub_env_set): Check if ENV->VALUE instead of
50984 ENV->NAME is NULL after allocating ENV->VALUE.
50985
50986 2005-12-25 Marco Gerards <marco@gnu.org>
50987
50988 * kern/env.c (grub_env_set): Rewritten the error handling code.
50989
50990 2005-12-25 Yoshinori K. Okuji <okuji@enbug.org>
50991
50992 * geninit.sh: Made more robust, and more portable.
50993
50994 2005-12-25 Marco Gerards <marco@gnu.org>
50995
50996 Add support for Apple HFS+ filesystems.
50997
50998 * fs/hfsplus.c: New file.
50999
51000 * DISTLIST: Added `fs/hfsplus.c'.
51001
51002 * conf/common.rmk (pkgdata_MODULES): Add `hfsplus.mod'.
51003 (hfsplus_mod_SOURCES): New variable.
51004 (hfsplus_mod_CFLAGS): Likewise.
51005 (hfsplus_mod_LDFLAGS): Likewise.
51006 * conf/i386-pc.rmk (grub_setup_SOURCES): Add `fs/hfsplus.c'.
51007 (grub_setup_SOURCES): Likewise.
51008 (grub_mkdevicemap_SOURCES): Likewise.
51009 (grub_emu_SOURCES): Likewise.
51010 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
51011
51012 * fs/fshelp.c (grub_fshelp_log2blksize): New function.
51013
51014 * include/grub/fshelp.h (grub_fshelp_log2blksize): new prototype.
51015
51016 2005-12-25 Yoshinori K. Okuji <okuji@enbug.org>
51017
51018 * DISTLIST: Added geninitheader.sh, geninit.sh, commands/test.c,
51019 commands/i386/pc/play.c, conf/common.mk, conf/common.rmk,
51020 include/grub/parser.h, include/grub/script.h, kern/parser.c,
51021 kern/sparc64/cache.S, normal/execute.c, normal/function.c,
51022 normal/lexer.c, normal/parser.y, normal/script.c, and
51023 partmap/gpt.c.
51024 Removed kern/sparc64/cache.c.
51025
51026 * conf/common.rmk (DISTCLEANFILES): Added grub_script.tab.c,
51027 grub_script.tab.h, grub_modules_init.lst, grub_modules_init.h,
51028 grub_emu_init.c.
51029
51030 * configure.ac (AC_INIT): Bumped to 1.92.
51031
51032 2005-12-24 Vesa Jaaskelainen <chaac@nic.fi>
51033
51034 * kern/err.c (grub_error_push): Added new function to support error
51035 stacks.
51036 (grub_error_pop): Likewise.
51037 (grub_error_stack_items): New local variable to support error stacks.
51038 (grub_error_stack_pos): Likewise.
51039 (grub_error_stack_assert): Likewise.
51040 (GRUB_ERROR_STACK_SIZE): Added new define to configure maximum error
51041 stack depth.
51042 (grub_print_error): Added support to print errors from error stack.
51043
51044 * include/grub/err.h (grub_error_push): Added function prototype.
51045 (grub_error_pop): Likewise.
51046
51047 2005-12-09 Hollis Blanchard <hollis@penguinppc.org>
51048
51049 * configure.ac: Accept `powerpc64' as host_cpu.
51050 (amd64): Rename to `biarch32'.
51051
51052 * kern/powerpc/cache.S (grub_arch_sync_caches): Handle
51053 non-cacheline-aligned addresses.
51054
51055 * kern/dl.c (grub_dl_load_core): Add grub_dprintf messages.
51056 (grub_dl_flush_cache): Likewise. Only call `grub_arch_sync_caches'
51057 if `size' is non-zero.
51058
51059 2005-12-03 Marco Gerards <mgerards@xs4all.nl>
51060
51061 * conf/common.rmk (grub_modules_init.lst): Use `-printf "%P\n"'
51062 and `cd' to make sure the filename is not prefixed with a
51063 directory name.
51064 (pkgdata_MODULES): Add `gpt.mod'.
51065 (gpt_mod_SOURCES): New variable.
51066 (gpt_mod_CFLAGS): Likewise.
51067 (gpt_mod_LDFLAGS): Likewise.
51068
51069 * conf/i386-pc.rmk (grub_emu_SOURCES): Add `partmap/gpt.c'.
51070
51071 * include/grub/pc_partition.h (GRUB_PC_PARTITION_TYPE_GPT_DISK):
51072 New macro.
51073
51074 * partmap/gpt.c: New file.
51075
51076 * partmap/pc.c (pc_partition_map_iterate): Don't continue when a
51077 GPT partition map is detected.
51078
51079 2005-12-03 Vincent Pelletier <subdino2004@yahoo.fr>
51080
51081 * commands/i386/pc/play.c: New file.
51082 * conf/i386-pc.rmk (pkgdata_MODULES): Added play.mod.
51083 (play_mod_SOURCES, play_mod_CFLAGS, play_mod_LDFLAGS): New
51084 macros.
51085
51086 2005-11-27 Marco Gerards <mgerards@xs4all.nl>
51087
51088 * include/grub/dl.h (GRUB_MOD_INIT): Use `__attribute__
51089 ((unused))' to silence gcc warning.
51090
51091 2005-11-26 Hollis Blanchard <hollis@penguinppc.org>
51092
51093 * configure.ac: Correct `AC_PROG_YACC' test.
51094
51095 2005-11-22 Hollis Blanchard <hollis@penguinppc.org>
51096
51097 * util/powerpc/ieee1275/grub-install.in: Run the mount point
51098 check before installing files.
51099
51100 2005-11-22 Mike Small <smallm@panix.com>
51101
51102 * util/powerpc/ieee1275/grub-install.in (grubdir): Fixed partition
51103 number regex so multidigit numbers are recognized correctly.
51104
51105 2005-11-22 Mike Small <smallm@panix.com>
51106
51107 * loader/powerpc/ieee1275/linux.c (grub_rescue_cmd_linux): Add a
51108 debugging message before attempting to claim memory.
51109 (grub_rescue_cmd_initrd): Add a claim debugging message and try
51110 multiple addresses in case of failure.
51111
51112 2005-11-22 Hollis Blanchard <hollis@penguinppc.org>
51113
51114 * term/tparm.c (get_space): Remove empty `if' statement.
51115
51116 * fs/ufs.c (grub_ufs_find_file): Remove `grub_le_to_cpu32'.
51117
51118 * kern/parser.c (check_varstate): Rename `state' to 's'.
51119
51120 2005-11-22 Hollis Blanchard <hollis@penguinppc.org>
51121
51122 * partmap/acorn.c: Change `unsigned' to `unsigned int'. Move all
51123 variable definitions to the beginning of each function. Sort stack
51124 variables by size.
51125 (find): Rename to `acorn_partition_map_find'. Cast `grub_disk_read'
51126 `buf' argument to `char *'.
51127
51128 2005-11-22 Hollis Blanchard <hollis@penguinppc.org>
51129
51130 * conf/powerpc-ieee1275.rmk: Include conf/common.mk.
51131 (pkgdata_MODULES): Removed fshelp.mod, fat.mod, ext2.mod, ufs.mod,
51132 minix.mod, hfs.mod, jfs.mod, xfs.mod, affs.mod, sfs.mod,
51133 hello.mod, boot.mod, terminal.mod, ls.mod, cmp.mod, cat.mod,
51134 help.mod, font.mod, terminfo.mod, amiga.mod, apple.mod, pc.mod,
51135 sun.mod, acorn.mod, loopback.mod, default.mod, timeout.mod,
51136 configfile.mod, search.mod, gzio.mod and test.mod.
51137 (symlist.c, grub_script.tab.c, grub_script.tab.h, kernel_syms.lst)
51138 (grub_modules_init.lst, grub_modules_init.h, grub_emu_init.c)
51139 (fshelp_mod_SOURCES, fshelp_mod_CFLAGS, fshelp_mod_LDFLAGS)
51140 (fat_mod_SOURCES, fat_mod_CFLAGS, fat_mod_LDFLAGS)
51141 (ext2_mod_SOURCES, ext2_mod_CFLAGS, ext2_mod_LDFLAGS)
51142 (ufs_mod_SOURCES, ufs_mod_CFLAGS, ufs_mod_LDFLAGS)
51143 (minix_mod_SOURCES, minix_mod_CFLAGS, minix_mod_LDFLAGS)
51144 (hfs_mod_SOURCES, hfs_mod_CFLAGS, hfs_mod_LDFLAGS, jfs_mod_SOURCES)
51145 (jfs_mod_CFLAGS, jfs_mod_LDFLAGS, iso9660_mod_SOURCES)
51146 (iso9660_mod_CFLAGS, iso9660_mod_LDFLAGS, xfs_mod_SOURCES)
51147 (xfs_mod_CFLAGS, xfs_mod_LDFLAGS, affs_mod_SOURCES)
51148 (affs_mod_CFLAGS, affs_mod_LDFLAGS, sfs_mod_SOURCES)
51149 (sfs_mod_CFLAGS, sfs_mod_LDFLAGS, hello_mod_SOURCES)
51150 (hello_mod_CFLAGS, hello_mod_LDFLAGS, boot_mod_SOURCES)
51151 (boot_mod_CFLAGS, boot_mod_LDFLAGS, terminal_mod_SOURCES)
51152 (terminal_mod_CFLAGS, terminal_mod_LDFLAGS, ls_mod_SOURCES)
51153 (ls_mod_CFLAGS, ls_mod_LDFLAGS, cmp_mod_SOURCES, cmp_mod_CFLAGS)
51154 (cmp_mod_LDFLAGS, cat_mod_SOURCES, cat_mod_CFLAGS, cat_mod_LDFLAGS)
51155 (help_mod_SOURCES, help_mod_CFLAGS, help_mod_LDFLAGS)
51156 (font_mod_SOURCES, font_mod_CFLAGS, font_mod_LDFLAGS)
51157 (terminfo_mod_SOURCES, terminfo_mod_CFLAGS, terminfo_mod_LDFLAGS)
51158 (amiga_mod_SOURCES, amiga_mod_CFLAGS, amiga_mod_LDFLAGS)
51159 (apple_mod_SOURCES, apple_mod_CFLAGS, apple_mod_LDFLAG): Removed.
51160
51161 * conf/common.mk (grub_modules_init.lst): Use `find' instead of
51162 `grep --include'.
51163 (pkgdata_MODULES): Add test.mod.
51164
51165 2005-11-18 Timothy Baldwin <T.E.Baldwin99@members.leeds.ac.uk>
51166
51167 * genmk.rb: Fixed list rules moved to Makefile.in. Recognise
51168 appending to variables with "+=".
51169 (PModule): Use full pathname to generate *.lst filenames.
51170
51171 * Makefile.in: Fixed list rules moved from genmk.rb.
51172 (.DELETE_ON_ERROR): New special target.
51173 (RMKFILES): Add common.rmk and sparc64-ieee1275.rmk.
51174
51175 * conf/i386-pc.rmk: Include conf/common.mk.
51176 (pkgdata_MODULES): Removed fshelp.mod, fat.mod, ext2.mod, ufs.mod,
51177 minix.mod, hfs.mod, jfs.mod, xfs.mod, affs.mod, sfs.mod,
51178 hello.mod, boot.mod, terminal.mod, ls.mod, cmp.mod, cat.mod,
51179 help.mod, font.mod, terminfo.mod, amiga.mod, apple.mod, pc.mod,
51180 sun.mod, acorn.mod, loopback.mod, default.mod, timeout.mod,
51181 configfile.mod, search.mod, gzio.mod and test.mod.
51182 (symlist.c, grub_script.tab.c, grub_script.tab.h, kernel_syms.lst)
51183 (grub_modules_init.lst, grub_modules_init.h, grub_emu_init.c)
51184 (fshelp_mod_SOURCES, fshelp_mod_CFLAGS, fshelp_mod_LDFLAGS)
51185 (fat_mod_SOURCES, fat_mod_CFLAGS, fat_mod_LDFLAGS)
51186 (ext2_mod_SOURCES, ext2_mod_CFLAGS, ext2_mod_LDFLAGS)
51187 (ufs_mod_SOURCES, ufs_mod_CFLAGS, ufs_mod_LDFLAGS)
51188 (minix_mod_SOURCES, minix_mod_CFLAGS, minix_mod_LDFLAGS)
51189 (hfs_mod_SOURCES, hfs_mod_CFLAGS, hfs_mod_LDFLAGS, jfs_mod_SOURCES)
51190 (jfs_mod_CFLAGS, jfs_mod_LDFLAGS, iso9660_mod_SOURCES)
51191 (iso9660_mod_CFLAGS, iso9660_mod_LDFLAGS, xfs_mod_SOURCES)
51192 (xfs_mod_CFLAGS, xfs_mod_LDFLAGS, affs_mod_SOURCES)
51193 (affs_mod_CFLAGS, affs_mod_LDFLAGS, sfs_mod_SOURCES)
51194 (sfs_mod_CFLAGS, sfs_mod_LDFLAGS, hello_mod_SOURCES)
51195 (hello_mod_CFLAGS, hello_mod_LDFLAGS, boot_mod_SOURCES)
51196 (boot_mod_CFLAGS, boot_mod_LDFLAGS, terminal_mod_SOURCES)
51197 (terminal_mod_CFLAGS, terminal_mod_LDFLAGS, ls_mod_SOURCES)
51198 (ls_mod_CFLAGS, ls_mod_LDFLAGS, cmp_mod_SOURCES, cmp_mod_CFLAGS)
51199 (cmp_mod_LDFLAGS, cat_mod_SOURCES, cat_mod_CFLAGS, cat_mod_LDFLAGS)
51200 (help_mod_SOURCES, help_mod_CFLAGS, help_mod_LDFLAGS)
51201 (font_mod_SOURCES, font_mod_CFLAGS, font_mod_LDFLAGS)
51202 (terminfo_mod_SOURCES, terminfo_mod_CFLAGS, terminfo_mod_LDFLAGS)
51203 (amiga_mod_SOURCES, amiga_mod_CFLAGS, amiga_mod_LDFLAGS)
51204 (apple_mod_SOURCES, apple_mod_CFLAGS, apple_mod_LDFLAG): Move from
51205 here...
51206 * conf/common.rmk: ... to here. New file.
51207
51208 * conf/common.mk: New file.
51209
51210 2005-11-18 Yoshinori K. Okuji <okuji@enbug.org>
51211
51212 * conf/powerpc-ieee1275.rmk (grub_script.tab.h): Unified to ...
51213 (grub_script.tab.c): ... here.
51214
51215 * conf/sparc64-ieee1275.rmk (grub_script.tab.h): Unified to ...
51216 (grub_script.tab.c): ... here.
51217
51218 * conf/i386-pc.rmk (grub_script.tab.h): Unified to ...
51219 (grub_script.tab.c): ... here.
51220
51221 * normal/command.c (grub_command_find): Fixed a memory leak of
51222 MODULE_NAME. Reported by Mike Small <smallm@panix.com>.
51223
51224 2005-11-13 Timothy Baldwin <T.E.Baldwin99@members.leeds.ac.uk>
51225
51226 * include/grub/symbol.h: (FUNCTION): Use double quotes instead of
51227 "@" which marks the start of a comment on ARM.
51228 (VARIABLE): Likewise.
51229
51230 2005-11-13 Timothy Baldwin <T.E.Baldwin99@members.leeds.ac.uk>
51231
51232 Add support for Linux/ADFS partition tables.
51233
51234 * partmap/acorn.c: New file.
51235
51236 * include/grub/acorn_filecore.h: Likewise.
51237
51238 * DISTLIST: Added `partmap/acorn.c' and
51239 `include/grub/acorn_filecore.h'.
51240
51241 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add
51242 `partmap/acorn.c'.
51243 (pkgdata_MODULES): Add `acorn.mod'.
51244 (acorn_mod_SOURCES): New variable.
51245 (acorn_mod_CFLAGS): Likewise.
51246
51247 * conf/sparc64-ieee1275.rmk (grub_emu_SOURCES): Add
51248 `partmap/acorn.c'.
51249 (pkgdata_MODULES): Add `acorn.mod'.
51250 (acorn_mod_SOURCES): New variable.
51251 (acorn_mod_CFLAGS): Likewise.
51252
51253 * conf/i386-pc.rmk (grub_emu_SOURCES): Add `partmap/acorn.c'.
51254 (pkgdata_MODULES): Add `acorn.mod'.
51255 (acorn_mod_SOURCES): New variable.
51256 (acorn_mod_CFLAGS): Likewise.
51257 (acorn_mod_LDFLAGS): Likewise.
51258
51259 * include/types.h (grub_disk_addr_t): New typedef.
51260
51261 2005-11-13 Marco Gerards <mgerards@xs4all.nl>
51262
51263 * geninit.sh: New file.
51264
51265 * geninitheader.sh: Likewise.
51266
51267 * commands/boot.c (grub_boot_init, grub_boot_fini): Removed.
51268 * commands/cat.c (grub_cat_init, grub_cat_fini): Likewise.
51269 * commands/cmp.c (grub_cmp_init, grub_cmp_fini): Likewise.
51270 * commands/configfile.c (grub_configfile_init)
51271 (grub_configfile_fini): Likewise.
51272 * commands/default.c (grub_default_init, grub_default_fini):
51273 Likewise.
51274 * commands/help.c (grub_help_init, grub_help_fini): Likewise.
51275 * commands/ls.c (grub_ls_init, grub_ls_fini): Likewise.
51276 * commands/search.c (grub_search_init, grub_search_fini): Likewise.
51277 * commands/terminal.c (grub_terminal_init, grub_terminal_fini):
51278 Likewise.
51279 * commands/test.c (grub_test_init, grub_test_fini): Likewise.
51280 * commands/timeout.c (grub_timeout_init, grub_timeout_fini):
51281 Likewise.
51282 * commands/i386/pc/halt.c (grub_halt_init, grub_halt_fini): Likewise.
51283 * commands/ieee1275/halt.c (grub_halt_init, grub_halt_fini):
51284 Likewise.
51285 * commands/i386/pc/reboot.c (grub_reboot_init, grub_reboot_fini):
51286 Likewise.
51287 * commands/ieee1275/reboot.c (grub_reboot_init, grub_reboot_fini):
51288 Likewise.
51289 * disk/loopback.c (grub_loop_init, grub_loop_fini): Likewise.
51290 * fs/affs.c (grub_affs_init, grub_affs_fini): Likewise.
51291 * fs/ext2.c (grub_ext2_init, grub_ext2_fini): Likewise.
51292 * fs/fat.c (grub_fat_init, grub_fat_fini): Likewise.
51293 * fs/hfs.c (grub_hfs_init, grub_hfs_fini): Likewise.
51294 * fs/iso9660.c (grub_iso9660_init, grub_iso9660_fini): Likewise.
51295 * fs/jfs.c (grub_jfs_init, grub_jfs_fini): Likewise.
51296 * fs/minix.c (grub_minix_init, grub_minix_fini): Likewise.
51297 * fs/sfs.c (grub_sfs_init, grub_sfs_fini): Likewise.
51298 * fs/ufs.c (grub_ufs_init, grub_ufs_fini): Likewise.
51299 * fs/xfs.c (grub_xfs_init, grub_xfs_fini): Likewise.
51300 * normal/main.c (grub_normal_init, grub_normal_fini): Likewise.
51301 * partmap/amiga.c (grub_amiga_partition_map_init)
51302 (grub_amiga_partition_map_fini): Likewise.
51303 * partmap/apple.c (grub_apple_partition_map_init)
51304 (grub_apple_partition_map_fini): Likewise.
51305 * partmap/pc.c (grub_pc_partition_map_init)
51306 (grub_pc_partition_map_fini): Likewise.
51307 * partmap/sun.c (grub_sun_partition_map_init,
51308 grub_sun_partition_map_fini): Likewise.
51309 * term/terminfo.c (grub_terminal_init, grub_terminal_fini):
51310 Likewise.
51311
51312 * util/grub-emu.c: Include <grub_modules_init.h>.
51313 (main): Don't initialize and de-initialize any modules directly,
51314 use `grub_init_all' and `grub_fini_all' instead.
51315
51316 * term/i386/pc/vesafb.c (grub_vesafb_init): Renamed to
51317 `grub_vesafb_mod_init'.
51318 (grub_vesafb_fini): Renamed to `grub_vesafb_mod_fini'. Updated
51319 all users.
51320 * term/i386/pc/vga.c (grub_vga_init): Renamed to
51321 `grub_vga_mod_init'. Updated all users.
51322 (grub_vga_fini): Renamed to `grub_vga_mod_fini'.
51323
51324 * conf/i386-pc.rmk (grub_emu_SOURCES): Add `grub_emu_init.c'.
51325 (grub_modules_init.lst, grub_modules_init.h, grub_emu_init.c): New
51326 rules.
51327
51328 * include/grub/dl.h (GRUB_MOD_INIT): Add argument `name'.
51329 Generate a function to initialize the module in utilities.
51330 Updated all callers.
51331 (GRUB_MOD_FINI): Add argument `name'. Generate a function to
51332 initialize the module in utilities. Updated all callers.
51333
51334 2005-11-09 Hollis Blanchard <hollis@penguinppc.org>
51335
51336 * term/ieee1275/ofconsole.c (grub_ofconsole_cls): Use both the ANSI
51337 escape sequence and a literal ^L to clear the screen.
51338
51339 * commands/ieee1275/suspend.c (grub_cmd_suspend): Clear the screen
51340 when returning from Open Firmware.
51341
51342 2005-11-09 Hollis Blanchard <hollis@penguinppc.org>
51343
51344 * term/ieee1275/ofconsole.c (grub_ofconsole_width): New variable.
51345 (grub_ofconsole_height): Likewise.
51346 (grub_ofconsole_putchar): If `grub_curr_x' exceeds console width,
51347 manually insert a '\n'.
51348 (grub_ofconsole_getwh): Set and return `grub_ofconsole_width' and
51349 `grub_ofconsole_height'. Return early if these are already set.
51350
51351 2005-11-07 Vincent Pelletier <subdino2004@yahoo.fr>
51352
51353 * conf/sparc64-ieee1275.rmk (grub_emu_SOURCES): Add
51354 `commands/test.c', `fs/affs.c', `fs/sfs.c', `fs/xfs.c',
51355 `normal/execute.c', `normal/lexer.c', `io/gzio.c',
51356 `kern/parser.c', `grub_script.tab.c', `normal/function.c'
51357 and `normal/script.c'.
51358 (normal_mod_SOURCES): `normal/execute.c', `normal/lexer.c',
51359 `grub_script.tab.c', `normal/function.c' and `normal/script.c'.
51360 (test_mod_SOURCES): New variable.
51361 (test_mod_CFLAGS): Likewise.
51362 (test_mod_LDFLAGS): Likewise.
51363 (pkgdata_MODULES): Add `test.mod'.
51364 (grub_script.tab.c): New rule.
51365 (grub_script.tab.h): Likewise.
51366
51367 2005-11-07 Marco Gerards <mgerards@xs4all.nl>
51368
51369 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add
51370 `commands/test.c', `normal/execute.c', `normal/lexer.c',
51371 `grub_script.tab.c', `normal/function.c' and `normal/script.c'.
51372 (normal_mod_SOURCES): `normal/execute.c', `normal/lexer.c',
51373 `grub_script.tab.c', `normal/function.c' and `normal/script.c'.
51374 (test_mod_SOURCES): New variable.
51375 (test_mod_CFLAGS): Likewise.
51376 (pkgdata_MODULES): Add `test.mod'.
51377 (grub_script.tab.c): New rule.
51378 (grub_script.tab.h): Likewise.
51379
51380 2005-11-06 Marco Gerards <mgerards@xs4all.nl>
51381
51382 Add initial scripting support.
51383
51384 * commands/test.c: New file.
51385 * include/grub/script.h: Likewise.
51386 * normal/execute.c: Likewise.
51387 * normal/function.c: Likewise.
51388 * normal/lexer.c: Likewise.
51389 * normal/parser.y: Likewise.
51390 * normal/script.c: Likewise.
51391
51392 * configure.ac: Add `AC_PROG_YACC' test.
51393
51394 * conf/i386-pc.rmk (grub_emu_SOURCES): Add `commands/test.c',
51395 `normal/execute.c', `normal/lexer.c', `grub_script.tab.c',
51396 `normal/function.c' and `normal/script.c'.
51397 (normal_mod_SOURCES): `normal/execute.c', `normal/lexer.c',
51398 `grub_script.tab.c', `normal/function.c' and `normal/script.c'.
51399 (test_mod_SOURCES, test_mod_CFLAGS, test_mod_LDFLAGS): New
51400 variables.
51401 (pkgdata_MODULES): Add `test.mod'.
51402 (grub_script.tab.c): New rule.
51403 (grub_script.tab.h): Likewise.
51404
51405 * include/grub/err.h (grub_err_t): Add `GRUB_ERR_TEST_FAILURE'.
51406
51407 * include/grub/normal.h (grub_test_init): New prototype.
51408 (grub_test_fini): Likewise.
51409
51410 * normal/command.c: Include <grub/script.h>.
51411 (grub_command_execute): Rewritten.
51412
51413 * util/grub-emu.c (main): Call `grub_test_init' and
51414 `grub_test_fini'.
51415
51416 2005-11-03 Hollis Blanchard <hollis@penguinppc.org>
51417
51418 * kern/powerpc/ieee1275/init.c (grub_get_rtc): Initialize `msecs'
51419 to 0.
51420 * term/ieee1275/ofconsole.c (grub_ofconsole_checkkey): Return -1 if
51421 there are no pending characters.
51422
51423 2005-11-03 Hollis Blanchard <hollis@penguinppc.org>
51424
51425 * kern/powerpc/ieee1275/openfw.c (grub_ieee1275_get_devname): Use
51426 `grub_strndup' to drop device arguments. Replace unnecessary
51427 `grub_strndup' with `grub_strdup'.
51428
51429 2005-11-03 Hollis Blanchard <hollis@penguinppc.org>
51430
51431 * kern/term.c (grub_cls): Do not call grub_cur_term->cls() if the
51432 `debug' environment variable has been set.
51433
51434 2005-11-02 Hollis Blanchard <hollis@penguinppc.org>
51435
51436 * Makefile.in (install-local): Use $(DATA).
51437 (uninstall): Likewise.
51438 * conf/powerpc-ieee1275.rmk (bin_UTILITIES): Move grub-mkimage...
51439 (sbin_UTILITIES): ... to here.
51440 (sbin_SCRIPTS): New variable.
51441 (grub_install_SOURCES): New variable.
51442 * util/powerpc/ieee1275/grub-install.in: New file.
51443 * util/powerpc/ieee1275/grub-mkimage.c (kernel_path): Remove
51444 variable.
51445 (add_segments): Call `grub_util_get_path'.
51446
51447 2005-10-28 Yoshinori K. Okuji <okuji@enbug.org>
51448
51449 From Timothy Baldwin:
51450 * commands/ls.c (grub_ls_list_files): Close FILE with
51451 grub_file_close.
51452 * kern/misc.c (grub_vsprintf): Terminate the string S with NUL.
51453
51454 2005-10-24 Marco Gerards <mgerards@xs4all.nl>
51455
51456 * include/grub/parser.h: New file.
51457
51458 * kern/parser.c: Likewise.
51459
51460 * conf/i386-pc.rmk (kernel_img_SOURCES): Add `kern/parser.c'.
51461 (grub_setup_SOURCES): Likewise.
51462 (grub_probefs_SOURCES): Likewise.
51463 (grub_emu_SOURCES): Likewise.
51464 (kernel_img_HEADERS): Add `parser.h'.
51465
51466 * conf/powerpc-ieee1275.rmk (grubof_HEADERS): Add `parser.h'.
51467 (grub_emu_SOURCES): Add `kern/parser.c'.
51468 (grubof_SOURCES): Likewise.
51469
51470 * conf/sparc64-ieee1275.rmk (grubof_HEADERS): Add `parser.h'.
51471 (grubof_SOURCES): Add `kern/parser.c'.
51472
51473 * include/grub/misc.h (grub_split_cmdline): Removed prototype.
51474
51475 * kern/misc.c (grub_split_cmdline): Removed function.
51476
51477 * kern/rescue.c: Include <grub/parser.h>.
51478 (grub_enter_rescue_mode): Use `grub_parser_split_cmdline' instead
51479 of `grub_split_cmdline'.
51480
51481 * normal/command.c: Include <grub/parser.h>.
51482 (grub_command_execute): Use `grub_parser_split_cmdline' instead
51483 of `grub_split_cmdline'.
51484
51485 * normal/completion.c: Include <grub/parser.h>.
51486 (cmdline_state): New variable.
51487 (iterate_dir): End the filename with a quote depending on the
51488 command line state.
51489 (get_state): new function.
51490 (grub_normal_do_completion): Use `grub_parser_split_cmdline' to
51491 split the arguments and determine the current argument. When the
51492 argument string is not quoted, escape all spaces.
51493
51494 2005-10-23 Vincent Pelletier <subdino2004@yahoo.fr>
51495
51496 * normal/sparc64/setjmp.S: New file.
51497
51498 2005-10-23 Vincent Pelletier <subdino2004@yahoo.fr>
51499
51500 * include/grub/sparc64/libgcc.h: New file.
51501 * conf/sparc64-ieee1275.rmk (COMMON_ASFLAGS): Remove -Av9.
51502 (normal_mod_SOURCES): Use normal/sparc64/setjmp.S instead of
51503 normal/sparc64/setjmp.c.
51504
51505 2005-10-23 Vincent Pelletier <subdino2004@yahoo.fr>
51506
51507 * kern/sparc64/dl.c: Rewritten for SPARCV9 ELF.
51508 * kern/sparc64/cache.S: New file.
51509 * kern/sparc64/cache.c: Removed.
51510 * conf/sparc64-ieee1275.rmk (COMMON_ASFLAGS): Add -Av9.
51511 (COMMON_CFLAGS): Add -mno-app-regs. Remove -mcpu=v9 and
51512 -mtune=ultrasparc.
51513 (COMMON_LDFLAGS): Add -melf64_sparc.
51514 (grubof_HEADERS): Add sparc64/libgcc.h and machine/kernel.h.
51515 (grubof_SOURCES): Use cache.S instead of cache.c.
51516 (grubof_LDFLAGS): Add -mno-app-regs. Replace "-Xlinker
51517 --oformat -Xlinker elf64-sparc" by "-Bstatic,-melf64_sparc".
51518 (pkgdata_MODULES): Uncomment. Leave linux.mod and _linux.mod
51519 commented though.
51520 (normal_mod_SOURCES): Add normal/completion.c and normal/misc.c.
51521 (_linux_mod_SOURCES, _linux_mod_CFLAGS, linux_mod_SOURCES)
51522 (linux_mod_CFLAGS): Commented out.
51523 (_linux_mod_LDFLAGS, linux_mod_LDFLAGS): New macro, commented
51524 out because module isn't built.
51525 (fshelp_mod_LDFLAGS, fat_mod_LDFLAGS, ext2_mod_LDFLAGS)
51526 (ufs_mod_LDFLAGS, minix_mod_LDFLAGS, hfs_mod_LDFLAGS)
51527 (jfs_mod_LDFLAGS, iso9660_mod_LDFLAGS, normal_mod_LDFLAGS)
51528 (hello_mod_LDFLAGS, boot_mod_LDFLAGS, terminal_mod_LDFLAGS)
51529 (ls_mod_LDFLAGS, cmp_mod_LDFLAGS, cat_mod_LDFLAGS)
51530 (font_mod_LDFLAGS, amiga_mod_LDFLAGS, apple_mod_LDFLAGS)
51531 (pc_mod_LDFLAGS, sun_mod_LDFLAGS, loopback_mod_LDFLAGS)
51532 (suspend_mod_LDFLAGS, reboot_mod_LDFLAGS, halt_mod_LDFLAGS)
51533 (help_mod_LDFLAGS, default_mod_LDFLAGS, timeout_mod_LDFLAGS)
51534 (configfile_mod_LDFLAGS, search_mod_LDFLAGS, xfs_mod_SOURCES)
51535 (xfs_mod_CFLAGS, xfs_mod_LDFLAGS, affs_mod_SOURCES)
51536 (affs_mod_CFLAGS, affs_mod_LDFLAGS, sfs_mod_SOURCES)
51537 (sfs_mod_CFLAGS, sfs_mod_LDFLAGS, gzio_mod_SOURCES)
51538 (gzio_mod_CFLAGS, gzio_mod_LDFLAGS): New macro.
51539
51540 2005-10-20 Yoshinori K. Okuji <okuji@enbug.org>
51541
51542 * util/i386/pc/grub-probefs.c (main): Call grub_xfs_init and
51543 grub_xfs_fini. Do not call grub_hfs_init or grub_hfs_fini any
51544 longer, because HFS should not be used on PC.
51545
51546 2005-10-20 Timothy Baldwin <T.E.Baldwin99@members.leeds.ac.uk>
51547
51548 * io/gzio.c (grub_gzio_read): Use OFFSET instead of FILE->OFFSET
51549 consistently within the loop.
51550
51551 2005-10-15 Marco Gerards <mgerards@xs4all.nl>
51552
51553 * fs/xfs.c (grub_xfs_iterate_dir): Detect an error if part of a
51554 directory can not be read.
51555
51556 2005-10-15 Yoshinori K. Okuji <okuji@enbug.org>
51557
51558 * configure.ac (AC_INIT): Increase the version number to 1.91.
51559
51560 * DISTLIST: Added include/grub/terminfo.h, include/grub/tparm.h,
51561 include/grub/i386/pc/serial.h, term/terminfo.c, term/tparm.c and
51562 term/i386/pc/serial.c.
51563
51564 2005-10-15 Yoshinori K. Okuji <okuji@enbug.org>
51565
51566 * kern/file.c (grub_file_seek): Seeking to an offset equal to a
51567 file size must be permitted.
51568
51569 * kern/i386/pc/startup.S (multiboot_trampoline): Fix a mistake
51570 between %ah and %al.
51571
51572 2005-10-15 Yoshinori K. Okuji <okuji@enbug.org>
51573
51574 * fs/xfs.c (grub_xfs_iterate_dir): Change the type of BLK to
51575 grub_uint64_t.
51576 Call the hook with a NUL-terminated filename.
51577 (grub_xfs_mount): Use grub_be_to_cpu32 instead of
51578 grub_cpu_to_be32.
51579
51580 * kern/term.c (cursor_state): New variable.
51581 (grub_term_set_current): Reset the cursor state on a new
51582 terminal.
51583 (grub_setcursor): Rewritten to use CURSOR_STATE.
51584 (grub_getcursor): New function.
51585
51586 * include/grub/term.h (grub_getcursor): New prototype.
51587
51588 * io/gzio.c (test_header): Align BUF for accessing it as 32-bit
51589 integers on ARM. Reported by Timothy Baldwin
51590 <T.E.Baldwin99@members.leeds.ac.uk>.
51591
51592 2005-10-11 Marco Gerards <mgerards@xs4all.nl>
51593
51594 * fs/sfs.c (grub_sfs_open): Don't free `data->label' if it is not
51595 allocated.
51596 (grub_sfs_dir): Likewise.
51597
51598 2005-10-09 Marco Gerards <mgerards@xs4all.nl>
51599
51600 Add support for the SFS filesystem.
51601
51602 * fs/sfs.c: New file.
51603
51604 * DISTLIST: Added `fs/sfs.c'.
51605
51606 * conf/i386-pc.rmk (grub_setup_SOURCES): Add `fs/sfs.c'.
51607 (grub_probefs_SOURCES): Likewise.
51608 (grub_emu_SOURCES): Likewise.
51609 (pkgdata_MODULES): Add `sfs.mod'.
51610 (sfs_mod_SOURCES): New variable.
51611 (sfs_mod_CFLAGS): Likewise.
51612 (sfs_mod_LDFLAGS): Likewise.
51613
51614 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add `fs/sfs.c'.
51615 (pkgdata_MODULES): Add `sfs.mod'.
51616 (sfs_mod_SOURCES): New variable.
51617 (sfs_mod_CFLAGS): Likewise.
51618
51619 * util/grub-emu.c (main): Call `grub_sfs_init' and
51620 `grub_sfs_fini'.
51621
51622 * include/grub/fs.h (grub_sfs_init): New prototype.
51623 (grub_sfs_fini): Likewise.
51624
51625 2005-10-07 Marco Gerards <mgerards@xs4all.nl>
51626
51627 Add support for the AFFS filesystem.
51628
51629 * fs/affs.c: New file.
51630
51631 * DISTLIST: Added `fs/affs.c'.
51632
51633 * conf/i386-pc.rmk (grub_setup_SOURCES): Add `fs/affs.c'.
51634 (grub_probefs_SOURCES): Likewise.
51635 (grub_emu_SOURCES): Likewise.
51636 (pkgdata_MODULES): Add `affs.mod'.
51637 (affs_mod_SOURCES): New variable.
51638 (affs_mod_CFLAGS): Likewise.
51639 (affs_mod_LDFLAGS): Likewise.
51640
51641 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add `fs/affs.c'.
51642 (pkgdata_MODULES): Add `affs.mod'.
51643 (affs_mod_SOURCES): New variable.
51644 (affs_mod_CFLAGS): Likewise.
51645
51646 * util/grub-emu.c (main): Call `grub_affs_init' and
51647 `grub_affs_fini'.
51648
51649 * include/grub/fs.h (grub_affs_init): New prototype.
51650 (grub_affs_fini): Likewise.
51651
51652 2005-10-01 Marco Gerards <mgerards@xs4all.nl>
51653
51654 * fs/xfs.c (grub_xfs_iterate_dir): Add parentheses.
51655
51656 2005-10-01 Marco Gerards <mgerards@xs4all.nl>
51657
51658 * configure.ac: Accept `x86_64' as host_cpu. In that case add
51659 `-m32' to CFLAGS.
51660
51661 * genmk.rb (class PModule): Always use `$(#{prefix}_LDFLAGS)' when
51662 linking.
51663
51664 * conf/i386-pc.rmk (COMMON_CFLAGS): Add `-m32'.
51665 (COMMON_LDFLAGS): New variable.
51666 (kernel_img_LDFLAGS): Include `COMMON_FLAGS'.
51667 (_chain_mod_LDFLAGS, fshelp_mod_LDFLAGS, fat_mod_LDFLAGS)
51668 (ext2_mod_LDFLAGS, ufs_mod_LDFLAGS, minix_mod_LDFLAGS)
51669 (hfs_mod_LDFLAGS, jfs_mod_LDFLAGS, iso9660_mod_LDFLAGS)
51670 (xfs_mod_LDFLAGS, _linux_mod_LDFLAGS, linux_mod_LDFLAGS)
51671 (normal_mod_LDFLAGS, hello_mod_LDFLAGS, boot_mod_LDFLAGS)
51672 (terminal_mod_LDFLAGS, ls_mod_LDFLAGS, cmp_mod_LDFLAGS)
51673 (cat_mod_LDFLAGS, help_mod_LDFLAGS, reboot_mod_LDFLAGS)
51674 (halt_mod_LDFLAGS, vga_mod_LDFLAGS, font_mod_LDFLAGS)
51675 (terminfo_mod_LDFLAGS, serial_mod_LDFLAGS, _multiboot_mod_LDFLAGS)
51676 (multiboot_mod_LDFLAGS, amiga_mod_LDFLAGS, apple_mod_LDFLAGS)
51677 (pc_mod_LDFLAGS, sun_mod_LDFLAGS, loopback_mod_LDFLAGS)
51678 (default_mod_LDFLAGS, timeout_mod_LDFLAGS, configfile_mod_LDFLAGS)
51679 (vbe_mod_LDFLAGS, vesafb_mod_LDFLAGS, vbeinfo_mod_LDFLAGS)
51680 (vbetest_mod_LDFLAGS, search_mod_LDFLAGS, gzio_mod_LDFLAGS): New
51681 variables.
51682 (normal_mod_ASFLAGS): Add `-m32'.
51683
51684 * include/grub/types.h (grub_host_addr_t, grub_host_off_t)
51685 (grub_host_size_t, grub_host_ssize_t): New types.
51686 (grub_addr_t, grub_off_t, grub_size_t, grub_ssize_t): Make type
51687 dependent of `GRUB_CPU_SIZEOF_VOID_P' instead on
51688 `GRUB_HOST_SIZEOF_VOID_P'.
51689
51690 * include/grub/kernel.h (struct grub_module_header): Type of
51691 member offset changed to `grub_host_off_t'. Type of member size
51692 changed to `grub_host_size_t'.
51693 (struct grub_module_info): Type of member offset changed to
51694 `grub_host_off_t'. Type of member size changed to
51695 `grub_host_size_t'.
51696
51697 2005-09-29 Yoshinori K. Okuji <okuji@enbug.org>
51698
51699 Make GRUB's kernel compliant to Multiboot Specification.
51700
51701 * kern/i386/pc/startup.S (multiboot_header): New label.
51702 (multiboot_entry): Likewise.
51703 (multiboot_trampoline): Likewise.
51704
51705 * include/grub/i386/pc/kernel.h (GRUB_KERNEL_MACHINE_RAW_SIZE):
51706 Increased to 0x4A0.
51707
51708 * fs/xfs.c (grub_xfs_iterate_dir): Fix a syntax error. You may not
51709 put parentheses after a question mark.
51710 [!GRUB_UTIL] (my_mod): New variable.
51711
51712 * util/grub-emu.c (main): Call grub_xfs_init and grub_xfs_fini.
51713
51714 2005-09-28 Marco Gerards <mgerards@xs4all.nl>
51715
51716 Adds support for the XFS filesystem. Btrees are not supported
51717 yet.
51718
51719 * fs/xfs.c: New file.
51720
51721 * DISTLIST: Added `fs/xfs.c'.
51722
51723 * conf/i386-pc.rmk (grub_setup_SOURCES): Add `fs/xfs.c'.
51724 (grub_probefs_SOURCES): Likewise.
51725 (grub_emu_SOURCES): Likewise.
51726 (pkgdata_MODULES): Add `xfs.mod'.
51727 (xfs_mod_SOURCES): New variable.
51728 (xfs_mod_CFLAGS): Likewise.
51729
51730 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add `fs/xfs.c'.
51731 (pkgdata_MODULES): Add `xfs.mod'.
51732 (xfs_mod_SOURCES): New variable.
51733 (xfs_mod_CFLAGS): Likewise.
51734
51735 * util/grub-emu.c (main): Call `grub_xfs_init' and
51736 `grub_xfs_fini'.
51737
51738 * include/grub/fs.h (grub_xfs_init): New prototype.
51739 (grub_xfs_fini): Likewise.
51740
51741
51742 2005-09-18 Vesa Jaaskelainen <chaac@nic.fi>
51743
51744 * video/i386/pc/vbe.c (grub_vbe_set_video_mode): In indexed
51745 color modes, allow greater than 16 colors to be configured as
51746 a default palette.
51747
51748 2005-09-03 Yoshinori K. Okuji <okuji@enbug.org>
51749
51750 * normal/completion.c (complete_arguments): Add the qualifier
51751 const into OPTIONS.
51752
51753 From Omniflux <omniflux+lists@omniflux.com>:
51754 * include/grub/terminfo.h: New file.
51755 * include/grub/tparm.h: Likewise.
51756 * include/grub/i386/pc/serial.h: Likewise.
51757 * term/terminfo.c: Likewise.
51758 * term/tparm.c: Likewise.
51759 * term/i386/pc/serial.c: Likewise.
51760 * conf/i386-pc.rmk (pkgdata_MODULES): Added terminfo.mod and
51761 serial.mod.
51762 (terminfo_mod_SOURCES): New variable.
51763 (terminfo_mod_CFLAGS): Likewise.
51764 (serial_mod_SOURCES): Likewise.
51765 (serial_mod_CFLAGS): Likewise.
51766
51767 2005-08-31 Yoshinori K. Okuji <okuji@enbug.org>
51768
51769 * DISTLIST: Replaced boot/powerpc/ieee1275/crt0.S and
51770 boot/powerpc/ieee1275/cmain.c with kern/powerpc/ieee1275/crt0.S
51771 and kern/powerpc/ieee1275/cmain.c, respectively.
51772
51773 * boot/powerpc/ieee1275/crt0.S: Moved to ...
51774 * kern/powerpc/ieee1275/crt0.S: ... here.
51775
51776 * boot/powerpc/ieee1275/cmain.c: Moved to ...
51777 * kern/powerpc/ieee1275/cmain.c: ... here.
51778
51779 * conf/powerpc-ieee1275.rmk (grubof_SOURCES): Use
51780 kern/powerpc/ieee1275/crt0.S and kern/powerpc/ieee1275/cmain.c
51781 instead of boot/powerpc/ieee1275/crt0.S and
51782 boot/powerpc/ieee1275/cmain.c, respectively.
51783
51784 * boot/i386/pc/boot.S (lba_mode): Do not store the total number of
51785 sectors. It was not used anyway.
51786
51787 2005-08-30 Hollis Blanchard <hollis@penguinppc.org>
51788
51789 * term/ieee1275/ofconsole.c (grub_ofconsole_getcharwidth): Fix
51790 `unused parameter' warning.
51791
51792 2005-08-30 Hollis Blanchard <hollis@penguinppc.org>
51793
51794 * term/ieee1275/ofconsole.c (grub_ofconsole_getcharwidth): New
51795 function.
51796 (grub_ofconsole_term): Specify grub_ofconsole_getcharwidth as
51797 getcharwidth.
51798
51799 2005-08-28 Marco Gerards <metgerards@student.han.nl>
51800
51801 * include/grub/normal.h (enum grub_completion_type): Added
51802 `GRUB_COMPLETION_TYPE_ARGUMENT'.
51803
51804 * normal/cmdline.c (print_completion): Handle
51805 the `GRUB_COMPLETION_TYPE_ARGUMENT' type.
51806 * normal/menu_entry.c (store_completion): Likewise.
51807
51808 * normal/completion.c (complete_arguments): New function.
51809 (grub_normal_do_completion): Call `complete_arguments' when the
51810 current words start with a dash.
51811
51812 2005-08-27 Marco Gerards <metgerards@student.han.nl>
51813
51814 * conf/powerpc-ieee1275.rmk (pkgdata_MODULES): Fix typo (use
51815 `gzio.mod' instead of `io.mod').
51816
51817 2005-08-22 Yoshinori K. Okuji <okuji@enbug.org>
51818
51819 * gendistlist.sh (EXTRA_DISTFILES): Added genfslist.sh.
51820 (DISTDIRS): Added io and video.
51821 Rewrite the search routine to make an output consistently.
51822
51823 * DISTLIST: Added conf/sparc64-ieee1275.mk,
51824 conf/sparc64-ieee1275.rmk, include/grub/gzio.h,
51825 include/grub/ieee1275/ieee1275.h, include/grub/ieee1275/ofdisk.h,
51826 io/gzio.c, kern/sparc64/cache.c, kern/sparc64/dl.c,
51827 kern/sparc64/ieee1275/init.c, kern/sparc64/ieee1275/openfw.c and
51828 util/powerpc/ieee1275/misc.c.
51829
51830 * include/grub/gzio.h: New file.
51831 * io/gzio.c: Likewise.
51832
51833 * kern/file.c (grub_file_close): Call grub_device_close only if
51834 FILE->DEVICE is not NULL.
51835
51836 * include/grub/mm.h [!NULL] (NULL): New macro.
51837
51838 * include/grub/err.h (GRUB_ERR_BAD_GZIP_DATA): New constant.
51839
51840 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Added io/gzip.c.
51841 (pkgdata_MODULES): Added gzio.mod.
51842 (gzio_mod_SOURCES): New variable.
51843 (gzio_mod_CFLAGS): Likewise.
51844
51845 * conf/i386-pc.rmk (grub_emu_SOURCES): Added io/gzip.c.
51846 (pkgdata_MODULES): Added gzio.mod.
51847 (gzio_mod_SOURCES): New variable.
51848 (gzio_mod_CFLAGS): Likewise.
51849
51850 * commands/cat.c: Include grub/gzio.h.
51851 (grub_cmd_cat): Use grub_gzfile_open instead of
51852 grub_file_open.
51853
51854 * commands/cmp.c: Include grub/gzio.h.
51855 (grub_cmd_cmp): Use grub_gzfile_open instead of
51856 grub_file_open.
51857
51858 * loader/i386/pc/multiboot.c: Include grub/gzio.h.
51859 (grub_rescue_cmd_multiboot): Use grub_gzfile_open instead of
51860 grub_file_open.
51861 (grub_rescue_cmd_module): Likewise.
51862
51863 2005-08-21 Vincent Pelletier <subdino2004@yahoo.fr>
51864
51865 * conf/sparc64-ieee1275.rmk (grubof_SOURCES): The first file must be
51866 kern/sparc64/ieee1275/init.c because it contains _start.
51867 * conf/sparc64-ieee1275.mk: Generated from conf/sparc64-ieee1275.rmk.
51868
51869 2005-08-21 Vincent Pelletier <subdino2004@yahoo.fr>
51870
51871 * configure.ac: Add support for sparc64 host with ieee1275
51872 firmware.
51873 * configure: Generated from configure.ac.
51874 * disk/ieee1275/ofdisk.c (grub_ofdisk_open): Use grub_ssize_t
51875 instead of int.
51876 (grub_ofdisk_read): Likewise.
51877 (grub_ofdisk_open): Use %p to print pointer values, and cast the
51878 pointers as (void *) to remove a warning.
51879 (grub_ofdisk_close): Likewise.
51880 (grub_ofdisk_read): Likewise.
51881 * kern/ieee1275/ieee1275.c (grub_ieee1275_exit): This never
51882 returns, so make it return void to remove a warning.
51883 * include/grub/ieee1275/ieee1275.h (grub_ieee1275_exit):
51884 Corresponding prototype change.
51885 * kern/mm.c (grub_mm_init_region): Use %p to print pointer
51886 values, and cast the pointers as (void *) to remove a warning.
51887 (grub_mm_dump): Likewise.
51888 * conf/sparc64-ieee1275.mk: New file.
51889 * conf/sparc64-ieee1275.rmk: Likewise.
51890 * include/grub/sparc64/setjmp.h: Likewise.
51891 * include/grub/sparc64/types.h: Likewise.
51892 * include/grub/sparc64/ieee1275/console.h: Likewise.
51893 * include/grub/sparc64/ieee1275/ieee1275.h: Likewise.
51894 * include/grub/sparc64/ieee1275/kernel.h: Likewise.
51895 * include/grub/sparc64/ieee1275/time.h: Likewise.
51896 * kern/sparc64/cache.c: Likewise.
51897 * kern/sparc64/dl.c: Likewise.
51898 * kern/sparc64/ieee1275/init.c: Likewise.
51899 * kern/sparc64/ieee1275/openfw.c: Likewise.
51900
51901 2005-08-21 Yoshinori K. Okuji <okuji@enbug.org>
51902
51903 * util/console.c (grub_ncurses_putchar): If C is greater than
51904 0x7f, set C to a question mark.
51905 (grub_ncurses_getcharwidth): New function.
51906 (grub_ncurses_term): Specify grub_ncurses_getcharwidth as
51907 getcharwidth.
51908
51909 * normal/menu.c (print_entry): Made aware of Unicode. First,
51910 convert TITLE to UCS-4, and predict the cursor position by
51911 grub_getcharwidth.
51912
51913 * include/grub/misc.h (grub_utf8_to_ucs4): Specify the qualifier
51914 const to SRC.
51915 * kern/misc.c (grub_utf16_to_utf8): Likewise.
51916
51917 2005-08-20 Yoshinori K. Okuji <okuji@enbug.org>
51918
51919 * loader/powerpc/ieee1275/linux.c (grub_rescue_cmd_linux): Specify
51920 the boot file by the option BOOT_IMAGE. Use grub_stpcpy instead of
51921 grub_strcat.
51922
51923 * loader/i386/pc/linux.c (grub_rescue_cmd_linux): Specify the boot
51924 file by the option BOOT_IMAGE. Use grub_stpcpy instead of
51925 grub_strcpy and grub_strlen. Take it into account that a space
51926 character is inserted as a delimiter.
51927
51928 2005-08-20 Yoshinori K. Okuji <okuji@enbug.org>
51929
51930 * partmap/pc.c (pc_partition_map_iterate): Include the value of an
51931 invalid magic in the error.
51932
51933 * commands/search.c: New file.
51934
51935 * util/grub-emu.c (main): Call grub_search_init and
51936 grub_search_fini.
51937
51938 * kern/rescue.c (grub_rescue_print_disks): Removed.
51939 (grub_rescue_print_devices): New function.
51940 (grub_rescue_cmd_ls): Use grub_device_iterate with
51941 grub_rescue_print_devices instead of grub_disk_dev_iterate with
51942 grub_rescue_print_disks.
51943
51944 * kern/partition.c (grub_partition_iterate): Return the result of
51945 PARTMAP->ITERATE instead of GRUB_ERRNO.
51946
51947 * kern/device.c: Include grub/partition.h.
51948 (grub_device_iterate): New function.
51949
51950 * include/grub/partition.h (grub_partition_iterate): Return int
51951 instead of grub_err_t.
51952
51953 * include/grub/normal.h [GRUB_UTIL] (grub_search_init): New
51954 prototype.
51955 [GRUB_UTIL] (grub_search_fini): Likewise.
51956
51957 * include/grub/device.h (grub_device_iterate): New prototype.
51958
51959 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Added
51960 commands/search.c.
51961 (pkgdata_MODULES): Added search.mod.
51962 (search_mod_SOURCES): New variable.
51963 (search_mod_CFLAGS): Likewise.
51964
51965 * conf/i386-pc.rmk (grub_emu_SOURCES): Added commands/search.c.
51966 (pkgdata_MODULES): Added search.mod.
51967 (search_mod_SOURCES): New variable.
51968 (search_mod_CFLAGS): Likewise.
51969
51970 * commands/ls.c (grub_ls_list_disks): Renamed to ...
51971 (grub_ls_list_devices): ... this, and use grub_device_iterate.
51972 All callers changed.
51973
51974 * DISTLIST: Added commands/search.c.
51975
51976 2005-08-20 Yoshinori K. Okuji <okuji@enbug.org>
51977
51978 * kern/term.c (grub_putchar): Use grub_utf8_to_ucs4 for the
51979 conversion.
51980 (grub_getcharwidth): New function.
51981
51982 * kern/misc.c (grub_utf8_to_ucs4): New function.
51983
51984 * include/grub/term.h (struct grub_term): Added a new member
51985 "getcharwidth".
51986 (grub_getcharwidth): New prototype.
51987
51988 * include/grub/misc.h (grub_utf8_to_ucs4): New prototype.
51989
51990 * term/i386/pc/console.c (map_char): New function. Segregated from
51991 grub_console_putchar.
51992 (grub_console_putchar): Use map_char.
51993 (grub_console_getcharwidth): New function.
51994 (grub_console_term): Specified grub_console_getcharwidth as
51995 getcharwidth.
51996
51997 * term/i386/pc/vga.c (grub_vga_getcharwidth): New function.
51998 (grub_vga_term): Specified grub_vga_getcharwidth as getcharwidth.
51999
52000 * term/i386/pc/vesafb.c (grub_virtual_screen_setup): Return
52001 GRUB_ERRNO.
52002 (grub_vesafb_init): Do not use RC. Instead, use GRUB_ERRNO. Rely
52003 on grub_strtoul completely.
52004 (write_char): Declare local variables in the beginning of the
52005 function.
52006 (grub_vesafb_getcharwidth): New function.
52007 (grub_vesafb_term): Specified grub_vesafb_getcharwidth as
52008 getcharwidth.
52009
52010 2005-08-19 Yoshinori K. Okuji <okuji@enbug.org>
52011
52012 * DISTLIST: Replace commands/i386/pc/vbe_list_modes.c and
52013 commands/i386/pc/vbe_test.c with commands/i386/pc/vbeinfo.c and
52014 commands/i386/pc/vbetest.c.
52015
52016 * video/i386/pc/vbe.c (grub_vbe_probe): If INFOBLOCK is not NULL,
52017 call grub_vbe_get_controller_info again, because the returned
52018 information is volatile.
52019 (grub_vbe_set_video_mode): Mostly rewritten.
52020 (grub_vbe_get_video_mode): Use grub_vbe_probe and use
52021 grub_vbe_status_t correctly.
52022 (grub_vbe_get_video_mode_info): Likewise.
52023 (grub_vbe_set_pixel_rgb): Use a switch statement rather than
52024 several if statements.
52025
52026 * commands/i386/pc/vbe_list_modes.c: Renamed to ...
52027 * commands/i386/pc/vbeinfo.c: ... this.
52028
52029 * commands/i386/pc/vbe_test.c: Renamed to ...
52030 * commands/i386/pc/vbetest.c: ... this.
52031
52032 * commands/i386/pc/vbeinfo.c (grub_cmd_vbe_list_modes): Renamed to
52033 ...
52034 (grub_cmd_vbeinfo): ... this. Save video modes before
52035 iterating. Skip a video mode, if it is not available, not enough
52036 information is given or it is monochrome. Show the memory
52037 model. Leave the interpretation of MODEVAR to grub_strtoul
52038 completely.
52039 (GRUB_MOD_INIT): Rename vbe_list_modes to vbeinfo.
52040 (GRUB_MOD_FINI): Likewise.
52041
52042 * commands/i386/pc/vbetest.c (grub_cmd_vbe_test): Renamed to ...
52043 (grub_cmd_vbetest): ... this. Don't print unnecessarily. Use
52044 grub_err_t instead of grub_uint32_t. Don't use SPTR. Remove a
52045 duplicated grub_env_get. Leave the interpretation of MODEVAR to
52046 grub_strtoul completely.
52047 (real2pm): Removed.
52048 (GRUB_MOD_INIT): Rename vbe_test to vbetest.
52049 (GRUB_MOD_FINI): Likewise.
52050
52051 * normal/misc.c: Include grub/mm.h.
52052
52053 * conf/i386-pc.rmk (pkgdata_MODULES): Replaced vbe_test.mod and
52054 vbe_list_modes with vbetest.mod and vbeinfo.mod.
52055 (vbe_list_modes_mod_SOURCES): Removed.
52056 (vbe_list_modes_mod_CFLAGS): Likewise.
52057 (vbe_test_mod_SOURCES): Likewise.
52058 (vbe_test_mod_CFLAGS): Likewise.
52059 (vbeinfo_mod_SOURCES): New variable.
52060 (vbeinfo_mod_CFLAGS): Likewise.
52061 (vbetest_mod_SOURCES): Likewise.
52062 (vbetest_mod_CFLAGS): Likewise.
52063
52064 2005-08-18 Yoshinori K. Okuji <okuji@enbug.org>
52065
52066 * normal/misc.c: New file.
52067
52068 * DISTLIST: Added normal/misc.c.
52069
52070 * partmap/amiga.c (amiga_partition_map_iterate): Add an argument
52071 DISK to HOOK. Call HOOK with DISK.
52072 * partmap/apple.c (apple_partition_map_iterate): Likewise.
52073 * partmap/pc.c (pc_partition_map_iterate): Likewise.
52074 * partmap/sun.c (sun_partition_map_iterate): Likewise.
52075
52076 * normal/menu_entry.c (struct screen): Added a new member
52077 "completion_shown".
52078 (completion_buffer): New global variable.
52079 (make_screen): Set SCREEN->COMPLETION_SHOWN to zero.
52080 (store_completion): New function.
52081 (complete): Likewise.
52082 (clear_completions): Likewise.
52083 (grub_menu_entry_run): If SCREEN->COMPLETION_SHOWN is non-zero,
52084 call clear_completions and reset SCREEN->COMPLETION_SHOWN. If C is
52085 a tab, call complete.
52086
52087 * normal/completion.c (disk_dev): Removed.
52088 (print_simple_completion): Likewise.
52089 (print_partition_completion): Likewise.
52090 (print_func): New global variable.
52091 (add_completion): Do not take the arguments WHAT or PRINT any
52092 longer. Added a new argument TYPE. Instead of printing directly,
52093 call PRINT_FUNC if not NULL.
52094 All callers changed.
52095 (complete_device): Use a local variable DEV instead of
52096 DISK_DEV. Do not move CURRENT_WORD to the end of a device name.
52097 (grub_normal_do_completion): Take a new argument HOOK. Do not
52098 initialize DISK_DEV. Initialize PRINT_FUNC to HOOK. If RET is an
52099 empty string, return NULL instead.
52100 All callers changed.
52101
52102 * normal/cmdline.c (print_completion): New function.
52103
52104 * kern/partition.c (grub_partition_iterate): Add an argument DISK
52105 to HOOK.
52106 All callers changed.
52107
52108 * kern/disk.c (grub_print_partinfo): Removed.
52109
52110 * include/grub/partition.h (struct grub_partition_map): Add a new
52111 argument DISK into HOOK of ITERATE.
52112 (grub_partition_iterate): Add a new argument DISK to HOOK.
52113
52114 * include/grub/normal.h (enum grub_completion_type): New enum.
52115 (grub_completion_type_t): New type.
52116 (GRUB_COMPLETION_TYPE_COMMAND): New constant.
52117 (GRUB_COMPLETION_TYPE_DEVICE): Likewise.
52118 (GRUB_COMPLETION_TYPE_PARTITION): Likewise.
52119 (GRUB_COMPLETION_TYPE_FILE): Likewise.
52120 (grub_normal_do_completion): Added a new argument HOOK.
52121 (grub_normal_print_device_info): New prototype.
52122
52123 * include/grub/disk.h (grub_print_partinfo): Removed.
52124
52125 * conf/i386-pc.rmk (grub_emu_SOURCES): Added normal/misc.c.
52126 (normal_mod_SOURCES): Likewise.
52127 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
52128 (normal_mod_SOURCES): Likewise.
52129
52130 * commands/ls.c (grub_ls_list_disks): Use
52131 grub_normal_print_device_info instead of grub_print_partinfo. Free
52132 PNAME.
52133 (grub_ls_list_files): Use grub_normal_print_device_info instead of
52134 duplicating the code.
52135
52136 2005-08-16 Vesa Jaaskelainen <chaac@nic.fi>
52137
52138 * commands/i386/pc/vbe_list_modes.c: Update source formatting to
52139 follow GCS more precisely.
52140 * commands/i386/pc/vbe_test.c: Likewise.
52141 * include/grub/i386/pc/vbe.h: Likewise.
52142 * term/i386/pc/vesafb.c: Likewise.
52143 * video/i386/pc/vbe.c: Likewise.
52144
52145 2005-08-16 Vesa Jaaskelainen <chaac@nic.fi>
52146
52147 * DISTLIST: Added term/i386/pc/vesafb.c
52148 DISTLIST: Added video/i386/pc/vbe.c
52149 DISTLIST: Added commands/i386/pc/vbe_list_modes.c.
52150 DISTLIST: Added commands/i386/pc/vbe_test.c.
52151 * commands/i386/pc/vbe_list_modes.c: New file.
52152 * commands/i386/pc/vbe_test.c: Likewise.
52153 * term/i386/pc/vesafb.c: Likewise.
52154 * video/i386/pc/vbe.c: Likewise.
52155 * include/grub/i386/pc/vbe.h (GRUB_VBE_DEFAULT_VIDEO_MODE): Added define.
52156 (grub_vbe_probe) Added prototype.
52157 (grub_vbe_set_video_mode) Likewise.
52158 (grub_vbe_get_video_mode) Likewise.
52159 (grub_vbe_get_video_mode_info) Likewise.
52160 (grub_vbe_set_pixel_rgb) Likewise.
52161 (grub_vbe_set_pixel_index) Likewise.
52162 * conf/i386-pc.rmk (pkgdata_MODULES): Added vbe.mod.
52163 (pkgdata_MODULES): Added vesafb.mod.
52164 (pkgdata_MODULES): Added vbe_list_modes.mod.
52165 (pkgdata_MODULES): Added vbe_test.mod.
52166 (vbe_mod_SOURCES): Added.
52167 (vbe_mod_CFLAGS): Likewise.
52168 (vesafb_mod_SOURCES): Likewise.
52169 (vesafb_mod_CFLAGS): Likewise.
52170 (vbe_list_modes_mod_SOURCES): Likewise.
52171 (vbe_list_modes_mod_CFLAGS): Likewise.
52172 (vbe_test_mod_SOURCES): Likewise.
52173 (vbe_test_mod_CFLAGS): Likewise.
52174
52175 2005-08-14 Yoshinori K. Okuji <okuji@enbug.org>
52176
52177 * normal/command.c (grub_command_execute): If INTERACTIVE is
52178 false and GRUB_COMMAND_FLAG_NO_ECHO is not specified, print
52179 CMDLINE. Disable the pager if INTERACTIVE is true.
52180 All callers are changed.
52181
52182 * normal/main.c (grub_normal_execute): Read command.lst and fs.lst
52183 before reading a config file.
52184 * normal/main.c (read_config_file): Even if a command is not
52185 found, register it if it is within an entry.
52186
52187 * util/grub-emu.c: Include sys/types.h and unistd.h.
52188 (options): Added --hold.
52189 (struct arguments): Added a new member "hold".
52190 (parse_opt): If KEY is 'H', set ARGS->HOLD to ARG or -1 if ARG is
52191 missing.
52192 (main): Initialize ARGS.HOLD to zero. Wait until ARGS.HOLD is
52193 cleared by a debugger, if it is not zero.
52194
52195 * include/grub/normal.h (grub_command_execute): Add an argument
52196 INTERACTIVE.
52197
52198 2005-08-14 Vesa Jaaskelainen <chaac@nic.fi>
52199
52200 * DISTLIST: Added include/grub/i386/pc/vbe.h.
52201
52202 2005-08-13 Yoshinori K. Okuji <okuji@enbug.org>
52203
52204 * aclocal.m4 (grub_I386_CHECK_REGPARM_BUG): Replace the test
52205 program with another one, because the old one didn't detect a bug
52206 in gcc-3.4. Always use regparm 2, because the new test is still
52207 not enough for gcc-4.0. Someone must investigate a simple test
52208 case which detects a bug in gcc-4.0.
52209
52210 2005-08-12 Yoshinori K. Okuji <okuji@enbug.org>
52211
52212 * DISTLIST: Added normal/completion.c.
52213
52214 * normal/completion.c: New file.
52215
52216 * term/i386/pc/console.c (grub_console_getwh): New function.
52217 (grub_console_term): Assign grub_console_getwh to getwh.
52218
52219 * normal/cmdline.c (grub_tab_complete): Removed. Now the same
52220 function is defined in normal/completion.c as
52221 grub_normal_do_completion.
52222 (grub_cmdline_get): Use grub_normal_do_completion instead of
52223 grub_tab_complete.
52224
52225 * kern/partition.c (grub_partition_map_iterate): Return 1 if HOOK
52226 returns non-zero, otherwise return 0.
52227 (grub_partition_iterate): First, probe the partition map. Then,
52228 call ITERATE only for this partition map.
52229
52230 * kern/misc.c (grub_strncmp): Rewritten.
52231
52232 * kern/disk.c (grub_disk_dev_iterate): Return 1 if P->ITERATE
52233 returns non-zero. Otherwise return 0.
52234
52235 * include/grub/partition.h (grub_partition_map_iterate): Return
52236 int instead of void.
52237
52238 * include/grub/normal.h (grub_normal_do_completion): New prototype.
52239
52240 * include/grub/misc.h (grub_strncmp): Change the type of N to
52241 grub_size_t.
52242
52243 * include/grub/disk.h (grub_disk_dev_iterate): Return int instead
52244 of void.
52245
52246 * normal/menu.c (draw_border): Cast GRUB_TERM_BORDER_WIDTH to
52247 unsigned explicitly before comparing it with I.
52248
52249 * kern/main.c (grub_env_write_root): Add the attribute unused into
52250 VAR.
52251
52252 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Added
52253 normal/completion.c.
52254 (normal_mod_SOURCES): Likewise.
52255 * conf/i386-pc.rmk (grub_emu_SOURCES): Likewise.
52256 (normal_mod_SOURCES): Likewise.
52257
52258 * normal/command.c (grub_iterate_commands): If ITERATE returns
52259 non-zero, return one immediately.
52260
52261 2005-08-09 Vesa Jaaskelainen <chaac@nic.fi>
52262
52263 * conf/i386-pc.rmk (kernel_img_HEADERS): Added machine/vbe.h.
52264 * kern/i386/pc/startup.S: Updated Global Descriptor table's
52265 descriptions.
52266 (grub_vbe_get_controller_info): New function.
52267 (grub_vbe_get_mode_info): Likewise.
52268 (grub_vbe_set_mode): Likewise.
52269 (grub_vbe_get_mode): Likewise.
52270 (grub_vbe_set_memory_window): Likewise.
52271 (grub_vbe_get_memory_window): Likewise.
52272 (grub_vbe_set_scanline_length): Likewise.
52273 (grub_vbe_get_scanline_length): Likewise.
52274 (grub_vbe_set_display_start): Likewise.
52275 (grub_vbe_get_display_start): Likewise.
52276 (grub_vbe_set_palette_data): Likewise.
52277 * include/grub/i386/pc/vbe.h: New file.
52278
52279 2005-08-08 Hollis Blanchard <hollis@penguinppc.org>
52280
52281 * conf/powerpc-ieee1275.rmk (grubof_SOURCES): Replaced
52282 kern/ieee1275/of.c with kern/ieee1275/ieee1275.c.
52283 * DISTLIST: Likewise.
52284 * kern/ieee1275/of.c: Moved to ...
52285 * kern/ieee1275/ieee1275.c: ... here.
52286
52287 2005-08-08 Hollis Blanchard <hollis@penguinppc.org>
52288
52289 * term/ieee1275/ofconsole.c: Include <grub/mm.h>.
52290 (grub_ofconsole_getwh): Cast -1 to type grub_ieee1275_ihandle_t.
52291 Pass 0 as `end' parameter to grub_strtoul().
52292
52293 2005-08-08 Hollis Blanchard <hollis@penguinppc.org>
52294
52295 * include/grub/powerpc/ieee1275/console.h: Do not include
52296 <grub/types.h>. Do not include <grub/symbol.h>. Remove ASM_FILE
52297 ifdef.
52298 (grub_console_cur_color): Remove i386-specific prototype.
52299 (grub_console_real_putchar): Likewise.
52300 (grub_console_checkkey): Likewise.
52301 (grub_console_getkey): Likewise.
52302 (grub_console_getxy): Likewise.
52303 (grub_console_gotoxy): Likewise.
52304 (grub_console_cls): Likewise.
52305 (grub_console_setcursor): Likewise.
52306 * kern/powerpc/ieee1275/init.c: Don't include <grub/console.h>.
52307 Include <grub/machine/console.h>.
52308 * term/ieee1275/ofconsole.c: Likewise.
52309
52310 2005-08-08 Yoshinori K. Okuji <okuji@enbug.org>
52311
52312 * Makefile.in (LIBLZO): New variable.
52313
52314 * configure.ac: Check for LZO version 2.
52315
52316 * util/i386/pc/grub-mkimage.c [HAVE_LZO_LZO1X_H]: Include
52317 lzo/lzo1x.h instead of lzo1x.h.
52318
52319 * conf/i386-pc.rmk (grub_mkimage_LDFLAGS): Use $(LIBLZO) instead
52320 of -llzo.
52321
52322 * util/i386/pc/grub-setup.c (main): Do not free PREFIX
52323 twice. Reported by Vladimir Serbinenko <phcoder@gmail.com>.
52324
52325 * partmap/pc.c (pc_partition_map_probe): Restore P->DATA after
52326 copying the data from PARTITION to P.
52327
52328 2005-08-07 Yoshinori K. Okuji <okuji@enbug.org>
52329
52330 * kern/rescue.c (grub_rescue_cmd_rmmod): If the reference count is
52331 negative, unload the module.
52332
52333 * util/i386/pc/grub-setup.c (setup): The name of the PC partition
52334 map is "pc_partition_map" but not "pc".
52335 (usage): Fix the description. The options are --boot-image and
52336 --core-image but not --boot-file or --core-file.
52337 (main): If not specified explicitly, make BOOT_FILE and CORE_FILE
52338 based on DEFAULT_BOOT_FILE and DEFAULT_CORE_FILE with DIR or
52339 DEFAULT_DIRECTORY.
52340
52341 * util/i386/pc/grub-install.in: Do not specify --boot-file or
52342 --core-file. Specify INSTALL_DEVICE as an argument.
52343
52344 * util/console.c: Include config.h.
52345 [HAVE_NCURSeS_CURSES_H]: Include ncurses/curses.h.
52346 [HAVE_NCURSES_H]: Include ncurses.h.
52347 [HAVE_CURSES_H]: Include curses.h.
52348 [!A_NORMAL] (A_NORMAL): Defined as zero.
52349 [!A_STANDOUT] (A_STANDOUT): Likewise.
52350
52351 * conf/i386-pc.rmk (grub_emu_LDFLAGS): Use $(LIBCURSES) instead of
52352 -lncurses.
52353 * conf/powerpc-ieee1275.rmk (grub_emu_LDFLAGS): Likewise.
52354
52355 * configure.ac: Check for curses libraries and headers.
52356
52357 * Makefile.in (LIBCURSES): New variable.
52358
52359 * genmk.rb (Script::rule): Set the executable bits.
52360
52361 * util/i386/pc/biosdisk.c (grub_util_biosdisk_get_grub_dev): The
52362 name of the PC partition map is "pc_partition_map" but not "pc".
52363
52364 2005-08-07 Yoshinori K. Okuji <okuji@enbug.org>
52365
52366 * util/i386/pc/grub-install.in (grub_probefs): New variable.
52367 (modules): Likewise.
52368 (usage): Added descriptions for --modules and --grub-probefs.
52369 Handle --modules and --grub-probefs. Save the arguments in MODULES
52370 and GRUB_PROBEFS, respectively.
52371 Auto-detect a filesystem module against GRUBDIR. If the result is
52372 empty and modules are not specified explicitly, abort the
52373 installation. Add the result to MODULES.
52374
52375 * DISTLIST: Removed boot/powerpc/ieee1275/ieee1275.c,
52376 disk/powerpc/ieee1275/ofdisk.c,
52377 include/grub/powerpc/ieee1275/init.h and
52378 term/powerpc/ieee1275/ofconsole.c.
52379 Added disk/ieee1275/ofdisk.c, kern/ieee1275/of.c and
52380 term/ieee1275/ofconsole.c.
52381
52382 * include/grub/powerpc/ieee1275/console.h: Resurrected.
52383
52384 * COPYING: Upgraded to the latest version. Only the address of the
52385 FSF office has changed.
52386
52387 2005-08-07 Yoshinori K. Okuji <okuji@enbug.org>
52388
52389 * conf/powerpc-ieee1275.rmk (grubof_SOURCES): Replaced
52390 kern/ieee1275.c with kern/ieee1275/of.c.
52391
52392 * kern/ieee1275.c: Moved to ...
52393 * kern/ieee1275/of.c: ... here.
52394
52395 2005-08-06 Yoshinori K. Okuji <okuji@enbug.org>
52396
52397 * conf/i386-pc.rmk (kernel_img_HEADERS): Reordered for
52398 readability.
52399
52400 * config.guess: Updated to the latest version from gnulib.
52401 * config.sub: Likewise.
52402 * install.sh: Likewise.
52403 * mkinstalldirs: Likewise.
52404
52405 * include/grub/console.h: Removed. This file is arch-specific. Do
52406 not put this in include/grub.
52407
52408 * include/grub/i386/pc/console.h: Resurrected.
52409
52410 * util/console.c: Include grub/machine/console.h instead of
52411 grub/console.h.
52412 * util/grub-emu.c: Likewise.
52413
52414 2005-08-04 Marco Gerards <metgerards@student.han.nl>
52415
52416 * kern/term.c (grub_putcode): Use `grub_getwh' instead of
52417 hardcoded value.
52418
52419 From Vincent Pelletier <subdino2004@yahoo.fr>
52420 * include/grub/term.h (GRUB_TERM_WIDTH, GRUB_TERM_HEIGHT):
52421 Redefined to use grub_getwh.
52422 (grub_term): New member named getwh.
52423 (grub_getwh): New prototype.
52424 * kern/term.c (grub_getwh): New function.
52425 * term/i386/pc/console.c (grub_console_getwh): New function.
52426 (grub_console_term): New member `getwh'.
52427 * term/i386/pc/vga.c (grub_vga_getwh): New function.
52428 (grub_vga_term): New member `getwh'.
52429 * term/ieee1275/ofconsole.c (grub_ofconsole_readkey): Use
52430 grub_ssize_t.
52431 (grub_ofconsole_getw): New function.
52432 (grub_ofconsole_init): Use grub_ssize_t and unsigned char.
52433 (grub_ofconsole_term): New field named getwh and new initial
52434 value.
52435
52436 2005-08-03 Hollis Blanchard <hollis@penguinppc.org>
52437
52438 * include/grub/powerpc/ieee1275/ieee1275.h: Move ...
52439 * include/grub/ieee1275/ieee1275.h: ... to here. All users updated.
52440 Move `abort', `grub_reboot', and `grub_halt' prototypes ...
52441 * include/grub/powerpc/ieee1275/kernel.h: ... to here.
52442 * commands/ieee1275/halt.c: Include <grub/machine/kernel.h> instead
52443 of <grub/machine/ieee1275.h>.
52444 * commands/ieee1275/reboot.c: Likewise.
52445 * boot/powerpc/ieee1275/ieee1275.c: Move ...
52446 * kern/ieee1275.c: ... to here. All users updated. Change all
52447 parameter structs to use new type `grub_ieee1275_cell_t'.
52448 * term/powerpc/ieee1275/ofconsole.c: Move ...
52449 * term/ieee1275/ofconsole.c: ... to here. All users updated.
52450 * disk/powerpc/ieee1275/ofdisk.c: Move ...
52451 * disk/ieee1275/ofdisk.c: ... to here. All users updated.
52452 * boot/powerpc/ieee1275/cmain.c: Change `grub_ieee1275_entry_fn' type
52453 to return int.
52454 * include/grub/i386/pc/console.h: Move to include/grub/console.h.
52455 Remove unused prototypes. All users updated.
52456 * include/grub/powerpc/ieee1275/console.h: Removed.
52457 * include/grub/powerpc/ieee1275/ieee1275.h: Define
52458 `grub_ieee1275_cell_t'.
52459 * kern/powerpc/ieee1275/openfw.c: Include <grub/machine/kernel.h>.
52460 Cast comparisons with -1 to the correct type.
52461 * loader/powerpc/ieee1275/linux.c (kernel_entry_t): Change parameter
52462 type to match `grub_ieee1275_entry_fn'.
52463
52464 2005-08-01 Yoshinori K. Okuji <okuji@enbug.org>
52465
52466 * DISTLIST: Added util/i386/pc/grub-probefs.c.
52467
52468 * conf/i386-pc.rmk (sbin_UTILITIES): Added grub-probefs.
52469 (grub_setup_SOURCES): Removed partmap/amiga.c, partmap/apple.c and
52470 partmap/sun.c.
52471 (grub_probefs_SOURCES): New variable.
52472
52473 * util/i386/pc/grub-probefs.c: New file.
52474
52475 * util/i386/pc/grub-setup.c (main): Call
52476 grub_pc_partition_map_init, grub_ufs_init, grub_minix_init,
52477 grub_hfs_init and grub_jfs_init to initialize the system. Call
52478 grub_ufs_fini, grub_minix_fini, grub_hfs_fini, grub_jfs_init and
52479 grub_pc_partition_map_fini to finish the system.
52480
52481 2005-07-31 Yoshinori K. Okuji <okuji@enbug.org>
52482
52483 * loader/i386/pc/multiboot.c (grub_multiboot_is_elf32): New
52484 function.
52485 (grub_multiboot_load_elf32): Likewise.
52486 (grub_multiboot_is_elf64): Likewise.
52487 (grub_multiboot_load_elf64): Likewise.
52488 (grub_multiboot_load_elf): Likewise.
52489 (grub_rescue_cmd_multiboot): Call grub_multiboot_load_elf to load
52490 an ELF32 or ELF64 file.
52491 This is based on a patch from Ruslan Nikolaev <nruslan@mail.com>.
52492
52493 From Serbinenko Vladimir <serbinenko.vova@list.ru>:
52494 * kern/disk.c (grub_print_partinfo): Check if FS->LABEL is not
52495 NULL before calling FS->LABEL.
52496 * fs/fat.c (grub_fat_dir): Initialize DIRNAME to NULL.
52497 * commands/ls.c (grub_ls_list_files): Show labels, if possible.
52498 (grub_ls_list_disks): Check if FS and FS->LABEL are not NULL
52499 before calling FS->LABEL.
52500
52501 2005-07-26 Yoshinori K. Okuji <okuji@enbug.org>
52502
52503 * util/i386/pc/grub-install.in (datadir): New variable.
52504 (libdir): Removed.
52505 (pkgdatadir): New variable.
52506 (pkglibdir): Removed.
52507
52508 2005-07-24 Yoshinori K. Okuji <okuji@enbug.org>
52509
52510 * DISTLIST: Added util/i386/pc/grub-install.in.
52511
52512 * util/i386/pc/grub-install.in: New file.
52513
52514 * conf/i386-pc.rmk (sbin_SCRIPTS): New variable.
52515 (grub_install_SOURCES): Likewise.
52516
52517 * genmk.rb: Added support for scripts.
52518 (Script): New class.
52519 (scripts): New variable.
52520
52521 * Makefile.in (install-local): Install sbin_SCRIPTS by
52522 INSTALL_SCRIPT.
52523 (uninstall): Remove sbin_SCRIPTS.
52524
52525 * util/i386/pc/grub-setup.c (main): If the argument is not a GRUB
52526 device, try to get a GRUB device by
52527 grub_util_biosdisk_get_grub_dev.
52528 Free DEST_DEV.
52529
52530 * util/i386/pc/grub-mkdevicemap.c (usage): Remove a duplicated
52531 description for --device-map.
52532
52533 2005-07-20 Yoshinori K. Okuji <okuji@enbug.org>
52534
52535 Change the semantics of variable hooks. They now return strings
52536 instead of error values.
52537
52538 * util/i386/pc/grub-setup.c: Include grub/env.h.
52539 (setup): Use grub_device_set_root instead of grub_env_set.
52540
52541 * kern/rescue.c (grub_rescue_cmd_root): Use grub_env_set and
52542 grub_env_get instead of grub_device_set_root and
52543 grub_device_get_root, respectively.
52544
52545 * kern/main.c (grub_env_write_root): New function.
52546 (grub_set_root_dev): Register grub_env_write_hook for "root". Use
52547 grub_env_set instead of grub_device_set_root.
52548
52549 * kern/env.c (HASHSZ): Reduced to 13, because GRUB does not need
52550 many variables.
52551 (grub_env_set): Set ENV->VALUE to the result of ENV->WRITE_HOOK
52552 rather than calling ENV->WRITE_HOOK afterwards.
52553 (grub_env_get): Return the result of ENV->READ_HOOK rather than
52554 passing a pointer of a pointer.
52555 (grub_register_variable_hook): Change the types of "read_hook" and
52556 "write_hook" to grub_env_read_hook_t and grub_env_write_hook_t,
52557 respectively.
52558 Allocate the default empty string on the heap, because this string
52559 may be freed later.
52560
52561 * kern/device.c: Include grub/env.h.
52562 (grub_device_set_root): Removed.
52563 (grub_device_get_root): Likewise.
52564 (grub_device_open): Use grub_env_get instead of
52565 grub_device_get_root.
52566
52567 * include/grub/env.h (grub_env_read_hook_t): New type.
52568 (grub_env_write_hook_t): Likewise.
52569 (grub_env_var): Change the types of "read_hook" and "write_hook"
52570 to grub_env_read_hook_t and grub_env_write_hook_t, respectively.
52571 (grub_register_variable_hook): Likewise.
52572
52573 * include/grub/device.h (grub_device_set_root): Removed.
52574 (grub_device_set_root): Likewise.
52575
52576 * fs/fat.c (grub_fat_dir): Make a copy of PATH in DIRNAME, and
52577 make sure that DIRNAME terminates with '/', so that
52578 grub_fat_find_dir will fail if PATH is not a directory.
52579
52580 * commands/ls.c (grub_ls_list_files): Remove the qualifier const
52581 from DIRNAME.
52582 Use the qualifier auto for print_files and print_files_long.
52583 If FS->DIR sets GRUB_ERRNO to GRUB_ERR_BAD_FILE_TYPE, try DIRNAME
52584 as a regular file.
52585 Put a newline only if there is no error.
52586 (grub_cmd_ls): Remove grub_ls_print_files, because this is not
52587 used.
52588
52589 2005-07-20 Yoshinori K. Okuji <okuji@enbug.org>
52590
52591 * kern/partition.c (grub_partition_probe): Initialize PART to
52592 NULL. Otherwise, when no partition map is registered, this returns
52593 a garbage.
52594
52595 2005-07-19 Yoshinori K. Okuji <okuji@enbug.org>
52596
52597 * partmap/apple.c (apple_partition_map_iterate): Check if POS
52598 equals GRUB_DISK_SECTOR_SIZE to see if the partition table is
52599 valid.
52600
52601 2005-07-18 Yoshinori K. Okuji <okuji@enbug.org>
52602
52603 * commands/ls.c (grub_ls_list_disks): Print the filesystem
52604 information on each device, if it does not have partitions. Print
52605 "Device" instead of "Disk", because this function is not specific
52606 to disk devices.
52607
52608 * normal/main.c (grub_rescue_cmd_normal): Make the variable CONFIG
52609 static to ensure that it is put on the memory rather than a
52610 register.
52611
52612 2005-07-17 Yoshinori Okuji <okuji@enbug.org>
52613
52614 * commands/cat.c (GRUB_MOD_INIT): Use better documentation.
52615 (grub_cat_init): Likewise.
52616 * loader/i386/pc/chainloader_normal.c (GRUB_MOD_INIT): Likewise.
52617 (options): Likewise.
52618 * commands/configfile.c (GRUB_MOD_INIT): Likewise.
52619 (grub_configfile_init): Likewise.
52620 * font/manager.c (GRUB_MOD_INIT): Likewise.
52621 * commands/help.c (GRUB_MOD_INIT): Likewise.
52622 (grub_help_init): Likewise.
52623 * normal/command.c (grub_command_init): Likewise.
52624 * loader/i386/pc/linux_normal.c (GRUB_MOD_INIT): Likewise.
52625 * disk/loopback.c (grub_loop_init): Likewise.
52626 (GRUB_MOD_INIT): Likewise.
52627 * commands/ls.c (grub_ls_init): Likewise.
52628 (GRUB_MOD_INIT): Likewise.
52629 (options): Likewise.
52630 * commands/boot.c (grub_boot_init): Likewise.
52631 (GRUB_MOD_INIT): Likewise.
52632 * loader/i386/pc/multiboot_normal.c (GRUB_MOD_INIT): Likewise.
52633 * commands/i386/pc/reboot.c (grub_reboot_init): Likewise.
52634 (GRUB_MOD_INIT): Likewise.
52635 * commands/cmp.c (grub_cmp_init): Likewise.
52636 (GRUB_MOD_INIT): Likewise.
52637
52638 * normal/arg.c: Use <> instead of "" to include header files.
52639 (SHORT_ARG_HELP): New macro.
52640 (SHORT_ARG_USAGE): Likewise.
52641 (help_options): Specify SHORT_ARG_HELP and SHORT_ARG_USAGE instead
52642 of 'h' and 'u' for help and usage, respectively. Use more GNU-like
52643 descriptions.
52644 (find_short): Check if C is 'h' or 'u' explicitly.
52645 (grub_arg_show_help): Use space characters instead of tabs. Treat
52646 SHORT_ARG_HELP and SHORT_ARG_USAGE exceptionally so that -h and -u
52647 are shown with --help and --usage only if they are not used for
52648 the command itself.
52649 (parse_option): Use SHORT_ARG_HELP and SHORT_ARG_USAGE instead of
52650 'h' and 'u'.
52651
52652 * include/grub/arg.h (struct grub_arg_option): Add the qualifier
52653 const into "longarg". Change the type of "shortarg" to int.
52654
52655 2005-07-17 Yoshinori Okuji <okuji@enbug.org>
52656
52657 * boot/i386/pc/boot.S (boot_drive_check): New label.
52658
52659 * include/grub/i386/pc/boot.h (GRUB_BOOT_MACHINE_DRIVE_CHECK): New
52660 macro.
52661
52662 * util/i386/pc/grub-setup.c (setup): Added a workaround for BIOSes
52663 which do not pass a boot drive correctly. Copied from GRUB Legacy.
52664
52665 2005-07-17 Yoshinori Okuji <okuji@enbug.org>
52666
52667 * kern/i386/pc/startup.S (gate_a20_try_system_control_port_a):
52668 When turning off Gate A20, skip the check and return immediately,
52669 because this is not fatal usually.
52670
52671 2005-07-17 Yoshinori Okuji <okuji@enbug.org>
52672
52673 * conf/i386-pc.rmk (pxeboot_img_LDFLAGS): The text address should
52674 be 0x7C00 instead of 0x8000.
52675
52676 * boot/i386/pc/pxeboot.S: Rewritten.
52677
52678 * kern/i386/pc/startup.S (gate_a20_try_bios): No need to specify
52679 EXT_C.
52680 (gate_a20_check_state): Read a byte from 0x108000. Invert the
52681 result.
52682
52683 2005-07-16 Yoshinori K. Okuji <okuji@enbug.org>
52684
52685 * kern/i386/pc/startup.S (grub_gate_a20): Rewritten for
52686 robustness. This routine now supports a BIOS call and System
52687 Control Port A to modify the gate A20.
52688
52689 * include/grub/i386/pc/kernel.h (GRUB_KERNEL_MACHINE_RAW_SIZE):
52690 Increased to 0x440.
52691
52692 2005-07-12 Hollis Blanchard <hollis@penguinppc.org>
52693
52694 * disk/powerpc/ieee1275/ofdisk.c (grub_ofdisk_open): dprintf the
52695 device path and resulting ihandle.
52696 (grub_ofdisk_close): dprintf the ihandle being closed.
52697 (grub_ofdisk_read): dprintf function parameters.
52698 * kern/mm.c (grub_mm_init_region): Likewise.
52699 * loader/powerpc/ieee1275/linux.c: Remove extra whitespace.
52700 (grub_linux_boot): dprintf the Linux entry point, initrd address and
52701 size, and boot arguments.
52702 (grub_rescue_cmd_linux): dprintf each ELF segment's address and size
52703 before loading into memory.
52704 (grub_rescue_cmd_initrd): dprintf the initrd's address and size
52705 before loading into memory.
52706
52707 2005-07-12 Yoshinori K. Okuji <okuji@enbug.org>
52708
52709 * kern/mm.c: Added much documentation.
52710 (GRUB_MM_ALIGN_LOG2): When GRUB_CPU_SIZEOF_VOID_P is
52711 8, set to 5 instead of 8.
52712
52713 2005-07-10 Yoshinori Okuji <okuji@enbug.org>
52714
52715 * DISTLIST: Added util/i386/pc/grub-mkimage.c.
52716
52717 * conf/i386-pc.rmk (sbin_UTILITIES): Added grub-mkdevicemap.
52718 (grub_mkdevicemap_SOURCES): New variable.
52719
52720 * util/i386/pc/grub-mkdevicemap.c: New file. Mostly copied from
52721 lib/device.c of GRUB Legacy.
52722
52723 2005-07-10 Yoshinori Okuji <okuji@enbug.org>
52724
52725 * commands/ls.c (grub_ls_list_files): Check if *PATH is NUL
52726 instead of PATH is NULL.
52727
52728 2005-07-09 Vincent Pelletier <subdino2004@yahoo.fr>
52729
52730 * commands/cmp.c (BUFFER_SIZE): New macro.
52731 (grub_cmd_cmp): Close the right file at the right time. Compare
52732 only data just read. Don't report files of different size as
52733 identical. Dynamically allocate buffers. Move variable
52734 declarations at the beginning of function.
52735
52736 2005-07-09 Yoshinori Okuji <okuji@enbug.org>
52737
52738 * aclocal.m4 (grub_I386_CHECK_REGPARM_BUG): The return value was
52739 reverse.
52740
52741 2004-07-04 Vincent Pelletier <subdino2004@yahoo.fr>
52742
52743 * normal/cmdline.c (grub_cmdline_get): Don't fallback on ctrl-d
52744 when backspace is pressed at beginning of line.
52745
52746 2005-07-03 Yoshinori Okuji <okuji@enbug.org>
52747
52748 * DISTLIST: Added genfslist.sh.
52749
52750 * normal/main.c (fs_module_list): New variable.
52751 (autoload_fs_module): New function.
52752 (read_fs_list): Likewise.
52753 (grub_normal_execute): Call read_fs_list.
52754
52755 * kern/fs.c (grub_fs_autoload_hook): New variable.
52756 (grub_fs_probe): Added support for auto-loading.
52757
52758 * include/grub/normal.h (struct grub_fs_module_list): New struct.
52759 (grub_fs_module_list_t): New type.
52760
52761 * include/grub/fs.h (grub_fs_autoload_hook_t): New type.
52762 (grub_fs_autoload_hook): New prototype.
52763
52764 * genfslist.sh: New file.
52765
52766 * genmk.rb: Added a rule to generate a filesystem list.
52767
52768 2005-06-30 Marco Gerards <metgerards@student.han.nl>
52769
52770 * configure.ac: Fix the test for cross-compiling.
52771
52772 * genmk.rb (Program): Use `$(CC)' instead of `$(BUILD_CC)'. Don't
52773 define GRUB_UTIL anymore.
52774
52775 * util/powerpc/ieee1275/grub-mkimage.c (load_note): Endian fixes
52776 so this function works on other systems than just big endian.
52777 (load_modules): Likewise.
52778 (add_segments): Likewise.
52779
52780 2005-06-23 Hollis Blanchard <hollis@penguinppc.org>
52781
52782 * kern/misc.c (grub_vsprintf): Add `longfmt'. If format string
52783 contains `l' modifier, get a long from va_arg().
52784
52785 2005-06-23 Yoshinori K. Okuji <okuji@enbug.org>
52786
52787 * kern/mm.c (grub_free): If the next free block which is being
52788 merged is the first free block, set the first block to the block
52789 being freed.
52790 Reported by Vincent Guffens <guffens@inma.ucl.ac.be>.
52791
52792 2005-05-08 Hollis Blanchard <hollis@penguinppc.org>
52793
52794 * boot/powerpc/ieee1275/cmain.c (cmain): Initialize
52795 `grub_ieee1275_chosen'.
52796
52797 2005-05-08 Hollis Blanchard <hollis@penguinppc.org>
52798
52799 * boot/powerpc/ieee1275/cmain.c (module_info): Remove definition.
52800 (grub_ieee1275_chosen): New variable.
52801 (cmain): Initialize and use `grub_ieee1275_chosen' instead of
52802 `chosen'.
52803 * boot/powerpc/ieee1275/crt0.S (init_stack): Remove stack space.
52804 * boot/powerpc/ieee1275/ieee1275.c (grub_ieee1275_get_property):
52805 Rename first argument to `phandle' for consistency.
52806 (grub_ieee1275_get_property_length): Likewise.
52807 (grub_ieee1275_next_property): Likewise. Change type of first argument
52808 to grub_ieee1275_phandle_t.
52809 * include/grub/powerpc/ieee1275/ieee1275.h (grub_ieee1275_entry_fn):
52810 Move export next to declaration.
52811 (grub_ieee1275_chosen): New variable.
52812 * include/grub/powerpc/ieee1275/kernel.h (GRUB_IEEE1275_MODULE_BASE):
52813 Correct cosmetic typo.
52814 * kern/powerpc/ieee1275/init.c (grub_set_prefix): Use
52815 `grub_ieee1275_chosen'.
52816 * kern/powerpc/ieee1275/openfw.c (grub_map): Likewise.
52817 * loader/powerpc/ieee1275/linux.c (grub_linux_boot): Likewise.
52818 (grub_rescue_cmd_linux): Set `initrd_addr' to 0.
52819 * term/powerpc/ieee1275/ofconsole.c (grub_ofconsole_refresh): Use
52820 `grub_ieee1275_chosen'.
52821
52822 2005-05-10 Hollis Blanchard <hollis@penguinppc.org>
52823
52824 * boot/powerpc/ieee1275/cmain.c (cmain): Remove code to parse
52825 /chosen/bootargs.
52826 * kern/powerpc/ieee1275/init.c (grub_machine_init): Parse
52827 /chosen/bootargs as "variable=value" pairs.
52828
52829 2005-05-08 Vincent Pelletier <subdino2004@yahoo.fr>
52830
52831 * include/grub/misc.h (grub_dprintf): New macro.
52832 (grub_real_dprintf): New prototype.
52833 (grub_strword): Likewise.
52834 (grub_iswordseparator): Likewise.
52835 * kern/misc.c (grub_real_dprintf): New function.
52836 (grub_strword): Likewise.
52837 (grub_iswordseparator): Likewise.
52838
52839 2005-04-30 Hollis Blanchard <hollis@penguinppc.org>
52840
52841 * boot/powerpc/ieee1275/cmain.c: Don't include grub/machine/init.h.
52842 (roundup): Remove macro.
52843 (grub_ieee1275_flags): Make static.
52844 (grub_ieee1275_realmode): Remove.
52845 (grub_ieee1275_test_flag): New function.
52846 (grub_ieee1275_set_flag): Likewise.
52847 (find_options): Rename to `grub_ieee1275_find_options'; update
52848 callers. Set GRUB_IEEE1275_FLAG_REAL_MODE and
52849 GRUB_IEEE1275_FLAG_0_BASED_PARTITIONS.
52850 (cmain): New prototype.
52851 (cmain): Use `grub_ieee1275_set_flag' instead of accessing
52852 `grub_ieee1275_flags' directly.
52853 * conf/powerpc-ieee1275.rmk (grubof_HEADERS): Remove
52854 machine/biosdisk.h.
52855 * disk/powerpc/ieee1275/ofdisk.c: Include grub/machine/ofdisk.h.
52856 Don't include grub/machine/init.h.
52857 (grub_ofdisk_open): Call `grub_ieee1275_test_flag'.
52858 * include/grub/powerpc/ieee1275/ieee1275.h (grub_ieee1275_flags):
52859 Remove prototype.
52860 (grub_ieee1275_realmode): Likewise.
52861 (grub_ieee1275_flag): New enum.
52862 (grub_ieee1275_test_flag): New prototype.
52863 (grub_ieee1275_set_flag): New prototype.
52864 * include/grub/powerpc/ieee1275/init.h: Remove file.
52865 * include/grub/powerpc/ieee1275/ofdisk.h: New file.
52866 * kern/powerpc/ieee1275/init.c: Don't include grub/machine/init.h.
52867 Include grub/machine/console.h. Include grub/machine/ofdisk.h.
52868 (grub_machine_fini): Don't call `grub_ieee1275_release'. Remove
52869 comment.
52870 * kern/powerpc/ieee1275/openfw.c (grub_claimmap): Call
52871 `grub_ieee1275_test_flag'.
52872 (grub_ieee1275_encode_devname): Likewise.
52873
52874 2005-04-21 Hollis Blanchard <hollis@penguinppc.org>
52875
52876 * include/grub/powerpc/ieee1275/ieee1275.h
52877 (grub_ieee1275_encode_devname): New prototype.
52878 (grub_ieee1275_get_filename): Likewise.
52879 * kern/powerpc/ieee1275/init.c (grub_translate_ieee175_path): New
52880 function.
52881 (grub_set_prefix): Likewise.
52882 (grub_machine_init): Call grub_set_prefix.
52883 * kern/powerpc/ieee1275/openfw.c: Fix typos.
52884 (grub_parse_type): New enum.
52885 (grub_ieee1275_get_devargs): New function.
52886 (grub_ieee1275_get_devname): Likewise.
52887 (grub_ieee1275_parse_args): Likewise.
52888 (grub_ieee1275_get_filename): Likewise.
52889 (grub_ieee1275_encode_devname): Likewise.
52890
52891 2005-03-30 Marco Gerards <metgerards@student.han.nl>
52892
52893 * kern/powerpc/ieee1275/init.c (grub_machine_fini): Don't call
52894 `grub_loader_unset'.
52895
52896 2005-03-26 Hollis Blanchard <hollis@penguinppc.org>
52897
52898 * commands/ieee1275/halt.c (grub_cmd_halt): Call grub_halt
52899 instead of grub_ieee1275_interpret.
52900 (grub_halt_init): New function.
52901 (grub_halt_fini): Likewise.
52902 (GRUB_MOD_INIT): Correct message grammar.
52903 * commands/ieee1275/reboot.c (grub_cmd_reboot): Call grub_reboot
52904 instead of grub_ieee1275_interpret.
52905 (grub_reboot_init): New function.
52906 (grub_reboot_fini): Likewise.
52907 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Replace
52908 commands/i386/pc/halt.c, commands/i386/pc/reboot.c, and
52909 util/i386/pc/misc.c with commands/ieee1275/halt.c,
52910 commands/ieee1275/reboot.c, and util/powerpc/ieee1275/misc.c.
52911 * disk/powerpc/ieee1275/ofdisk.c (grub_ofdisk_fini): New
52912 function.
52913 * include/grub/powerpc/ieee1275/console.h (grub_console_fini):
52914 Add prototype.
52915 * include/grub/powerpc/ieee1275/ieee1275.h (grub_reboot): Add
52916 prototype.
52917 (grub_halt): Likewise.
52918 * include/grub/powerpc/ieee1275/init.h: Remove inaccurate comment.
52919 (cmain): Remove __attribute__((unused)).
52920 * kern/powerpc/ieee1275/init.c (grub_heap_start): New variable.
52921 (grub_heap_len): Likewise.
52922 (grub_machine_fini): New function.
52923 * kern/powerpc/ieee1275/openfw.c (grub_reboot): New function.
52924 (grub_halt): Likewise.
52925 * term/powerpc/ieee1275/ofconsole.c (grub_console_fini): New
52926 function.
52927 * util/powerpc/ieee1275/misc.c: New file.
52928
52929 2005-03-19 Yoshinori K. Okuji <okuji@enbug.org>
52930
52931 * DISTLIST: New file.
52932 * gendistlist.sh: Likewise.
52933
52934 * Makefile.in (COMMON_DISTFILES): Removed.
52935 (BOOT_DISTFILES): Likewise.
52936 (CONF_DISTFILES): Likewise.
52937 (DISK_DISTFILES): Likewise.
52938 (FS_DISTFILES): Likewise.
52939 (INCLUDE_DISTFILES): Likewise.
52940 (KERN_DISTFILES): Likewise.
52941 (LOADER_DISTFILES): Likewise.
52942 (TERM_DISTFILES): Likewise.
52943 (UTIL_DISTFILES): Likewise.
52944 (DISTFILES): Likewise.
52945 (uninstall): Uninstall files in $(pkgdata_DATA).
52946 (DISTLIST): New target.
52947 (distdir): Use the contents of the file DISTLIST to get a list of
52948 distributed files.
52949
52950 2005-03-18 Yoshinori K. Okuji <okuji@enbug.org>
52951
52952 * fs/fat.c (grub_fat_mount): Ignore the 3rd bit of a media
52953 descriptor. This is ported from GRUB Legacy.
52954
52955 * gencmdlist.sh: Added an extra semicolon to make it work with
52956 old sed versions. Reported by Robert Bihlmeyer
52957 <robbe@orcus.priv.at>.
52958
52959 2005-03-08 Yoshinori Okuji <okuji@enbug.org>
52960
52961 Automatic loading of commands is supported.
52962
52963 * normal/main.c (read_command_list): New function.
52964 (grub_normal_execute): Call read_command_list.
52965
52966 * normal/command.c (grub_register_command): Return zero or CMD.
52967 Allocate CMD->NAME from the heap.
52968 Initialize CMD->MODULE_NAME to zero.
52969 Find the same name as well. If the same command is found and it is
52970 a dummy command, overwrite members. If it is not a dummy command,
52971 return zero.
52972 (grub_unregister_command): Free Q->NAME and Q->MODULE_NAME.
52973 (grub_command_find): If a dummy command is found, load a module
52974 and retry to find a command only once.
52975
52976 * normal/cmdline.c (grub_tab_complete): Call grub_command_find to
52977 make sure that each command is loaded.
52978
52979 * include/grub/normal.h (GRUB_COMMAND_FLAG_NOT_LOADED): New
52980 macro.
52981 (struct grub_command): Remove const from the member `name'.
52982 Add a new member `module_name'.
52983 (grub_register_command): Return grub_command_t.
52984
52985 * commands/help.c (grub_cmd_help): Call grub_command_find to make
52986 sure that each command is loaded.
52987
52988 * genmk.rb (PModule::rule): Specify a module name without the
52989 suffix ".mod" to gencmdlist.sh.
52990
52991 2005-03-02 Yoshinori K. Okuji <okuji@enbug.org>
52992
52993 * gencmdlist.sh: New file.
52994
52995 * genmk.rb (PModule::rule): Generate a rule for a command list.
52996 Clean command.lst.
52997 Generate command.lst from $(COMMANDFILES).
52998
52999 * Makefile.in (COMMON_DISTFILES): Added gencmdlist.sh.
53000 (DATA): Added $(pkgdata_DATA).
53001 (install-local): Install files in $(pkgdata_DATA).
53002
53003 2005-03-02 Yoshinori K. Okuji <okuji@enbug.org>
53004
53005 * term/i386/pc/vga.c (debug_command): Removed.
53006 (GRUB_MOD_INIT): Do not register the command "debug".
53007
53008 From Hollis Blanchard:
53009 * commands/configfile.c: New file.
53010 * conf/i386-pc.rmk (grub_emu_SOURCES): Added
53011 commands/configfile.c.
53012 (pkgdata_MODULES): Added configfile.mod.
53013 (configfile_mod_SOURCES): New variable.
53014 (configfile_mod_CFLAGS): Likewise.
53015 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Added
53016 commands/configfile.c.
53017 (pkgdata_MODULES): Added configfile.mod.
53018 (configfile_mod_SOURCES): New variable.
53019 (configfile_mod_CFLAGS): Likewise.
53020 * util/grub-emu.c (main): Call grub_configfile_init and
53021 grub_configfile_fini.
53022 * include/grub/normal.h [GRUB_UTIL] (grub_configfile_init): New
53023 prototype.
53024 [GRUB_UTIL] (grub_configfile_fini): Likewise.
53025
53026 2005-02-27 Yoshinori K. Okuji <okuji@enbug.org>
53027
53028 * normal/arg.c (grub_arg_show_help): Do not show the bug report
53029 address.
53030
53031 * commands/help.c (grub_cmd_help): Do not print newlines after
53032 the last command in print_command_help.
53033
53034 2005-02-27 Yoshinori K. Okuji <okuji@enbug.org>
53035
53036 * commands/default.h: New file.
53037 * commands/timeout.h: Likewise.
53038 * normal/context.c: Likewise.
53039
53040 * util/misc.c: Do not include sys/times.h.
53041 Include sys/time.h and grub/machine/time.h.
53042 (grub_get_rtc): Rewritten with gettimeofday.
53043
53044 * util/grub-emu.c (main): Call grub_default_init and
53045 grub_timeout_init before grub_normal_init, and call
53046 grub_timeout_fini and grub_default_fini after grub_main.
53047
53048 * util/console.c (grub_ncurses_checkkey): Return the read
53049 character or -1.
53050
53051 * normal/menu.c (run_menu): Set MENU->TIMEOUT to -1 once it
53052 timeouts.
53053
53054 * normal/main.c (read_config_file): Push MENU. If this fails,
53055 print an error and wait for a user input.
53056 Print an error only if GRUB_ERRNO is not GRUB_ERR_NONE.
53057 If a menu is empty or an error occurs, pop MENU.
53058 (grub_normal_execute): Pop and free MENU after grub_menu_run
53059 returns.
53060
53061 * kern/loader.c (grub_loader_boot): Call grub_machine_fini.
53062
53063 * include/grub/powerpc/ieee1275/time.h [GRUB_UTIL]: Do not
53064 include time.h.
53065 [GRUB_UTIL] (GRUB_TICKS_PER_SECOND): Use the same definition as
53066 without GRUB_UTIL.
53067 * include/grub/i386/pc/time.h [GRUB_UTIL]: Do not include
53068 time.h.
53069 [GRUB_UTIL] (GRUB_TICKS_PER_SECOND): Use the same definition as
53070 without GRUB_UTIL.
53071
53072 * include/grub/normal.h (struct grub_menu_list): New struct.
53073 (grub_menu_list_t): New type.
53074 (struct grub_context): New struct.
53075 (grub_context_t): New type.
53076 (grub_register_command): Got rid of EXPORT_FUNC.
53077 (grub_unregister_command): Likewise.
53078 (grub_context_get): New prototype.
53079 (grub_context_get_current_menu): Likewise.
53080 (grub_context_push_menu): Likewise.
53081 (grub_context_pop_menu): Likewise.
53082 [GRUB_UTIL] (grub_default_init): Likewise.
53083 [GRUB_UTIL] (grub_default_fini): Likewise.
53084 [GRUB_UTIL] (grub_timeout_init): Likewise.
53085 [GRUB_UTIL] (grub_timeout_fini): Likewise.
53086
53087 * conf/i386-pc.rmk (grub_emu_SOURCES): Added commands/default.c,
53088 commands/timeout.c and normal/context.c.
53089 (pkgdata_MODULES): Added default.mod and timeout.mod.
53090 (normal_mod_SOURCES): Added normal/context.c.
53091 (default_mod_SOURCES): New variable.
53092 (default_mod_CFLAGS): Likewise.
53093 (timeout_mod_SOURCES): Likewise.
53094 (timeout_mod_CFLAGS): Likewise.
53095 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Copied from
53096 conf/i386-pc.rmk.
53097 (pkgdata_MODULES): Added default.mod and timeout.mod.
53098 (normal_mod_SOURCES): Added normal/context.c.
53099 (default_mod_SOURCES): New variable.
53100 (default_mod_CFLAGS): Likewise.
53101 (timeout_mod_SOURCES): Likewise.
53102 (timeout_mod_CFLAGS): Likewise.
53103
53104 * Makefile.in (all-local): Added $(MKFILES).
53105
53106 2005-02-21 Vincent Pelletier <subdino2004@yahoo.fr>
53107
53108 * conf/i386-pc.rmk (grub_setup_SOURCES): Add `partmap/sun.c'.
53109 (grub_emu_SOURCES): Likewise.
53110 (pkgdata_MODULES): Add `sun.mod'.
53111 (sun_mod_SOURCES, sun_mod_CFLAGS): New variables.
53112 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add
53113 `partmap/sun.c'.
53114 (pkgdata_MODULES): Add `sun.mod'.
53115 (sun_mod_SOURCES, sun_mod_CFLAGS): New variables.
53116 * include/grub/partition.h (grub_sun_partition_map_init): New
53117 prototype.
53118 (grub_sun_partition_map_fini): Likewise.
53119 * partmap/sun.c: New file.
53120 * util/grub-emu.c (main): Initialize and de-initialize the sun
53121 partitionmap support.
53122
53123 2005-02-19 Yoshinori K. Okuji <okuji@enbug.org>
53124
53125 This implements an Emacs-like menu entry editor.
53126
53127 * normal/menu_entry.c: New file.
53128
53129 * util/console.c (grub_ncurses_putchar): Translate some Unicode
53130 characters to ASCII.
53131 (saved_char): New variable.
53132 (grub_ncurses_checkkey): Rewritten completely.
53133 (grub_ncurses_getkey): Likewise.
53134 (grub_ncurses_init): Call raw instead of cbreak.
53135
53136 * normal/menu.c (print_entry): Do not put a space.
53137 (init_page): Renamed to ...
53138 (grub_menu_init_page): ... this. All callers changed.
53139 (edit_menu_entry): Removed.
53140 (run_menu): Call grub_menu_entry_run instead of edit_menu_entry.
53141
53142 * normal/cmdline.c (grub_cmdline_run): Call grub_setcursor.
53143
53144 * kern/misc.c (grub_vprintf): Call grub_refresh.
53145
53146 * normal/menu.c (DISP_LEFT): Renamed to ...
53147 * include/grub/term.h (GRUB_TERM_DISP_LEFT): ... this.
53148 * normal/menu.c (DISP_UP): Renamed to ...
53149 * include/grub/term.h (GRUB_TERM_DISP_UP): ... this.
53150 * normal/menu.c (DISP_RIGHT): Renamed to ...
53151 * include/grub/term.h (GRUB_TERM_DISP_RIGHT): ... this.
53152 * normal/menu.c (DISP_DOWN): Renamed to ...
53153 * include/grub/term.h (GRUB_TERM_DISP_DOWN): ... this.
53154 * normal/menu.c (DISP_HLINE): Renamed to ...
53155 * include/grub/term.h (GRUB_TERM_DISP_HLINE): ... this.
53156 * normal/menu.c (DISP_VLINE): Renamed to ...
53157 * include/grub/term.h (GRUB_TERM_DISP_VLINE): ... this.
53158 * normal/menu.c (DISP_UL): Renamed to ...
53159 * include/grub/term.h (GRUB_TERM_DISP_UL): ... this.
53160 * normal/menu.c (DISP_UR): Renamed to ...
53161 * include/grub/term.h (GRUB_TERM_DISP_UR): ... this.
53162 * normal/menu.c (DISP_LL): Renamed to ...
53163 * include/grub/term.h (GRUB_TERM_DISP_LL): ... this.
53164 * normal/menu.c (DISP_LR): Renamed to ...
53165 * include/grub/term.h (GRUB_TERM_DISP_LR): ... this.
53166 * normal/menu.c (TERM_WIDTH): Renamed to ...
53167 * include/grub/term.h (GRUB_TERM_WIDTH): ... this.
53168 * normal/menu.c (TERM_HEIGHT): Renamed to ...
53169 * include/grub/term.h (GRUB_TERM_HEIGHT): ... this.
53170 * normal/menu.c (TERM_INFO_HEIGHT): Renamed to ...
53171 * include/grub/term.h (GRUB_TERM_INFO_HEIGHT): ... this.
53172 * normal/menu.c (TERM_MARGIN): Renamed to ...
53173 * include/grub/term.h (GRUB_TERM_MARGIN): ... this.
53174 * normal/menu.c (TERM_SCROLL_WIDTH): Renamed to ...
53175 * include/grub/term.h (GRUB_TERM_SCROLL_WIDTH): ... this.
53176 * normal/menu.c (TERM_TOP_BORDER_Y): Renamed to ...
53177 * include/grub/term.h (GRUB_TERM_TOP_BORDER_Y): ... this.
53178 * normal/menu.c (TERM_LEFT_BORDER_X): Renamed to ...
53179 * include/grub/term.h (GRUB_TERM_LEFT_BORDER_X): ... this.
53180 * normal/menu.c (TERM_BORDER_WIDTH): Renamed to ...
53181 * include/grub/term.h (GRUB_TERM_BORDER_WIDTH): ... this.
53182 * normal/menu.c (TERM_MESSAGE_HEIGHT): Renamed to ...
53183 * include/grub/term.h (GRUB_TERM_MESSAGE_HEIGHT): ... this.
53184 * normal/menu.c (TERM_BORDER_HEIGHT): Renamed to ...
53185 * include/grub/term.h (GRUB_TERM_BORDER_HEIGHT): ... this.
53186 * normal/menu.c (TERM_NUM_ENTRIES): Renamed to ...
53187 * include/grub/term.h (GRUB_TERM_NUM_ENTRIES): ... this.
53188 * normal/menu.c (TERM_FIRST_ENTRY_Y): Renamed to ...
53189 * include/grub/term.h (GRUB_TERM_FIRST_ENTRY_Y): ... this.
53190 * normal/menu.c (TERM_ENTRY_WIDTH): Renamed to ...
53191 * include/grub/term.h (GRUB_TERM_ENTRY_WIDTH): ... this.
53192 * normal/menu.c (TERM_CURSOR_X): Renamed to ...
53193 * include/grub/term.h (GRUB_TERM_CURSOR_X): ... this.
53194 All callers changed.
53195
53196 * include/grub/normal.h: New prototype.
53197
53198 * conf/i386-pc.rmk (grub_emu_SOURCES): Added
53199 normal/menu_entry.c.
53200 (normal_mod_SOURCES): Likewise.
53201 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise.
53202 (normal_mod_SOURCES): Likewise.
53203
53204 2005-02-15 Yoshinori K. Okuji <okuji@enbug.org>
53205
53206 * include/grub/normal.h (grub_halt_init): New prototype.
53207 (grub_halt_fini): Likewise.
53208 (grub_reboot_init): Likewise.
53209 (grub_reboot_fini): Likewise.
53210
53211 * util/grub-emu.c: Include signal.h.
53212 (main_env): New global variable.
53213 (grub_machine_init): Ignore SIGINT. Otherwise grub-emu cannot
53214 catch C-c.
53215 (grub_machine_fini): New function.
53216 (main): Call grub_halt_init and grub_reboot_init before
53217 grub_main, and grub_reboot_fini and grub_halt_fini after it.
53218 Call setjmp with MAIN_ENV to go back afterwards.
53219 Call grub_machine_fini right before return.
53220
53221 * include/grub/util/misc.h: Include setjmp.h.
53222 (main_env): New prototype.
53223
53224 * include/grub/kernel.h (grub_machine_fini): New prototype.
53225 * include/grub/i386/pc/biosdisk.h (grub_biosdisk_fini): Likewise.
53226 * include/grub/i386/pc/console.h (grub_console_fini): Likewise.
53227
53228 * disk/i386/pc/biosdisk.c (grub_biosdisk_fini): New function.
53229 * kern/i386/pc/init.c (grub_machine_fini): Likewise.
53230 * term/i386/pc/console.c (grub_console_fini): Likewise.
53231
53232 * util/i386/pc/misc.c: New file.
53233
53234 * conf/i386-pc.rmk (grub_emu_SOURCES): Added
53235 util/i386/pc/misc.c, commands/i386/pc/halt.c and
53236 commands/i386/pc/reboot.c.
53237
53238 2005-02-14 Guillem Jover <guillem@hadrons.org>
53239
53240 * include/grub/dl.h (grub_dl_check_header): New prototype.
53241 (grub_arch_dl_check_header): Change return type to grub_err_t,
53242 remove size parameter and export function. Update all callers.
53243 * kern/dl.c (grub_dl_check_header): New function.
53244 (grub_dl_load_core): Use `grub_dl_check_header' instead of
53245 `grub_arch_dl_check_header'. Check ELF type. Check if sections
53246 are inside the core.
53247 * kern/i386/dl.c (grub_arch_dl_check_header): Remove arch
53248 independent ELF header checks.
53249 * kern/powerpc/dl.c (grub_arch_dl_check_header): Likewise.
53250 * loader/i386/pc/multiboot.c (grub_rescue_cmd_multiboot): Use
53251 `grub_dl_check_header' instead of explicit checks. Check for the
53252 ELF type.
53253 * loader/powerpc/ieee1275/linux.c (grub_rescue_cmd_linux): Use
53254 `grub_dl_check_header' instead of explicit checks. Remove arch
53255 specific ELF header checks.
53256
53257 * util/grub-emu.c (grub_arch_dl_check_header): Remove the
53258 argument SIZE.
53259
53260 2005-02-13 Hollis Blanchard <hollis@penguinppc.org>
53261
53262 * conf/powerpc-ieee1275.rmk (pkgdata_MODULES): Add ls.mod.
53263 * include/grub/powerpc/libgcc.h (__mulsf3): New prototype.
53264
53265 2005-02-12 Hollis Blanchard <hollis@penguinppc.org>
53266
53267 * kern/partition.c (grub_partition_probe): Clear `grub_errno' and
53268 return 0 if `grub_errno' is GRUB_ERR_BAD_PART_TABLE.
53269 (part_map_iterate): Clear `grub_errno' and return 0 if
53270 `partmap->iterate' returns GRUB_ERR_BAD_PART_TABLE.
53271 * partmap/amiga.c (amiga_partition_map_iterate): Return
53272 GRUB_ERR_BAD_PART_TABLE if no partition map magic is found.
53273 * partmap/apple.c (apple_partition_map_iterate): Likewise.
53274
53275 2005-02-01 Guillem Jover <guillem@hadrons.org>
53276
53277 * loader/i386/pc/multiboot_normal.c (GRUB_MOD_INIT): Fix module
53278 help info.
53279
53280 2005-01-31 Marco Gerards <metgerards@student.han.nl>
53281
53282 * include/grub/powerpc/ieee1275/loader.h (grub_load_linux):
53283 Removed prototype.
53284 (grub_rescue_cmd_linux): New prototype.
53285 (grub_rescue_cmd_initrd): Likewise.
53286 * powerpc/ieee1275/linux.c (grub_linux_boot): Remove struct
53287 `bi_rec'.
53288 (grub_linux_release_mem): Release the memory for the initrd.
53289 (grub_load_linux): Renamed from this...
53290 (grub_rescue_cmd_linux): ...To this. Changed all callers.
53291 Changed `entry' not to be static. Loop over memory regions to
53292 find another one when the default fails.
53293 (grub_rescue_cmd_initrd): New function.
53294 (grub_linux_init): Remove function.
53295 (grub_linux_fini): Likewise.
53296 (GRUB_MOD_INIT): Register `initrd'.
53297 (GRUB_MOD_FINI): Unregister `initrd'.
53298 * powerpc/ieee1275/linux_normal.c (grub_linux_normal_init):
53299 Function removed.
53300 (grub_linux_normal_fini): Likewise.
53301 (GRUB_MOD_INIT): Register `initrd'.
53302 (GRUB_MOD_FINI): Unregister `initrd'.
53303
53304 2005-01-31 Marco Gerards <metgerards@student.han.nl>
53305
53306 * commands/help.c: New file.
53307 * normal/arg.c (show_help): Renamed to...
53308 (grub_arg_show_help): ... this.
53309 * commands/i386/pc/halt.c: New file.
53310 * commands/i386/pc/reboot.c: Likewise.
53311 * conf/i386-pc.rmk (grub_emu_SOURCES): Add `commands/help.c'.
53312 (pkgdata_MODULES): Add `reboot.mod', `halt.mod' and `help.mod'.
53313 (help_mod_SOURCES, help_mod_CFLAGS, reboot_mod_SOURCES)
53314 (reboot_mod_CFLAGS, halt_mod_SOURCES, halt_mod_CFLAGS): New
53315 variables.
53316 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add
53317 `commands/help.c'.
53318 (pkgdata_MODULES): Add `help.mod'.
53319 (help_mod_SOURCES, help_mod_CFLAGS): New variables.
53320 * grub/i386/pc/init.h (grub_reboot): New prototype.
53321 (grub_halt): Likewise.
53322 * include/grub/normal.h (grub_arg_show_help): New prototype.
53323 (grub_help_init): Likewise.
53324 (grub_help_fini): Likewise.
53325 * util/grub-emu.c (main): Initialize and deinitialize the help
53326 command.
53327
53328 * normal/cmdline.c (grub_cmdline_get): Doc fix.
53329
53330 * normal/command.c (grub_command_init): Fixed the description of
53331 the `set' and `unset' commands.
53332
53333 2005-01-31 Marco Gerards <metgerards@student.han.nl>
53334
53335 * boot/powerpc/ieee1275/ieee1275.c (grub_ieee1275_interpret): New
53336 function.
53337 * commands/ieee1275/halt.c: New file.
53338 * commands/ieee1275/reboot.c: Likewise.
53339 * commands/ieee1275/suspend.c (grub_cmd_suspend): Use
53340 `__attribute__ ((unused))'. Some GCS related fixed.
53341 (grub_suspend_init) [GRUB_UTIL]: Function removed.
53342 (grub_suspend_fini): Likewise.
53343 * conf/powerpc-ieee1275.rmk (pkgdata_MODULES): Add `reboot.mod'
53344 and `halt.mod'.
53345 (reboot_mod_SOURCES, reboot_mod_CFLAGS, halt_mod_SOURCES)
53346 (halt_mod_CFLAGS): New variables.
53347 * include/grub/powerpc/ieee1275/ieee1275.h
53348 (grub_ieee1275_interpret): New prototype.
53349
53350 2005-01-29 Yoshinori K. Okuji <okuji@enbug.org>
53351
53352 * include/grub/misc.h (memmove): New prototype.
53353 (memcpy): Likewise.
53354
53355 2005-01-22 Hollis Blanchard <hollis@penguinppc.org>
53356
53357 * disk/powerpc/ieee1275/ofdisk.c (grub_ofdisk_open): Don't initialize
53358 `devpath' to 0. Use `name' instead of `devpath' with `grub_strndup'.
53359
53360 2005-01-22 Marco Gerards <metgerards@student.han.nl>
53361
53362 * kern/misc.c (grub_strndup): Function rewritten.
53363
53364 2005-01-22 Vincent Pelletier <subdino2004@yahoo.fr>
53365
53366 * normal/menu.c (TERM_WIDTH): Macro redefined.
53367 (TERM_TOP_BORDER_Y): Likewise.
53368 (draw_border): Replaced while-loop by a for-loop. Make the number
53369 of lines consistent with the number of lines displayed in
53370 print_entries. Added a margin below the rectangle.
53371 (print_entry): Make the entry fit in the rectangle.
53372 (print_entries): Display the scroll arrows next to the right
53373 border.
53374
53375 2005-01-21 Marco Gerards <metgerards@student.han.nl>
53376
53377 * fs/minix.c (grub_minix_find_file): Reserve more space for
53378 `fpath' so the \0 can be stored. Use `grub_strcpy' instead of
53379 `grub_strncpy' to copy `path' into it.
53380
53381 2005-01-21 Marco Gerards <metgerards@student.han.nl>
53382
53383 Add the loopback device, a device via which files can be accessed
53384 as devices.
53385
53386 * conf/i386-pc.rmk (grub_emu_SOURCES): Add `disk/loopback.c'.
53387 (pkgdata_MODULES): Add loopback.mod.
53388 (loopback_mod_SOURCES): New variable.
53389 (loopback_mod_CFLAGS): Likewise.
53390 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add
53391 `disk/loopback.c'.
53392 (pkgdata_MODULES): Add loopback.mod.
53393 (loopback_mod_SOURCES): New variable.
53394 (loopback_mod_CFLAGS): Likewise.
53395 * disk/loopback.c: new file.
53396 * include/grub/normal.h (grub_loop_init): New prototype.
53397 (grub_loop_fini): New prototype.
53398 * util/grub-emu.c (main): Initialize and de-initialize loopback
53399 support.
53400 * include/grub/disk.h (grub_disk_dev_id): Add
53401 `GRUB_DISK_DEVICE_LOOPBACK_ID'.
53402
53403 2005-01-20 Hollis Blanchard <hollis@penguinppc.org>
53404
53405 * boot/powerpc/ieee1275/ieee1275.c (grub_ieee1275_enter): New
53406 function.
53407 * conf/powerpc-ieee1275.rmk (pkgdata_MODULES): Add suspend.mod.
53408 (suspend_mod_SOURCES): New variable.
53409 (suspend_mod_CFLAGS): Likewise.
53410 * include/grub/powerpc/ieee1275/ieee1275.h (grub_ieee1275_enter):
53411 New prototype.
53412 * commands/ieee1275/suspend.c: New file.
53413
53414 2005-01-20 Timothy Baldwin <T.E.Baldwin99@members.leeds.ac.uk>
53415
53416 * include/grub/dl.h (GRUB_MOD_INIT): Changed `__attribute__
53417 ((unused))' to `__attribute__ ((used))'.
53418 (GRUB_MOD_FINI): Likewise.
53419 * kern/dl.c (grub_dl_load_file): Fix null pointer dereference.
53420 * genmk.rb (PModule): Assign space to common symbols when linking
53421 modules.
53422
53423 2005-01-20 Marco Gerards <metgerards@student.han.nl>
53424
53425 * include/grub/mm.h (grub_mm_init_region): Change the type of the
53426 `unsigned' arguments to `grub_size_t'.
53427 (grub_malloc): Likewise.
53428 (grub_realloc): Likewise.
53429 (grub_memalign): Likewise.
53430 * kern/i386/dl.c (grub_arch_dl_check_header): Likewise.
53431 * kern/powerpc/dl.c (grub_arch_dl_check_header): Likewise.
53432 * util/misc.c (grub_malloc): Likewise.
53433 (grub_realloc): Likewise.
53434 * kern/mm.c (get_header_from_pointer): Change the casts to
53435 `unsigned' into a cast to `grub_size_t'.
53436
53437 * fs/fshelp.c (grub_fshelp_find_file): The `oldnode' should always
53438 point to `currnode' when `currnode' is changed.
53439
53440 * util/grub-emu.c (main): Initialize `progname'. Reported by Nico
53441 Schottelius <nico-linux@schottelius.org>.
53442
53443 2005-01-09 Hollis Blanchard <hollis@penguinppc.org>
53444
53445 * util/powerpc/ieee1275/grub-mkimage.c: Include <string.h>.
53446 (note_path): Remove variable.
53447 (GRUB_IEEE1275_NOTE_NAME): New macro.
53448 (GRUB_IEEE1275_NOTE_TYPE): Likewise.
53449 (grub_ieee1275_note_hdr): New structure.
53450 (grub_ieee1275_note_desc): Likewise.
53451 (grub_ieee1275_note): Likewise.
53452 (load_note): Remove `dir' argument. All callers updated. Remove
53453 `note_img' and `path'. Do not load a file from `note_path'.
53454 Initialize a struct grub_ieee1275_note and write that to `out'.
53455 Use GRUB_IEEE1275_MODULE_BASE instead of MODULE_BASE.
53456
53457 2005-01-05 Marco Gerards <metgerards@student.han.nl>
53458
53459 * util/misc.c (grub_util_read_image): Revert last change. It
53460 called `grub_util_read_at', which seeks from the beginning of the
53461 file.
53462
53463 2005-01-04 Hollis Blanchard <hollis@penguinppc.org>
53464
53465 * TODO: Add note about endianness in grub-mkimage.
53466 * boot/powerpc/ieee1275/crt0.S (note): Remove unused .note
53467 section.
53468 * conf/powerpc-ieee1275.rmk (bin_UTILITIES): Add grub-mkimage.
53469 (grub_mkimage_SOURCES): New target.
53470 * include/grub/kernel.h (grub_start_addr): Remove variable.
53471 (grub_end_addr): Likewise.
53472 (grub_total_module_size): Likewise.
53473 (grub_kernel_image_size): Likewise.
53474 (GRUB_MODULE_MAGIC): New constant.
53475 (grub_module_info): New structure.
53476 (grub_arch_modules_addr): New prototype.
53477 (grub_get_end_addr): Remove prototype.
53478 * include/grub/i386/pc/kernel.h (grub_end_addr): New prototype.
53479 * include/grub/powerpc/ieee1275/kernel.h: New file.
53480 * include/grub/util/misc.h (grub_util_get_fp_size): New
53481 prototype.
53482 (grub_util_read_at): Likewise.
53483 (grub_util_write_image_at): Likewise.
53484 * kern/main.c (grub_get_end_addr): Remove function.
53485 (grub_load_modules): Call grub_arch_modules_addr instead of using
53486 grub_end_addr. Look for a grub_module_info struct in memory. Use
53487 the grub_module_info fields instead of calling grub_get_end_addr
53488 as loop conditions. Move grub_add_unused_region code here.
53489 (grub_add_unused_region): Remove function.
53490 * kern/i386/pc/init.c: Include grub/cache.h.
53491 (grub_machine_init): Remove call to grub_get_end_addr. Remove
53492 one call to add_mem_region.
53493 (grub_arch_modules_addr): New function.
53494 * kern/powerpc/ieee1275/init.c (grub_end_addr): Remove variable.
53495 (grub_total_module_size): Likewise.
53496 Include grub/machine/kernel.h.
53497 (grub_arch_modules_addr): New function.
53498 * util/grub-emu.c (grub_end_addr): Remove variable.
53499 (grub_total_module_size): Likewise.
53500 (grub_arch_modules_addr): New function.
53501 * util/misc.c: Include unistd.h.
53502 (grub_util_get_fp_size): New function.
53503 (grub_util_read_at): Likewise.
53504 (grub_util_write_image_at): Likewise.
53505 (grub_util_read_image): Call grub_util_read_at.
53506 (grub_util_write_image): Call grub_util_write_image_at.
53507 * util/i386/pc/grub-mkimage.c (generate_image): Allocate
53508 additional memory in kernel_img for a struct grub_module_info.
53509 Fill in that grub_module_info.
53510 * util/powerpc/ieee1275/grub-mkimage.c: New file.
53511
53512 2005-01-03 Hollis Blanchard <hollis@penguinppc.org>
53513
53514 * boot/powerpc/ieee1275/ieee1275.c (grub_ieee1275_milliseconds):
53515 New function.
53516 * include/grub/powerpc/ieee1275/ieee1275.h
53517 (grub_ieee1275_milliseconds): New prototype.
53518 * include/grub/powerpc/ieee1275/time.h (GRUB_TICKS_PER_SECOND):
53519 Change to 1000.
53520 * kern/powerpc/ieee1275/init.c (grub_get_rtc): Call
53521 grub_ieee1275_milliseconds.
53522
53523 2005-01-03 Hollis Blanchard <hollis@penguinppc.org>
53524
53525 * boot/powerpc/ieee1275/cmain.c (grub_ieee1275_realmode): New
53526 variable.
53527 (find_options): New function.
53528 (cmain): Call find_options.
53529 * include/grub/powerpc/ieee1275/ieee1275.h
53530 (grub_ieee1275_realmode): New extern variable.
53531 * kern/powerpc/ieee1275/openfw.c (grub_claimmap): Only call
53532 grub_map if grub_ieee1275_realmode is false.
53533
53534 2004-12-29 Marco Gerards <metgerards@student.han.nl>
53535
53536 * normal/cmdline.c (grub_cmdline_get): Redone logic so no empty
53537 lines are inserted and make it work like readline. Reported by
53538 Vincent Pelletier <subdino2004@yahoo.fr>.
53539
53540 2004-12-28 Marco Gerards <metgerards@student.han.nl>
53541
53542 * boot/powerpc/ieee1275/crt0.S (_start): Don't set up the stack.
53543
53544 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCE): Remove
53545 `kern/powerpc/cache.S'.
53546
53547 2004-12-27 Marco Gerards <metgerards@student.han.nl>
53548
53549 * genmk.rb: Handle the `Program' class in the main loop. Written
53550 by Johan Rydberg <jrydberg@gnu.org>.
53551 (Program): New class.
53552 (programs): New variable.
53553 * boot/powerpc/ieee1275/cmain.c: Include <grub/machine/ieee1275.h>
53554 instead of "grub/machine/ieee1275.h". Include <grub/kernel.h>
53555 instead of "grub/kernel.h". Include <grub/machine/init.h>.
53556 (help_arch): Function removed.
53557 * conf/powerpc-ieee1275.rmk (grubof_HEADERS): Add
53558 `powerpc/libgcc.h' and `loader.h'.
53559 (pkgdata_PROGRAMS): New variable.
53560 (sbin_UTILITIES): Variable removed.
53561 (grub_emu_SOURCES): Added kern/powerpc/cache.S.
53562 (grubof_SOURCES): Variable re-defined so it only includes the
53563 core functionality.
53564 (grubof_CFLAGS): Remove `-DGRUBOF'.
53565 (pkgdata_MODULES, fshelp_mod_SOURCES, fshelp_mod_CFLAGS,
53566 (fat_mod_SOURCES, fat_mod_CFLAGS, ext2_mod_SOURCES)
53567 (ext2_mod_CFLAGS, ufs_mod_SOURCES, ufs_mod_CFLAGS)
53568 (minix_mod_SOURCES, minix_mod_CFLAGS, hfs_mod_SOURCES)
53569 (hfs_mod_CFLAGS, jfs_mod_SOURCES, jfs_mod_CFLAGS)
53570 (iso9660_mod_SOURCES, iso9660_mod_CFLAGS, _linux_mod_SOURCES)
53571 (_linux_mod_CFLAGS, linux_mod_SOURCES, linux_mod_CFLAGS)
53572 (normal_mod_SOURCES, normal_mod_CFLAGS, normal_mod_ASFLAGS)
53573 (hello_mod_SOURCES, hello_mod_CFLAGS, boot_mod_SOURCES)
53574 (boot_mod_CFLAGS, terminal_mod_SOURCES, terminal_mod_CFLAGS)
53575 (ls_mod_SOURCES, ls_mod_CFLAGS, cmp_mod_SOURCES, cmp_mod_CFLAGS)
53576 (cat_mod_SOURCES, cat_mod_CFLAGS, font_mod_SOURCES)
53577 (font_mod_CFLAGS, amiga_mod_SOURCES, amiga_mod_CFLAGS)
53578 (apple_mod_SOURCES, apple_mod_CFLAGS, pc_mod_SOURCES)
53579 (pc_mod_CFLAGS): New variables.
53580 * disk/powerpc/ieee1275/ofdisk.c: Include <grub/machine/init.h>.
53581 (grub_ofdisk_iterate): Add a prototype for `dev_iterate'.
53582 * include/grub/dl.h (grub_arch_dl_sync_caches): New prototype.
53583 * include/grub/loader.h (grub_os_area_addr, grub_os_area_size):
53584 Moved from here...
53585 * include/grub/i386/pc/init.h (grub_os_area_addr)
53586 (rub_os_area_size): ... to here.
53587 * include/grub/powerpc/ieee1275/ieee1275.h
53588 (grub_ieee1275_entry_fn): Export symbol.
53589 * include/grub/powerpc/ieee1275/init.h: New file.
53590 * include/grub/powerpc/libgcc.h: Likewise.
53591 * include/grub/cache.h: Likewise.
53592 * kern/powerpc/cache.S: Likewise. Written by Hollis Blanchard
53593 <hollis@penguinppc.org>.
53594 * kern/dl.c: Include <grub/cache.h>.
53595 (grub_dl_flush_cache): New function.
53596 (grub_dl_load_core): Call `grub_dl_flush_cache' to flush the cache
53597 for this module.
53598 * kern/powerpc/ieee1275/init.c (grub_ofdisk_init)
53599 (grub_console_init): Removed prototypes.
53600 (grub_machine_init): Don't initialize the modules anymore.
53601 * kern/powerpc/ieee1275/openfw.c (grub_map): Make the function
53602 static.
53603 * include/grub/powerpc/types.h (GRUB_HOST_WORDS_LITTLEENDIAN):
53604 Macro undef removed.
53605 (GRUB_HOST_WORDS_BIGENDIAN): New macro.
53606 * kern/powerpc/dl.c (grub_arch_dl_relocate_symbols): Add
53607 relocation `R_PPC_REL32'. Return an error when the relocation is
53608 unknown.
53609 * Makefile.in (DATA): Add `$(pkgdata_PROGRAMS)'.
53610 * kern/i386/pc/init.c (grub_arch_sync_caches): New function.
53611 * util/misc.c (grub_arch_sync_caches): Likewise.
53612
53613 2004-12-19 Marco Gerards <metgerards@student.han.nl>
53614
53615 * conf/powerpc-ieee1275.rmk (MOSTLYCLEANFILES): Remove
53616 `symlist.c', add `grubof_symlist.c'.
53617 (symlist.c): Variable removed.
53618 (grubof_HEADERS): Variable added.
53619 (grubof_symlist.c): New target.
53620 (kernel_syms.lst): Use `grubof_HEADERS' instead of
53621 `kernel_img_HEADERS'.
53622 (grubof_SOURCES): Add `kern/powerpc/dl.c' and `grubof_symlist.c'.
53623 * kern/powerpc/dl.c: New file.
53624 * kern/powerpc/ieee1275/init.c (grub_arch_dl_check_header):
53625 Function removed.
53626 (grub_arch_dl_relocate_symbols): Likewise.
53627 (grub_register_exported_symbols): Likewise.
53628
53629 2004-12-13 Marco Gerards <metgerards@student.han.nl>
53630
53631 * fs/ext2.c (grub_ext2_open): Don't use data after freeing it.
53632 (grub_ext2_dir): Likewise. Don't return in case of an error, jump
53633 to fail instead. Reported by Vincent Pelletier
53634 <subdino2004@yahoo.fr>.
53635
53636 * fs/fshelp.c (grub_fshelp_find_file): Don't free `oldnode' when
53637 it is not allocated. Reported by Vincent Pelletier
53638 <subdino2004@yahoo.fr>.
53639
53640 * normal/cmdline.c (grub_tab_complete): Add a blank line to the
53641 output so the output looks better.
53642
53643 2004-12-04 Marco Gerards <metgerards@student.han.nl>
53644
53645 Modulize the partition map support and add support for the amiga
53646 partition map.
53647
53648 * commands/ls.c: Include <grub/partition.h> instead of
53649 <grub/machine/partition.h>.
53650 * kern/disk.c: Likewise.
53651 * kern/rescue.c: Likewise.
53652 * loader/i386/pc/chainloader.c: Likewise.
53653 * normal/cmdline.c: Likewise.
53654 * kern/powerpc/ieee1275/init.c: Likewise.
53655 (grub_machine_init): Call `grub_pc_partition_map_init',
53656 `grub_amiga_partition_map_init' and
53657 `grub_apple_partition_map_init'.
53658 * conf/i386-pc.rmk (kernel_img_SOURCES): Remove
53659 `disk/i386/pc/partition.c'. Add `kern/partition.c'.
53660 (kernel_img_HEADERS): Remove `machine/partition.h'. Add
53661 `partition.h' and `pc_partition.h'.
53662 (grub_setup_SOURCES): Remove
53663 `disk/i386/pc/partition.c'. Add `kern/partition.c',
53664 `partmap/amiga.c', `partmap/apple.c' and `partmap/pc.c'.
53665 (grub_emu_SOURCES): Likewise.
53666 (pkgdata_MODULES): Add `amiga.mod', `apple.mod' and `pc.mod'.
53667 (amiga_mod_SOURCES, amiga_mod_CFLAGS, apple_mod_SOURCES)
53668 (apple_mod_CFLAGS, pc_mod_SOURCES, pc_mod_CFLAGS): New variables.
53669 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Remove
53670 `disk/powerpc/ieee1275/partition.c'. Add `kern/partition.c',
53671 `partmap/amiga.c', `partmap/apple.c' and `partmap/pc.c'.
53672 (grubof_SOURCES): Likewise.
53673 * disk/i386/pc/partition.c: File removed.
53674 * disk/powerpc/ieee1275/partition.c: Likewise.
53675 * include/grub/powerpc/ieee1275/partition.h: Likewise.
53676 * include/grub/i386/pc/partition.h: Likewise.
53677 * kern/partition.c: New file.
53678 * partmap/amiga.c: Likewise.
53679 * partmap/apple.c: Likewise.
53680 * partmap/pc.c: Likewise.
53681 * include/grub/partition.h: Likewise..
53682 * include/grub/pc_partition.h: Likewise.
53683 * util/grub-emu.c: Include <grub/partition.h> instead of
53684 <grub/machine/partition.h>.
53685 (main): Call `grub_pc_partition_map_init',
53686 `grub_amiga_partition_map_init' and
53687 `grub_apple_partition_map_init' and deinitialize afterwards.
53688 * util/i386/pc/biosdisk.c: Include `#include
53689 <grub/partition.h>' and `include <grub/pc_partition.h>' instead of
53690 `<grub/machine/partition.h>'.
53691 * util/i386/pc/grub-setup.c: Likewise.
53692 * util/i386/pc/biosdisk.c: Likewise.
53693 (grub_util_biosdisk_get_grub_dev): Only access the PC specific
53694 partition information in case of a PC partition.
53695 * util/i386/pc/grub-setup.c: Include `#include
53696 <grub/partition.h>' and `include <grub/pc_partition.h>' instead of
53697 `<grub/machine/partition.h>'.
53698 (setup): Only access the PC specific partition information in case
53699 of a PC partition.
53700
53701 2004-11-17 Hollis Blanchard <hollis@penguinppc.org>
53702
53703 * kern/powerpc/ieee1275/init.c (grub_setjmp): Remove function.
53704 (grub_longjmp): Likewise.
53705 * include/grub/powerpc/setjmp.h (grub_jmp_buf): Set array size to
53706 20.
53707 * normal/powerpc/setjmp.S: New file.
53708 * conf/powerpc-ieee1275.rmk (grubof_SOURCES): Add
53709 `normal/powerpc/setjmp.S'.
53710 (grubof_CFLAGS): Add `-DGRUBOF'.
53711 * include/grub/setjmp.h [GRUB_UTIL]: Changed condition to
53712 [GRUB_UTIL && !GRUBOF].
53713
53714 2004-11-16 Marco Gerards <metgerards@student.han.nl>
53715
53716 * kern/powerpc/ieee1275/openfw.c (grub_devalias_iterate): Skip any
53717 property named `name'. Correctly handle the error returned by
53718 `grub_ieee1275_finddevice' if a device can not be opened.
53719
53720 2004-11-02 Hollis Blanchard <hollis@penguinppc.org>
53721
53722 * term/powerpc/ieee1275/ofconsole.c (grub_ofconsole_readkey): Test
53723 `actual' for negativity.
53724 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Remove
53725 kern/fshelp.c.
53726
53727 2004-11-01 Marco Gerards <metgerards@student.han.nl>
53728
53729 * term/i386/pc/vga.c (VGA_HEIGHT): Changed to 350.
53730 (PAGE_OFFSET): New macro.
53731 (CRTC_ADDR_PORT): Likewise.
53732 (CRTC_DATA_PORT): Likewise.
53733 (START_ADDR_HIGH_REGISTER): Likewise.
53734 (START_ADDR_LOW_REGISTER): Likewise.
53735 (GRAPHICS_ADDR_PORT): Likewise.
53736 (GRAPHICS_DATA_PORT): Likewise.
53737 (READ_MAP_REGISTER): Likewise.
53738 (INPUT_STATUS1_REGISTER): Likewise.
53739 (INPUT_STATUS1_VERTR_BIT): Likewise.
53740 (page): New variable.
53741 (wait_vretrace): New function.
53742 (set_read_map): Likewise.
53743 (set_start_address): Likewise.
53744 (grub_vga_init): Use mode 0x10 instead of mode 0x12. Switch to
53745 the right page.
53746 (check_vga_mem): Take the page into account.
53747 (write_char): Likewise.
53748 (write_cursor): Likewise.
53749 (scroll_up): Likewise. Copy the page to the page that is not
53750 shown and switch between both pages.
53751 (grub_vga_putchar): Fix off by one error.
53752 (grub_vga_cls): Wait for the vertical retrace. Take the page into
53753 account.
53754
53755 2004-11-01 Marco Gerards <metgerards@student.han.nl>
53756
53757 Add support for iso9660 (including rockridge).
53758
53759 * conf/i386-pc.rmk (grub_emu_SOURCES): Add fs/iso9660.c.
53760 (iso9660_mod_SOURCES): New variable.
53761 (iso9660_mod_CFLAGS): Likewise.
53762 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add fs/iso9660.c.
53763 * include/grub/fs.h (grub_iso9660_init): New prototype.
53764 * util/grub-emu.c (main): Call `grub_iso9660_init'.
53765 * fs/iso9660.c: New file.
53766
53767 * include/grub/misc.h (grub_strncat): New prototype.
53768 * kern/misc.c (grub_strncat): New function.
53769
53770 * fs/hfs.c (grub_hfs_mount): Translate the error
53771 `GRUB_ERR_OUT_OF_RANGE' to `GRUB_ERR_BAD_FS'.
53772 * fs/jfs.c (grub_jfs_mount): Likewise.
53773 * fs/ufs.c (grub_ufs_mount): Likewise.
53774
53775 2004-10-28 Hollis Blanchard <hollis@penguinppc.org>
53776
53777 * boot/powerpc/ieee1275/cmain.c (cmain): Remove asm statements
53778 which initialized BAT registers.
53779 * boot/powerpc/ieee1275/ieee1275.c (IEEE1275_CALL_ENTRY_FN,
53780 grub_ieee1275_common_hdr, INIT_IEEE1275_COMMON):
53781 Move from here...
53782 * include/grub/powerpc/ieee1275/ieee1275.h (IEEE1275_CALL_ENTRY_FN,
53783 grub_ieee1275_common_hdr, INIT_IEEE1275_COMMON):
53784 ... to here.
53785 * kern/powerpc/ieee1275/openfw.c (grub_map): New function.
53786 (grub_mapclaim): Likewise.
53787 * loader/powerpc/ieee1275/linux.c (grub_load_linux): Use
53788 grub_mapclaim instead of grub_ieee1275_claim. Assign linux_addr by
53789 hand.
53790
53791 2004-10-19 Hollis Blanchard <hollis@penguinppc.org>
53792
53793 * conf/powerpc-ieee1275.rmk (COMMON_ASFLAGS): Remove -fno-builtin.
53794 (COMMON_CFLAGS): Remove -fno-builtin and -D__ASSEMBLY__. Add
53795 -ffreestanding and -msoft-float.
53796
53797 2004-10-15 Hollis Blanchard <hollis@penguinppc.org>
53798
53799 * disk/powerpc/ieee1275/ofdisk.c (grub_ofdisk_open): Do not
53800 append ":0" to devpath if the GRUB_IEEE1275_NO_PARTITION_0 flag is
53801 set in grub_ieee1275_flags.
53802
53803 2004-10-14 Hollis Blanchard <hollis@penguinppc.org>
53804
53805 * include/grub/powerpc/ieee1275/ieee1275.h (abort): Add function
53806 prototype.
53807 * kern/powerpc/ieee1275/init.c (grub_machine_init): Call
53808 grub_console_init first.
53809 Change the memory range used for grub_ieee1275_claim and
53810 grub_mm_init_region.
53811 Print an error message if the claim fails.
53812 Include <grub/misc.h>.
53813
53814 2004-10-13 Hollis Blanchard <hollis@penguinppc.org>
53815
53816 * disk/powerpc/ieee1275/ofdisk.c (grub_ofdisk_iterate):
53817 Call grub_children_iterate for device nodes of type `scsi',
53818 `ide', or `ata'.
53819 (grub_ofdisk_open): Remove manual device alias resolution.
53820 Fix memory leak when device cannot be opened.
53821 * include/grub/powerpc/ieee1275/ieee1275.h
53822 (grub_children_iterate): New prototype.
53823 * kern/powerpc/ieee1275/openfw.c (grub_children_iterate):
53824 New function.
53825 * boot/powerpc/ieee1275/ieee1275.c (grub_ieee1275_get_property):
53826 Return -1 if args.size was -1.
53827
53828 2004-10-11 Hollis Blanchard <hollis@penguinppc.org>
53829
53830 * boot/powerpc/ieee1275/cmain.c (grub_ieee1275_flags): New global.
53831 (cmain): Accept 3 parameters. Test for 0xdeadbeef, indicating Old
53832 World Macintosh. If Old Wold, set flag in grub_ieee1275_flags; claim
53833 Open Firmware's memory for it; claim memory from _start to _end.
53834 * boot/powerpc/ieee1275/crt0.S (__bss_start): New extern.
53835 (_end): New extern.
53836 (_start): Zero BSS from __bss_start to _end.
53837 * include/grub/powerpc/ieee1275/ieee1275.h (grub_ieee1275_flags):
53838 New extern.
53839 (GRUB_IEEE1275_NO_PARTITION_0): New #define.
53840
53841 2004-10-11 Hollis Blanchard <hollis@penguinppc.org>
53842
53843 * boot/powerpc/ieee1275/ieee1275.c (grub_ieee1275_claim): Return
53844 -1 if args.base was -1.
53845
53846 2004-10-08 Hollis Blanchard <hollis@penguinppc.org>
53847
53848 * term/powerpc/ieee1275/ieee1275.c (grub_ofconsole_cls): Use an ANSI
53849 escape sequence instead of a literal ^L. Also call
53850 grub_ofconsole_gotoxy.
53851
53852 2004-10-03 Hollis Blanchard <hollis@penguinppc.org>
53853
53854 * boot/powerpc/ieee1275/ieee1275.c (grub_ieee1275_claim): change
53855 void * arguments to grub_addr_t. All callers updated. Also make
53856 the `result' argument optional.
53857 (grub_ieee1275_release): change void * arguments to grub_addr_t.
53858 All callers updated.
53859
53860 2004-09-22 Hollis Blanchard <hollis@penguinppc.org>
53861
53862 * commands/ls.c (grub_ls_list_files): Use the string following the
53863 initial ')', if present, as the filesystem path.
53864 * kern/rescue.c (grub_rescue_cmd_ls): Likewise.
53865
53866 * conf/powerpc-ieee1275.rmk (grubof_SOURCES): List crt0.S first.
53867
53868 2004-09-18 Yoshinori K. Okuji <okuji@enbug.org>
53869
53870 Make the source code of the menu interface more readable.
53871
53872 * normal/menu.c: Include grub/mm.h.
53873 (TERM_WIDTH): New macro.
53874 (TERM_HEIGHT): Likewise.
53875 (TERM_INFO_HEIGHT): Likewise.
53876 (TERM_MARGIN): Likewise.
53877 (TERM_SCROLL_WIDTH): Likewise.
53878 (TERM_TOP_BORDER_Y): Likewise.
53879 (TERM_LEFT_BORDER_X): Likewise.
53880 (TERM_BORDER_WIDTH): Likewise.
53881 (TERM_MESSAGE_HEIGHT): Likewise.
53882 (TERM_BORDER_HEIGHT): Likewise.
53883 (TERM_NUM_ENTRIES): Likewise.
53884 (TERM_FIRST_ENTRY_Y): Likewise.
53885 (TERM_ENTRY_WIDTH): Likewise.
53886 (TERM_CURSOR_X): Likewise.
53887 (draw_border): Use macros instead of magic numbers.
53888 (print_entry): Likewise.
53889 (print_entries): Likewise.
53890 (run_menu): Likewise. Also, handle the key 'e'.
53891 (run_menu_entry): Ignore empty command lines.
53892 (print_message): Added a new argument EDIT. If EDIT is true,
53893 print a different message.
53894 (init_page): Likewise.
53895 (edit_menu_entry): New function. Not implemented yet.
53896
53897 2004-09-17 Marco Gerards <metgerards@student.han.nl>
53898
53899 Add `linux.mod' and `multiboot.mod' so linux and multiboot kernels
53900 can be loaded from normal mode.
53901
53902 * conf/i386-pc.rmk (pkgdata_MODULES): Add `linux.mod' and
53903 `multiboot.mod'.
53904 (linux_mod_SOURCES, linux_mod_CFLAGS, multiboot_mod_SOURCES)
53905 (multiboot_mod_CFLAGS): New variables.
53906 * loader/i386/pc/linux_normal.c: New file.
53907 * loader/i386/pc/multiboot_normal.c: Likewise.
53908
53909 * loader/i386/pc/linux.c (grub_rescue_cmd_initrd): Don't use the
53910 attribute `unused'.
53911
53912 * fs/ext2.c (grub_ext2_iterate_dir): Fix typos in inode type. Use
53913 `fdiro' to read the mode information from instead of `diro'.
53914
53915 * fs/fshelp.c (grub_fshelp_find_file): Set type to foundtype after
53916 looking up a symlink.
53917
53918 * include/grub/normal.h (GRUB_COMMAND_FLAG_NO_ARG_PARSE): New
53919 macro.
53920 * normal/command.c (grub_command_execute): Don't parse the
53921 arguments when `GRUB_COMMAND_FLAG_NO_ARG_PARSE' is set in the
53922 flags of the command.
53923
53924 * normal/menu.c (grub_menu_run): Fix typo.
53925
53926 2004-09-14 Hollis Blanchard <hollis@penguinppc.org>
53927
53928 * kern/powerpc/ieee1275/init.c (abort): Trap into Open Firmware.
53929
53930 * term/powerpc/ieee1275/ofconsole.c (grub_ofconsole_gotoxy): Use
53931 `y + 1' instead of `y - 1'.
53932
53933 * conf/powerpc-ieee1275.rmk (grubof_LDFLAGS): Add `-N' and `-S'.
53934
53935 2004-09-14 Yoshinori K. Okuji <okuji@enbug.org>
53936
53937 From Hollis Blanchard <hollis@penguinppc.org>:
53938 * kern/misc.c (memmove): New alias for grub_memmove.
53939 (memcmp): New alias for grub_memcmp.
53940 (memset): New alias for grub_memset.
53941 * boot/powerpc/ieee1275/ieee1275.c (grub_ieee1275_get_property):
53942 Change "int handle" to "grub_ieee1275_phandle_t handle".
53943 * include/grub/powerpc/ieee1275/ieee1275.h
53944 (grub_ieee1275_get_property): Likewise.
53945
53946 2004-09-12 Tomas Ebenlendr <ebik@ucw.cz>
53947
53948 Added normal mode command `chainloader' as module chain.mod, which
53949 depends on normal.mod and _chain.mod.
53950
53951 * conf/i386-pc.rmk (pkgdata_MODULES): Add `chain.mod'.
53952 (chain_mod_SOURCES, chain_mod_CFLAGS): Variables added.
53953 * include/grub/i386/pc/loader.h (grub_rescue_cmd_chainloader):
53954 Deleted prototype.
53955 * loader/i386/pc/chainloader.c (grub_rescue_cmd_chainloader): All
53956 but arguments parsing moved to ...
53957 (grub_chainloader_cmd): ... here. New function.
53958 * include/grub/i386/pc/chainloader.h: New file.
53959 * loader/i386/pc/chainloader_normal.c: Likewise.
53960
53961 2004-09-11 Marco Gerards <metgerards@student.han.nl>
53962
53963 * conf/i386-pc.rmk (kernel_img_SOURCES): Added kern/fshelp.c.
53964 (grub_mkimage_LDFLAGS): Likewise.
53965 (grub_emu_SOURCES): Likewise.
53966 (kernel_img_HEADERS): Added fshelp.h.
53967 * fs/ext2.c: Include <grub/fshelp.h>.
53968 (FILETYPE_REG): New macro.
53969 (FILETYPE_INO_REG): Likewise.
53970 (grub_ext_sblock): Renamed to `grub_ext2_sblock'.
53971 Changed all users.
53972 (ext2_block_group): Renamed to `grub_ext2_block_group'. Changed
53973 all users.
53974 (grub_fshelp_node): New struct.
53975 (grub_ext2_data): Added member `diropen'. Changed member `inode'
53976 to a pointer.
53977 (grub_ext2_get_file_block): Removed function.
53978 (grub_ext2_read_block): New function.
53979 (grub_ext2_read_file): Replaced parameter `data' by `node'.
53980 This function was written.
53981 (grub_ext2_mount): Read the root inode. Create a diropen struct.
53982 (grub_ext2_find_file): Removed function.
53983 (grub_ext2_read_symlink): New function.
53984 (grub_ext2_iterate_dir): Likewise.
53985 (grub_ext2_open): Rewritten.
53986 (grub_ext2_dir): Rewritten.
53987 * include/grub/fshelp.h: New file.
53988 * fs/fshelp.c: Likewise.
53989
53990 2004-09-10 Yoshinori K. Okuji <okuji@enbug.org>
53991
53992 * normal/menu.c: Include grub/loader.h and grub/machine/time.h.
53993 (print_message): Add a missing newline.
53994 (run_menu): Added timeout support.
53995 (run_menu_entry): New local function.
53996 (grub_menu_run): Added support for booting.
53997
53998 * kern/loader.c (grub_loader_is_loaded): New function.
53999
54000 * include/grub/powerpc/ieee1275/time.h: Include grub/symbol.h.
54001 (grub_get_rtc): Exported.
54002
54003 * include/grub/i386/pc/time.h: Include grub/symbol.h.
54004 (grub_get_rtc): Exported.
54005
54006 * include/grub/normal.h (struct grub_command_list): Remove
54007 constant from the member `command'.
54008
54009 * include/grub/loader.h (grub_loader_is_loaded): Declared.
54010
54011 * include/grub/err.h (GRUB_ERR_INVALID_COMMAND): New constant.
54012
54013 * conf/i386-pc.rmk (kernel_img_HEADERS): Added machine/time.h.
54014
54015 2004-08-28 Marco Gerards <metgerards@student.han.nl>
54016
54017 Add support for the JFS filesystem.
54018
54019 * fs/jfs.c: New file.
54020 * include/grub/fs.h (grub_jfs_init): New prototype.
54021 (grub_jfs_fini): New prototype.
54022 * conf/i386-pc.rmk (grub_setup_SOURCES): Add fs/jfs.c.
54023 (grub_emu_SOURCES): Likewise.
54024 (pkgdata_MODULES): Add jfs.mod.
54025 (jfs_mod_SOURCES): New variable.
54026 (jfs_mod_CFLAGS): Likewise.
54027 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add fs.jfs.c.
54028 (grubof_SOURCES): Likewise.
54029 * util/grub-emu.c (main): Initialize and deinitialize JFS support.
54030
54031 * fs/fat.c (grub_fat_find_dir): Convert the filename little
54032 endian to the host endian.
54033 (grub_fat_utf16_to_utf8): Move function from there...
54034 * kern/misc.c (grub_utf16_to_utf8): ...to here. Do not convert
54035 the endianness of the source string anymore.
54036 * include/grub/misc.h (grub_utf16_to_utf8): New prototype.
54037
54038 2004-08-24 Marco Gerards <metgerards@student.han.nl>
54039
54040 * commands/boot.c (grub_boot_init) [GRUB_UTIL]: Make conditional.
54041 (grub_boot_fini) [GRUB_UTIL]: Likewise.
54042 (GRUB_MOD_INIT) [!GRUB_UTIL]: Likewise.
54043 (GRUB_MOD_FINI) [!GRUB_UTIL]: Likewise.
54044
54045 * fs/hfs.c (grub_hfs_find_node): Add a prototype for `node_found'.
54046 (grub_hfs_iterate_dir): Make the function static. Add prototypes
54047 for `node_found' and `it_dir'.
54048 (grub_hfs_dir): Add prototype for `dir_hook'.
54049
54050 * fs/minix.c (grub_minix_get_file_block): Add prototype for
54051 `grub_get_indir'. Rename `indir' in two blocks to `indir16'
54052 and `indir32' to silence a gcc warning.
54053
54054 * include/grub/fs.h (grub_hfs_init): New prototype.
54055 (grub_hfs_fini): Likewise.
54056
54057
54058 2004-08-21 Yoshinori K. Okuji <okuji@enbug.org>
54059
54060 Each disk device has its own id now. This is useful to make use
54061 of multiple disk devices.
54062
54063 * include/grub/disk.h (grub_disk_dev_id): New enum.
54064 (GRUB_DISK_DEVICE_BIOSDISK_ID): New constant.
54065 (GRUB_DISK_DEVICE_OFDISK_ID): Likewise.
54066
54067 * disk/i386/pc/biosdisk.c (grub_biosdisk_dev): Specify
54068 GRUB_DISK_DEVICE_BIOSDISK_ID as an id.
54069
54070 * disk/powerpc/ieee1275/ofdisk.c (grub_ofdisk_dev): Specify
54071 GRUB_DISK_DEVICE_OFDISK_ID as an id.
54072
54073 * util/i386/pc/biosdisk.c (grub_util_biosdisk_dev): Specify
54074 GRUB_DISK_DEVICE_BIOSDISK_ID as an id.
54075
54076 * include/grub/disk.h (struct grub_disk_dev): Added a new member
54077 "id" which is used by the cache manager.
54078
54079 * normal/main.c (grub_normal_init_page): Use "GNU GRUB" instead
54080 of just "GRUB".
54081
54082 2004-08-18 Marco Gerards <metgerards@student.han.nl>
54083
54084 * fs/hfs.c: New file.
54085 * conf/i386-pc.rmk (grub_setup_SOURCES): Add fs/hfs.c.
54086 (grub_emu_SOURCES): Likewise.
54087 (pkgdata_MODULES): Add hfs.mod.
54088 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add fs/hfs.c.
54089 (grubof_SOURCES): Likewise.
54090 * util/grub-emu.c (main): Initialize and deinitialize HFS support.
54091
54092 * include/grub/misc.h (grub_strncasecmp): Add prototype.
54093 * kern/misc.c (grub_strncasecmp): Add function.
54094
54095 2004-08-14 Marco Gerards <metgerards@student.han.nl>
54096
54097 * include/grub/arg.h (GRUB_ARG_OPTION_OPTIONAL): Surround macro
54098 with parentheses.
54099
54100 * fs/ext2.c (FILETYPE_UNKNOWN): New macro.
54101 (grub_ext2_dir): In case the directory entry type is unknown, read
54102 it from the inode.
54103
54104 2004-08-02 Peter Bruin <pjbruin@dds.nl>
54105
54106 * loader/powerpc/ieee1275/linux.c (grub_linux_init): Pass
54107 grub_load_linux instead of grub_rescue_cmd_linux as second
54108 argument of grub_rescue_register_command.
54109
54110 * Makefile.in (RMKFILES): Add conf/powerpc-ieee1275.rmk.
54111
54112 2004-07-27 Marco Gerards <metgerards@student.han.nl>
54113
54114 * boot/powerpc/ieee1275/ieee1275.c (grub_ieee1275_release): New
54115 function.
54116 * commands/boot.c: Remove the check for `GRUB_UTIL'.
54117 * conf/powerpc-ieee1275.rmk (grubof_SOURCES): Add
54118 `loader/powerpc/ieee1275/linux.c',
54119 `loader/powerpc/ieee1275/linux_normal.c' and `commands/boot.c'.
54120 * include/grub/powerpc/ieee1275/ieee1275.h
54121 (grub_ieee1275_release): New prototype.
54122 * include/grub/powerpc/ieee1275/loader.h: Rewritten.
54123 * kern/powerpc/ieee1275/init.c (grub_machine_init): Initialize
54124 normal, boot, linux and linux_normal.
54125 * loader/powerpc/ieee1275/linux.c: New file.
54126 * loader/powerpc/ieee1275/linux_normal.c: Likewise.
54127
54128 2004-07-12 Marco Gerards <metgerards@student.han.nl>
54129
54130 * normal/arg.c (grub_arg_parse): Correct error handling after
54131 reallocating the argumentlist (check if `argl' is not null instead
54132 of checking if `args' is not null).
54133 * kern/mm.c (grub_realloc): Return the same pointer when using the
54134 same region, instead of returning the header address.
54135
54136 2004-07-11 Marco Gerards <metgerards@student.han.nl>
54137
54138 * disk/powerpc/ieee1275/partition.c (grub_partition_iterate): Skip
54139 one block instead of two when looking for the initial partition.
54140 (grub_partition_probe): Initialize the local variable `p' with 0.
54141 Use base 10 for the grub_strtoul call.
54142 * kern/misc.c (grub_strncpy): Fix off by one bug. Eliminated the
54143 need for one local variable.
54144 (grub_strtoul): Don't add the new value to `num', instead of that
54145 just assign it.
54146
54147 2004-07-11 Marco Gerards <metgerards@student.han.nl>
54148
54149 * conf/i386-pc.rmk (pkgdata_IMAGE): Add pxeboot.img.
54150 (pxeboot_img_SOURCES): New variable.
54151 (pxeboot_img_ASFLAGS): Likewise.
54152 (pxeboot_img_LDFLAGS): Likewise.
54153 * boot/i386/pc/pxeboot.S: New file. Based on pxeloader.S from
54154 GRUB Legacy and boot.S. Adopted for GRUB 2 by lode leroy
54155 <lode_leroy@hotmail.com>.
54156
54157 2004-06-27 Tomas Ebenlendr <ebik@ucw.cz>
54158
54159 * kern/rescue.c (grub_enter_rescue_mode): Don't continue when
54160 there was no input.
54161
54162 2004-06-27 Tomas Ebenlendr <ebik@ucw.cz>
54163
54164 * normal/cmdline.c (grub_set_history): Fix off by one bug. Fixed
54165 the history buffer logic.
54166
54167 2004-06-27 Tomas Ebenlendr <ebik@ucw.cz>
54168
54169 * fs/ext2.c (FILETYPE_INO_MASK, FILETYPE_INO_DIRECTORY)
54170 (FILETYPE_INO_SYMLINK): New macros.
54171 (grub_ext2_find_file): Check if the node is a directory using the
54172 inode stat information instead of using the filetype in the
54173 dirent. Exclude the first character of an absolute symlink.
54174 (grub_ext2_dir): Mask out the filetype part of the mode member of
54175 the inode.
54176
54177 2004-05-24 Marco Gerards <metgerards@student.han.nl>
54178
54179 Add support for UFS version 1 and 2. Add support for the minix
54180 filesystem version 1 and 2, both the variants with 14 and 30 long
54181 filenames.
54182
54183 * conf/i386-pc.rmk (grub_setup_SOURCES): Add fs/ufs.c and
54184 fs/minix.c.
54185 (grub_emu_SOURCES): Likewise.
54186 (pkgdata_MODULES): Add ufs.mod and minix.mod.
54187 (ufs_mod_SOURCES): New variable.
54188 (ufs_mod_CFLAGS): Likewise.
54189 (minix_mod_SOURCES): Likewise.
54190 (minix_mod_CFLAGS): Likewise.
54191 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add fs/ufs.c and
54192 fs/minix.c.
54193 (grubof_SOURCES): Likewise.
54194 * fs/ufs.c: New file.
54195 * fs/minix.c: New file.
54196 * include/grub/fs.h (grub_ufs_init): New prototype.
54197 (grub_ufs_fini): Likewise.
54198 (grub_minix_init): Likewise.
54199 (grub_minix_fini): Likewise.
54200 * util/grub-emu.c (main): Initialize and deinitialize UFS and
54201 minix fs.
54202
54203 2004-04-30 Jeroen Dekkers <jeroen@dekkers.cx>
54204
54205 * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Add normal/arg.c,
54206 commands/ls.c, commands/terminal.c, commands/boot.c,
54207 commands/cmp.c and commands/cat.c.
54208 (grubof_LDFLAGS): Add -nostdlib -static-libgcc -lgcc.
54209
54210 * kern/powerpc/ieee1275/init.c: Include "grub/env.h" instead of
54211 "env.h"
54212
54213 2004-04-04 Yoshinori K. Okuji <okuji@enbug.org>
54214
54215 All symbols prefixed with PUPA_ and pupa_ are renamed to GRUB_
54216 and grub_, respectively. Because the conversion is trivial and
54217 mechanical, I omit the details here. Please refer to the CVS
54218 if you need more information.
54219
54220 2004-04-04 Yoshinori K. Okuji <okuji@enbug.org>
54221
54222 * include/pupa: Renamed to ...
54223 * include/grub: ... this.
54224 * util/i386/pc/pupa-mkimage.c: Renamed to ...
54225 * util/i386/pc/grub-mkimage.c: ... this.
54226 * util/i386/pc/pupa-setup.c: Renamed to ...
54227 * util/i386/pc/grub-setup.c: ... this.
54228 * util/pupa-emu.c: Renamed to ...
54229 * util/grub-emu.c: ... this.
54230
54231 2004-03-29 Marco Gerards <metgerards@student.han.nl>
54232
54233 Add support for the newworld apple macintosh (PPC). This has been
54234 tested on the powerbook 2000 only. It only adds support for
54235 generic ieee1275 functions, console and disk support. This should
54236 be easy to port to other architectures with support for Open
54237 Firmware.
54238
54239 * configure.ac: Accept the powerpc as host_cpu. In the case of
54240 the powerpc cpu set the host_vendor to ieee1275. Make sure the i386
54241 specific tests are only executed while building for the i386.
54242 Inverse test for crosscompile.
54243 * genmk.rb (Utility): Allow assembler files.
54244 * normal/cmdline.c (pupa_tab_complete): Reset pupa_errno.
54245 * conf/powerpc-ieee1275.rmk: New file.
54246 * disk/powerpc/ieee1275/ofdisk.c: Likewise.
54247 * disk/powerpc/ieee1275/partition.c: Likewise.
54248 * include/pupa/powerpc/ieee1275/biosdisk.h: Likewise.
54249 * include/pupa/powerpc/ieee1275/console.h: Likewise.
54250 * include/pupa/powerpc/ieee1275/partition.h: Likewise.
54251 * include/pupa/powerpc/ieee1275/time.h: Likewise.
54252 * include/pupa/powerpc/ieee1275/util/biosdisk.h: Likewise.
54253 * include/pupa/powerpc/ieee1275/multiboot.h: Likewise.
54254 * include/pupa/powerpc/ieee1275/loader.h
54255 * include/pupa/powerpc/setjmp.h: Likewise.
54256 * include/pupa/powerpc/types.h: Likewise.
54257 * kern/powerpc/ieee1275/init.c: Likewise.
54258 * kern/powerpc/ieee1275/openfw.c: Likewise.
54259 * term/powerpc/ieee1275/ofconsole.c: Likewise.
54260
54261 These files were written by Johan Rydberg
54262 (jrydberg@night.trouble.net) and I only modified them slightly.
54263
54264 * boot/powerpc/ieee1275/cmain.c: New file.
54265 * boot/powerpc/ieee1275/crt0.S: Likewise.
54266 * boot/powerpc/ieee1275/ieee1275.c: Likewise.
54267 * include/pupa/powerpc/ieee1275/ieee1275.h: Likewise.
54268
54269 2004-03-14 Jeroen Dekkers <jeroen@dekkers.cx>
54270
54271 * Makefile.in: Update copyright.
54272 * genmodsrc.sh: Likewise.
54273 * gensymlist.sh: Likewise.
54274 * term/i386/pc/vga.c: Indent correctly.
54275
54276 * util/i386/pc/pupa-mkimage.c (usage): Use PACKAGE_BUGREPORT as
54277 bugreporting address.
54278 * util/i386/pc/pupa-setup.c (usage): Likewise,
54279 (main): Call pupa_ext2_init and pupa_ext2_fini.
54280
54281 * fs/fat.c (log2): Renamed to ...
54282 (fat_log2): ... this.
54283 All callers changed.
54284 * kern/misc.c (memcpy): Alias to pupa_memmove.
54285 * loader/i386/pc/multiboot.c (pupa_rescue_cmd_multiboot): Fix
54286 lvalue cast.
54287 * util/console.c (pupa_ncurses_fini): Return 0.
54288
54289 * util/i386/pc/biosdisk.c (pupa_util_biosdisk_open)[__linux__]:
54290 Move fail label here.
54291 [__GNU__]: Don't warn when using stat.
54292 (open_device)[!__linux__]: Check if FD < 0 instead of !FD.
54293 (pupa_util_biosdisk_get_pupa_dev)[__GNU__]: Change type of N to
54294 long int. Use strtol instead of strtoul.
54295
54296 2004-03-14 Marco Gerards <metgerards@student.han.nl>
54297
54298 * commands/boot.c: New file.
54299 * commands/cat.c: Likewise.
54300 * commands/cmp.c: Likewise.
54301 * commands/ls.c: Likewise.
54302 * commands/terminal.c: Likewise.
54303 * normal/command.c: Include <pupa/env.h> and <pupa/dl.h>.
54304 (pupa_register_command): Changed interface to match the new
54305 argument parser.
54306 (pupa_command_execute): Changed (almost rewritten) so it uses
54307 pupa_split_command. Added support for setting variables using the
54308 syntax `foo=bar'.
54309 (rescue_command): Changed to work with the new argument parser.
54310 (terminal_command): Moved from here to commands/terminal.c.
54311 (set_command): New function.
54312 (unset_command): New function.
54313 (insmod_command): New function.
54314 (rmmod_command): New function.
54315 (lsmod_command): New function.
54316 (pupa_command_init): Don't initialize the command terminal
54317 anymore. Initialize the commands set, unset, insmod, rmmod and
54318 lsmod.
54319 * conf/i386-pc.rmk (kernel_img_SOURCES): Add kern/env.c.
54320 (kernel_img_HEADERS): Add arg.h and env.h.
54321 (pupa_mkimage_LDFLAGS): Add kern/env.c.
54322 (pupa_emu_SOURCES): Add kern/env.c, commands/ls.c,
54323 commands/terminal.c commands/boot.c commands/cmp.c commands/cat.c,
54324 normal/arg.c.
54325 (pkgdata_MODULES): Add ls.mod, boot.mod, cmp.mod, cat.mod and
54326 terminal.mod.
54327 (normal_mod_SOURCES): Add normal/arg.c and normal/arg.c.
54328 (boot_mod_SOURCES): New variable.
54329 (terminal_mod_SOURCES): Likewise.
54330 (ls_mod_SOURCES): Likewise.
54331 (cmp_mod_SOURCES): Likewise.
54332 (cat_mod_SOURCES): Likewise.
54333
54334 * normal/arg.c: New file.
54335 * kern/env.c: Likewise.
54336 * include/pupa/arg.h: Likewise.
54337 * include/pupa/env.h: Likewise.
54338 * font/manager.c (font_command): Changed to match argument parsing
54339 interface changes.
54340 (PUPA_MOD_INIT): Likewise.
54341 * hello/hello.c (pupa_cmd_hello): Likewise.
54342 (PUPA_MOD_INIT): Likewise.
54343 * include/pupa/disk.h: Include <pupa/device.h>.
54344 (pupa_print_partinfo): New prototype.
54345 * include/pupa/dl.h (pupa_dl_set_prefix): Prototype removed.
54346 (pupa_dl_get_prefix): Likewise.
54347 * include/pupa/misc.h: Include <pupa/err.h>.
54348 (pupa_isgraph): New prototype.
54349 (pupa_isdigit): Likewise.
54350 (pupa_split_cmdline): Likewise.
54351 * include/pupa/normal.h: Include <pupa/arg.h>.
54352 (pupa_command): Changed the prototype of the member `func' to
54353 match the argument parsing interface. Added member `options'.
54354 (pupa_register_command): Updated to match function.
54355 (pupa_arg_parse): New prototype.
54356 (pupa_hello_init) [PUPA_UTIL]: New prototype.
54357 (pupa_hello_fini) [PUPA_UTIL]: Likewise.
54358 (pupa_ls_init) [PUPA_UTIL]: Likewise.
54359 (pupa_ls_fini) [PUPA_UTIL]: Likewise.
54360 (pupa_cat_init) [PUPA_UTIL]: Likewise.
54361 (pupa_cat_fini) [PUPA_UTIL]: Likewise.
54362 (pupa_boot_init) [PUPA_UTIL]: Likewise.
54363 (pupa_boot_fini) [PUPA_UTIL]: Likewise.
54364 (pupa_cmp_init) [PUPA_UTIL]: Likewise.
54365 (pupa_cmp_fini) [PUPA_UTIL]: Likewise.
54366 (pupa_terminal_init) [PUPA_UTIL]: Likewise.
54367 (pupa_terminal_fini) [PUPA_UTIL]: Likewise.
54368 * kern/disk.c: Include <pupa/file.h>.
54369 (pupa_print_partinfo): New function.
54370 * kern/dl.c: Include <pupa/env.h>.
54371 (pupa_dl_dir): Variable removed.
54372 (pupa_dl_load): Use the environment variable `prefix' instead of
54373 the variable pupa_dl_dir.
54374 (pupa_dl_set_prefix): Function removed.
54375 (pupa_dl_get_prefix): Likewise.
54376 * kern/i386/pc/init.c: Include <pupa/env.h>.
54377 (pupa_machine_init): Use the environment variable `prefix' instead of
54378 using pupa_dl_set_prefix to set the prefix.
54379 * kern/main.c: Include <pupa/env.h>.
54380 (pupa_set_root_dev): Use the environment variable `prefix' instead of
54381 using pupa_dl_get_prefix to get the prefix.
54382 * kern/misc.c: Include <pupa/env.h>.
54383 (pupa_isdigit): New function.
54384 (pupa_isgraph): Likewise.
54385 (pupa_ftoa): Likewise.
54386 (pupa_vsprintf): Added support for printing values of the type
54387 `double'. Make it possible to format variable output when using
54388 formatting like `%1.2%f'.
54389 (pupa_split_cmdline): New function.
54390 * kern/rescue.c: Include <pupa/env.h>.
54391 (next_word): Removed function.
54392 (pupa_rescue_cmd_prefix): Likewise.
54393 (pupa_rescue_cmd_set): New function.
54394 (pupa_rescue_cmd_unset): New function.
54395 (pupa_enter_rescue_mode): Use the `pupa_split_cmdline' function to
54396 split the command line instead of splitting it here. Added
54397 support for setting variables using the syntax `foo=bar'. Don't
54398 initialize the prefix command anymore. Initialized the set and
54399 unset commands.
54400 * normal/cmdline.c: Include <pupa/env.h>.
54401 (pupa_tab_complete): Added prototypes for print_simple_completion,
54402 print_partition_completion, add_completion, iterate_commands,
54403 iterate_dev, iterate_part and iterate_dir. Moved code to print
54404 partition information from here to kern/disk.c.
54405 (pupa_cmdline_run): Don't check if the function exists anymore.
54406 * normal/main.c: Include <pupa/env.h>.
54407 (pupa_rescue_cmd_normal): Use the environment variable `prefix'
54408 instead of using pupa_dl_get_prefix to get the prefix.
54409 * term/i386/pc/vga.c: Include <pupa/arg.h>.
54410 (check_vga_mem): Cast pointers to `void *' to silence a gcc
54411 warning.
54412 (pupa_vga_putchar) [! DEBUG_VGA]: Removed for this case.
54413 (pupa_vga_setcolor): Declare unused variables with `__attribute__
54414 ((unused))' to silence a gcc warning.
54415 (pupa_vga_setcolor): Likewise.
54416 (debug_command): Changed to match argument parsing
54417 interface changes.
54418 * util/pupa-emu.c: Include <pupa/env.h>.
54419 (options): Added 0's for unused fields to silence a gcc warning.
54420 (argp): Likewise.
54421 (main): Use the environment variable `prefix' instead of using
54422 pupa_dl_set_prefix to set the prefix. Initialize the commands ls,
54423 boot, cmp, cat and terminal. Finish the commands boot, cmp, cat
54424 and terminal.
54425
54426 * util/i386/pc/getroot.c: Include <pupa/i386/pc/util/biosdisk.h>.
54427 * util/misc.c: Include <malloc.h>.
54428 (pupa_malloc): Rewritten so errors are correctly reported.
54429 (pupa_realloc): Likewise.
54430 (pupa_memalign): Likewise.
54431 (pupa_mm_init_region): Declare unused variables with
54432 `__attribute__ ((unused))' to silence a gcc warning.
54433 * normal/i386/setjmp.S: Remove tab at the end of the file to
54434 silence a gcc warning.
54435 * loader/i386/pc/linux.c (pupa_rescue_cmd_initrd): Declare unused
54436 variables with `__attribute__ ((unused))' to silence a gcc
54437 warning.
54438 * loader/i386/pc/multiboot.c (pupa_multiboot_unload): Make the
54439 local variable i unsigned to silence a gcc warning.
54440
54441 * kern/term.c: Include <pupa/misc.h>.
54442 (pupa_more_lines): New variable.
54443 (pupa_more): Likewise.
54444 (pupa_putcode): When the pager is active pause at the end of every
54445 screen.
54446 (pupa_set_more): New function.
54447 * include/pupa/term.h (pupa_set_more): New prototype.
54448
54449
54450 2004-03-07 Yoshinori K. Okuji <okuji@enbug.org>
54451
54452 Now this project is GRUB 2 rather than PUPA. The location of
54453 the CVS repository was moved to GRUB's.
54454
54455 * configure.ac: Use bug-grub as the reporting address.
54456 Use GRUB instead of PUPA.
54457 Change the version number to 1.90.
54458
54459 2004-02-24 Yoshinori K. Okuji <okuji@enbug.org>
54460
54461 * genkernsyms.sh: Updated copyright information.
54462 * genmk.rb: Likewise.
54463 * genmodsrc.sh: Likewise.
54464 * gensymlist.sh: Likewise.
54465 * boot/i386/pc/boot.S: Likewise.
54466 * boot/i386/pc/diskboot.S: Likewise.
54467 * disk/i386/pc/biosdisk.c: Likewise.
54468 * disk/i386/pc/partition.c: Likewise.
54469 * font/manager.c: Likewise.
54470 * fs/ext2.c: Likewise.
54471 * fs/fat.c: Likewise.
54472 * include/pupa/boot.h: Likewise.
54473 * include/pupa/device.h: Likewise.
54474 * include/pupa/disk.h: Likewise.
54475 * include/pupa/dl.h: Likewise.
54476 * include/pupa/elf.h: Likewise.
54477 * include/pupa/err.h: Likewise.
54478 * include/pupa/file.h: Likewise.
54479 * include/pupa/font.h: Likewise.
54480 * include/pupa/fs.h: Likewise.
54481 * include/pupa/kernel.h: Likewise.
54482 * include/pupa/loader.h: Likewise.
54483 * include/pupa/misc.h: Likewise.
54484 * include/pupa/mm.h: Likewise.
54485 * include/pupa/net.h: Likewise.
54486 * include/pupa/normal.h: Likewise.
54487 * include/pupa/rescue.h: Likewise.
54488 * include/pupa/setjmp.h: Likewise.
54489 * include/pupa/symbol.h: Likewise.
54490 * include/pupa/term.h: Likewise.
54491 * include/pupa/types.h: Likewise.
54492 * include/pupa/i386/setjmp.h: Likewise.
54493 * include/pupa/i386/types.h: Likewise.
54494 * include/pupa/i386/pc/biosdisk.h: Likewise.
54495 * include/pupa/i386/pc/boot.h: Likewise.
54496 * include/pupa/i386/pc/console.h: Likewise.
54497 * include/pupa/i386/pc/init.h: Likewise.
54498 * include/pupa/i386/pc/kernel.h: Likewise.
54499 * include/pupa/i386/pc/linux.h: Likewise.
54500 * include/pupa/i386/pc/loader.h: Likewise.
54501 * include/pupa/i386/pc/memory.h: Likewise.
54502 * include/pupa/i386/pc/multiboot.h: Likewise.
54503 * include/pupa/i386/pc/partition.h: Likewise.
54504 * include/pupa/i386/pc/time.h: Likewise.
54505 * include/pupa/i386/pc/vga.h: Likewise.
54506 * include/pupa/i386/pc/util/biosdisk.h: Likewise.
54507 * include/pupa/util/getroot.h: Likewise.
54508 * include/pupa/util/misc.h: Likewise.
54509 * include/pupa/util/resolve.h: Likewise.
54510 * kern/device.c: Likewise.
54511 * kern/disk.c: Likewise.
54512 * kern/dl.c: Likewise.
54513 * kern/err.c: Likewise.
54514 * kern/file.c: Likewise.
54515 * kern/fs.c: Likewise.
54516 * kern/loader.c: Likewise.
54517 * kern/main.c: Likewise.
54518 * kern/misc.c: Likewise.
54519 * kern/mm.c: Likewise.
54520 * kern/rescue.c: Likewise.
54521 * kern/term.c: Likewise.
54522 * kern/i386/dl.c: Likewise.
54523 * kern/i386/pc/init.c: Likewise.
54524 * kern/i386/pc/lzo1x.S: Likewise.
54525 * kern/i386/pc/startup.S: Likewise.
54526 * loader/i386/pc/chainloader.c: Likewise.
54527 * loader/i386/pc/linux.c: Likewise.
54528 * loader/i386/pc/multiboot.c: Likewise.
54529 * normal/cmdline.c: Likewise.
54530 * normal/command.c: Likewise.
54531 * normal/main.c: Likewise.
54532 * normal/menu.c: Likewise.
54533 * normal/i386/setjmp.S: Likewise.
54534 * term/i386/pc/console.c: Likewise.
54535 * term/i386/pc/vga.c: Likewise.
54536 * util/console.c: Likewise.
54537 * util/genmoddep.c: Likewise.
54538 * util/misc.c: Likewise.
54539 * util/pupa-emu.c: Likewise.
54540 * util/resolve.c: Likewise.
54541 * util/unifont2pff.rb: Likewise.
54542 * util/i386/pc/biosdisk.c: Likewise.
54543 * util/i386/pc/getroot.c: Likewise.
54544 * util/i386/pc/pupa-mkimage.c: Likewise.
54545 * util/i386/pc/pupa-setup.c: Likewise.
54546
54547 2004-02-15 Jeroen Dekkers <jeroen@dekkers.cx>
54548
54549 * fs/ext2.c (pupa_ext2_read_file): Correct the value of BLOCKEND
54550 when it is EXT2_BLOCK_SIZE (data). New argument READ_HOOK, all
54551 callers changed. Set DATA->DISK->READ_HOOK to READ_HOOK before
54552 reading and reset it after reading.
54553 (pupa_ext2_close): Return PUPA_ERR_NONE.
54554
54555 * include/pupa/i386/pc/linux.h (PUPA_LINUX_INITRD_MAX_ADDRESS):
54556 Correct value.
54557 (struct linux_kernel_header): Add kernel_version and
54558 initrd_addr_max.
54559 * loader/i386/pc/linux.c (pupa_rescue_cmd_linux): Check whether
54560 pupa_file_read succeeds.
54561 (pupa_rescue_cmd_initrd): Implement.
54562
54563 2003-12-03 Marco Gerards <metgerards@student.han.nl>
54564
54565 * fs/ext2.c (pupa_ext2_label): New function.
54566 (pupa_ext2_fs): Added label.
54567 * fs/fat.c (pupa_fat_label): New function.
54568 (pupa_fat_fs): Added label.
54569 * include/pupa/fs.h (struct pupa_fs): Added prototype label.
54570
54571 * kern/misc.c (pupa_strndup): New function.
54572 * include/pupa/misc.h (pupa_strndup): New prototype.
54573
54574 * include/pupa/normal.h: Include <pupa/err.h>.
54575 (pupa_set_history): New prototype.
54576 (pupa_iterate_commands): New prototype.
54577 * normal/cmdline.c: Include <pupa/machine/partition.h>,
54578 <pupa/disk.h>, <pupa/file.h>.
54579 (hist_size): New variable.
54580 (hist_lines): Likewise.
54581 (hist_end): Likewise.
54582 (hist_used): Likewise.
54583 (pupa_set_history): New function.
54584 (pupa_history_get): Likewise.
54585 (pupa_history_add): Likewise.
54586 (pupa_history_replace): Likewise.
54587 (pupa_tab_complete): Likewise.
54588 (pupa_cmdline_run): Added tab completion and history buffer. Tab
54589 completion shows partitionnames while completing partitions, this
54590 feature was suggested by Jeff Bailey.
54591 * normal/command.c (pupa_iterate_commands): New function.
54592 * normal/main.c (PUPA_DEFAULT_HISTORY_SIZE): New macro.
54593 (pupa_normal_init): Initialize history buffer.
54594 (PUPA_MOD_INIT): Likewise.
54595 (pupa_normal_fini): Free the history buffer.
54596 (PUPA_MOD_FINI): Likewise.
54597
54598 * util/console.c (pupa_ncurses_getkey): Accept 127 as backspace
54599 key.
54600
54601 * aclocal.m4 (pupa_I386_CHECK_REGPARM_BUG): New DEFUN.
54602 * configure.ac [i386]: Check for regparam bug.
54603 (NESTED_FUNC_ATTR) [! i386]: Defined.
54604
54605 2003-11-17 Marco Gerards <metgerards@student.han.nl>
54606
54607 * conf/i386-pc.rmk (sbin_UTILITIES): Added pupa-emu.
54608 (pupa_setup_SOURCES): Added util/i386/pc/getroot.c.
54609 (pupa_emu_SOURCES): New variable.
54610 (pupa_emu_LDFLAGS): Likewise.
54611 * include/pupa/fs.h (pupa_ext2_init) [PUPA_UTIL]: New prototype.
54612 (pupa_ext2_fini) [PUPA_UTIL]: Likewise.
54613 * include/pupa/normal.h (pupa_normal_init) [PUPA_UTIL]: Likewise.
54614 (pupa_normal_fini) [PUPA_UTIL]: Likewise.
54615 * include/pupa/setjmp.h [PUPA_UTIL]: Include <setjmp.h>.
54616 (pupa_jmp_buf): New typedef.
54617 (pupa_setjmp) [PUPA_UTIL]: New macro.
54618 (pupa_longjmp) [PUPA_UTIL]: Likewise.
54619 * include/pupa/term.h (struct pupa_term): New member `refresh'.
54620 (pupa_refresh): New prototype.
54621 * include/pupa/util/getroot.h: New file.
54622 * kern/misc.c (pupa_vsprintf): Refresh the screen after updating
54623 it.
54624 * kern/rescue.c (pupa_rescue_get_command_line): Likewise.
54625 (pupa_rescue_cmd_cat): Likewise.
54626 (pupa_rescue_cmd_ls): Likewise.
54627 (pupa_rescue_cmd_testload): Likewise.
54628 (pupa_rescue_cmd_lsmod): Likewise.
54629 * normal/cmdline.c (pupa_cmdline_get): Likewise.
54630 * normal/menu.c (run_menu): Likewise.
54631 * kern/term.c (pupa_cls): Likewise.
54632 (pupa_refresh): New function.
54633 * normal/normal.c (pupa_normal_init) [PUPA_UTIL]: New function.
54634 (pupa_normal_fini) [PUPA_UTIL]: Likewise.
54635 * util/console.c: New file.
54636
54637 * util/i386/pc/getroot.c: New file.
54638 * util/i386/pc/pupa-setup.c: Include <pupa/util/getroot.h>.
54639 (pupa_putchar): New function.
54640 (pupa_refresh): Likewise.
54641 (xgetcwd): Function moved to ...
54642 (strip_extra_slashes): Likewise.
54643 (get_prefix): Likewise.
54644 * util/i386/pc/getroot.c: ... here.
54645 (find_root_device): Function moved and renamed to...
54646 * util/i386/pc/getroot.c (pupa_find_root_device): ... here.
54647 Changed all callers.
54648 * util/i386/pc/pupa-setup.c (guess_root_device): Function moved
54649 and renamed to...
54650 * util/i386/pc/getroot.c (pupa_guess_root_device): ... here.
54651 Changed all callers.
54652 * util/misc.c (pupa_memalign): New function.
54653 (pupa_mm_init_region): Likewise.
54654 (pupa_register_exported_symbols): Likewise.
54655 (pupa_putchar): Function removed.
54656 * util/pupa-emu.c: New file.
54657
54658 2003-11-16 Jeroen Dekkers <jeroen@dekkers.cx>
54659
54660 * conf/i386-pc.rmk (pkgdata_MODULES): Add _multiboot.mod.
54661 (_multiboot_mod_SOURCES): New variable.
54662 (_multiboot_mod_CFLAGS): Likewise.
54663 * loader/i386/pc/multiboot.c: New file.
54664 * include/pupa/i386/pc/multiboot.h: Likewise.
54665 * kern/i386/pc/startup.S: Include pupa/machine/multiboot.h.
54666 (pupa_multiboot_real_boot): New function.
54667 * include/pupa/i386/pc/loader.h: Include pupa/machine/multiboot.h.
54668 (pupa_multiboot_real_boot): New prototype.
54669 (pupa_rescue_cmd_multiboot): Likewise
54670 (pupa_rescue_cmd_module): Likewise.
54671
54672 * kern/loader.c (pupa_loader_set): Continue when
54673 pupa_loader_unload_func() fails.
54674 (pupa_loader_unset): New function.
54675 * include/pupa/loader.h (pupa_loader_unset): New prototype.
54676
54677 * kern/misc.c (pupa_stpcpy): New function.
54678 * include/pupa/misc.h (pupa_stpcpy): New prototype.
54679
54680 2003-11-12 Marco Gerards <metgerards@student.han.nl>
54681
54682 * disk/i386/pc/biosdisk.c (pupa_biosdisk_open): Correctly check
54683 for available extensions.
54684
54685 * include/pupa/i386/pc/time.h: New file.
54686 * kern/disk.c: Include <pupa/machine/time.h>.
54687 (PUPA_CACHE_TIMEOUT): New macro.
54688 (pupa_last_time): New variable.
54689 (pupa_disk_open): Flush the cache when there was a timeout.
54690 (pupa_disk_close): Reset the timer.
54691 * kern/i386/pc/startup.S (pupa_get_rtc): Renamed from
54692 pupa_currticks.
54693 * util/misc.c: Include <sys/times.h>
54694 (pupa_get_rtc): New function.
54695
54696 2003-11-09 Jeroen Dekkers <jeroen@dekkers.cx>
54697
54698 * fs/ext2.c (struct pupa_ext2_inode): Declare struct datablocks
54699 as blocks.
54700 (pupa_ext2_get_file_block): Use blocks member.
54701
54702 * fs/ext2.c (pupa_ext2_read_file): Only set skipfirst for the
54703 first block. Return -1 instead of pupa_errno on error.
54704
54705 2003-10-27 Marco Gerards <metgerards@student.han.nl>
54706
54707 * README: In the pupa-mkimage example use _chain instead of chain
54708 and ext2 instead of fat.
54709 * TODO: Replace ext2fs with jfs as an example. Add an item for
54710 adding journal playback for ext2fs.
54711 * conf/i386-pc.rmk (pupa_setup_SOURCES): Added fs/ext2.c.
54712 (pkgdata_MODULES): Added ext2.mod.
54713 (ext2_mod_SOURCES): New variable.
54714 (ext2_mod_CFLAGS): Likewise.
54715 * include/pupa/err.h (pupa_err_t): Added PUPA_ERR_SYMLINK_LOOP.
54716 * include/pupa/misc.h (pupa_strncpy): New prototype.
54717 (pupa_strcat): Likewise.
54718 (pupa_strncmp): Likewise.
54719 * kern/misc.c (pupa_strcat): Enable function.
54720 (pupa_strncpy): New function.
54721 (pupa_strncmp): Likewise.
54722 * fs/ext2.c: New file.
54723
54724 * kern/disk.c (pupa_disk_read): Set pupa_errno to PUPA_ERR_NONE
54725 when the read failed before retrying.
54726 * util/i386/pc/biosdisk.c (_LARGEFILE_SOURCE): Removed.
54727 (_FILE_OFFSET_BITS): Likewise.
54728 * configure.ac: Added AC_SYS_LARGEFILE.
54729
54730 2003-09-25 Yoshinori K. Okuji <okuji@enbug.org>
54731
54732 * genmk.rb (PModule#rule): Make sure to get only symbol names
54733 from the output of nm.
54734 Reported by Robert Millan <rmh.grub@aybabtu.com>.
54735
54736 2003-09-25 Yoshinori K. Okuji <okuji@enbug.org>
54737
54738 I forgot to check in these changes for a long time. This adds
54739 incomplete support for VGA console, and this is still very
54740 buggy. Also, a lot of consideration is required for I18N,
54741 UNICODE, and VGA font issues. Therefore, assume that this is
54742 such that "better than nothing".
54743
54744 * font/manager.c: New file.
54745 * include/pupa/font.h: Likewise.
54746 * include/pupa/i386/pc/vga.h: Likewise.
54747 * term/i386/pc/vga.c: Likewise.
54748 * util/unifont2pff.rb: Likewise.
54749
54750 * conf/i386-pc.rmk (kernel_img_HEADERS): Added machine/vga.h.
54751 (pkgdata_MODULES): Added vga.mod and font.mod.
54752 (vga_mod_SOURCES): New variables.
54753 (vga_mod_CFLAGS): Likewise.
54754 (font_mod_SOURCES): Likewise.
54755 (font_mod_CFLAGS): Likewise.
54756
54757 * include/pupa/err.h (PUPA_ERR_BAD_FONT): New constant.
54758
54759 * include/pupa/term.h: Include pupa/err.h.
54760 (struct pupa_term): Added init and fini.
54761 Changed the argument of putchar to pupa_uint32_t.
54762
54763 * include/pupa/i386/pc/console.h: Include pupa/symbol.h.
54764 (pupa_console_real_putchar): New prototype.
54765 (pupa_console_putchar): Removed.
54766 (pupa_console_checkkey): Exported.
54767 (pupa_console_getkey): Likewise.
54768
54769 * kern/misc.c (pupa_vsprintf): Add support for UNICODE
54770 characters.
54771
54772 * kern/term.c (pupa_term_set_current): Rewritten.
54773 (pupa_putchar): Likewise.
54774 (pupa_putcode): New function.
54775
54776 * kern/i386/pc/startup.S (pupa_console_putchar): Renamed to ...
54777 (pupa_console_real_putchar): ... this.
54778 (pupa_vga_set_mode): New function.
54779 (pupa_vga_get_font): Likewise.
54780
54781 * normal/command.c: Include pupa/term.h.
54782 (terminal_command): New function.
54783 (pupa_command_init): Register the command "terminal".
54784
54785 * normal/menu.c (DISP_LEFT): Changed to a UNICODE value.
54786 (DISP_UP): Likewise.
54787 (DISP_RIGHT): Likewise.
54788 (DISP_DOWN): Likewise.
54789 (DISP_HLINE): Likewise.
54790 (DISP_VLINE): Likewise.
54791 (DISP_UL): Likewise.
54792 (DISP_UR): Likewise.
54793 (DISP_LL): Likewise.
54794 (DISP_LR): Likewise.
54795
54796 * term/i386/pc/console.c (pupa_console_putchar): New function.
54797
54798 2003-02-08 NIIBE Yutaka <gniibe@m17n.org>
54799
54800 * util/resolve.c (pupa_util_resolve_dependencies): BUG
54801 FIX. Reverse the path_list.
54802
54803 * include/pupa/normal.h: Export pupa_register_command and
54804 pupa_unregister_command.
54805
54806 * hello/hello.c (pupa_cmd_hello): New module.
54807 * conf/i386-pc.rmk: Added hello.mod.
54808
54809 2003-01-31 Yoshinori K. Okuji <okuji@enbug.org>
54810
54811 * kern/i386/pc/lzo1x.S: New file.
54812
54813 * util/i386/pc/pupa-mkimage.c: Include lzo1x.h.
54814 (compress_kernel): New variable.
54815 (generate_image): Heavily modified to support compressing a
54816 large part of the core image.
54817
54818 * util/misc.c (pupa_util_read_image): Fix a file descriptor
54819 leak.
54820 (pupa_util_load_image): New function.
54821
54822 * kern/i386/pc/startup.S: Include pupa/machine/kernel.h.
54823 (pupa_compressed_size): New variable.
54824 (codestart): Enable Gate A20 here.
54825 Decompress the compressed part of the core image.
54826 Rearrange the code to put functions and variables which are
54827 required for initialization in the non-compressed part.
54828 Include lzo1x.S.
54829
54830 * kern/i386/pc/init.c (pupa_machine_init): Don't enable Gate A20
54831 here.
54832
54833 * include/pupa/util/misc.h (pupa_util_write_image): Declared.
54834
54835 * include/pupa/i386/pc/kernel.h
54836 (PUPA_KERNEL_MACHINE_COMPRESSED_SIZE): New macro.
54837 (PUPA_KERNEL_MACHINE_INSTALL_DOS_PART): Increased by 4.
54838 (PUPA_KERNEL_MACHINE_INSTALL_BSD_PART): Likewise.
54839 (PUPA_KERNEL_MACHINE_PREFIX): Likewise.
54840 (PUPA_KERNEL_MACHINE_RAW_SIZE): New macro.
54841
54842 * conf/i386-pc.rmk (pupa_mkimage_LDFLAGS): New variable.
54843
54844 * genmk.rb (Image#rule): Put LDFLAGS at the end of a line.
54845 (Utility#rule): Likewise.
54846
54847 * configure.ac: Check if LZO is available.
54848
54849 2003-01-20 Yoshinori K. Okuji <okuji@enbug.org>
54850
54851 * include/pupa/normal.h: New file.
54852 * include/pupa/setjmp.h: Likewise.
54853 * include/pupa/i386/setjmp.h: Likewise.
54854 * normal/cmdline.c: Likewise.
54855 * normal/command.c: Likewise.
54856 * normal/main.c: Likewise.
54857 * normal/menu.c: Likewise.
54858 * normal/i386/setjmp.S: Likewise.
54859
54860 * loader/i386/pc/linux.c (pupa_rescue_cmd_linux): Made global.
54861 (pupa_rescue_cmd_initrd): Likewise.
54862
54863 * loader/i386/pc/chainloader.c (pupa_rescue_cmd_chainloader):
54864 Likewise.
54865
54866 * kern/i386/pc/startup.S (translation_table): New variable.
54867 (translate_keycode): New function.
54868 (pupa_console_getkey): Call translate_keycode.
54869
54870 * kern/rescue.c (attempt_normal_mode): New function.
54871 (pupa_enter_rescue_mode): Attempt to execute the normal mode. If
54872 it failed, print a message.
54873
54874 * kern/mm.c (pupa_real_malloc): Print more information when a
54875 free magic is broken.
54876 (pupa_free): If the first free header is not free actually, set
54877 it to P.
54878
54879 * kern/main.c (pupa_load_normal_mode): Just load the module
54880 "normal".
54881 (pupa_main): Don't print the message
54882 "Entering into rescue mode..." here.
54883
54884 * include/pupa/i386/pc/loader.h (pupa_rescue_cmd_initrd):
54885 Declared.
54886 (pupa_rescue_cmd_initrd): Likewise.
54887 (pupa_rescue_cmd_initrd): Likewise.
54888
54889 * include/pupa/symbol.h (FUNCTION): Specify the type.
54890 (VARIABLE): Likewise.
54891
54892 * include/pupa/err.h (pupa_err_t): Added
54893 PUPA_ERR_UNKNOWN_COMMAND.
54894
54895 * include/pupa/dl.h (pupa_dl_set_prefix): Exported.
54896 (pupa_dl_get_prefix): Likewise.
54897
54898 * conf/i386-pc.rmk (pkgdata_MODULES): Added normal.mod.
54899 Added _chain.mod and _linux.mod instead of chain.mod and
54900 linux.mod.
54901 (chain_mod_SOURCES): Renamed to ...
54902 (_chain_mod_SOURCES): ... this.
54903 (chain_mod_CFLAGS): Renamed to ...
54904 (_chain_mod_CFLAGS): ... this.
54905 (linux_mod_SOURCES): Renamed to ...
54906 (_linux_mod_SOURCES): ... this.
54907 (linux_mod_CFLAGS): Renamed to ...
54908 (_linux_mod_CFLAGS): ... this.
54909 (normal_mod_SOURCES): New variable.
54910 (normal_mod_CFLAGS): Likewise.
54911 (normal_mod_ASFLAGS): Likewise.
54912
54913 2003-01-18 Yoshinori K. Okuji <okuji@enbug.org>
54914
54915 * kern/rescue.c (pupa_rescue_cmd_rmmod): Call pupa_dl_unload, if
54916 possible.
54917
54918 * kern/dl.c (pupa_dl_ref): Refer depending modules
54919 recursively.
54920 (pupa_dl_unref): Unrefer depending modules recursively.
54921 Don't call pupa_dl_unload implicitly, because PUPA can crash if
54922 a module is unloaded before one depending on that module is
54923 unloaded.
54924 (pupa_dl_unload): Unload depending modules explicitly,
54925 if possible.
54926
54927 2003-01-17 Yoshinori K. Okuji <okuji@enbug.org>
54928
54929 * include/pupa/i386/pc/linux.h: New file.
54930 * loader/i386/pc/linux.c: Likewise.
54931
54932 * loader/i386/pc/chainloader.c (pupa_chainloader_boot_sector):
54933 Removed.
54934 (pupa_chainloader_unload): Return PUPA_ERR_NONE.
54935 (pupa_rescue_cmd_chainloader): Read the image to 0x7C00 instead
54936 of PUPA_CHAINLOADER_BOOT_SECTOR.
54937
54938 * kern/i386/pc/startup.S: Include pupa/machine/linux.h.
54939 (pupa_linux_prot_size): New variable.
54940 (pupa_linux_tmp_addr): Likewise.
54941 (pupa_linux_real_addr): Likewise.
54942 (pupa_linux_boot_zimage): New function.
54943 (pupa_linux_boot_bzimage): Likewise.
54944
54945 * kern/i386/pc/init.c (struct mem_region): New structure.
54946 (MAX_REGIONS): New macro.
54947 (mem_regions): New variable.
54948 (num_regions): Likewise.
54949 (pupa_os_area_addr): Likewise.
54950 (pupa_os_area_size): Likewise.
54951 (pupa_lower_mem): Likewise.
54952 (pupa_upper_mem): Likewise.
54953 (add_mem_region): New function.
54954 (compact_mem_regions): Likewise.
54955 (pupa_machine_init): Set PUPA_LOWER_MEM and PUPA_UPPER_MEM to
54956 the size of the conventional memory and that of so-called upper
54957 memory (before the first memory hole).
54958 Instead of adding each found region to free memory, use
54959 add_mem_region and add them after removing overlaps.
54960 Also, add only 1/4 of the upper memory to free memory. The rest
54961 is used for loading OS images. Maybe this is ad hoc, but this
54962 makes it much easier to relocate OS images when booting.
54963
54964 * kern/rescue.c (pupa_rescue_cmd_module): Removed.
54965 (pupa_enter_rescue_mode): Don't register initrd and module.
54966
54967 * kern/mm.c: Include pupa/dl.h.
54968
54969 * kern/main.c: Include pupa/file.h and pupa/device.h.
54970
54971 * kern/loader.c (pupa_loader_load_module_func): Removed.
54972 (pupa_loader_load_module): Likewise.
54973
54974 * kern/dl.c (pupa_dl_load): Use the suffix ``.mod'' instead of
54975 ``.o''.
54976
54977 * include/pupa/i386/pc/loader.h (pupa_linux_prot_size): Declared.
54978 (pupa_linux_tmp_addr): Likewise.
54979 (pupa_linux_real_addr): Likewise.
54980 (pupa_linux_boot_zimage): Likewise.
54981 (pupa_linux_boot_bzimage): Likewise.
54982
54983 * include/pupa/i386/pc/init.h (pupa_lower_mem): Declared.
54984 (pupa_upper_mem): Likewise.
54985 (pupa_gate_a20): Don't export, because turning off Gate A20 in a
54986 module is too dangerous.
54987
54988 * include/pupa/loader.h (pupa_os_area_addr): Declared.
54989 (pupa_os_area_size): Likewise.
54990 (pupa_loader_set): Remove the first argument. Loader doesn't
54991 manage modules or initrd any longer.
54992 (pupa_loader_load_module): Removed.
54993
54994 * conf/i386-pc.rmk (pkgdata_MODULES): Added linux.mod.
54995 (linux_mod_SOURCES): New variable.
54996 (linux_mod_CFLAGS): Likewise.
54997
54998 2003-01-07 Yoshinori K. Okuji <okuji@enbug.org>
54999
55000 * util/i386/pc/pupa-setup.c (setup): Convert the endianness of
55001 the length of a blocklist correctly.
55002
55003 * util/i386/pc/biosdisk.c (pupa_util_biosdisk_open) [__linux__]:
55004 Use ioctl only if the OS file is a block device.
55005 (pupa_util_biosdisk_open): Don't use ST.ST_BLOCKS, because it is
55006 not very useful for normal files.
55007
55008 * kern/main.c (pupa_set_root_dev): New function.
55009 (pupa_load_normal_mode): Likewise.
55010 (pupa_main): Call those above.
55011
55012 * include/pupa/types.h (pupa_swap_bytes16): Cast the result to
55013 pupa_uint16_t.
55014
55015 * include/pupa/kernel.h (pupa_enter_normal_mode): Removed.
55016
55017 2003-01-06 Yoshinori K. Okuji <okuji@enbug.org>
55018
55019 * util/i386/pc/pupa-setup.c: Include pupa/machine/kernel.h.
55020 (setup): Configure the installed partition information and the
55021 dl prefix.
55022
55023 * loader/i386/pc/chainloader.c (my_mod): New variable.
55024 (pupa_chainloader_unload): New function.
55025 (pupa_rescue_cmd_chainloader): Refer itself.
55026 (PUPA_MOD_INIT): Save its own module in MY_MOD.
55027
55028 * kern/i386/pc/startup.S (install_partition): Removed.
55029 (version_string): Likewise.
55030 (config_file): Likewise.
55031 (pupa_install_dos_part): New variable.
55032 (pupa_install_bsd_part): Likewise.
55033 (pupa_prefix): Likewise.
55034 (pupa_chainloader_real_boot): Call pupa_dl_unload_all.
55035
55036 * kern/i386/pc/init.c: Include pupa/machine/kernel.h, pupa/dl.h
55037 and pupa/misc.h.
55038 (make_install_device): New function.
55039 (pupa_machine_init): Set the dl prefix.
55040
55041 * kern/rescue.c: Include pupa/rescue.h and pupa/dl.h.
55042 (buf): Renamed to ...
55043 (linebuf): ... this.
55044 (pupa_rescue_cmd_prefix): New function.
55045 (pupa_rescue_cmd_insmod): Likewise.
55046 (pupa_rescue_cmd_rmmod): Likewise.
55047 (pupa_rescue_cmd_lsmod): Likewise.
55048 (pupa_enter_rescue_mode): Register new commands: prefix, insmod,
55049 rmmod and lsmod.
55050
55051 * kern/mm.c (pupa_memalign): If failed even after invalidating
55052 disk caches, unload unneeded modules and retry.
55053
55054 * kern/misc.c (pupa_memmove): New function.
55055 (pupa_memcpy): Removed.
55056 (pupa_strcpy): New function.
55057 (pupa_itoa): Made static.
55058
55059 * kern/dl.c (pupa_dl_iterate): New function.
55060 (pupa_dl_ref): Likewise.
55061 (pupa_dl_unref): Likewise.
55062 (pupa_dl_unload): Return if succeeded or not.
55063 (pupa_dl_unload_unneeded): New function.
55064 (pupa_dl_unload_all): Likewise.
55065 (pupa_dl_init): Renamed to ...
55066 (pupa_dl_set_prefix): ... this.
55067 (pupa_dl_get_prefix): New function.
55068
55069 * include/pupa/i386/pc/kernel.h: Include pupa/types.h.
55070 (PUPA_KERNEL_MACHINE_INSTALL_DOS_PART): New macro.
55071 (PUPA_KERNEL_MACHINE_INSTALL_BSD_PART): Likewise.
55072 (PUPA_KERNEL_MACHINE_PREFIX): Likewise.
55073 (pupa_install_dos_part): Declared.
55074 (pupa_install_bsd_part): Likewise.
55075 (pupa_prefix): Likewise.
55076 (pupa_boot_drive): Likewise.
55077
55078 * include/pupa/types.h: Fix a typo.
55079
55080 * include/pupa/misc.h (pupa_memcpy): New macro. Just an alias to
55081 pupa_memmove.
55082 (pupa_memmove): Declared.
55083 (pupa_strcpy): Likewise.
55084
55085 * include/pupa/dl.h (PUPA_MOD_INIT): Change the prototype. Now
55086 pupa_mod_init takes one argument, its own module.
55087 (pupa_dl_unload_unneeded): Declared.
55088 (pupa_dl_unload_all): Likewise.
55089 (pupa_dl_ref): Likewise.
55090 (pupa_dl_unref): Likewise.
55091 (pupa_dl_iterate): Likewise.
55092 (pupa_dl_init): Renamed to ...
55093 (pupa_dl_set_prefix): ... this.
55094 (pupa_dl_get_prefix): Declared.
55095
55096 * fs/fat.c [!PUPA_UTIL] (my_mod): New variable.
55097 (pupa_fat_dir) [!PUPA_UTIL]: Prevent the fat module from being
55098 unloaded.
55099 (pupa_fat_open) [!PUPA_UTIL]: Refer itself if succeeded.
55100 (pupa_fat_close) [!PUPA_UTIL]: Unrefer itself.
55101
55102 * configure.ac (tmp_CFLAGS): Added -Wshadow, -Wpointer-arith,
55103 -Wmissing-prototypes, -Wundef and -Wstrict-prototypes.
55104
55105 2003-01-03 Yoshinori K. Okuji <okuji@enbug.org>
55106
55107 * util/i386/pc/pupa-setup.c (setup): Define the internal
55108 function find_first_partition_start at the top level, because GCC
55109 3.0.x cannot compile internal functions in deeper scopes
55110 correctly.
55111 (find_root_device): Use lstat instead of stat.
55112 Don't follow symbolic links.
55113 Fix the path-constructing code.
55114
55115 * util/i386/pc/biosdisk.c [__linux__] (BLKFLSBUF): New macro.
55116 (pupa_util_biosdisk_open) [__linux__]: Get the size of a device
55117 by a BLKGETSIZE ioctl first, because block devices don't fill
55118 the member st_mode of the structure stat on Linux.
55119 [__linux__] (linux_find_partition): Use a temporary buffer
55120 REAL_DEV for the working space. Copy it to DEV before returning.
55121 (open_device) [__linux__]: Call ioctl with BLKFLSBUF to make the
55122 buffer cache consistent.
55123 (get_os_disk) [__linux__]: Use the length 5 instead of 4 for
55124 strncmp. The previous value was merely wrong.
55125 (pupa_util_biosdisk_get_pupa_dev): Use stat instead of lstat.
55126
55127 * fs/fat.c (pupa_fat_read_data): Shift 4 instead of 12 when the
55128 FAT size is 12. The previous value was merely wrong.
55129
55130 * kern/main.c (pupa_main): Don't split the starting message from
55131 newlines.
55132
55133 * kern/term.c (pupa_putchar): Put CR after LF instead of before
55134 LF, because BIOS goes crazy about character attributes in this
55135 case.
55136
55137 2003-01-03 Yoshinori K. Okuji <okuji@enbug.org>
55138
55139 * include/i386/pc/util/biosdisk.h: New file.
55140 * util/i386/pc/biosdisk.c: Likewise.
55141 * util/i386/pc/pupa-setup.c: Likewise.
55142
55143 * Makefile.in (INCLUDE_DISTFILES): Added
55144 include/pupa/i386/pc/util/biosdisk.h.
55145 (UTIL_DISTFILES): Added biosdisk.c and pupa-setup.c under the
55146 directory util/i386/pc.
55147 (install-local): Added a rule for sbin_UTILITIES.
55148 (uninstall): Likewise.
55149
55150 * util/i386/pc/pupa-mkimage.c (usage): Fix a typo in the doc.
55151
55152 * util/misc.c (xrealloc): New function.
55153 (pupa_malloc): Likewise.
55154 (pupa_free): Likewise.
55155 (pupa_realloc): Likewise.
55156 (pupa_stop): Likewise.
55157 (pupa_putchar): Likewise.
55158
55159 * kern/disk.c (pupa_disk_read): Prevent L from underflowing.
55160
55161 * include/pupa/util/misc.h (xrealloc): Declared.
55162
55163 * include/pupa/i386/pc/boot.h (PUPA_BOOT_MACHINE_BPB_START): New
55164 macro.
55165 (PUPA_BOOT_MACHINE_BPBEND): Renamed to ...
55166 (PUPA_BOOT_MACHINE_BPB_END): ... this.
55167
55168 * include/pupa/fs.h [PUPA_UTIL] (pupa_fat_init): Declared.
55169 [PUPA_UTIL] (pupa_fat_fini): Likewise.
55170
55171 * fs/fat.c [PUPA_UTIL] (pupa_fat_init): Defined. Maybe a better
55172 way should be implemented.
55173 [PUPA_UTIL] (pupa_fat_fini): Likewise.
55174
55175 * disk/i386/pc/biosdisk.c (pupa_biosdisk_call_hook): Increase
55176 the size of NAME for safety.
55177 (pupa_biosdisk_iterate): Search hard disks to 0x90 instead of
55178 0x88.
55179
55180 * conf/i386-pc.rmk (sbin_UTILITIES): New variable.
55181 (pupa_setup_SOURCES): Likewise.
55182
55183 * genmk.rb (Utility#rule): Add $(BUILD_CFLAGS) into the rules.
55184
55185 2002-12-28 Yoshinori K. Okuji <okuji@enbug.org>
55186
55187 * kern/i386/pc/startup.S (push_get_mmap_entry): Revert to a
55188 bunch of pushl's from pusha, because this destroys the return
55189 value.
55190
55191 2002-12-28 Yoshinori K. Okuji <okuji@enbug.org>
55192
55193 Use -mrtd and -mregparm=3 to reduce the generated code sizes.
55194 This means that any missing prototypes could be fatal. Also, you
55195 must take care when writing assembly code. See the comments at
55196 the beginning of startup.S, for more details.
55197
55198 * kern/i386/pc/startup.S (pupa_halt): Modified for the new
55199 compilation mechanism.
55200 (pupa_chainloader_real_boot): Likewise.
55201 (pupa_biosdisk_rw_int13_extensions): Likewise.
55202 (pupa_biosdisk_rw_standard): Likewise.
55203 (pupa_biosdisk_check_int13_extensions): Likewise.
55204 (pupa_biosdisk_get_diskinfo_int13_extensions): Likewise.
55205 (pupa_biosdisk_get_diskinfo_standard): Likewise.
55206 (pupa_get_memsize): Likewise.
55207 (pupa_get_mmap_entry): Likewise.
55208 (pupa_console_putchar): Likewise.
55209 (pupa_console_setcursor): Likewise.
55210 (pupa_getrtsecs): Use pushl instead of push.
55211
55212 * kern/i386/pc/init.c (pupa_machine_init): Use the scratch
55213 memory instead of the stack for a mmap entry, because some
55214 BIOSes may ignore the maximum size and overflow.
55215
55216 * conf/i386-pc.rmk (COMMON_CFLAGS): Added -mrtd and -mregparm=3.
55217
55218 * genmk.rb (PModule#rule): Compile automatically generated
55219 sources with module-specific CFLAGS as well as other sources.
55220
55221 2002-12-27 Yoshinori K. Okuji <okuji@enbug.org>
55222
55223 * configure.ac: Check ld.
55224 Replace CFLAGS and CPPFLAGS with BUILD_CFLAGS and BUILD_CPPFLAGS
55225 respectively, before checking endianness and sizes.
55226
55227 * Makefile.in (LD): New variable.
55228
55229 2002-12-27 Yoshinori K. Okuji <okuji@enbug.org>
55230
55231 * Makefile.in (BUILD_CC): CC -> BUILD_CC.
55232
55233 2002-12-27 Yoshinori K. Okuji <okuji@enbug.org>
55234
55235 * Changelog: New file.
55236