mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
5b06931d7f
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>
9 lines
182 B
Text
9 lines
182 B
Text
/* SPDX-License-Identifier: GPL-2.0 */
|
|
SECTIONS
|
|
{
|
|
.payload16 0 : {
|
|
guest16 = .;
|
|
guest16.o(.text)
|
|
guest16_end = .;
|
|
}
|
|
}
|