summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/user-guide.rst6
-rw-r--r--make_helpers/defaults.mk8
2 files changed, 7 insertions, 7 deletions
diff --git a/docs/user-guide.rst b/docs/user-guide.rst
index e6f0eae6..4c2b4922 100644
--- a/docs/user-guide.rst
+++ b/docs/user-guide.rst
@@ -1197,12 +1197,12 @@ command:
make PLAT=<platform> [DEBUG=1] [V=1] certtool
-For platforms that do not require their own IDs in certificate files,
-the generic 'cert\_create' tool can be built with the following command:
+For platforms that require their own IDs in certificate files, the generic
+'cert\_create' tool can be built with the following command:
::
- make USE_TBBR_DEFS=1 [DEBUG=1] [V=1] certtool
+ make USE_TBBR_DEFS=0 [DEBUG=1] [V=1] certtool
``DEBUG=1`` builds the tool in debug mode. ``V=1`` makes the build process more
verbose. The following command should be used to obtain help about the tool:
diff --git a/make_helpers/defaults.mk b/make_helpers/defaults.mk
index 31500d87..0234f537 100644
--- a/make_helpers/defaults.mk
+++ b/make_helpers/defaults.mk
@@ -166,14 +166,14 @@ SPIN_ON_BL1_EXIT := 0
# Flags to build TF with Trusted Boot support
TRUSTED_BOARD_BOOT := 0
-# Build option to choose whether Trusted firmware uses Coherent memory or not.
+# Build option to choose whether Trusted Firmware uses Coherent memory or not.
USE_COHERENT_MEM := 1
-# Build option to choose wheter Trusted firmware uses library at ROM
-USE_ROMLIB := 0
+# Build option to choose whether Trusted Firmware uses library at ROM
+USE_ROMLIB := 0
# Use tbbr_oid.h instead of platform_oid.h
-USE_TBBR_DEFS = $(ERROR_DEPRECATED)
+USE_TBBR_DEFS := 1
# Build verbosity
V := 0