u-boot-spl.lds 454 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (c) 2011-2012 The Chromium OS Authors.
  3. * Use of this source code is governed by a BSD-style license that can be
  4. * found in the LICENSE file.
  5. *
  6. * SPDX-License-Identifier: GPL-2.0+
  7. */
  8. SECTIONS
  9. {
  10. . = ALIGN(4);
  11. .u_boot_list : {
  12. KEEP(*(SORT(.u_boot_list*)));
  13. }
  14. __u_boot_sandbox_option_start = .;
  15. _u_boot_sandbox_getopt : { *(.u_boot_sandbox_getopt) }
  16. __u_boot_sandbox_option_end = .;
  17. __bss_start = .;
  18. }
  19. INSERT BEFORE .data;