u-boot-spl.lds 627 B

12345678910111213141516171819202122232425262728293031
  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(32);
  10. __u_boot_list : {
  11. KEEP(*(SORT(__u_boot_list*)));
  12. }
  13. /* Private data for devices with OF_PLATDATA_RT */
  14. . = ALIGN(4);
  15. .priv_data : {
  16. __priv_data_start = .;
  17. *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.priv_data*)))
  18. __priv_data_end = .;
  19. }
  20. _u_boot_sandbox_getopt : {
  21. *(_u_boot_sandbox_getopt_start)
  22. KEEP(*(_u_boot_sandbox_getopt))
  23. *(_u_boot_sandbox_getopt_end)
  24. }
  25. }
  26. INSERT AFTER .data;