mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 06:01:57 +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>
10 lines
197 B
Plaintext
10 lines
197 B
Plaintext
/* SPDX-License-Identifier: GPL-2.0 */
|
|
OUTPUT_FORMAT(binary)
|
|
SECTIONS
|
|
{
|
|
.start : { *(.start) }
|
|
.text : { *(.text*) }
|
|
.rodata : { *(.rodata) }
|
|
.data : { *(.data) }
|
|
}
|