]> git.sur5r.net Git - u-boot/blobdiff - arch/blackfin/cpu/u-boot.lds
arm: mvebu: Don't call arch_cpu_init() from SPL at all
[u-boot] / arch / blackfin / cpu / u-boot.lds
index 2b8d285e1f420a52be8d99c1e1dbbb3e0ff2a7e1..ae1b813c1f36c97b455ec129e39f0f6c0073d635 100644 (file)
@@ -6,23 +6,7 @@
  * (C) Copyright 2000-2004
  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  *
- * See file CREDITS for list of people who contributed to this
- * project.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
- * MA 02111-1307 USA
+ * SPDX-License-Identifier:    GPL-2.0+
  */
 
 #include <config.h>
@@ -112,11 +96,9 @@ SECTIONS
                CONSTRUCTORS
        } >ram_data
 
-       .u_boot_cmd :
-       {
-               ___u_boot_cmd_start = .;
-               *(.u_boot_cmd)
-               ___u_boot_cmd_end = .;
+
+       .u_boot_list : {
+               KEEP(*(SORT(.u_boot_list*)));
        } >ram_data
 
        .text_l1 :
@@ -153,6 +135,8 @@ SECTIONS
                *(COMMON)
                . = ALIGN(4);
        } >ram_data
-       __bss_vma = ADDR(.bss);
+       __bss_end = .;
+       __bss_start = ADDR(.bss);
        __bss_len = SIZEOF(.bss);
+       __init_end = .;
 }