From mboxrd@z Thu Jan 1 00:00:00 1970 From: Chee, Tien Fong Date: Wed, 11 Jul 2018 14:20:00 +0000 Subject: [U-Boot] [PATCH v4 6/6] common: Generic loader for file system In-Reply-To: References: <1530865683-23207-1-git-send-email-tien.fong.chee@intel.com> Message-ID: <1531318799.9560.3.camel@intel.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit To: u-boot@lists.denx.de On Wed, 2018-07-11 at 08:02 -0600, Simon Glass wrote: > Hi Tien, > > On 6 July 2018 at 02:28,   wrote: > > > > From: Tien Fong Chee > > > > This is file system generic loader which can be used to load > > the file image from the storage into target such as memory. > > The consumer driver would then use this loader to program whatever, > > ie. the FPGA device. > > > > Signed-off-by: Tien Fong Chee > > --- > >  drivers/misc/Kconfig     |  10 ++ > >  drivers/misc/Makefile    |   1 + > >  drivers/misc/fs_loader.c | 295 > > +++++++++++++++++++++++++++++++++++++++++++++++ > >  include/dm/uclass-id.h   |   1 + > >  include/fs_loader.h      |  79 +++++++++++++ > >  5 files changed, 386 insertions(+) > >  create mode 100644 drivers/misc/fs_loader.c > >  create mode 100644 include/fs_loader.h > I don't see a sandbox test for this. We need to add a test for every > new uclass. Please let me know if you want some pointers to ideas. > Yeah, i will add the sandbox for this once we finalize the design. Sandbox is new to me, i would appreciate it very much if you can share some ideas. > [..] > > Regards, > Simon