20 lines
351 B
ArmAsm
20 lines
351 B
ArmAsm
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2012 ARM Limited
|
|
*/
|
|
|
|
#include <linux/init.h>
|
|
#include <linux/linkage.h>
|
|
#include <linux/const.h>
|
|
#include <asm/page.h>
|
|
|
|
.globl vdso32_start, vdso32_end
|
|
.section .rodata
|
|
.balign PAGE_SIZE
|
|
vdso32_start:
|
|
.incbin "arch/arm64/kernel/vdso32/vdso.so"
|
|
.balign PAGE_SIZE
|
|
vdso32_end:
|
|
|
|
.previous
|