search for: 73f3fbe

Displaying 2 results from an estimated 2 matches for "73f3fbe".

Did you mean: 73f36b2
2012 Sep 10
19
Initial support for sector size >512
This set of patches add some support for sector size >512. Currently it fixes extlinux, MBR for GPT and ext partitions. Other code is unaffected. This set of patches has been tested on a read Dell machine running a beta firmware.
2012 Sep 03
1
[GIT-PULL] XFS filesystem driver
...a2f859d..a1f96b7 100644 --- a/core/ldlinux.asm +++ b/core/ldlinux.asm @@ -39,6 +39,8 @@ ROOT_FS_OPS: dd ext2_fs_ops extern ntfs_fs_ops dd ntfs_fs_ops + extern xfs_fs_ops + dd xfs_fs_ops extern btrfs_fs_ops dd btrfs_fs_ops dd 0 diff --git a/extlinux/main.c b/extlinux/main.c index 73f3fbe..d1a800c 100644 --- a/extlinux/main.c +++ b/extlinux/main.c @@ -14,7 +14,8 @@ /* * extlinux.c * - * Install the syslinux boot block on an fat, ntfs, ext2/3/4 and btrfs filesystem + * Install the syslinux boot block on an fat, ntfs, ext2/3/4, btrfs and xfs + * filesystem. */ #define _GNU_...