Displaying 4 results from an estimated 4 matches for "vtbd0s1a".
Did you mean:
vtbd0p1
2013 Nov 05
2
[PATCH stable-1.24] Fix fstab block device resolution for FreeBSD
...device name prefix for IDE hard drives used to be `ad' but now
is `ada' (http://www.freebsd.org/doc/handbook/disks-naming.html).
For virtio hard drives it is `vtbd'.
Under an MBR partition table a slice will be used, so the name of
the first partitions will be either `ada0s1a' or `vtbd0s1a'. Under a
GPT partition table, where no slice is needed, the name of the first
partition will be either `ada0p1' or `vtbd0p1'.
Signed-off-by: Nikos Skalkotos <skalkoto@grnet.gr>
---
src/guestfs-internal.h | 2 ++
src/inspect-fs-unix.c | 27 +++++++++++++++++++++++----
src/matc...
2013 Nov 05
0
Re: [PATCH stable-1.24] Fix fstab block device resolution for FreeBSD
...DE hard drives used to be `ad' but now
> is `ada' (http://www.freebsd.org/doc/handbook/disks-naming.html).
> For virtio hard drives it is `vtbd'.
>
> Under an MBR partition table a slice will be used, so the name of
> the first partitions will be either `ada0s1a' or `vtbd0s1a'. Under a
> GPT partition table, where no slice is needed, the name of the first
> partition will be either `ada0p1' or `vtbd0p1'.
>
> Signed-off-by: Nikos Skalkotos <skalkoto@grnet.gr>
I've applied this.
I also applied the attached patch, which readds support f...
2013 Nov 05
1
Re: [PATCH stable-1.24] Fix fstab block device resolution for FreeBSD
...to be `ad' but now
>> is `ada' (http://www.freebsd.org/doc/handbook/disks-naming.html).
>> For virtio hard drives it is `vtbd'.
>>
>> Under an MBR partition table a slice will be used, so the name of
>> the first partitions will be either `ada0s1a' or `vtbd0s1a'. Under a
>> GPT partition table, where no slice is needed, the name of the first
>> partition will be either `ada0p1' or `vtbd0p1'.
>>
>> Signed-off-by: Nikos Skalkotos <skalkoto@grnet.gr>
>
> I've applied this.
>
> I also applied the attac...
2013 Nov 03
2
[PATCH stable-1.24] Fix fstab block device resolution for FreeBSD
The device name prefix for IDE hard drives used to be `ad' but now
is `ada' (http://www.freebsd.org/doc/handbook/disks-naming.html).
For virtio hard drives it is `vtbd'.
Under an mbr partition table a slice will be used, so the name of
the first partitions will be either ada0s1a or vtbd0s1a. Under a
GPT partition table, where no slice is needed, the name of the first
partition will be either ada0p1 or vtbd0p1.
Signed-off-by: Nikos Skalkotos <skalkoto at grnet.gr>
---
src/guestfs-internal.h | 2 ++
src/inspect-fs-unix.c | 30 +++++++++++++++++++++++++-----
src/match.c...