[PATCH v1 4/6] configure: include tilegx-linux-user in the auto-exclude logic

Alex Bennée posted 6 patches 5 years, 4 months ago
[PATCH v1 4/6] configure: include tilegx-linux-user in the auto-exclude logic
Posted by Alex Bennée 5 years, 4 months ago
The target is already marked as deprecated in the documentation.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
 configure | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/configure b/configure
index 50052378e417..d998723cccc3 100755
--- a/configure
+++ b/configure
@@ -1725,7 +1725,7 @@ fi
 # If the user doesn't explicitly specify a deprecated target we will
 # skip it.
 if test -z "$target_list"; then
-    deprecated_targets_list=ppc64abi32-linux-user
+    deprecated_targets_list=ppc64abi32-linux-user,tilegx-linux-user
     if test -z "$target_list_exclude"; then
         target_list_exclude="$deprecated_targets_list"
     else
@@ -7719,6 +7719,7 @@ case "$target_name" in
     gdb_xml_files="s390x-core64.xml s390-acr.xml s390-fpr.xml s390-vx.xml s390-cr.xml s390-virt.xml s390-gs.xml"
   ;;
   tilegx)
+    add_to deprecated_features tilegx
   ;;
   tricore)
   ;;
-- 
2.20.1


Re: [PATCH v1 4/6] configure: include tilegx-linux-user in the auto-exclude logic
Posted by Philippe Mathieu-Daudé 5 years, 4 months ago
On 9/14/20 5:07 PM, Alex Bennée wrote:
> The target is already marked as deprecated in the documentation.
> 
> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> ---
>  configure | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/configure b/configure
> index 50052378e417..d998723cccc3 100755
> --- a/configure
> +++ b/configure
> @@ -1725,7 +1725,7 @@ fi
>  # If the user doesn't explicitly specify a deprecated target we will
>  # skip it.
>  if test -z "$target_list"; then
> -    deprecated_targets_list=ppc64abi32-linux-user
> +    deprecated_targets_list=ppc64abi32-linux-user,tilegx-linux-user
>      if test -z "$target_list_exclude"; then
>          target_list_exclude="$deprecated_targets_list"
>      else
> @@ -7719,6 +7719,7 @@ case "$target_name" in
>      gdb_xml_files="s390x-core64.xml s390-acr.xml s390-fpr.xml s390-vx.xml s390-cr.xml s390-virt.xml s390-gs.xml"
>    ;;
>    tilegx)
> +    add_to deprecated_features tilegx
>    ;;
>    tricore)
>    ;;
> 

Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>