Re: [PATCH] * grub-core/fs/udf.c: Add support for UUID

2017-05-12 Thread Pali Rohár
On Monday 08 May 2017 15:13:28 Vladimir 'phcoder' Serbinenko wrote: > On Mon, Apr 10, 2017, 23:17 Pali Rohár wrote: > > -read_string (const grub_uint8_t *raw, grub_size_t sz, char > > *outbuf) +read_string (const grub_uint8_t *raw, grub_size_t sz, > > char *outbuf, int

Re: [PATCH] * grub-core/fs/udf.c: Add support for UUID

2017-05-11 Thread Pali Rohár
On Monday 08 May 2017 16:24:24 Pali Rohár wrote: > On Monday 08 May 2017 15:13:28 Vladimir 'phcoder' Serbinenko wrote: > > On Mon, Apr 10, 2017, 23:17 Pali Rohár wrote: > > > char *outbuf, int normalize_utf8) > > > > Normalize isn't the right word. And it's not utf-8 but

Re: [PATCH] * grub-core/fs/udf.c: Add support for UUID

2017-05-08 Thread Pali Rohár
On Monday 08 May 2017 15:13:28 Vladimir 'phcoder' Serbinenko wrote: > On Mon, Apr 10, 2017, 23:17 Pali Rohár wrote: > > char *outbuf, int normalize_utf8) > > Normalize isn't the right word. And it's not utf-8 but latin1 (called > compressed utf-16 by udf docs). Without

Re: [PATCH] * grub-core/fs/udf.c: Add support for UUID

2017-05-08 Thread Vladimir 'phcoder' Serbinenko
On Mon, Apr 10, 2017, 23:17 Pali Rohár wrote: > Use same algorithm as in libblkid from util-linux. > --- > grub-core/fs/udf.c | 136 > ++-- > 1 file changed, 131 insertions(+), 5 deletions(-) > > diff --git

Re: [PATCH] * grub-core/fs/udf.c: Add support for UUID

2017-05-08 Thread Pali Rohár
Gentle PING for this patch! On Wednesday 19 April 2017 19:48:39 Pali Rohár wrote: > Hi! I would like to remind this patch. It allows to use UUID of UDF > partition in grub2. Linux tool blkid is already able to handle it, so it > is possible to specify UUID of UDF partition in /etc/fstab. > > UDF

Re: [PATCH] * grub-core/fs/udf.c: Add support for UUID

2017-04-19 Thread Andrei Borzenkov
19.04.2017 20:48, Pali Rohár пишет: > Hi! I would like to remind this patch. It allows to use UUID of UDF > partition in grub2. Linux tool blkid is already able to handle it, so it > is possible to specify UUID of UDF partition in /etc/fstab. > > UDF is filesystem used on optical disks (DVD), but

Re: [PATCH] * grub-core/fs/udf.c: Add support for UUID

2017-04-19 Thread Pali Rohár
Hi! I would like to remind this patch. It allows to use UUID of UDF partition in grub2. Linux tool blkid is already able to handle it, so it is possible to specify UUID of UDF partition in /etc/fstab. UDF is filesystem used on optical disks (DVD), but also on hard disks as it is natively

[PATCH] * grub-core/fs/udf.c: Add support for UUID

2017-04-10 Thread Pali Rohár
Use same algorithm as in libblkid from util-linux. --- grub-core/fs/udf.c | 136 ++-- 1 file changed, 131 insertions(+), 5 deletions(-) diff --git a/grub-core/fs/udf.c b/grub-core/fs/udf.c index 839bff8..a4baa4c 100644 --- a/grub-core/fs/udf.c +++