Re: [U-Boot] [PATCH] board: ti: am57xx: Correct the fastboot product var

2019-07-25 Thread Sam Protsenko
On Thu, Jul 25, 2019 at 7:28 PM Sam Protsenko wrote: > > On Thu, Jul 25, 2019 at 6:03 PM Andrew F. Davis wrote: > > > > On 7/25/19 10:43 AM, Sam Protsenko wrote: > > > On Thu, Jul 25, 2019 at 5:05 PM Andrew F. Davis wrote: > > >> > > >> On 7/25/19 9:22 AM, Sam Protsenko wrote: > > >>> "fastboot

Re: [U-Boot] [PATCH] board: ti: am57xx: Correct the fastboot product var

2019-07-25 Thread Sam Protsenko
On Thu, Jul 25, 2019 at 6:03 PM Andrew F. Davis wrote: > > On 7/25/19 10:43 AM, Sam Protsenko wrote: > > On Thu, Jul 25, 2019 at 5:05 PM Andrew F. Davis wrote: > >> > >> On 7/25/19 9:22 AM, Sam Protsenko wrote: > >>> "fastboot flashall" expects "fastboot getvar product" to be > >>> "beagle_x15boa

Re: [U-Boot] [PATCH] board: ti: am57xx: Correct the fastboot product var

2019-07-25 Thread Andrew F. Davis
On 7/25/19 10:43 AM, Sam Protsenko wrote: > On Thu, Jul 25, 2019 at 5:05 PM Andrew F. Davis wrote: >> >> On 7/25/19 9:22 AM, Sam Protsenko wrote: >>> "fastboot flashall" expects "fastboot getvar product" to be >>> "beagle_x15board". Instead, "am57xx" is returned, as it's set in $board >>> env var

Re: [U-Boot] [PATCH] board: ti: am57xx: Correct the fastboot product var

2019-07-25 Thread Sam Protsenko
On Thu, Jul 25, 2019 at 5:05 PM Andrew F. Davis wrote: > > On 7/25/19 9:22 AM, Sam Protsenko wrote: > > "fastboot flashall" expects "fastboot getvar product" to be > > "beagle_x15board". Instead, "am57xx" is returned, as it's set in $board > > env var from SYS_BOARD in board/ti/am57xx/Kconfig file

Re: [U-Boot] [PATCH] board: ti: am57xx: Correct the fastboot product var

2019-07-25 Thread Andrew F. Davis
On 7/25/19 9:22 AM, Sam Protsenko wrote: > "fastboot flashall" expects "fastboot getvar product" to be > "beagle_x15board". Instead, "am57xx" is returned, as it's set in $board > env var from SYS_BOARD in board/ti/am57xx/Kconfig file. > > Override fastboot product variable and set it to correct va

[U-Boot] [PATCH] board: ti: am57xx: Correct the fastboot product var

2019-07-25 Thread Sam Protsenko
"fastboot flashall" expects "fastboot getvar product" to be "beagle_x15board". Instead, "am57xx" is returned, as it's set in $board env var from SYS_BOARD in board/ti/am57xx/Kconfig file. Override fastboot product variable and set it to correct value, to fix "fastboot flashall". Signed-off-by: Sa