vdso_image.S 461 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_constants.h>
  11. .globl __rt_vdso_image_start, __rt_vdso_image_end
  12. .section .rodata
  13. .balign RT_VDSO_PAGE_SIZE
  14. __rt_vdso_image_start:
  15. .incbin RT_VDSO_IMAGE_PATH
  16. .balign RT_VDSO_PAGE_SIZE
  17. __rt_vdso_image_end:
  18. .previous