diff options
author | Anup Patel <anup.patel@wdc.com> | 2020-05-25 15:13:31 +0530 |
---|---|---|
committer | Anup Patel <anup@brainfault.org> | 2020-06-05 09:03:05 +0530 |
commit | 51f0e4a0533fe8b5d713379ab3a6cb676add82da (patch) | |
tree | 24ce214ae56448b85f5e024d94ac385dff87322e /platform | |
parent | 72019ee2020fbc196a730dc4f52309e39d6b764a (diff) |
firmware: Remove FW_PAYLOAD_FDT and related documentation
Now that no platform is using FW_PAYLOAD_FDT mechanism, we
remove related code from Makefile and related documentation.
Signed-off-by: Anup Patel <anup.patel@wdc.com>
Reviewed-by: Atish Patra <atish.patra@wdc.com>
Diffstat (limited to 'platform')
-rw-r--r-- | platform/template/config.mk | 1 | ||||
-rw-r--r-- | platform/template/objects.mk | 8 |
2 files changed, 4 insertions, 5 deletions
diff --git a/platform/template/config.mk b/platform/template/config.mk index 70f2db8..7bcf937 100644 --- a/platform/template/config.mk +++ b/platform/template/config.mk @@ -72,5 +72,4 @@ endif # FW_PAYLOAD_ALIGN=0x1000 # FW_PAYLOAD_PATH="path to next boot stage binary image file" # FW_PAYLOAD_FDT_PATH="path to platform flattened device tree file" -# FW_PAYLOAD_FDT="name of the platform defined flattened device tree file" # FW_PAYLOAD_FDT_ADDR=0x82200000 diff --git a/platform/template/objects.mk b/platform/template/objects.mk index b9ba231..caaec2b 100644 --- a/platform/template/objects.mk +++ b/platform/template/objects.mk @@ -8,8 +8,8 @@ platform-objs-y += platform.o # -# If the platform support requires a device tree file, the name of the device -# tree compiled file should be specified here. The device tree source file -# be in the form <dt file name>.dts +# If the platform support requires a builtin device tree file, the name of +# the device tree compiled file should be specified here. The device tree +# source file be in the form <dt file name>.dts # -# platform-dtb-y += <dt file name>.dtb +# platform-objs-y += <dt file name>.o |