qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH for-3.1] MAINTAINERS: Add an entry for the Firmware Configuration (fw_cfg) device
@ 2018-11-22  2:11 Philippe Mathieu-Daudé
  2018-11-22  2:26 ` Eduardo Habkost
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Philippe Mathieu-Daudé @ 2018-11-22  2:11 UTC (permalink / raw)
  To: Laszlo Ersek, Gerd Hoffmann, Paolo Bonzini, Mark Cave-Ayland,
	Peter Maydell, Hervé Poussineau, David Gibson,
	Michael S . Tsirkin, Markus Armbruster
  Cc: Philippe Mathieu-Daudé, qemu-devel, Marc-André Lureau,
	Igor Mammedov, Eduardo Habkost, Artyom Tarasenko,
	Marcel Apfelbaum, Li Qiang

Step in to maintain it, with Laszlo (EDK2) and Gerd (SeaBIOS)
as designated reviewers.

Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
Note than OpenBIOS also consumes this device (PPC/Sparc).

 MAINTAINERS | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 1032406c56..b28ec13963 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1534,6 +1534,19 @@ F: hw/display/edid*
 F: include/hw/display/edid.h
 F: qemu-edid.c
 
+Firmware configuration (fw_cfg)
+M: Philippe Mathieu-Daudé <philmd@redhat.com>
+R: Laszlo Ersek <lersek@redhat.com>
+R: Gerd Hoffmann <kraxel@redhat.com>
+S: Supported
+F: docs/specs/fw_cfg.txt
+F: hw/nvram/fw_cfg.c
+F: include/hw/nvram/fw_cfg.h
+F: include/standard-headers/linux/qemu_fw_cfg.h
+F: tests/libqos/fw_cfg.c
+F: tests/fw_cfg-test.c
+T: git https://github.com/philmd/qemu.git fw_cfg-next
+
 Subsystems
 ----------
 Audio
-- 
2.17.2

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH for-3.1] MAINTAINERS: Add an entry for the Firmware Configuration (fw_cfg) device
  2018-11-22  2:11 [Qemu-devel] [PATCH for-3.1] MAINTAINERS: Add an entry for the Firmware Configuration (fw_cfg) device Philippe Mathieu-Daudé
@ 2018-11-22  2:26 ` Eduardo Habkost
  2018-11-22  7:46 ` Gerd Hoffmann
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Eduardo Habkost @ 2018-11-22  2:26 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé
  Cc: Laszlo Ersek, Gerd Hoffmann, Paolo Bonzini, Mark Cave-Ayland,
	Peter Maydell, Hervé Poussineau, David Gibson,
	Michael S . Tsirkin, Markus Armbruster, qemu-devel,
	Marc-André Lureau, Igor Mammedov, Artyom Tarasenko,
	Marcel Apfelbaum, Li Qiang

On Thu, Nov 22, 2018 at 03:11:39AM +0100, Philippe Mathieu-Daudé wrote:
> Step in to maintain it, with Laszlo (EDK2) and Gerd (SeaBIOS)
> as designated reviewers.
> 
> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>

Acked-by: Eduardo Habkost <ehabkost@redhat.com>

> ---
> Note than OpenBIOS also consumes this device (PPC/Sparc).
> 
>  MAINTAINERS | 13 +++++++++++++
>  1 file changed, 13 insertions(+)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 1032406c56..b28ec13963 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -1534,6 +1534,19 @@ F: hw/display/edid*
>  F: include/hw/display/edid.h
>  F: qemu-edid.c
>  
> +Firmware configuration (fw_cfg)
> +M: Philippe Mathieu-Daudé <philmd@redhat.com>
> +R: Laszlo Ersek <lersek@redhat.com>
> +R: Gerd Hoffmann <kraxel@redhat.com>
> +S: Supported
> +F: docs/specs/fw_cfg.txt
> +F: hw/nvram/fw_cfg.c
> +F: include/hw/nvram/fw_cfg.h
> +F: include/standard-headers/linux/qemu_fw_cfg.h
> +F: tests/libqos/fw_cfg.c
> +F: tests/fw_cfg-test.c
> +T: git https://github.com/philmd/qemu.git fw_cfg-next
> +
>  Subsystems
>  ----------
>  Audio
> -- 
> 2.17.2
> 

-- 
Eduardo

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH for-3.1] MAINTAINERS: Add an entry for the Firmware Configuration (fw_cfg) device
  2018-11-22  2:11 [Qemu-devel] [PATCH for-3.1] MAINTAINERS: Add an entry for the Firmware Configuration (fw_cfg) device Philippe Mathieu-Daudé
  2018-11-22  2:26 ` Eduardo Habkost
@ 2018-11-22  7:46 ` Gerd Hoffmann
  2018-11-22 13:04 ` Paolo Bonzini
  2018-11-22 15:11 ` Laszlo Ersek
  3 siblings, 0 replies; 5+ messages in thread
From: Gerd Hoffmann @ 2018-11-22  7:46 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé
  Cc: Laszlo Ersek, Paolo Bonzini, Mark Cave-Ayland, Peter Maydell,
	Hervé Poussineau, David Gibson, Michael S . Tsirkin,
	Markus Armbruster, qemu-devel, Marc-André Lureau,
	Igor Mammedov, Eduardo Habkost, Artyom Tarasenko,
	Marcel Apfelbaum, Li Qiang

On Thu, Nov 22, 2018 at 03:11:39AM +0100, Philippe Mathieu-Daudé wrote:
> Step in to maintain it, with Laszlo (EDK2) and Gerd (SeaBIOS)
> as designated reviewers.
> 
> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>

Reviewed-by: Gerd Hoffmann <kraxel@redhat.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH for-3.1] MAINTAINERS: Add an entry for the Firmware Configuration (fw_cfg) device
  2018-11-22  2:11 [Qemu-devel] [PATCH for-3.1] MAINTAINERS: Add an entry for the Firmware Configuration (fw_cfg) device Philippe Mathieu-Daudé
  2018-11-22  2:26 ` Eduardo Habkost
  2018-11-22  7:46 ` Gerd Hoffmann
@ 2018-11-22 13:04 ` Paolo Bonzini
  2018-11-22 15:11 ` Laszlo Ersek
  3 siblings, 0 replies; 5+ messages in thread
From: Paolo Bonzini @ 2018-11-22 13:04 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé, Laszlo Ersek, Gerd Hoffmann,
	Mark Cave-Ayland, Peter Maydell, Hervé Poussineau,
	David Gibson, Michael S . Tsirkin, Markus Armbruster
  Cc: qemu-devel, Marc-André Lureau, Igor Mammedov,
	Eduardo Habkost, Artyom Tarasenko, Marcel Apfelbaum, Li Qiang

On 22/11/18 03:11, Philippe Mathieu-Daudé wrote:
> Step in to maintain it, with Laszlo (EDK2) and Gerd (SeaBIOS)
> as designated reviewers.
> 
> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> ---
> Note than OpenBIOS also consumes this device (PPC/Sparc).
> 
>  MAINTAINERS | 13 +++++++++++++
>  1 file changed, 13 insertions(+)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 1032406c56..b28ec13963 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -1534,6 +1534,19 @@ F: hw/display/edid*
>  F: include/hw/display/edid.h
>  F: qemu-edid.c
>  
> +Firmware configuration (fw_cfg)
> +M: Philippe Mathieu-Daudé <philmd@redhat.com>
> +R: Laszlo Ersek <lersek@redhat.com>
> +R: Gerd Hoffmann <kraxel@redhat.com>
> +S: Supported
> +F: docs/specs/fw_cfg.txt
> +F: hw/nvram/fw_cfg.c
> +F: include/hw/nvram/fw_cfg.h
> +F: include/standard-headers/linux/qemu_fw_cfg.h
> +F: tests/libqos/fw_cfg.c
> +F: tests/fw_cfg-test.c
> +T: git https://github.com/philmd/qemu.git fw_cfg-next
> +
>  Subsystems
>  ----------
>  Audio
> 

Queued, thanks.

Paolo

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH for-3.1] MAINTAINERS: Add an entry for the Firmware Configuration (fw_cfg) device
  2018-11-22  2:11 [Qemu-devel] [PATCH for-3.1] MAINTAINERS: Add an entry for the Firmware Configuration (fw_cfg) device Philippe Mathieu-Daudé
                   ` (2 preceding siblings ...)
  2018-11-22 13:04 ` Paolo Bonzini
@ 2018-11-22 15:11 ` Laszlo Ersek
  3 siblings, 0 replies; 5+ messages in thread
From: Laszlo Ersek @ 2018-11-22 15:11 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé, Gerd Hoffmann, Paolo Bonzini,
	Mark Cave-Ayland, Peter Maydell, Hervé Poussineau,
	David Gibson, Michael S . Tsirkin, Markus Armbruster
  Cc: qemu-devel, Marc-André Lureau, Igor Mammedov,
	Eduardo Habkost, Artyom Tarasenko, Marcel Apfelbaum, Li Qiang

On 11/22/18 03:11, Philippe Mathieu-Daudé wrote:
> Step in to maintain it, with Laszlo (EDK2) and Gerd (SeaBIOS)
> as designated reviewers.
> 
> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> ---
> Note than OpenBIOS also consumes this device (PPC/Sparc).
> 
>  MAINTAINERS | 13 +++++++++++++
>  1 file changed, 13 insertions(+)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 1032406c56..b28ec13963 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -1534,6 +1534,19 @@ F: hw/display/edid*
>  F: include/hw/display/edid.h
>  F: qemu-edid.c
>  
> +Firmware configuration (fw_cfg)
> +M: Philippe Mathieu-Daudé <philmd@redhat.com>
> +R: Laszlo Ersek <lersek@redhat.com>
> +R: Gerd Hoffmann <kraxel@redhat.com>
> +S: Supported
> +F: docs/specs/fw_cfg.txt
> +F: hw/nvram/fw_cfg.c
> +F: include/hw/nvram/fw_cfg.h
> +F: include/standard-headers/linux/qemu_fw_cfg.h
> +F: tests/libqos/fw_cfg.c
> +F: tests/fw_cfg-test.c
> +T: git https://github.com/philmd/qemu.git fw_cfg-next
> +
>  Subsystems
>  ----------
>  Audio
> 

Reviewed-by: Laszlo Ersek <lersek@redhat.com>

Thanks!
Laszlo

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-11-22 15:11 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-22  2:11 [Qemu-devel] [PATCH for-3.1] MAINTAINERS: Add an entry for the Firmware Configuration (fw_cfg) device Philippe Mathieu-Daudé
2018-11-22  2:26 ` Eduardo Habkost
2018-11-22  7:46 ` Gerd Hoffmann
2018-11-22 13:04 ` Paolo Bonzini
2018-11-22 15:11 ` Laszlo Ersek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).