repo: https://github.com/T-head-Semi/linux commit: b1313fe517ca3703119dcc99ef3bbf75ab42bcfb Change-Id: I6cbb35294024ea3a66140e311f4bb705fd7fd626
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
|