[PATCH v1 2/5] docs/devel: rename plugins.rst to tcg-plugins.rst

Alex Bennée posted 5 patches 6 years, 2 months ago
[PATCH v1 2/5] docs/devel: rename plugins.rst to tcg-plugins.rst
Posted by Alex Bennée 6 years, 2 months ago
This makes it a bit clearer what this is about.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
 docs/devel/index.rst                        | 2 +-
 docs/devel/{plugins.rst => tcg-plugins.rst} | 0
 MAINTAINERS                                 | 1 +
 3 files changed, 2 insertions(+), 1 deletion(-)
 rename docs/devel/{plugins.rst => tcg-plugins.rst} (100%)

diff --git a/docs/devel/index.rst b/docs/devel/index.rst
index 2ff058bae38..c86a3cdff2f 100644
--- a/docs/devel/index.rst
+++ b/docs/devel/index.rst
@@ -22,4 +22,4 @@ Contents:
    decodetree
    secure-coding-practices
    tcg
-   plugins
+   tcg-plugins
diff --git a/docs/devel/plugins.rst b/docs/devel/tcg-plugins.rst
similarity index 100%
rename from docs/devel/plugins.rst
rename to docs/devel/tcg-plugins.rst
diff --git a/MAINTAINERS b/MAINTAINERS
index ff8d0d29f4b..b160d817208 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -2369,6 +2369,7 @@ F: tcg/
 TCG Plugins
 M: Alex Bennée <alex.bennee@linaro.org>
 S: Maintained
+F: docs/devel/tcg-plugins.rst
 F: plugins/
 F: tests/plugin
 
-- 
2.20.1


Re: [PATCH v1 2/5] docs/devel: rename plugins.rst to tcg-plugins.rst
Posted by Philippe Mathieu-Daudé 6 years, 2 months ago
On 11/13/19 12:59 PM, Alex Bennée wrote:
> This makes it a bit clearer what this is about.
> 
> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> ---
>   docs/devel/index.rst                        | 2 +-
>   docs/devel/{plugins.rst => tcg-plugins.rst} | 0
>   MAINTAINERS                                 | 1 +
>   3 files changed, 2 insertions(+), 1 deletion(-)
>   rename docs/devel/{plugins.rst => tcg-plugins.rst} (100%)
> 
> diff --git a/docs/devel/index.rst b/docs/devel/index.rst
> index 2ff058bae38..c86a3cdff2f 100644
> --- a/docs/devel/index.rst
> +++ b/docs/devel/index.rst
> @@ -22,4 +22,4 @@ Contents:
>      decodetree
>      secure-coding-practices
>      tcg
> -   plugins
> +   tcg-plugins
> diff --git a/docs/devel/plugins.rst b/docs/devel/tcg-plugins.rst
> similarity index 100%
> rename from docs/devel/plugins.rst
> rename to docs/devel/tcg-plugins.rst
> diff --git a/MAINTAINERS b/MAINTAINERS
> index ff8d0d29f4b..b160d817208 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -2369,6 +2369,7 @@ F: tcg/
>   TCG Plugins
>   M: Alex Bennée <alex.bennee@linaro.org>
>   S: Maintained
> +F: docs/devel/tcg-plugins.rst
>   F: plugins/

What about (other patch):

   plugins/ -> tcg/plugins/

>   F: tests/plugin

tests/plugin/ -> tests/tcg/plugins/

Anyway for this patch:
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>


Re: [PATCH v1 2/5] docs/devel: rename plugins.rst to tcg-plugins.rst
Posted by Paolo Bonzini 6 years, 2 months ago
> What about (other patch):
> 
>   plugins/ -> tcg/plugins/
> 
>>   F: tests/plugin
> 
> tests/plugin/ -> tests/tcg/plugins/

tests/tcg is for code that runs on the target in general, but perhaps
tests/tcg-plugins would make sense.

Paolo