compat-wireless: use linux-stable instead of linux-2.6-allstable
authorLuis R. Rodriguez <mcgrof@frijolero.org>
Tue, 20 Dec 2011 02:33:42 +0000 (18:33 -0800)
committerLuis R. Rodriguez <mcgrof@frijolero.org>
Sat, 21 Jan 2012 07:05:25 +0000 (23:05 -0800)
I used to use hpa's linux-2.6-allstable.git tree to make
stable releases of compat-wireless. This allowed me to
make updates to the stable releases whenever a 2.6.x.y
extraversion got out -- but also to make updates whenever
Linus updated his own tree so I can make RC releases
based on the latest RC release. Greg has taken over of
that tree and its now called linux-stable.git. What I am
seeing though is that the linux-stable git tree now seems
to not update as often to Linus' tree. This is fine as all
I have to do is add Linus' tree as a remote and fetch
those objects and then reset the tree to say, v3.2-rc6
and that'll get what Linus' tree looks like today.

This patch just changes the path where we pick up stable
releases from but also documents this change in case
anyone that wants to make stable release must also add
Linus' tree as a remote and fetch those objects.

Cc: greg@kroah.com
CC: kvalo@qca.qualcomm.com
Cc: linville@tuxdriver.com
Cc: senthilb@qca.qualcomm.com
Cc: johannes@sipsolutions.net
Signed-off-by: Luis R. Rodriguez <mcgrof@frijolero.org>
scripts/gen-stable-release.sh

index d01cb364ff6cd68aedb3e9983557ce2cfd1bc2b9..a27107473f9ed19eabe3b183a80ebed1f7298e4f 100755 (executable)
@@ -22,7 +22,10 @@ PURPLE="\033[35m"
 CYAN="\033[36m"
 UNDERLINE="\033[02m"
 
-ALL_STABLE_TREE="linux-2.6-allstable"
+# Note that this tree may not have the latest RC stuff, so you should also add
+# Linus' tree as a remote and fetch those objects if you want to make an RC
+# release instead.
+ALL_STABLE_TREE="linux-stable"
 STAGING=/tmp/staging/compat-wireless/
 
 function usage()