diff options
author | Shuo Liu <shuo.a.liu@intel.com> | 2021-02-07 11:10:40 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-02-09 10:58:19 +0100 |
commit | 5b06931d7f8b8059bec8563b2e8d531218e03e2f (patch) | |
tree | 2cb35bcd535901042ce76b13d4701282fd116767 /samples/acrn/guest.ld | |
parent | 279dcf693ac76c9d16b91ffc41280babaff26bb2 (diff) |
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>
Diffstat (limited to 'samples/acrn/guest.ld')
-rw-r--r-- | samples/acrn/guest.ld | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/samples/acrn/guest.ld b/samples/acrn/guest.ld new file mode 100644 index 000000000000..5127c682bd22 --- /dev/null +++ b/samples/acrn/guest.ld @@ -0,0 +1,9 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +OUTPUT_FORMAT(binary) +SECTIONS +{ + .start : { *(.start) } + .text : { *(.text*) } + .rodata : { *(.rodata) } + .data : { *(.data) } +} |