linux/samples/acrn/payload.ld
Shuo Liu 5b06931d7f sample/acrn: Introduce a sample of HSM ioctl interface usage
Launch a simple guest (with several instructions as payload) on ACRN
with demonstration ioctl usage.

Signed-off-by: Shuo Liu <shuo.a.liu@intel.com>
Link: https://lore.kernel.org/r/20210207031040.49576-19-shuo.a.liu@intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2021-02-09 10:58:19 +01:00

10 lines
182 B
Plaintext

/* SPDX-License-Identifier: GPL-2.0 */
SECTIONS
{
.payload16 0 : {
guest16 = .;
guest16.o(.text)
guest16_end = .;
}
}