Displaying 5 results from an estimated 5 matches for "parts_info".
2016 Apr 07
2
Syslinux multifs support
...d it seems to be working.
Lately I've started testing it with my real hardware and for some reason it
doesn't work.
I don't really know how to debug Syslinux (aside from using printf), so what
I've succeeded to discover with is that the function multifs_get_fs iterates
over the parts_info list and disk 0 (the disk I try to load kernel from)
first partition index is (-1).
I think parts_info isn't initialized it properly.
So I have few questions to the mailing list:
- Has someone tested the multifs feature on some real hardware?
- Is there a way to debug it? I guess some de...
2013 Oct 18
0
[RFC/PATCH 3/3] Wire up MultiFS support.
...de "core.h"
+#include "disk.h"
+#include "cache.h"
+#include "minmax.h"
+
+/* 0x80 - 0xFF
+ * BIOS limitation */
+#define DISK_ID_OFFSET 0x80
+#define DISKS_MAX 128
+
+/* MaxTransfer for MultiFS access */
+#define MAX_TRANSFER 127
+
+static struct queue_head *parts_info[DISKS_MAX];
+
+/*
+ * Store info about the FS into a specific queue to be used later.
+ *
+ * @ret: 0 on success, -1 on failure.
+ */
+static int add_fs(struct fs_info *fs, uint8_t disk, uint8_t partition)
+{
+ struct queue_head *head = parts_info[disk];
+ struct part_node *node;
+
+ node...
2016 Apr 07
0
Syslinux multifs support
...'ve started testing it with my real hardware and for some reason it
> doesn't work.
>
>
>
> I don't really know how to debug Syslinux (aside from using printf), so what
> I've succeeded to discover with is that the function multifs_get_fs iterates
> over the parts_info list and disk 0 (the disk I try to load kernel from)
> first partition index is (-1).
>
> I think parts_info isn't initialized it properly.
>
>
>
> So I have few questions to the mailing list:
>
> - Has someone tested the multifs feature on some real hardware?
&...
2015 Jul 22
13
[PULL 0/8] MultiFS suppport for BIOS and EFI
So last week I was wondering if XFS was still working -- even with its
last on-disk structure changes -- and it _suprisingly_ worked as
expected. Right, now I can finally get rid of GRUB and use Syslinux to
boot my Linux on EFI from a rootfs with xfs. Shit, I have two
partitions (the first one being the required ESP) so there is no way to
access the other partitions since because Syslinux does not
2012 Aug 20
13
[PATCH 00/12] Multidisk support
Hello,
the following patches should get multidisk access working.
The syntax accepted is the following:
(hdx,y)/path/to/file
where x is the disk number and start at 0 and the y is the partition number starting at 1. So (hd0,1) is the first partition of the first disk.
the other accepted syntax is using MBR's 32 bits disk signature so for example:
(mbr:0x12345678,2)/foo/bar
would address