Fix grub-emu build.
* grub-core/kern/emu/main.c: Remove #include <getopt.h>. * grub-core/kern/emu/full.c: Split grub_mdraid_{init,fini} into mdraid09 and mdraid1x.
This commit is contained in:
parent
e1fd193905
commit
449333eb7d
3 changed files with 12 additions and 3 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
2010-09-25 BVK Chaitanya <bvk.groups@gmail.com>
|
||||||
|
|
||||||
|
Fix grub-emu build.
|
||||||
|
|
||||||
|
* grub-core/kern/emu/main.c: Remove #include <getopt.h>.
|
||||||
|
* grub-core/kern/emu/full.c: Split grub_mdraid_{init,fini} into
|
||||||
|
mdraid09 and mdraid1x.
|
||||||
|
|
||||||
2010-09-24 Colin Watson <cjwatson@ubuntu.com>
|
2010-09-24 Colin Watson <cjwatson@ubuntu.com>
|
||||||
|
|
||||||
Re-enable grub-extras.
|
Re-enable grub-extras.
|
||||||
|
|
|
@ -61,9 +61,11 @@ void
|
||||||
grub_emu_post_init (void)
|
grub_emu_post_init (void)
|
||||||
{
|
{
|
||||||
grub_lvm_fini ();
|
grub_lvm_fini ();
|
||||||
grub_mdraid_fini ();
|
grub_mdraid09_fini ();
|
||||||
|
grub_mdraid1x_fini ();
|
||||||
grub_raid_fini ();
|
grub_raid_fini ();
|
||||||
grub_raid_init ();
|
grub_raid_init ();
|
||||||
grub_mdraid_init ();
|
grub_mdraid09_fini ();
|
||||||
|
grub_mdraid1x_fini ();
|
||||||
grub_lvm_init ();
|
grub_lvm_init ();
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,7 +21,6 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <setjmp.h>
|
#include <setjmp.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <getopt.h>
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue