From 17c29f5e41a2e69e85f04d8bbdda3254cd51a961 Mon Sep 17 00:00:00 2001 From: Clement Leger Date: Tue, 30 Jun 2020 22:53:44 +0200 Subject: kvx: remove duplicated dtb symbols dtb symbols (__dtb_start, __dtb_end) are already defined using RO_DATA_SECTION. This duplicated dtb section is a leftover used by Kalray internal tools to patch the dtb when loading the elf on a target. Remove it to keep only one symbol definition. Signed-off-by: Clement Leger Signed-off-by: Sascha Hauer --- arch/kvx/cpu/barebox.lds.S | 9 --------- 1 file changed, 9 deletions(-) (limited to 'arch/kvx') diff --git a/arch/kvx/cpu/barebox.lds.S b/arch/kvx/cpu/barebox.lds.S index bf92564cfb..77ebaf0aea 100644 --- a/arch/kvx/cpu/barebox.lds.S +++ b/arch/kvx/cpu/barebox.lds.S @@ -10,8 +10,6 @@ OUTPUT_FORMAT("elf64-kvx") OUTPUT_ARCH("kvx:kv3-1:64") -#define DTB_DEFAULT_SIZE (24 * 1024) - SECTIONS { . = CONFIG_ARCH_TEXT_BASE; @@ -54,13 +52,6 @@ SECTIONS RO_DATA_SECTION } - .dtb ALIGN(16): - { - __dtb_start = .; - . += DTB_DEFAULT_SIZE; - __dtb_end = .; - } - _etext = .; /* End of text and rodata section */ .data ALIGN(4): { -- cgit v1.2.3