Re: [U-Boot] [RFC] fs: make it possible to read the filesystem UUID

2014-10-29 Thread Stephen Warren
On 10/29/2014 06:15 AM, Christian Gmeiner wrote: > Hi all. > > Adding Stephen Warren, Simon Glass and Pavel Machek to CC list > (./scripts/get_maintainer.pl -f fs/fs.c). > > 2014-10-22 15:29 GMT+02:00 Christian Gmeiner : >> Some filesystems have a UUID stored in its superblock. To >> allow using

Re: [U-Boot] [RFC] fs: make it possible to read the filesystem UUID

2014-10-29 Thread Simon Glass
Hi, On 29 October 2014 13:57, Pavel Machek wrote: > Hi! > >> Adding Stephen Warren, Simon Glass and Pavel Machek to CC list >> (./scripts/get_maintainer.pl -f fs/fs.c). > > I'm not really fs maintainer, I added people that might be interested. >> >> 2014-10-22 15:29 GMT+02:00 Christian Gmeiner :

Re: [U-Boot] [RFC] fs: make it possible to read the filesystem UUID

2014-10-29 Thread Pavel Machek
Hi! > Adding Stephen Warren, Simon Glass and Pavel Machek to CC list > (./scripts/get_maintainer.pl -f fs/fs.c). I'm not really fs maintainer, I added people that might be interested. > > 2014-10-22 15:29 GMT+02:00 Christian Gmeiner : > > Some filesystems have a UUID stored in its superblock. To

Re: [U-Boot] [RFC] fs: make it possible to read the filesystem UUID

2014-10-29 Thread Simon Glass
Hi Christian, On 22 October 2014 07:29, Christian Gmeiner wrote: > Some filesystems have a UUID stored in its superblock. To > allow using root=UUID=... for the kernel command line we > need a way to read-out the filesystem UUID. This is what this > patch tries to do. > > Keep in mind that this p

Re: [U-Boot] [RFC] fs: make it possible to read the filesystem UUID

2014-10-29 Thread Christian Gmeiner
Hi all. Adding Stephen Warren, Simon Glass and Pavel Machek to CC list (./scripts/get_maintainer.pl -f fs/fs.c). 2014-10-22 15:29 GMT+02:00 Christian Gmeiner : > Some filesystems have a UUID stored in its superblock. To > allow using root=UUID=... for the kernel command line we > need a way to re

[U-Boot] [RFC] fs: make it possible to read the filesystem UUID

2014-10-22 Thread Christian Gmeiner
Some filesystems have a UUID stored in its superblock. To allow using root=UUID=... for the kernel command line we need a way to read-out the filesystem UUID. This is what this patch tries to do. Keep in mind that this patch is an RFC and I hope to get some feedback on this patch. This is what bl