Re: [U-Boot] [PATCH v3] misc: fs_loader: Add support for initializing block device

2019-01-31 Thread Chee, Tien Fong
On Thu, 2019-01-31 at 03:04 -0700, Simon Glass wrote: > Hi, > > On Thu, 24 Jan 2019 at 03:24, wrote: > > > > > > From: Tien Fong Chee > > > > Firmware loader would encounter problem if the block device is > > accessed > > before initializing it. This patch would adding the support of > >

Re: [U-Boot] [PATCH v3] misc: fs_loader: Add support for initializing block device

2019-01-31 Thread Simon Glass
Hi, On Thu, 24 Jan 2019 at 03:24, wrote: > > From: Tien Fong Chee > > Firmware loader would encounter problem if the block device is accessed > before initializing it. This patch would adding the support of probing > block device and initializing block before the block device is accessed by >

[U-Boot] [PATCH v3] misc: fs_loader: Add support for initializing block device

2019-01-24 Thread tien . fong . chee
From: Tien Fong Chee Firmware loader would encounter problem if the block device is accessed before initializing it. This patch would adding the support of probing block device and initializing block before the block device is accessed by firmware loader. Signed-off-by: Tien Fong Chee ---