Re: [PATCH] uboot: Add the missing disk write operation support

2019-01-21 Thread Daniel Kiper
On Wed, Jan 16, 2019 at 10:56:56PM +0100, Daniel Kiper wrote: > On Tue, Jan 15, 2019 at 04:59:56PM +0200, Cristian Ciocaltea wrote: > > uboot_disk_write() is currently lacking the write support > > to storage devices because, historically, those devices did not > > implement block_write() in U-Boot

Re: [PATCH] uboot: Add the missing disk write operation support

2019-01-16 Thread Daniel Kiper
On Tue, Jan 15, 2019 at 04:59:56PM +0200, Cristian Ciocaltea wrote: > uboot_disk_write() is currently lacking the write support > to storage devices because, historically, those devices did not > implement block_write() in U-Boot. > > The solution has been tested using a patched U-Boot loading > an

[PATCH] uboot: Add the missing disk write operation support

2019-01-15 Thread Cristian Ciocaltea
uboot_disk_write() is currently lacking the write support to storage devices because, historically, those devices did not implement block_write() in U-Boot. The solution has been tested using a patched U-Boot loading and booting GRUB in a QEMU vexpress-a9 environment. The disk write operations wer