sunxi: musb: Stop treating not having a vbus-det gpio as an error
[oweals/u-boot.git] / arch / arm / cpu / armv7 / sunxi / u-boot-spl.lds
index 5008028aae829bf46cf2a648358fcb5cf9ef740b..53f0cbd2b7eac2b6496dfcd27da23226760637b5 100644 (file)
@@ -27,6 +27,7 @@ SECTIONS
        .text      :
        {
                __start = .;
+               *(.vectors)
                arch/arm/cpu/armv7/start.o      (.text)
                *(.text*)
        } > .sram
@@ -37,6 +38,11 @@ SECTIONS
        . = ALIGN(4);
        .data : { *(SORT_BY_ALIGNMENT(.data*)) } >.sram
 
+       . = ALIGN(4);
+       .u_boot_list : {
+               KEEP(*(SORT(.u_boot_list*)));
+       } > .sram
+
        . = ALIGN(4);
        __image_copy_end = .;
        _end = .;