Dear [email protected], In message <[email protected]> you wrote: > From: Uma Shankar <[email protected]> > > Signed-off-by: Uma Shankar <[email protected]> > Signed-off-by: Manjunatha C Achar <[email protected]> > Signed-off-by: Iqbal Shareef <[email protected]> > Signed-off-by: Hakgoo Lee <[email protected]> > --- > Changes for v2: > - Code cleanup, changed comment style > - camel case removed, resolved code alignment issues > - memory allocation logic changed, removed busybox logic > - Modified ext4 load to remove grub dependency (GPLv3) > > Changes for v1: > - Removed checkpatch warnings and errors > - Moved common API's of ext2 and ext4 to one generic header file > > Makefile | 2 +- > common/Makefile | 1 + > common/cmd_ext2.c | 1 + > common/cmd_ext4.c | 249 ++++++++++++++++++++++ > fs/Makefile | 1 + > fs/ext2/dev.c | 1 + > fs/ext2/ext2fs.c | 340 +++--------------------------- > fs/ext4/Makefile | 51 +++++ > fs/ext4/ext4_common.c | 565 > +++++++++++++++++++++++++++++++++++++++++++++++++ > fs/ext4/ext4_common.h | 48 +++++ > fs/ext4/ext4fs.c | 219 +++++++++++++++++++ > include/ext2fs.h | 16 +- > include/ext4fs.h | 133 ++++++++++++ > include/ext_common.h | 198 +++++++++++++++++ > 14 files changed, 1501 insertions(+), 324 deletions(-) > create mode 100644 common/cmd_ext4.c > create mode 100644 fs/ext4/Makefile > create mode 100644 fs/ext4/ext4_common.c > create mode 100644 fs/ext4/ext4_common.h > create mode 100644 fs/ext4/ext4fs.c > create mode 100644 include/ext4fs.h > create mode 100644 include/ext_common.h
Applied, thanks. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: [email protected] This is now. Later is later. _______________________________________________ U-Boot mailing list [email protected] http://lists.denx.de/mailman/listinfo/u-boot

