summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authordanh-arm <dan.handley@arm.com>2016-10-18 16:32:57 +0100
committerGitHub <noreply@github.com>2016-10-18 16:32:57 +0100
commit97fa6f57bf212395db6edc13919281a1cda8ba58 (patch)
tree83201d7223b7c60e8082d9cb9f84ab5b668acff1 /docs
parente1c4274091ed0861c31566f82db262d3604836a2 (diff)
parent7813aae423bd52c6a8279cb74f4358b92cf9081a (diff)
Merge pull request #677 from hzhuang1/gpt
partition: check GPT partition table
Diffstat (limited to 'docs')
-rw-r--r--docs/porting-guide.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/porting-guide.md b/docs/porting-guide.md
index 8e913b90..1247baf5 100644
--- a/docs/porting-guide.md
+++ b/docs/porting-guide.md
@@ -501,6 +501,17 @@ optionally be defined:
PLAT_PL061_MAX_GPIOS := 160
$(eval $(call add_define,PLAT_PL061_MAX_GPIOS))
+If the platform port uses the partition driver, the following constant may
+optionally be defined:
+
+* **PLAT_PARTITION_MAX_ENTRIES**
+ Maximum number of partition entries required by the platform. This allows
+ control how much memory is allocated for partition entries. The default
+ value is 128.
+ [For example, define the build flag in platform.mk]:
+ PLAT_PARTITION_MAX_ENTRIES := 12
+ $(eval $(call add_define,PLAT_PARTITION_MAX_ENTRIES))
+
### File : plat_macros.S [mandatory]