aboutsummaryrefslogtreecommitdiff
path: root/docs/platform
diff options
context:
space:
mode:
authorXiang W <wxjstz@126.com>2024-04-08 23:27:42 +0800
committerAnup Patel <anup@brainfault.org>2024-04-10 09:50:24 +0530
commitd4d2582eef7aac442076f955e4024403f8ff3d96 (patch)
tree3623c416199df750595d3a5147027ee41a51d5b8 /docs/platform
parent73344d4724d89ab5591311b9badfad875dddbb92 (diff)
downloadopensbi-d4d2582eef7aac442076f955e4024403f8ff3d96.zip
opensbi-d4d2582eef7aac442076f955e4024403f8ff3d96.tar.gz
opensbi-d4d2582eef7aac442076f955e4024403f8ff3d96.tar.bz2
firmware: remove FW_TEXT_START
Now opensbi can run at any address via dynamic relocation. We can remove FW_TEXT_START. Signed-off-by: Xiang W <wxjstz@126.com> Reviewed-by: Anup Patel <anup@brainfault.org> Tested-by: Anup Patel <anup@brainfault.org>
Diffstat (limited to 'docs/platform')
-rw-r--r--docs/platform/generic.md11
1 files changed, 3 insertions, 8 deletions
diff --git a/docs/platform/generic.md b/docs/platform/generic.md
index c29eb04..709b436 100644
--- a/docs/platform/generic.md
+++ b/docs/platform/generic.md
@@ -9,10 +9,9 @@ boards.
By default, the generic FDT platform makes following assumptions:
-1. platform FW_TEXT_START is 0x80000000
-2. platform features are default
-3. platform stack size is default
-4. platform has no quirks or work-arounds
+1. platform features are default
+2. platform stack size is default
+3. platform has no quirks or work-arounds
The above assumptions (except 1) can be overridden by adding special platform
callbacks which will be called based on FDT root node compatible string.
@@ -33,10 +32,6 @@ Users of the generic FDT platform will have to ensure that:
To build the platform-specific library and firmware images, provide the
*PLATFORM=generic* parameter to the top level `make` command.
-For custom FW_TEXT_START, we can build the platform-specific library and
-firmware images by passing *PLATFORM=generic FW_TEXT_START=<custom_text_start>*
-parameter to the top level `make` command.
-
Platform Options
----------------