Re: [U-Boot] [PATCH] ti_armv7_common: env: Fix hard coded mmc device for uuid

2016-06-03 Thread B, Ravi
Hi Tom >> diff --git a/include/configs/ti_armv7_common.h >> b/include/configs/ti_armv7_common.h >> index 7db0881..bbff06b 100644 >> --- a/include/configs/ti_armv7_common.h >> +++ b/include/configs/ti_armv7_common.h >> @@ -59,7 +59,7 @@ >> #define DEFAULT_MMC_TI_ARGS \ >> "mmcdev=0\0" \ >>

Re: [U-Boot] [PATCH] ti_armv7_common: env: Fix hard coded mmc device for uuid

2016-06-03 Thread Tom Rini
On Fri, Jun 03, 2016 at 08:05:58AM +, B, Ravi wrote: > Hi > > >>> #define DEFAULT_MMC_TI_ARGS \ > >>> "mmcdev=0\0" \ > >>> "mmcrootfstype=ext4 rootwait\0" \ > >>> - "finduuid=part uuid mmc 0:2 uuid\0" \ > >>> + "finduuid=part uuid mmc ${mmcdev}:2 uuid\0" \ > >>> "args_mmc=run finduuid;s

Re: [U-Boot] [PATCH] ti_armv7_common: env: Fix hard coded mmc device for uuid

2016-06-03 Thread B, Ravi
Hi >>> #define DEFAULT_MMC_TI_ARGS \ >>> "mmcdev=0\0" \ >>> "mmcrootfstype=ext4 rootwait\0" \ >>> - "finduuid=part uuid mmc 0:2 uuid\0" \ >>> + "finduuid=part uuid mmc ${mmcdev}:2 uuid\0" \ >>> "args_mmc=run finduuid;setenv bootargs console=${console} " \ >>> "${optarg

Re: [U-Boot] [PATCH] ti_armv7_common: env: Fix hard coded mmc device for uuid

2016-06-03 Thread B, Ravi
Hi Tom >> Avoid use of hard coded mmcdev value so finduuid works based on >> current mmcdev selected. >> >> Signed-off-by: Ravi Babu >> --- >> include/configs/ti_armv7_common.h |2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/include/configs/ti_armv7_common.h >>

Re: [U-Boot] [PATCH] ti_armv7_common: env: Fix hard coded mmc device for uuid

2016-06-02 Thread Tom Rini
On Thu, Jun 02, 2016 at 06:14:27PM +0530, Ravi Babu wrote: > Avoid use of hard coded mmcdev value so finduuid works > based on current mmcdev selected. > > Signed-off-by: Ravi Babu > --- > include/configs/ti_armv7_common.h |2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --gi

Re: [U-Boot] [PATCH] ti_armv7_common: env: Fix hard coded mmc device for uuid

2016-06-02 Thread Lokesh Vutla
On 6/2/2016 6:14 PM, Ravi Babu wrote: Avoid use of hard coded mmcdev value so finduuid works based on current mmcdev selected. Acked-by: Lokesh Vutla Thanks and regards, Lokesh Signed-off-by: Ravi Babu --- include/configs/ti_armv7_common.h |2 +- 1 file changed, 1 insertion(+), 1

[U-Boot] [PATCH] ti_armv7_common: env: Fix hard coded mmc device for uuid

2016-06-02 Thread Ravi Babu
Avoid use of hard coded mmcdev value so finduuid works based on current mmcdev selected. Signed-off-by: Ravi Babu --- include/configs/ti_armv7_common.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/ti_armv7_common.h b/include/configs/ti_armv7_common.h in