Skip to content

Commit

Permalink
more stable script tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
gregkh committed Feb 15, 2011
1 parent ab42a10 commit 8ad085b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion longterm/apply_it
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ apply_it ()
cd ..
}

apply_it 32
apply_it 33
apply_it 32

2 changes: 1 addition & 1 deletion stable/apply_it
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ apply_it ()
}


apply_it 36
apply_it 37
apply_it 36

6 changes: 5 additions & 1 deletion stable/apply_it_from_email
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@ txtcyn=$(tput setaf 6) # Cyan
txtwht=$(tput setaf 7) # White
txtrst=$(tput sgr0) # Text reset

COMMIT_ID=`cat - | ~/bin/get_commit_id.sh`
#COMMIT_ID=`cat - | ~/bin/get_commit_id.sh`
COMMIT_ID=`cat - | grep -i "commit:" | head -n 1 | sed -s 's/ //g' | cut -f 2 -d ':'`
#echo "$COMMIT_ID"
#exit

echo "${txtblu}c2p $COMMIT_ID${txtrst}"
c2p $COMMIT_ID
exit
2 changes: 1 addition & 1 deletion stable/s.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ USER=`whoami`

DIR=/home/$USER/linux/stable
SCRIPT_DIR=/home/$USER/linux
KERNEL_DIR=$DIR/linux-2.6.36.y
KERNEL_DIR=$DIR/linux-2.6.37.y

cd $DIR
cat - > $DIR/foo.patch
Expand Down

0 comments on commit 8ad085b

Please sign in to comment.