blob: 65f2e6f863baf1d2b6f992a9d8474290acb0d1ac [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001/* SPDX-License-Identifier: GPL-2.0-only */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * Adapted from arm64 version.
4 *
5 * Copyright (C) 2012 ARM Limited
6 *
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00007 * Author: Will Deacon <will.deacon@arm.com>
8 */
9
10#include <linux/init.h>
11#include <linux/linkage.h>
12#include <linux/const.h>
13#include <asm/page.h>
14
15 .globl vdso_start, vdso_end
16 .section .data..ro_after_init
17 .balign PAGE_SIZE
18vdso_start:
19 .incbin "arch/arm/vdso/vdso.so"
20 .balign PAGE_SIZE
21vdso_end:
22
23 .previous