Skip to content

Commit

Permalink
stable/apply_it: handle kernel version on the command line
Browse files Browse the repository at this point in the history
  • Loading branch information
gregkh committed May 19, 2012
1 parent e913a95 commit 92d9626
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions stable/apply_it
Expand Up @@ -18,6 +18,8 @@ if [ "$PATCH" == "" ] ; then
exit exit
fi fi


KERNEL_VERSION=$2

#echo "PATCH=$PATCH" #echo "PATCH=$PATCH"


apply_it () apply_it ()
Expand Down Expand Up @@ -48,8 +50,11 @@ apply_it ()
cd .. cd ..
} }



if [ "$KERNEL_VERSION" != "" ] ; then
apply_it 3.3 apply_it $KERNEL_VERSION
#apply_it 3.2 else
apply_it 3.0 apply_it 3.3
#apply_it 2.6.39 #apply_it 3.2
apply_it 3.0
#apply_it 2.6.39
fi

0 comments on commit 92d9626

Please sign in to comment.