- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcommitKernels
More file actions
Latest commit
executable file
·47 lines (38 loc) · 572 Bytes
/
Copy pathcommitKernels
File metadata and controls
executable file
·47 lines (38 loc) · 572 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#get path
CURRENT=`pwd`
BASEDIR=`basename $CURRENT`
echo $BASEDIR
echo $2
#save original config
mv .config .config_save
echo
echo ta_off
cd ..
./anykernelmaker $BASEDIR $1-ta-vsyncOff $2
cd $BASEDIR
echo
echo ta_on
cd ..
./anykernelmaker $BASEDIR $1-ta-vsync $2
cd $BASEDIR
echo
echo roqu_off
cd ..
./anykernelmaker $BASEDIR $1-roqu-vsyncOff $2
cd $BASEDIR
echo
./mka
cd ..
./anykernelmaker $BASEDIR $1-roqu-vsync $2
echo
cd $2
git status
echo
git pull
git add .
git commit -a -m "$1"
git push
cd ..
cd $BASEDIR
#restore original config
mv .config_save .config