diff options
author | Shaohui Xie <Shaohui.Xie@freescale.com> | 2013-09-11 14:48:29 +0800 |
---|---|---|
committer | York Sun <yorksun@freescale.com> | 2013-10-16 16:13:13 -0700 |
commit | 262737f05aa94b29d24f21d7eae89756c242df8e (patch) | |
tree | 7ef7478502cfc1a2761fa447a4968144b39552ba /doc | |
parent | 83d925668f4efc9605040f938ea444fe809a844c (diff) | |
download | u-boot-imx-262737f05aa94b29d24f21d7eae89756c242df8e.zip u-boot-imx-262737f05aa94b29d24f21d7eae89756c242df8e.tar.gz u-boot-imx-262737f05aa94b29d24f21d7eae89756c242df8e.tar.bz2 |
powerpc/tool/pbl: fix pbl image compiling process
Previous process of compiling a PBL boot image is:
1: make <board_name_config>
2: make u-boot.pbl
for example:
make T4240QDS_SDCARD_config
make u-boot.pbl
Now the process is:
1: make <board_name>
for example:
make T4240QDS_SDCARD
Also, updated README.pblimage.
Signed-off-by: Shaohui Xie <Shaohui.Xie@freescale.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/README.pblimage | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/doc/README.pblimage b/doc/README.pblimage index 2b9bb5c..7fdd26b 100644 --- a/doc/README.pblimage +++ b/doc/README.pblimage @@ -14,20 +14,17 @@ Building PBL Boot Image and boot steps 1. Building PBL Boot Image. The default Image is u-boot.pbl. - For eSPI boot(available on P3041/P4080/P5020): + For eSPI boot(available on P2041/P3041/P4080/P5020/P5040/T4240): To build the eSPI boot image: - make <board_name>_SPIFLASH_config - make u-boot.pbl + make <board_name>_SPIFLASH - For SD boot(available on P3041/P4080/P5020): + For SD boot(available on P2041/P3041/P4080/P5020/P5040/T4240): To build the SD boot image: - make <board_name>_SDCARD_config - make u-boot.pbl + make <board_name>_SDCARD - For Nand boot(available on P3041/P5020): + For Nand boot(available on P2041/P3041/P5020/P5040): To build the NAND boot image: - make <board_name>_NAND_config - make u-boot.pbl + make <board_name>_NAND 2. pblimage support available with mkimage utility will generate Freescale PBL |