diff options
author | Juan Castillo <juan.castillo@arm.com> | 2016-01-05 11:55:36 +0000 |
---|---|---|
committer | Juan Castillo <juan.castillo@arm.com> | 2016-01-05 11:55:36 +0000 |
commit | 8f0617ef9e469e47f6df077f2bb02e594594d3a7 (patch) | |
tree | f871f79600465026da800120338a70618907f5ca /docs | |
parent | d0c104e1e1ad0102f0f4c70997b7ee6e6fbbe273 (diff) |
Apply TBBR naming convention to the fip_create options
The fip_create tool specifies images in the command line using the
ARM TF naming convention (--bl2, --bl31, etc), while the cert_create
tool uses the TBBR convention (--tb-fw, --soc-fw, etc). This double
convention is confusing and should be aligned.
This patch updates the fip_create command line options to follow the
TBBR naming convention. Usage examples in the User Guide have been
also updated.
NOTE: users that build the FIP by calling the fip_create tool directly
from the command line must update the command line options in their
scripts. Users that build the FIP by invoking the main ARM TF Makefile
should not notice any difference.
Change-Id: I84d602630a2585e558d927b50dfde4dd2112496f
Diffstat (limited to 'docs')
-rw-r--r-- | docs/user-guide.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/user-guide.md b/docs/user-guide.md index 435a903b..3337f88d 100644 --- a/docs/user-guide.md +++ b/docs/user-guide.md @@ -495,7 +495,7 @@ Create a Firmware package that contains existing BL2 and BL31 images: # fip_create --help to print usage information # fip_create <fip_name> <images to add> [--dump to show result] ./tools/fip_create/fip_create fip.bin --dump \ - --bl2 build/<platform>/debug/bl2.bin --bl31 build/<platform>/debug/bl31.bin + --tb-fw build/<platform>/debug/bl2.bin --soc-fw build/<platform>/debug/bl31.bin Firmware Image Package ToC: --------------------------- @@ -520,7 +520,7 @@ Existing package entries can be individually updated: # Change the BL2 from Debug to Release version ./tools/fip_create/fip_create fip.bin --dump \ - --bl2 build/<platform>/release/bl2.bin + --tb-fw build/<platform>/release/bl2.bin Firmware Image Package ToC: --------------------------- |