u-boot-spl.lds 459 B

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