[Q] Getting the latest available Linux-kernel version (v3.x.y-stable or v3.x.y-rcX)?

2013-07-02 Thread Sedat Dilek
Hi, for my Linux-kernel build-script I am searching for a reliable check of getting the ***latest*** version. This could be 'v3.x.y-stable' or 'v3.x.y-rcX'. 'git tag' seems to be fast, but not reliable. 'git log --oneline' is slow, but does the job. For getting v3.x.y-stable this seems to

Re: [Q] Getting the latest available Linux-kernel version (v3.x.y-stable or v3.x.y-rcX)?

2013-07-02 Thread Ramkumar Ramachandra
Sedat Dilek wrote: for my Linux-kernel build-script I am searching for a reliable check of getting the ***latest*** version. $ git describe HEAD If you want a sorted list of tags, $ git for-each-ref --sort=taggerdate --format=%(refname:short) refs/tags Are you looking for something else?

Re: [Q] Getting the latest available Linux-kernel version (v3.x.y-stable or v3.x.y-rcX)?

2013-07-02 Thread Sedat Dilek
On Tue, Jul 2, 2013 at 10:46 AM, Ramkumar Ramachandra artag...@gmail.com wrote: Sedat Dilek wrote: for my Linux-kernel build-script I am searching for a reliable check of getting the ***latest*** version. $ git describe HEAD If you want a sorted list of tags, $ git for-each-ref

Re: [Q] Getting the latest available Linux-kernel version (v3.x.y-stable or v3.x.y-rcX)?

2013-07-02 Thread Ramkumar Ramachandra
Sedat Dilek wrote: Sometimes I need to bisect a previous Linux-Next version. What I am doing is to have the latest Linux-v3.x.y(-rcX) as stable base. $ git checkout upstream $ git checkout -b Linux-v3.10-rc7 v3.10-rc7 Afterwards I checkout the latest Linux-Next remote repository with all

Re: [Q] Getting the latest available Linux-kernel version (v3.x.y-stable or v3.x.y-rcX)?

2013-07-02 Thread Sedat Dilek
On Tue, Jul 2, 2013 at 1:06 PM, Ramkumar Ramachandra artag...@gmail.com wrote: Sedat Dilek wrote: Sometimes I need to bisect a previous Linux-Next version. What I am doing is to have the latest Linux-v3.x.y(-rcX) as stable base. $ git checkout upstream $ git checkout -b Linux-v3.10-rc7