public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Arnd Bergmann <arnd@arndb.de>
To: Alexey Dobriyan <adobriyan@gmail.com>
Cc: Colin Walters <walters@verbum.org>,
	Linus Torvalds <torvalds@linux-foundation.org>,
	Andi Kleen <andi@firstfloor.org>,
	akpm@linux-foundation.org, linux-kernel@vger.kernel.org,
	Andi Kleen <ak@linux.intel.com>
Subject: Re: [PATCH] Add a personality to report 2.6.x version numbers
Date: Wed, 24 Aug 2011 19:02:46 +0200	[thread overview]
Message-ID: <201108241902.46537.arnd@arndb.de> (raw)
In-Reply-To: <CACVxJT93c+tYryWGPdw6LM9X+3b_QT78B0D9JwksksvN0akBkQ@mail.gmail.com>

On Wednesday 24 August 2011, Alexey Dobriyan wrote:
> Was this fixed? Yes.
> Will this break one more time? Of course!
> 
>          case "${kernel}" in
> -             2.6.*)
> +             2.6.*|3.*)
>                     AC_MSG_RESULT([2.6 family (${kernel})])

What you need is an exaustive list of past versions plus
a catch-all for future versions:

	case "${kernel}" in
		1.*|2.0.*|2.1.*|2.2.*|2.3.*)
			echo "too old"
			;;
		2.4.*)
			echo "Linux-2.4 style"
			;;
		2.5.*)
			echo "unstable and not supported"
			;;
		*)
			echo "2.6 or newer"
			;;
	esac

We don't break ABIs as a rule, so you should always assume
that a newer version will keep working.

	Arnd

  reply	other threads:[~2011-08-24 17:02 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-08-19 23:15 [PATCH] Add a personality to report 2.6.x version numbers Andi Kleen
2011-08-21 22:28 ` Arnaud Lacombe
2011-08-21 22:37   ` Jesper Juhl
2011-08-21 23:15     ` Andi Kleen
2011-08-21 23:13   ` Andi Kleen
2011-08-21 23:32     ` Arnaud Lacombe
2011-08-22  0:11       ` Andi Kleen
2011-08-22  1:04         ` Arnaud Lacombe
2011-08-22  1:46           ` Andi Kleen
2011-08-22  9:54   ` Américo Wang
2011-08-22 18:30 ` Linus Torvalds
2011-08-22 18:45   ` Eric Dumazet
2011-08-22 19:03     ` David Daney
2011-08-22 19:34   ` Andi Kleen
2011-08-23 13:15   ` Colin Walters
2011-08-23 16:11     ` Andi Kleen
2011-08-23 16:20       ` Colin Walters
2011-08-23 17:35         ` Arnaud Lacombe
2011-08-24 14:19     ` Alexey Dobriyan
2011-08-24 17:02       ` Arnd Bergmann [this message]
2011-09-13 14:12   ` Pavel Machek
2011-09-13 14:36     ` Stratos Psomadakis
2011-09-13 15:50       ` Andi Kleen
2011-09-13 23:06         ` Stratos Psomadakis
2011-08-23  6:00 ` [PATCH] setarch: Add --uname-2.6 option for personality flag UNAME26 Ben Hutchings
2011-08-23 10:16   ` Karel Zak
2011-08-23 12:15     ` Ben Hutchings
2011-08-26 21:43     ` Greg KH
2011-08-29  9:17   ` Karel Zak
2011-08-23 12:44 ` [PATCH] Add a personality to report 2.6.x version numbers Arnd Bergmann
2011-08-26 21:43 ` Greg KH
2011-08-26 22:25   ` Andi Kleen
2011-08-26 22:35     ` Greg KH
2011-08-27 16:36     ` Jesper Juhl
  -- strict thread matches above, loose matches on Subject: below --
2011-07-07 23:42 Andi Kleen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201108241902.46537.arnd@arndb.de \
    --to=arnd@arndb.de \
    --cc=adobriyan@gmail.com \
    --cc=ak@linux.intel.com \
    --cc=akpm@linux-foundation.org \
    --cc=andi@firstfloor.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    --cc=walters@verbum.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox