uboot/tools/binman/test/u_boot_binman_syms.lds
<<
>>
Prefs
   1/* SPDX-License-Identifier: GPL-2.0+ */
   2/*
   3 * Copyright (c) 2016 Google, Inc
   4 */
   5
   6OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
   7OUTPUT_ARCH(i386)
   8ENTRY(_start)
   9
  10SECTIONS
  11{
  12        . = 0x00000010;
  13        _start = .;
  14
  15        . = ALIGN(4);
  16        .text :
  17        {
  18                __image_copy_start = .;
  19                *(.text*)
  20        }
  21
  22        . = ALIGN(4);
  23        .binman_sym_table : {
  24                __binman_sym_start = .;
  25                KEEP(*(SORT(.binman_sym*)));
  26                __binman_sym_end = .;
  27        }
  28        .interp : { *(.interp*) }
  29
  30}
  31