1. 14 Aug, 2014 1 commit
  2. 26 Jan, 2014 1 commit
  3. 13 Nov, 2013 1 commit
  4. 25 Oct, 2013 1 commit
  5. 17 Oct, 2013 1 commit
  6. 12 Oct, 2013 1 commit
  7. 13 Apr, 2013 1 commit
  8. 23 Mar, 2013 1 commit
  9. 27 Feb, 2012 1 commit
    • Vladimir 'phcoder' Serbinenko's avatar
      Remove grub_{modname}_init and grub_{modname}_fini. They should never · 036985b8
      Vladimir 'phcoder' Serbinenko authored
      	be used directly if it's really a module and GRUB_MOD_INIT shouldn't
      	be used on non-modules.
      
      	* grub-core/commands/boot.c (GRUB_MOD_INIT) [LOONGSON || QEMU_MIPS]:
      	Rename to grub_boot_init.
      	(GRUB_MOD_FINI) [LOONGSON || QEMU_MIPS]: Rename to grub_boot_fini.
      	* grub-core/commands/keylayouts.c (GRUB_MOD_INIT)
      	[LOONGSON || QEMU_MIPS]: Rename to grub_keylayouts_init.
      	(GRUB_MOD_FINI) [LOONGSON || QEMU_MIPS]: Rename to grub_keylayouts_fini.
      	* grub-core/font/font_cmd.c (GRUB_MOD_INIT)
      	[LOONGSON || QEMU_MIPS]: Rename to grub_font_init.
      	(GRUB_MOD_FINI) [LOONGSON || QEMU_MIPS]: Rename to grub_font_fini.
      	* grub-core/kern/mips/loongson/init.c: Replace explicit protos with
      	includes.
      	(grub_machine_init): Remove empty inits.
      	* grub-core/kern/mips/qemu_mips/init.c: Replace explicit protos with
      	includes.
      	(grub_machine_init): Remove empty inits.
      	* grub-core/term/arc/console.c: Remove explicit proto.
      	* grub-core/term/at_keyboard.c (GRUB_MOD_INIT)
      	[LOONGSON || QEMU_MIPS]: Rename to grub_at_keyboard_init.
      	(GRUB_MOD_FINI) [LOONGSON || QEMU_MIPS]: Rename to
      	grub_at_keyboard_fini.
      	* grub-core/term/gfxterm.c (GRUB_MOD_INIT)
      	[LOONGSON || QEMU_MIPS]: Rename to grub_gfxterm_init.
      	(GRUB_MOD_FINI) [LOONGSON || QEMU_MIPS]: Rename to
      	grub_gfxterm_fini.
      	* grub-core/term/i386/pc/vga_text.c (GRUB_MOD_INIT)
      	[LOONGSON || QEMU_MIPS]: Rename to grub_vgatext_init.
      	(GRUB_MOD_FINI) [LOONGSON || QEMU_MIPS]: Rename to
      	grub_vgatext_fini.
      	* grub-core/term/ieee1275/console.c: Remove explicit proto.
      	* grub-core/term/serial.c (GRUB_MOD_INIT)
      	[LOONGSON || QEMU_MIPS]: Rename to grub_serial_init.
      	(GRUB_MOD_FINI) [LOONGSON || QEMU_MIPS]: Rename to
      	grub_serial_fini.
      	* grub-core/term/terminfo.c (GRUB_MOD_INIT)
      	[LOONGSON || QEMU_MIPS]: Rename to grub_terminfo_init.
      	(GRUB_MOD_FINI) [LOONGSON || QEMU_MIPS]: Rename to
      	grub_terminfo_fini.
      	* grub-core/video/bitmap.c (GRUB_MOD_INIT): Removed.
      	(GRUB_MOD_FINI): Likewise.
      	* grub-core/video/radeon_fuloong2e.c (GRUB_MOD_INIT)
      	[LOONGSON]: Rename to grub_video_radeon_fuloong2e_init.
      	(GRUB_MOD_FINI) [LOONGSON]: Rename to
      	grub_video_radeon_fuloong2e_fini.
      	* grub-core/video/sis315pro.c (GRUB_MOD_INIT)
      	[LOONGSON]: Rename to grub_video_sis315pro_init.
      	(GRUB_MOD_FINI) [LOONGSON]: Rename to
      	grub_video_sis315pro_fini.
      	* grub-core/video/sm712.c (GRUB_MOD_INIT)
      	[LOONGSON]: Rename to grub_video_sm712_init.
      	(GRUB_MOD_FINI) [LOONGSON]: Rename to
      	grub_video_sm712_fini.
      	* include/grub/at_keyboard.h (grub_at_keyboard_init): New proto.
      	(grub_at_keyboard_fini): Likewise.
      	* include/grub/dl.h (GRUB_MOD_INIT) [!GRUB_UTIL && !EMU]:
      	Don't declare grub_{modname}_init.
      	(GRUB_MOD_INIT) [!GRUB_UTIL && !EMU]: Don't declare grub_{modname}_fini.
      	* include/grub/keyboard_layouts.h (grub_keylayouts_init) [!EMU]:
      	New proto.
      	(grub_keylayouts_fini) [!EMU]: Likewise.
      	* include/grub/serial.h (grub_serial_init) [!EMU]:
      	New proto.
      	(grub_serial_fini) [!EMU]: Likewise.
      	* include/grub/terminfo.h (grub_terminfo_init) [!EMU]:
      	New proto.
      	(grub_terminfo_fini) [!EMU]: Likewise.
      	* include/grub/video.h (grub_font_init) [!EMU]:
      	New proto.
      	(grub_font_fini) [!EMU]: Likewise.
      	(grub_gfxterm_init) [!EMU]: Likewise.
      	(grub_gfxterm_fini) [!EMU]: Likewise.
      	(grub_video_sm712_init) [!EMU]: Likewise.
      	(grub_video_sm712_fini) [!EMU]: Likewise.
      	(grub_video_sis315pro_init) [!EMU]: Likewise.
      	(grub_video_sis315pro_fini) [!EMU]: Likewise.
      	(grub_video_radeon_fuloong2e_init) [!EMU]: Likewise.
      	(grub_video_radeon_fuloong2e_fini) [!EMU]: Likewise.
      036985b8
  10. 13 Dec, 2011 1 commit
  11. 06 Jul, 2011 1 commit
    • Vladimir 'phcoder' Serbinenko's avatar
      MIPS qemu at_keyboard support. · d7345994
      Vladimir 'phcoder' Serbinenko authored
      	* gentpl.py (videoinkernel): Add qemu-mips.
      	* grub-core/Makefile.am (KERNEL_HEADER_FILES): Add necessary headers.
      	* grub-core/Makefile.core.def (kernel): Add at_keyboard and layout.
      	* grub-core/kern/mips/qemu_mips/init.c (grub_machine_init): Init new
      	modules.
      	* grub-core/term/at_keyboard.c (grub_keyboard_controller_init)
      	[GRUB_MACHINE_MIPS_QEMU_MIPS]: Don't consider original set.
      	* grub-core/term/serial.c (grub_serial_register)
      	[GRUB_MACHINE_MIPS_QEMU_MIPS]: Make com0 explicitly active.
      d7345994
  12. 14 May, 2011 1 commit
  13. 09 May, 2011 1 commit
  14. 12 Apr, 2011 1 commit
  15. 30 Mar, 2011 1 commit
  16. 19 Feb, 2011 1 commit
  17. 08 Jan, 2011 1 commit
  18. 15 Nov, 2010 1 commit
  19. 06 May, 2010 1 commit
  20. 10 Dec, 2009 1 commit
  21. 03 Nov, 2009 1 commit
  22. 24 Sep, 2009 2 commits
    • robertmh's avatar
      2009-09-24 Robert Millan <rmh.grub@aybabtu.com> · 4e5a02a7
      robertmh authored
              Fix "lost keypress" bug in at_keyboard.
      
              * term/i386/pc/at_keyboard.c (grub_at_keyboard_checkkey): New function.
              Checks for readyness of input buffer (without flushing it).
              (grub_at_keyboard_term): Use grub_at_keyboard_checkkey() rather
              than grub_at_keyboard_getkey_noblock() for `checkkey' struct member.
      4e5a02a7
    • robertmh's avatar
      2009-09-24 Robert Millan <rmh.grub@aybabtu.com> · 74c958b1
      robertmh authored
              * include/grub/i386/at_keyboard.h (KEYBOARD_ISREADY): Negate
              return value.
              * term/i386/pc/at_keyboard.c (grub_keyboard_getkey): Negate
              KEYBOARD_ISREADY check.
              (grub_at_keyboard_checkkey): Rename to ...
              (grub_at_keyboard_getkey_noblock): ... this.  Update all users.
              Remove gratuitous cast.
      74c958b1
  23. 14 Apr, 2009 1 commit
    • bean's avatar
      2009-04-14 Bean <bean123ch@gmail.com> · d05f0df3
      bean authored
      	* Makefile.in (pkglib_DATA): Add handler.lst.
      	(handler.lst): New rule.
      
      	* conf/i386-pc.rmk (normal_mod_SOURCES): Add normal/handler.c.
      	* conf/i386-coreboot.rmk: Likewise.
      	* conf/i386-ieee1275.rmk: Likewise.
      	* conf/i386-efi.rmk: Likewise.
      	* conf/x86_64-efi.rmk: Likewise.
      	* conf/powerpc-ieee1275.rmk: Likewise.
      	* conf/sparc64-ieee1275.rmk: Likewise.
      
      	* genhandlerlist.sh: New file.
      
      	* genmk.rb: Add rules to generate handler.lst.
      
      	* include/grub/normal.h (grub_file_getline): New function definition.
      	(read_handler_list): Likewise.
      	(free_handler_list): Likewise.
      
      	* include/grub/term.h (grub_term_register_input): Add name parameter
      	for auto generation of handler.lst.
      	(grub_term_register_output): Likewise.
      
      	* normal/handler.c: New file.
      
      	* normal/main.c (get_line): Renamed to grub_file_getline.
      	(read_config_file): Use the newly renamed grub_file_getline.
      	(read_command_list): Likewise.
      	(read_fs_list): Likewise.
      	(grub_normal_execute): Call read_handler_list to parse handler.lst.
      	(GRUB_MOD_FINI): Call free_handler_list to free handler list.
      
      	* term/efi/console.c (grub_console_init): Add name parameter for auto
      	generation of handler.lst.
      	* term/gfxterm.c: Likewise.
      	* term/i386/pc/at_keyboard.c: Likewise.
      	* term/i386/pc/console.c: Likewise.
      	* term/i386/pc/serial.c: Likewise.
      	* term/i386/pc/vesafb.c: Likewise.
      	* term/i386/pc/vga.c: Likewise.
      	* term/i386/pc/vga_text.c: Likewise.
      	* term/ieee1275/ofconsole.c: Likewise.
      	* term/usb_keyboard.c: Likewise.
      d05f0df3
  24. 28 Jan, 2009 1 commit
    • chaac's avatar
      2009-01-27 Vesa Jääskeläinen <chaac@nic.fi> · 994b5e84
      chaac authored
      	* commands/lsmmap.c: Add include to grub/machine/memory.h.
      
      	* fs/i386/pc/pxe.c (grub_pxefs_open): Fix sign problem.
      
      	* term/i386/pc/at_keyboard.c (GRUB_MOD_FINI(at_keyboard)): Use proper
      	unregister function.
      994b5e84
  25. 08 Nov, 2008 1 commit
    • robertmh's avatar
      2008-11-07 Robert Millan <rmh@aybabtu.com> · 651c29b7
      robertmh authored
                  Modularize at_keyboard.mod:
      
                  * conf/i386.rmk (pkglib_MODULES): Add `at_keyboard.mod'.
                  (at_keyboard_mod_SOURCES, at_keyboard_mod_CFLAGS)
                  (at_keyboard_mod_LDFLAGS): New variables.
      
                  Actual terminal split:
      
                  * include/grub/term.h (struct grub_term): Split in ...
                  (struct grub_term_input): ... this, and ...
                  (struct grub_term_output): ... this.  Update all users.
                  (grub_term_set_current): Split in ...
                  (grub_term_set_current_input): ... this, and ...
                  (grub_term_set_current_output): ... this.
                  (grub_term_get_current): Split in ...
                  (grub_term_get_current_input): ... this, and ...
                  (grub_term_get_current_output): ... this.
                  (grub_term_register): Split in ...
                  (grub_term_register_input): ... this, and ...
                  (grub_term_register_output): ... this.
                  (grub_term_unregister): Split in ...
                  (grub_term_unregister_input): ... this, and ...
                  (grub_term_unregister_output): ... this.
                  (grub_term_iterate): Split in ...
                  (grub_term_iterate_input): ... this, and ...
                  (grub_term_iterate_output): ... this.
      
                  * kern/term.c (grub_term_list): Split in ...
                  (grub_term_list_input): ... this, and ...
                  (grub_term_list_output): ... this.  Update all users.
                  (grub_cur_term): Split in ...
                  (grub_cur_term_input): ... this, and ...
                  (grub_cur_term_output): ... this.  Update all users.
                  (grub_term_set_current): Split in ...
                  (grub_term_set_current_input): ... this, and ...
                  (grub_term_set_current_output): ... this.
                  (grub_term_get_current): Split in ...
                  (grub_term_get_current_input): ... this, and ...
                  (grub_term_get_current_output): ... this.
                  (grub_term_register): Split in ...
                  (grub_term_register_input): ... this, and ...
                  (grub_term_register_output): ... this.
                  (grub_term_unregister): Split in ...
                  (grub_term_unregister_input): ... this, and ...
                  (grub_term_unregister_output): ... this.
                  (grub_term_iterate): Split in ...
                  (grub_term_iterate_input): ... this, and ...
                  (grub_term_iterate_output): ... this.
      
                  * kern/misc.c (grub_abort): Split use of grub_term_get_current() into
                  a check for input and one for output (and only attempt to get keys
                  from user when input works).
      
                  * util/grub-probe.c (grub_term_get_current): Split in ...
                  (grub_term_get_current_input): ... this, and ...
                  (grub_term_get_current_output): ... this.
                  * util/grub-fstest.c: Likewise.
                  * util/i386/pc/grub-setup.c: Likewise.
                  * util/grub-editenv.c: Likewise.
      
                  Portability adjustments:
      
                  * conf/i386-ieee1275.rmk (kernel_elf_SOURCES): Remove
                  `term/i386/pc/at_keyboard.c'.
                  * kern/ieee1275/init.c [__i386__] (grub_machine_init): Remove call to
                  grub_keyboard_controller_init() (now handled by terminal .init).
                  * kern/i386/coreboot/init.c (grub_machine_init): Add call to
                  grub_at_keyboard_init().
                  * include/grub/i386/ieee1275/console.h (grub_keyboard_controller_init)
                  (grub_console_checkkey, grub_console_getkey): Remove (now provided by
                  at_keyboard.mod via input terminal interface).
                  * include/grub/i386/coreboot/console.h: Convert into a stub for
                  `<grub/i386/pc/console.h>'.
      
                  Migrate full terminals to new API:
      
                  * term/efi/console.c (grub_console_term): Split into ...
                  (grub_console_term_input): ... this, and ...
                  (grub_console_term_output): ... this.  Update all users.
                  * term/ieee1275/ofconsole.c: Remove __i386__ hack.
                  (grub_ofconsole_init): Split into ...
                  (grub_ofconsole_init_input): ... this, and ...
                  (grub_ofconsole_init_output): ... this.
                  (grub_ofconsole_term): Split into ...
                  (grub_ofconsole_term_input): ... this, and ...
                  (grub_ofconsole_term_output): ... this.  Update all users.
                  * term/i386/pc/serial.c (grub_serial_term): Split into ...
                  (grub_serial_term_input): ... this, and ...
                  (grub_serial_term_output): ... this.  Update all users.
                  * term/i386/pc/console.c (grub_console_term): Split into ...
                  (grub_console_term_input): ... this, and ...
                  (grub_console_term_output): ... this.  Update all users.
                  (grub_console_term_input): Only enable it on PC/BIOS platform.
                  (grub_console_init): Remove grub_keyboard_controller_init() call.
      
                  Migrate input terminals to new API:
      
                  * term/i386/pc/at_keyboard.c: Replace `cpu' and `machine' with
                  `i386' and `i386/pc' to enable build on x86_64 (this driver is
                  i386-specific anyway).
                  (grub_console_checkkey): Rename to ...
                  (grub_at_keyboard_checkkey): ... this.  Static-ize.  Update all
                  users.
                  (grub_keyboard_controller_orig): New variable.
                  (grub_console_getkey): Rename to ...
                  (grub_at_keyboard_getkey): ... this.  Static-ize.  Update all
                  users.
                  (grub_keyboard_controller_init): Static-ize.  Save original
                  controller value so that it can be restored ...
                  (grub_keyboard_controller_fini): ... here (new function).
                  (grub_at_keyboard_term): New structure.
                  (GRUB_MOD_INIT(at_keyboard), GRUB_MOD_FINI(at_keyboard)): New
                  functions.
      
                  Migrate output terminals to new API:
      
                  * term/i386/pc/vga.c (grub_vga_term): Change type to
                  `struct  grub_term_output'.  Remove `.checkkey' and `.getkey'
                  members.  Update all users.
                  * term/gfxterm.c (grub_video_term): Change type to
                  `struct  grub_term_output'.  Remove `.checkkey' and `.getkey'
                  members.  Update all users.
                  * include/grub/i386/pc/console.h (grub_console_checkkey)
                  (grub_console_getkey): Do not export (no longer needed by gfxterm,
                  etc).
      
                  Migrate `terminal' command and userland tools to new API:
      
                  * commands/terminal.c (grub_cmd_terminal): Split into ...
                  (grub_cmd_terminal_input): ... this, and ...
                  (grub_cmd_terminal_output): ... this.
                  (GRUB_MOD_INIT(terminal)): Split `terminal' command in two commands:
                  `terminal_input' and `terminal_output'.
                  * util/grub.d/00_header.in: Adjust `terminal' calls to new
                  `terminal_input' / `terminal_output' API.
                  * util/grub-mkconfig.in: Export ${GRUB_TERMINAL_INPUT} and
                  ${GRUB_TERMINAL_OUTPUT} instead of ${GRUB_TERMINAL} (and if user
                  provided ${GRUB_TERMINAL}, convert it).
      651c29b7
  26. 06 Aug, 2008 1 commit
    • robertmh's avatar
      2008-08-06 Robert Millan <rmh@aybabtu.com> · a55d42e0
      robertmh authored
              * conf/i386-coreboot.rmk (pkglib_MODULES): Add `reboot.mod' and
              `halt.mod'.
              (reboot_mod_SOURCES, reboot_mod_CFLAGS, reboot_mod_LDFLAGS)
              (halt_mod_SOURCES, halt_mod_CFLAGS, halt_mod_LDFLAGS): New variables.
      
              * kern/i386/halt.c: New file.
              * kern/i386/reboot.c: Likewise.
              * include/grub/i386/reboot.h: Likewise.
              * include/grub/i386/halt.h: Likewise.
      
              * commands/halt.c [! GRUB_MACHINE_IEEE1275 ! GRUB_MACHINE_EFI]:
              Include `<grub/cpu/halt.h>'.
              * commands/reboot.c [! GRUB_MACHINE_IEEE1275 ! GRUB_MACHINE_EFI]
              [! GRUB_MACHINE_PCBIOS]: Include `<grub/cpu/reboot.h>'.
      
              * term/i386/pc/at_keyboard.c: Include `<grub/cpu/at_keyboard.h>'.
              (SHIFT_L, SHIFT_R, CTRL, ALT, CAPS_LOCK, KEYBOARD_REG_DATA)
              (KEYBOARD_REG_STATUS, KEYBOARD_COMMAND_ISREADY, KEYBOARD_COMMAND_READ)
              (KEYBOARD_COMMAND_WRITE, KEYBOARD_COMMAND_REBOOT)
              (KEYBOARD_SCANCODE_SET1, KEYBOARD_ISMAKE, KEYBOARD_ISREADY)
              (KEYBOARD_SCANCODE, OLPC_UP, OLPC_DOWN, OLPC_LEFT, OLPC_RIGHT): Move
              from here ...
              * include/grub/i386/at_keyboard.h: ... to here.
      a55d42e0
  27. 29 May, 2008 2 commits
    • robertmh's avatar
      2008-05-29 Robert Millan <rmh@aybabtu.com> · 47248e08
      robertmh authored
              * term/i386/pc/at_keyboard.c: Include `grub/machine/machine.h'.
              (OLPC_UP, OLPC_DOWN, OLPC_LEFT, OLPC_RIGHT): New macros.
              [GRUB_MACHINE_IEEE1275] (keyboard_map): Add OLPC scan codes
              (grub_console_checkkey): Add grub_dprintf() call to report unknown
              scan codes.
      47248e08
    • robertmh's avatar
      2008-05-29 Robert Millan <rmh@aybabtu.com> · ee632529
      robertmh authored
              * term/i386/pc/at_keyboard.c (grub_console_checkkey): Add support for
              control key combinations.
      ee632529
  28. 05 Feb, 2008 1 commit
    • robertmh's avatar
      2008-02-05 Robert Millan <rmh@aybabtu.com> · 409480b7
      robertmh authored
              * include/grub/term.h (GRUB_TERM_LEFT, GRUB_TERM_RIGHT)
              (GRUB_TERM_UP, GRUB_TERM_DOWN, GRUB_TERM_HOME, GRUB_TERM_END)
              (GRUB_TERM_DC, GRUB_TERM_PPAGE, GRUB_TERM_NPAGE, GRUB_TERM_ESC)
              (GRUB_TERM_TAB, GRUB_TERM_BACKSPACE): New macros.
      
              * kern/i386/pc/startup.S: Include `<grub/term.h>'.
              (translation_table): Replace hardcoded values with macros
              provided by `<grub/term.h>'.
      
              * term/i386/pc/at_keyboard.c: Include `<grub/term.h>'.
              (keyboard_map): Correct/add a few values, with macros provided
              by `<grub/term.h>'.
              (keyboard_map_shift): Zero values that don't differ from their
              `keyboard_map' equivalents.
              (grub_console_checkkey): Optimize KEYBOARD_STATUS_CAPS_LOCK toggling.
              Discard the second scan code that is always sent by Caps lock.
              Only use `keyboard_map_shift' when it provides a non-zero value,
              otherwise fallback to `keyboard_map'.
      409480b7
  29. 23 Jan, 2008 1 commit
    • robertmh's avatar
      2008-01-23 Robert Millan <rmh@aybabtu.com> · 3ea52685
      robertmh authored
              * term/i386/pc/at_keyboard.c (grub_keyboard_isr): #ifdef out
              grub_dprintf calls, since they make "debug=all" mode unusable.
              (grub_console_checkkey): Likewise.
      3ea52685
  30. 19 Jan, 2008 1 commit
    • robertmh's avatar
      2008-01-19 Robert Millan <rmh@aybabtu.com> · 59f1fd8d
      robertmh authored
              * include/grub/i386/linuxbios/console.h: Add header protection.
              (grub_keyboard_controller_init): New function prototype.
              * term/i386/pc/at_keyboard.c (KEYBOARD_COMMAND_ISREADY): New macro.
              (KEYBOARD_COMMAND_READ): Likewise.
              (KEYBOARD_COMMAND_WRITE): Likewise.
              (KEYBOARD_SCANCODE_SET1): Likewise.
              (grub_keyboard_controller_write): New function.
              (grub_keyboard_controller_read): Likewise.
              (grub_keyboard_controller_init): Likewise.
      
              * term/i386/pc/console.c: Include `<grub/machine/machine.h>'.
              (grub_console_init): On coreboot/LinuxBIOS, call
              grub_keyboard_controller_init().
      59f1fd8d
  31. 04 Jan, 2008 1 commit
    • proski's avatar
      2008-01-03 Pavel Roskin <proski@gnu.org> · 97eab917
      proski authored
      	* kern/i386/linuxbios/init.c: Put "void" to all function
      	declarations with no arguments.
      	* kern/powerpc/ieee1275/init.c: Likewise.
      	* term/i386/pc/at_keyboard.c: Likewise.
      	* term/i386/pc/vga_text.c: Likewise.
      	* util/grub-mkdevicemap.c: Likewise.
      97eab917
  32. 01 Nov, 2007 1 commit
    • robertmh's avatar
      2007-10-31 Robert Millan <rmh@aybabtu.com> · ca25d8f0
      robertmh authored
      	* configure.ac: Add `i386-linuxbios' to the list of supported targets.
      
      	* conf/i386-linuxbios.rmk: New file.
      
      	* kern/i386/pc/hardware.c: Likewise.
      	* term/i386/pc/at_keyboard.c: Likewise.
      	* term/i386/pc/vga_text.c: Likewise.
      
      	* include/grub/i386/linuxbios/boot.h: Likewise.
      	* include/grub/i386/linuxbios/console.h: Likewise.
      	* include/grub/i386/linuxbios/init.h: Likewise.
      	* include/grub/i386/linuxbios/kernel.h: Likewise.
      	* include/grub/i386/linuxbios/loader.h: Likewise.
      	* include/grub/i386/linuxbios/memory.h: Likewise.
      	* include/grub/i386/linuxbios/serial.h: Likewise.
      	* include/grub/i386/linuxbios/time.h: Likewise.
      
      	* kern/i386/linuxbios/init.c: Likewise.
      	* kern/i386/linuxbios/startup.S: Likewise.
      	* kern/i386/linuxbios/table.c: Likewise.
      ca25d8f0