
Hello, Andy,
Do you have any comment for this patch, if no could you help apply it?
Best Regards, Shaohui Xie
-----Original Message----- From: Xie Shaohui-B21989 Sent: Tuesday, June 12, 2012 4:11 PM To: u-boot@lists.denx.de Cc: Xie Shaohui-B21989 Subject: [PATCH][v3] powerpc/CoreNet: add tool to support pbl image build.
Provides a tool to build boot Image for PBL(Pre boot loader) which is used on Freescale CoreNet SoCs, PBL can be used to load some instructions and/or data for pre-initialization. The default output image is u-boot.pbl, for more details please refer to doc/README.pblimage.
Signed-off-by: Shaohui Xie Shaohui.Xie@freescale.com
changes for v3:
- dump config.mk, aligned to comment of Wolfgang Denk; 2. split one
configuration file to two, one is for RCW, one is for PBI commands, add second entry in mkimage for second configuration file, aligned to comment of Wood Scott; 3. refined the README.pblimage;
Makefile | 6 + board/freescale/corenet_ds/pbi.cfg | 51 ++++++ board/freescale/corenet_ds/rcw.cfg | 32 ++++ common/image.c | 1 + doc/README.pblimage | 114 +++++++++++++ include/configs/corenet_ds.h | 2 + include/image.h | 1 + tools/Makefile | 2 + tools/mkimage.c | 15 ++ tools/mkimage.h | 3 + tools/pblimage.c | 328 ++++++++++++++++++++++++++++++++++++ tools/pblimage.h | 36 ++++ 12 files changed, 591 insertions(+), 0 deletions(-) create mode 100644 board/freescale/corenet_ds/pbi.cfg create mode 100644 board/freescale/corenet_ds/rcw.cfg create mode 100644 doc/README.pblimage create mode 100644 tools/pblimage.c create mode 100644 tools/pblimage.h