forked from project-voodoo/scripts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build_multiple_kernels.sh
executable file
·84 lines (64 loc) · 1.5 KB
/
build_multiple_kernels.sh
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/bin/bash
export CONFIG_SND_VOODOO_MODULE="m"
show()
{
echo -e "\n * $1\n"
}
show "Galaxy S GT-I9000 Froyo"
./scripts/build_kernel.sh
show "Nexus S"
./scripts/nexuss_build_kernel.sh
show "Galaxy S CM7"
./scripts/cm7_galaxys_build_kernel.sh
#show "Galaxy S Gingerbread leak"
#./scripts/gingerbread_leak_galaxys_build_kernel.sh
show "Galaxy S GT-I9000 Gingerbread"
./scripts/sgs_gb_build_kernel.sh
show "Galaxy S Galaxy Tab FAKE Gingerbread"
cd linux_galaxytab-gingerbread/
nice -n 10 make -j8
cd - > /dev/null
show "Galaxy S GT-I9000 Eclair"
cd linux_gt-i9000-eclair
nice -n 20 bash ./build_kernel.sh
cd - > /dev/null
show "Galaxy Tab Verizon Froyo"
cd /home/curio/dev/voodoo/linux_sch-i800/Kernel
nice -n 20 make -j6
cd - > /dev/null
show "Fascinate Eclair"
cd linux_sch-i500-eclair
nice -n 20 bash ./build_kernel.sh
cd - > /dev/null
show "Fascinate Froyo"
cd linux_sch-i500-froyo/Kernel
nice -n 20 make -j8
cd - > /dev/null
show "Epic4G Froyo"
cd linux_sph-d700
nice -n 20 bash ./build_kernel.sh
cd - > /dev/null
show "Epic4G Eclair"
cd linux_sph-d700-eclair
nice -n 20 bash ./build_kernel.sh
cd - > /dev/null
show "Captivate Froyo"
cd linux_sgh-i897
nice -n 20 make -j8
cd - > /dev/null
show "Vibrant Froyo"
cd linux_sgh-t959
nice -n 20 make -j8
cd - > /dev/null
show "Vibrant 4G Froyo"
cd linux_sgh-t959v
nice -n 20 make -j8
cd - > /dev/null
show "M110S Froyo"
cd linux_shw-m110s
nice -n 20 make -j8
cd - > /dev/null
show "M110S Gingerbread"
cd linux_shw-m110s-gingerbread
nice -n 20 make -j8
cd - > /dev/null