vdso_text.S 431 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (c) 2006-2023, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2024-07-04 rcitach init ver.
  9. */
  10. #include <vdso_config.h>
  11. .globl __vdso_text_start, __vdso_text_end
  12. .section .rodata
  13. .balign VDSO_PAGE_SIZE
  14. __vdso_text_start:
  15. .incbin VDSO_PATH
  16. .balign VDSO_PAGE_SIZE
  17. __vdso_text_end:
  18. .previous