diff options
author | Mark Hatle <mark.hatle@amd.com> | 2024-03-26 18:31:47 -0600 |
---|---|---|
committer | Mark Hatle <mark.hatle@amd.com> | 2024-03-27 08:28:27 -0600 |
commit | f2ed1a2c937aaa54d1cc98b00841943d48ce41ea (patch) | |
tree | 102ef558fbabed14c7541ab361d5b3ecdb70c3ef /meta-xilinx-virtualization/recipes-devtools/qemu/qemu-xilinx-7.1/0013-arm-xenpv-fix-TPM-address-print-warning.patch | |
parent | d3bb371f8a8063f59dc9b3a654530063da967627 (diff) | |
download | meta-xilinx-f2ed1a2c937aaa54d1cc98b00841943d48ce41ea.tar.gz |
qemu: Remove versions older then 8.1, no longer compatible
Versions older then 8.1 are no longer compatible with the runqemu.
Signed-off-by: Mark Hatle <mark.hatle@amd.com>
Diffstat (limited to 'meta-xilinx-virtualization/recipes-devtools/qemu/qemu-xilinx-7.1/0013-arm-xenpv-fix-TPM-address-print-warning.patch')
-rw-r--r-- | meta-xilinx-virtualization/recipes-devtools/qemu/qemu-xilinx-7.1/0013-arm-xenpv-fix-TPM-address-print-warning.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/meta-xilinx-virtualization/recipes-devtools/qemu/qemu-xilinx-7.1/0013-arm-xenpv-fix-TPM-address-print-warning.patch b/meta-xilinx-virtualization/recipes-devtools/qemu/qemu-xilinx-7.1/0013-arm-xenpv-fix-TPM-address-print-warning.patch deleted file mode 100644 index 1aa09efb..00000000 --- a/meta-xilinx-virtualization/recipes-devtools/qemu/qemu-xilinx-7.1/0013-arm-xenpv-fix-TPM-address-print-warning.patch +++ /dev/null | |||
@@ -1,27 +0,0 @@ | |||
1 | From c5b128668d9cd1e1cb4da80d5bc8aaebc6ff2e19 Mon Sep 17 00:00:00 2001 | ||
2 | From: Vikram Garhwal <vikram.garhwal@amd.com> | ||
3 | Date: Fri, 23 Dec 2022 00:06:29 +0000 | ||
4 | Subject: [PATCH 13/16] arm: xenpv: fix TPM address print warning | ||
5 | |||
6 | Signed-off-by: Vikram Garhwal <vikram.garhwal@amd.com> | ||
7 | Acked-by: Stefano Stabellini <stefano.stabellini@amd.com> | ||
8 | --- | ||
9 | hw/arm/xen_arm.c | 2 +- | ||
10 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
11 | |||
12 | diff --git a/hw/arm/xen_arm.c b/hw/arm/xen_arm.c | ||
13 | index f248b5744a..153cedfeb4 100644 | ||
14 | --- a/hw/arm/xen_arm.c | ||
15 | +++ b/hw/arm/xen_arm.c | ||
16 | @@ -118,7 +118,7 @@ static void xen_enable_tpm(void) | ||
17 | sysbus_realize_and_unref(busdev, &error_fatal); | ||
18 | sysbus_mmio_map(busdev, 0, GUEST_TPM_BASE); | ||
19 | |||
20 | - DPRINTF("Connected tpmdev at address 0x%lx\n", GUEST_TPM_BASE); | ||
21 | + DPRINTF("Connected tpmdev at address 0x%llx\n", GUEST_TPM_BASE); | ||
22 | #endif | ||
23 | } | ||
24 | |||
25 | -- | ||
26 | 2.17.1 | ||
27 | |||