* [PATCH 1/1] OvmfPkg: Bhyve: Delete unused AcpiTables/Ssdt.asl file
@ 2021-12-21 17:11 Rebecca Cran
2021-12-23 1:01 ` Peter Grehan
0 siblings, 1 reply; 3+ messages in thread
From: Rebecca Cran @ 2021-12-21 17:11 UTC (permalink / raw)
To: devel, Ard Biesheuvel, Jiewen Yao, Jordan Justen, Gerd Hoffmann,
Peter Grehan
Cc: Rebecca Cran
The Ssdt.asl file isn't used, so delete it.
Signed-off-by: Rebecca Cran <rebecca@bsdio.com>
---
OvmfPkg/Bhyve/AcpiTables/Ssdt.asl | 15 ---------------
1 file changed, 15 deletions(-)
diff --git a/OvmfPkg/Bhyve/AcpiTables/Ssdt.asl b/OvmfPkg/Bhyve/AcpiTables/Ssdt.asl
deleted file mode 100644
index 175ab3b7e66d..000000000000
--- a/OvmfPkg/Bhyve/AcpiTables/Ssdt.asl
+++ /dev/null
@@ -1,15 +0,0 @@
-/** @file
- Placeholder for runtime-generated objects.
-
- This empty table provides only a header for dynamic copying and extension,
- and a trigger for QemuInstallAcpiSsdtTable().
-
- Copyright (C) 2020, Rebecca Cran <rebecca@bsdio.com>
- Copyright (C) 2012 Red Hat, Inc.
-
- SPDX-License-Identifier: BSD-2-Clause-Patent
-
-**/
-
-DefinitionBlock ("Ssdt.aml", "SSDT", 1, "REDHAT", "OVMF ", 1) {
-}
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/1] OvmfPkg: Bhyve: Delete unused AcpiTables/Ssdt.asl file
2021-12-21 17:11 [PATCH 1/1] OvmfPkg: Bhyve: Delete unused AcpiTables/Ssdt.asl file Rebecca Cran
@ 2021-12-23 1:01 ` Peter Grehan
2021-12-23 8:52 ` [edk2-devel] " Ard Biesheuvel
0 siblings, 1 reply; 3+ messages in thread
From: Peter Grehan @ 2021-12-23 1:01 UTC (permalink / raw)
To: Rebecca Cran, devel, Ard Biesheuvel, Jiewen Yao, Jordan Justen,
Gerd Hoffmann
Reviewed-by: Peter Grehan <grehan@freebsd.org>
> The Ssdt.asl file isn't used, so delete it.
>
> Signed-off-by: Rebecca Cran <rebecca@bsdio.com>
> ---
> OvmfPkg/Bhyve/AcpiTables/Ssdt.asl | 15 ---------------
> 1 file changed, 15 deletions(-)
>
> diff --git a/OvmfPkg/Bhyve/AcpiTables/Ssdt.asl b/OvmfPkg/Bhyve/AcpiTables/Ssdt.asl
> deleted file mode 100644
> index 175ab3b7e66d..000000000000
> --- a/OvmfPkg/Bhyve/AcpiTables/Ssdt.asl
> +++ /dev/null
> @@ -1,15 +0,0 @@
> -/** @file
> - Placeholder for runtime-generated objects.
> -
> - This empty table provides only a header for dynamic copying and extension,
> - and a trigger for QemuInstallAcpiSsdtTable().
> -
> - Copyright (C) 2020, Rebecca Cran <rebecca@bsdio.com>
> - Copyright (C) 2012 Red Hat, Inc.
> -
> - SPDX-License-Identifier: BSD-2-Clause-Patent
> -
> -**/
> -
> -DefinitionBlock ("Ssdt.aml", "SSDT", 1, "REDHAT", "OVMF ", 1) {
> -}
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [edk2-devel] [PATCH 1/1] OvmfPkg: Bhyve: Delete unused AcpiTables/Ssdt.asl file
2021-12-23 1:01 ` Peter Grehan
@ 2021-12-23 8:52 ` Ard Biesheuvel
0 siblings, 0 replies; 3+ messages in thread
From: Ard Biesheuvel @ 2021-12-23 8:52 UTC (permalink / raw)
To: edk2-devel-groups-io, Peter Grehan
Cc: Rebecca Cran, Ard Biesheuvel, Jiewen Yao, Jordan Justen,
Gerd Hoffmann
On Thu, 23 Dec 2021 at 02:01, Peter Grehan <grehan@freebsd.org> wrote:
>
> Reviewed-by: Peter Grehan <grehan@freebsd.org>
>
Merged as #2340
Thanks all,
> > The Ssdt.asl file isn't used, so delete it.
> >
> > Signed-off-by: Rebecca Cran <rebecca@bsdio.com>
> > ---
> > OvmfPkg/Bhyve/AcpiTables/Ssdt.asl | 15 ---------------
> > 1 file changed, 15 deletions(-)
> >
> > diff --git a/OvmfPkg/Bhyve/AcpiTables/Ssdt.asl b/OvmfPkg/Bhyve/AcpiTables/Ssdt.asl
> > deleted file mode 100644
> > index 175ab3b7e66d..000000000000
> > --- a/OvmfPkg/Bhyve/AcpiTables/Ssdt.asl
> > +++ /dev/null
> > @@ -1,15 +0,0 @@
> > -/** @file
> > - Placeholder for runtime-generated objects.
> > -
> > - This empty table provides only a header for dynamic copying and extension,
> > - and a trigger for QemuInstallAcpiSsdtTable().
> > -
> > - Copyright (C) 2020, Rebecca Cran <rebecca@bsdio.com>
> > - Copyright (C) 2012 Red Hat, Inc.
> > -
> > - SPDX-License-Identifier: BSD-2-Clause-Patent
> > -
> > -**/
> > -
> > -DefinitionBlock ("Ssdt.aml", "SSDT", 1, "REDHAT", "OVMF ", 1) {
> > -}
> >
>
>
>
>
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-12-23 8:52 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-12-21 17:11 [PATCH 1/1] OvmfPkg: Bhyve: Delete unused AcpiTables/Ssdt.asl file Rebecca Cran
2021-12-23 1:01 ` Peter Grehan
2021-12-23 8:52 ` [edk2-devel] " Ard Biesheuvel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox