2005-09-29 Yoshinori K. Okuji <okuji@enbug.org>
Make GRUB's kernel compliant to Multiboot Specification. * kern/i386/pc/startup.S (multiboot_header): New label. (multiboot_entry): Likewise. (multiboot_trampoline): Likewise. * include/grub/i386/pc/kernel.h (GRUB_KERNEL_MACHINE_RAW_SIZE): Increased to 0x4A0. * fs/xfs.c (grub_xfs_iterate_dir): Fix a syntax error. You may not put parentheses after a question mark. [!GRUB_UTIL] (my_mod): New variable. * util/grub-emu.c (main): Call grub_xfs_init and grub_xfs_fini.
This commit is contained in:
parent
b2499b29cd
commit
b4093103f8
5 changed files with 88 additions and 3 deletions
|
@ -196,6 +196,7 @@ main (int argc, char *argv[])
|
|||
|
||||
/* Initialize the default modules. */
|
||||
grub_iso9660_init ();
|
||||
grub_xfs_init ();
|
||||
grub_fat_init ();
|
||||
grub_ext2_init ();
|
||||
grub_ufs_init ();
|
||||
|
@ -241,6 +242,7 @@ main (int argc, char *argv[])
|
|||
grub_hfs_fini ();
|
||||
grub_jfs_fini ();
|
||||
grub_fat_fini ();
|
||||
grub_xfs_fini ();
|
||||
grub_boot_fini ();
|
||||
grub_cmp_fini ();
|
||||
grub_cat_fini ();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue