Plan9 support.
* Makefile.util.def (libgrubmods): Add grub-core/partmap/plan.c. * docs/grub.texi: Notice Plan9 support. * grub-core/Makefile.core.def (plan9): New module. (part_plan): Likewise. * grub-core/loader/i386/pc/plan9.c: New file. * grub-core/partmap/plan.c: Likewise. * include/grub/msdos_partition.h (GRUB_PC_PARTITION_TYPE_PLAN9): New define. (GRUB_PC_PARTITION_TYPE_LINUX_SWAP): Likewise. * include/grub/mm.h (grub_extend_alloc): New inline function.
This commit is contained in:
commit
111c17782a
8 changed files with 683 additions and 0 deletions
|
@ -1265,6 +1265,13 @@ module = {
|
|||
enable = x86;
|
||||
};
|
||||
|
||||
module = {
|
||||
name = plan9;
|
||||
i386_pc = loader/i386/pc/plan9.c;
|
||||
enable = i386_pc;
|
||||
};
|
||||
|
||||
|
||||
module = {
|
||||
name = linux16;
|
||||
i386_pc = loader/i386/pc/linux.c;
|
||||
|
@ -1433,6 +1440,11 @@ module = {
|
|||
common = partmap/sun.c;
|
||||
};
|
||||
|
||||
module = {
|
||||
name = part_plan;
|
||||
common = partmap/plan.c;
|
||||
};
|
||||
|
||||
module = {
|
||||
name = part_dvh;
|
||||
common = partmap/dvh.c;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue