All of lore.kernel.org
 help / color / mirror / Atom feed
* [raisin][PATCHv3] Handle unsupported distros with a prettier message
@ 2015-11-13  4:08 Doug Goldstein
  2015-11-13 10:33 ` Stefano Stabellini
  0 siblings, 1 reply; 2+ messages in thread
From: Doug Goldstein @ 2015-11-13  4:08 UTC (permalink / raw)
  To: xen-devel, stefano.stabellini; +Cc: Doug Goldstein

Handle unknown distros by saying "unknown" instead of an empty string
and for Gentoo users actually mention it.

Signed-off-by: Doug Goldstein <cardoe@cardoe.com>
---
 lib/common-functions.sh | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/lib/common-functions.sh b/lib/common-functions.sh
index 27f6434..19434c2 100644
--- a/lib/common-functions.sh
+++ b/lib/common-functions.sh
@@ -98,6 +98,8 @@ function get_tests() {
 }
 
 function get_distro() {
+    os_VENDOR="unknown"
+
     if [[ -x "`which lsb_release 2>/dev/null`" ]]
     then
         os_VENDOR=`lsb_release -i -s`
@@ -150,6 +152,9 @@ function get_distro() {
                      sed -r 's/\"|\(|\)//g' | awk '{print $2}'`
         os_RELEASE=`awk '/VERSION_ID=/' /etc/os-release | sed 's/VERSION_ID=//' \
                     | sed 's/\"//g'`
+    elif [[ -f /etc/gentoo-release ]]
+    then
+        os_VENDOR="Gentoo"
     fi
 
     # Simply distro version string
-- 
2.4.10

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

* Re: [raisin][PATCHv3] Handle unsupported distros with a prettier message
  2015-11-13  4:08 [raisin][PATCHv3] Handle unsupported distros with a prettier message Doug Goldstein
@ 2015-11-13 10:33 ` Stefano Stabellini
  0 siblings, 0 replies; 2+ messages in thread
From: Stefano Stabellini @ 2015-11-13 10:33 UTC (permalink / raw)
  To: Doug Goldstein; +Cc: stefano.stabellini, xen-devel

On Thu, 12 Nov 2015, Doug Goldstein wrote:
> Handle unknown distros by saying "unknown" instead of an empty string
> and for Gentoo users actually mention it.
> 
> Signed-off-by: Doug Goldstein <cardoe@cardoe.com>

Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>

and applied


>  lib/common-functions.sh | 5 +++++
>  1 file changed, 5 insertions(+)
> 
> diff --git a/lib/common-functions.sh b/lib/common-functions.sh
> index 27f6434..19434c2 100644
> --- a/lib/common-functions.sh
> +++ b/lib/common-functions.sh
> @@ -98,6 +98,8 @@ function get_tests() {
>  }
>  
>  function get_distro() {
> +    os_VENDOR="unknown"
> +
>      if [[ -x "`which lsb_release 2>/dev/null`" ]]
>      then
>          os_VENDOR=`lsb_release -i -s`
> @@ -150,6 +152,9 @@ function get_distro() {
>                       sed -r 's/\"|\(|\)//g' | awk '{print $2}'`
>          os_RELEASE=`awk '/VERSION_ID=/' /etc/os-release | sed 's/VERSION_ID=//' \
>                      | sed 's/\"//g'`
> +    elif [[ -f /etc/gentoo-release ]]
> +    then
> +        os_VENDOR="Gentoo"
>      fi
>  
>      # Simply distro version string
> -- 
> 2.4.10
> 

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

end of thread, other threads:[~2015-11-13 10:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-13  4:08 [raisin][PATCHv3] Handle unsupported distros with a prettier message Doug Goldstein
2015-11-13 10:33 ` Stefano Stabellini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.