-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild_menu
More file actions
executable file
·206 lines (183 loc) · 7.16 KB
/
build_menu
File metadata and controls
executable file
·206 lines (183 loc) · 7.16 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
#!/bin/bash
# Afaneh menu V2.0
# Variables
DIR=`readlink -f .`
PARENT_DIR=`readlink -f ${DIR}/..`
CHIPSET_NAME=lahaina
export ARCH=arm64
export PLATFORM_VERSION=11
export ANDROID_MAJOR_VERSION=r
BUILD_CROSS_COMPILE=$PARENT_DIR/toolchain/aarch64-linux-android-4.9/bin/aarch64-linux-android-
KERNEL_LLVM_BIN=$PARENT_DIR/toolchain/llvm-arm-toolchain-ship-10.0/bin/clang
CLANG_TRIPLE=aarch64-linux-gnu-
KERNEL_MAKE_ENV="CONFIG_BUILD_ARM64_DT_OVERLAY=y"
DTS_DIR=$(pwd)/out/arch/$ARCH/boot/dts
# Color
ON_BLUE=`echo -e "\033[44m"` # On Blue
RED=`echo -e "\033[1;31m"` # Red
BLUE=`echo -e "\033[1;34m"` # Blue
GREEN=`echo -e "\033[1;32m"` # Green
Under_Line=`echo -e "\e[4m"` # Text Under Line
STD=`echo -e "\033[0m"` # Text Clear
# Functions
pause(){
read -p "${RED}$2${STD}Press ${BLUE}[Enter]${STD} key to $1..." fackEnterKey
}
variant(){
findconfig=""
findconfig=($(ls arch/arm64/configs/vendor/papaya_* 2>/dev/null))
declare -i i=1
shift 2
for e in "${findconfig[@]}"; do
echo "$i) $(basename $e | cut -d'_' -f2)"
i=i+1
done
echo ""
read -p "Select variant: " REPLY
i="$REPLY"
if [[ $i -gt 0 && $i -le ${#findconfig[@]} ]]; then
export v="${findconfig[$i-1]}"
export VARIANT=$(basename $v | cut -d'_' -f2)
echo ${VARIANT} selected
pause 'continue'
else
pause 'return to Main menu' 'Invalid option, '
. $DIR/build_menu
fi
}
toolchain(){
if [ ! -d $PARENT_DIR/toolchain/aarch64-linux-android-4.9 ]; then
pause 'clone Toolchain aarch64-linux-android-4.9 cross compiler'
git clone --branch android-9.0.0_r59 https://android.googlesource.com/platform/prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9 $PARENT_DIR/toolchain/aarch64-linux-android-4.9
. $DIR/build_menu
fi
}
llvm(){
if [ ! -d $PARENT_DIR/toolchain/llvm-arm-toolchain-ship-10.0 ]; then
pause 'clone Snapdragon LLVM ARM Compiler 10.0'
git clone https://github.com/proprietary-stuff/llvm-arm-toolchain-ship-10.0 $PARENT_DIR/toolchain/llvm-arm-toolchain-ship-10.0
. $DIR/build_menu
fi
}
clean(){
echo "${GREEN}***** Cleaning in Progress *****${STD}"
make $KERNEL_MAKE_ENV ARCH=arm64 CROSS_COMPILE=$BUILD_CROSS_COMPILE REAL_CC=$KERNEL_LLVM_BIN CLANG_TRIPLE=$CLANG_TRIPLE clean
make $KERNEL_MAKE_ENV ARCH=arm64 CROSS_COMPILE=$BUILD_CROSS_COMPILE REAL_CC=$KERNEL_LLVM_BIN CLANG_TRIPLE=$CLANG_TRIPLE mrproper
[ -d "out" ] && rm -rf out
echo "${GREEN}***** Cleaning Done *****${STD}"
pause 'continue'
}
build_kernel(){
variant
echo "${GREEN}***** Compiling kernel *****${STD}"
[ ! -d "out" ] && mkdir out
make -j$(nproc) -C $(pwd) O=$(pwd)/out $KERNEL_MAKE_ENV ARCH=arm64 CROSS_COMPILE=$BUILD_CROSS_COMPILE REAL_CC=$KERNEL_LLVM_BIN CLANG_TRIPLE=$CLANG_TRIPLE CONFIG_SECTION_MISMATCH_WARN_ONLY=y vendor/papaya_${VARIANT}_defconfig
make -j$(nproc) -C $(pwd) O=$(pwd)/out $KERNEL_MAKE_ENV ARCH=arm64 CROSS_COMPILE=$BUILD_CROSS_COMPILE REAL_CC=$KERNEL_LLVM_BIN CLANG_TRIPLE=$CLANG_TRIPLE CONFIG_SECTION_MISMATCH_WARN_ONLY=y
[ -e out/arch/arm64/boot/Image.gz ] && cp out/arch/arm64/boot/Image.gz $(pwd)/out/Image.gz
if [ -e out/arch/arm64/boot/Image ]; then
cp out/arch/arm64/boot/Image $(pwd)/out/Image
DTBO_FILES=$(find ${DTS_DIR}/samsung/ -name ${VARIANT}_*_w00_r*.dtbo)
cat ${DTS_DIR}/vendor/qcom/*.dtb > $(pwd)/out/dtb.img
$(pwd)/tools/mkdtimg create $(pwd)/out/dtbo.img --page_size=4096 ${DTBO_FILES}
echo "${GREEN}***** Ready to Roar *****${STD}"
pause 'continue'
else
pause 'return to Main menu' 'Kernel STUCK in BUILD!, '
fi
}
install-kernel-modules(){
[ -d "$2" ] && rm -rf $2
mkdir -p $2
sed -e 's/\(.*kernel.*\):/\/\1:/g' -e 's/ \([^ ]*kernel[^ ]*\)/ \/\1/g' $1/modules.dep > $2/modules.dep
cp $1/modules.softdep $2
cp $1/modules.alias $2
for MOD in $modules; do
MODULE="$(basename $MOD)"
sed -i "s|\(.*kernel.*\)\/$MODULE:|/lib/modules/$MODULE:|" $2/modules.dep
sed -i "s| \([^ ]*kernel.*\)\/$MODULE| /lib/modules/$MODULE|" $2/modules.dep
basename $MOD >> $2/modules.load;
cp $MOD $2
done
}
build_kernel_modules(){
if [ -e $DIR/out/arch/arm64/boot/Image ]; then
# Build modules
echo "${GREEN}***** Installing Kernel Modules *****${STD}"
[ ! -d "out/tmp_modules" ] && mkdir -p out/tmp_modules
make -j$(nproc) -C $(pwd) O=$(pwd)/out $KERNEL_MAKE_ENV ARCH=arm64 CROSS_COMPILE=$BUILD_CROSS_COMPILE REAL_CC=$KERNEL_LLVM_BIN CLANG_TRIPLE=$CLANG_TRIPLE CONFIG_SECTION_MISMATCH_WARN_ONLY=y modules
make -j$(nproc) -C $(pwd) O=$(pwd)/out $KERNEL_MAKE_ENV ARCH=arm64 CROSS_COMPILE=$BUILD_CROSS_COMPILE REAL_CC=$KERNEL_LLVM_BIN CLANG_TRIPLE=$CLANG_TRIPLE CONFIG_SECTION_MISMATCH_WARN_ONLY=y INSTALL_MOD_STRIP=1 INSTALL_MOD_PATH=$(pwd)/out/tmp_modules modules_install
kernel_release=$(cat out/include/config/kernel.release)
kernel_modules_dir=$DIR/out/tmp_modules/lib/modules/$kernel_release
kernel_modules_out=$DIR/out/lib/modules
modules=$(find $kernel_modules_dir -type f -name '*.ko');
install-kernel-modules $kernel_modules_dir $kernel_modules_out
[ -d "out/tmp_modules" ] && rm -rf out/tmp_modules
echo "${GREEN}***** Ready to Roar *****${STD}"
pause 'continue'
else
pause 'return to Main menu' 'Build kernel first, '
fi
}
anykernel3(){
if [ ! -d $PARENT_DIR/AnyKernel3 ]; then
pause 'clone AnyKernel3 - Flashable Zip Template'
git clone https://github.com/osm0sis/AnyKernel3 $PARENT_DIR/AnyKernel3
fi
variant
[ -e $PARENT_DIR/${VARIANT}_kernel.zip ] && rm $PARENT_DIR/${VARIANT}_kernel.zip
if [ -e $DIR/out/arch/arm64/boot/Image.gz ]; then
cd $PARENT_DIR/AnyKernel3
git reset --hard
cp $DIR/out/arch/arm64/boot/Image.gz Image.gz
sed -i "s/ExampleKernel by osm0sis/${VARIANT} Papaya kernel by OnkoFonko/g" anykernel.sh
sed -i "s/=maguro/=${VARIANT}/g" anykernel.sh
sed -i "s/=toroplus/=/g" anykernel.sh
sed -i "s/=toro/=/g" anykernel.sh
sed -i "s/=tuna/=/g" anykernel.sh
sed -i "s/omap\/omap_hsmmc\.0\/by-name\/boot/soc\/1d84000\.ufshc\/by-name\/boot/g" anykernel.sh
sed -i "s/backup_file/#backup_file/g" anykernel.sh
sed -i "s/replace_string/#replace_string/g" anykernel.sh
sed -i "s/insert_line/#insert_line/g" anykernel.sh
sed -i "s/append_file/#append_file/g" anykernel.sh
sed -i "s/patch_fstab/#patch_fstab/g" anykernel.sh
zip -r9 $PARENT_DIR/papaya_${VARIANT}_kernel.zip * -x .git README.md *placeholder
cd $DIR
pause 'continue'
else
pause 'return to Main menu' 'Build kernel first, '
fi
}
# Run once
toolchain
llvm
# Show menu
show_menus(){
clear
echo "${ON_BLUE} B U I L D - M E N U ${STD}"
echo "1. ${Under_Line}B${STD}uild kernel"
echo "2. Build kernel ${Under_Line}m${STD}odules"
echo "3. ${Under_Line}C${STD}lean"
echo "4. Make ${Under_Line}f${STD}lashable zip"
echo "5. E${Under_Line}x${STD}it"
}
# Read input
read_options(){
local choice
read -p "Enter choice [ 1 - 5] " choice
case $choice in
1|b|B) build_kernel ;;
2|m|M) build_kernel_modules ;;
3|c|C) clean ;;
4|f|F) anykernel3;;
5|x|X) exit 0;;
*) pause 'return to Main menu' 'Invalid option, '
esac
}
# Trap CTRL+C, CTRL+Z and quit singles
trap '' SIGINT SIGQUIT SIGTSTP
# Step # Main logic - infinite loop
while true
do
show_menus
read_options
done