Re: [U-Boot] [PATCH] allow config_distro_bootcmd to pass uuid to extlinux.conf

2014-12-15 Thread Hans de Goede
Hi, On 15-12-14 03:09, Stephen Warren wrote: On 12/14/2014 02:35 PM, Iain Paton wrote: On 14/12/14 17:22, Stephen Warren wrote: On 12/14/2014 07:52 AM, Iain Paton wrote: Set ptuuid and fsuuid variables to the partition / filesystem where we found extlinux.conf which allows us to use a replace

Re: [U-Boot] [PATCH] allow config_distro_bootcmd to pass uuid to extlinux.conf

2014-12-14 Thread Stephen Warren
On 12/14/2014 07:52 AM, Iain Paton wrote: > Set ptuuid and fsuuid variables to the partition / filesystem > where we found extlinux.conf which allows us to use a replaceable > parameter in the append line in extlinux.conf like this > > append root=PARTUUID=${ptuuid} > > this means we never have t

Re: [U-Boot] [PATCH] allow config_distro_bootcmd to pass uuid to extlinux.conf

2014-12-14 Thread Stephen Warren
On 12/14/2014 02:35 PM, Iain Paton wrote: > On 14/12/14 17:22, Stephen Warren wrote: >> On 12/14/2014 07:52 AM, Iain Paton wrote: >>> Set ptuuid and fsuuid variables to the partition / filesystem >>> where we found extlinux.conf which allows us to use a replaceable >>> parameter in the append line

Re: [U-Boot] [PATCH] allow config_distro_bootcmd to pass uuid to extlinux.conf

2014-12-14 Thread Iain Paton
On 14/12/14 17:22, Stephen Warren wrote: > On 12/14/2014 07:52 AM, Iain Paton wrote: >> Set ptuuid and fsuuid variables to the partition / filesystem >> where we found extlinux.conf which allows us to use a replaceable >> parameter in the append line in extlinux.conf like this >> >> append root=PAR

[U-Boot] [PATCH] allow config_distro_bootcmd to pass uuid to extlinux.conf

2014-12-14 Thread Iain Paton
Set ptuuid and fsuuid variables to the partition / filesystem where we found extlinux.conf which allows us to use a replaceable parameter in the append line in extlinux.conf like this append root=PARTUUID=${ptuuid} this means we never have to hardcode a root=/dev/mmcblk0p1 type path anywhere. Si