Dear Stefan Roese, In message <[EMAIL PROTECTED]> you wrote: > Hi Wolfgang, > > I pushed the 2 small patches to support UBI on NOR FLASH into the ubi > repository. > Here the updated pull request: > > The following changes since commit 9b827cf1720acda2473afa516956eab6f7cca9a1: > Selvamuthukumar (1): > Align end of bss by 4 bytes > > are available in the git repository at: > > git://www.denx.de/git/u-boot-ubi.git master > > Kyungmin Park (11): > MTD: Add MTD paritioning infrastructure > UBI: Add basic UBI support to U-Boot (Part 1/8) > UBI: Add basic UBI support to U-Boot (Part 2/8) > UBI: Add basic UBI support to U-Boot (Part 3/8) > UBI: Add basic UBI support to U-Boot (Part 4/8) > UBI: Add basic UBI support to U-Boot (Part 5/8) > UBI: Add basic UBI support to U-Boot (Part 6/8) > UBI: Add basic UBI support to U-Boot (Part 7/8) > UBI: Add basic UBI support to U-Boot (Part 8/8) > UBI: Add UBI command support > ARM: Add Apollon UBI support > > Piotr Ziecik (2): > mtd: Remove a printf() from add_mtd_device(). > UBI: Add proof-of-concept CFI flash support > > Stefan Roese (1): > UBI: Change parsing of size in commands to default to hex > > Makefile | 1 + > board/apollon/Makefile | 3 +- > common/Makefile | 1 + > common/cmd_ubi.c | 608 +++++++ > drivers/mtd/Makefile | 1 + > drivers/mtd/mtdcore.c | 144 ++ > drivers/mtd/mtdpart.c | 532 +++++++ > drivers/mtd/ubi/Makefile | 51 + > drivers/mtd/ubi/build.c | 1186 ++++++++++++++ > drivers/mtd/ubi/crc32.c | 518 ++++++ > drivers/mtd/ubi/crc32defs.h | 32 + > drivers/mtd/ubi/crc32table.h | 136 ++ > drivers/mtd/ubi/debug.c | 192 +++ > drivers/mtd/ubi/debug.h | 152 ++ > drivers/mtd/ubi/eba.c | 1256 +++++++++++++++ > drivers/mtd/ubi/io.c | 1274 +++++++++++++++ > drivers/mtd/ubi/kapi.c | 638 ++++++++ > drivers/mtd/ubi/misc.c | 106 ++ > drivers/mtd/ubi/scan.c | 1360 ++++++++++++++++ > drivers/mtd/ubi/scan.h | 165 ++ > .../ubi-header.h => drivers/mtd/ubi/ubi-media.h | 154 +- > drivers/mtd/ubi/ubi.h | 641 ++++++++ > drivers/mtd/ubi/upd.c | 441 ++++++ > drivers/mtd/ubi/vmt.c | 862 ++++++++++ > drivers/mtd/ubi/vtbl.c | 837 ++++++++++ > drivers/mtd/ubi/wl.c | 1670 > ++++++++++++++++++++ > include/configs/apollon.h | 74 +- > include/exports.h | 1 + > include/jffs2/load_kernel.h | 5 + > include/linux/crc32.h | 27 + > include/linux/mtd/partitions.h | 84 + > include/linux/mtd/ubi-user.h | 161 -- > include/linux/mtd/ubi.h | 186 +++ > include/linux/types.h | 24 + > include/mtd/ubi-user.h | 268 ++++ > include/ubi_uboot.h | 217 +++ > lib_generic/vsprintf.c | 23 + > 37 files changed, 13781 insertions(+), 250 deletions(-) > create mode 100644 common/cmd_ubi.c > create mode 100644 drivers/mtd/mtdcore.c > create mode 100644 drivers/mtd/mtdpart.c > create mode 100644 drivers/mtd/ubi/Makefile > create mode 100644 drivers/mtd/ubi/build.c > create mode 100644 drivers/mtd/ubi/crc32.c > create mode 100644 drivers/mtd/ubi/crc32defs.h > create mode 100644 drivers/mtd/ubi/crc32table.h > create mode 100644 drivers/mtd/ubi/debug.c > create mode 100644 drivers/mtd/ubi/debug.h > create mode 100644 drivers/mtd/ubi/eba.c > create mode 100644 drivers/mtd/ubi/io.c > create mode 100644 drivers/mtd/ubi/kapi.c > create mode 100644 drivers/mtd/ubi/misc.c > create mode 100644 drivers/mtd/ubi/scan.c > create mode 100644 drivers/mtd/ubi/scan.h > rename include/linux/mtd/ubi-header.h => drivers/mtd/ubi/ubi-media.h (80%) > create mode 100644 drivers/mtd/ubi/ubi.h > create mode 100644 drivers/mtd/ubi/upd.c > create mode 100644 drivers/mtd/ubi/vmt.c > create mode 100644 drivers/mtd/ubi/vtbl.c > create mode 100644 drivers/mtd/ubi/wl.c > create mode 100644 include/linux/crc32.h > create mode 100644 include/linux/mtd/partitions.h > delete mode 100644 include/linux/mtd/ubi-user.h > create mode 100644 include/linux/mtd/ubi.h > create mode 100644 include/mtd/ubi-user.h > create mode 100644 include/ubi_uboot.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] Der Irrtum wiederholt sich immerfort in der Tat. Deshalb muß man das Wahre unermüdlich in Worten wiederholen. - Goethe _______________________________________________ U-Boot mailing list [email protected] http://lists.denx.de/mailman/listinfo/u-boot

