Handle big-endian minixfs (fixes minixfs tests on bigendian).
* grub-core/fs/minix.c: Replace le with minix. Add necessary defines, modify names. Introduce MODE_BIGENDIAN. * grub-core/fs/minix_be.c: New file. * grub-core/fs/minix2_be.c: Likewise * grub-core/fs/minix3_be.c: Likewise. * Makefile.util.def (libgrubmods): Add minix_be, minix2_be and minix3_be. * grub-core/Makefile.core.def (minix_be): New module. (minix2_be): Likewise. (minix3_be): Likewise.
This commit is contained in:
parent
f65a829e41
commit
ac66b453df
7 changed files with 108 additions and 21 deletions
|
@ -1102,6 +1102,21 @@ module = {
|
|||
common = fs/minix3.c;
|
||||
};
|
||||
|
||||
module = {
|
||||
name = minix_be;
|
||||
common = fs/minix_be.c;
|
||||
};
|
||||
|
||||
module = {
|
||||
name = minix2_be;
|
||||
common = fs/minix2_be.c;
|
||||
};
|
||||
|
||||
module = {
|
||||
name = minix3_be;
|
||||
common = fs/minix3_be.c;
|
||||
};
|
||||
|
||||
module = {
|
||||
name = nilfs2;
|
||||
common = fs/nilfs2.c;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue