This repository was archived by the owner on Apr 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathdriver.sh
executable file
·326 lines (294 loc) · 10.3 KB
/
driver.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
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
#!/usr/bin/env bash
set -eu
setup_variables() {
while [[ ${#} -ge 1 ]]; do
case ${1} in
"AR="*|"ARCH="*|"AS"=*|"CC="*|"LD="*|"OBJCOPY"=*|"REPO="*) export "${1?}" ;;
"-c"|"--clean") cleanup=true ;;
"-j"|"--jobs") shift; jobs=$1 ;;
"-j"*) jobs=${1/-j} ;;
"-h"|"--help")
cat usage.txt
exit 0 ;;
esac
shift
done
# Turn on debug mode after parameters in case -h was specified
set -x
# torvalds/linux is the default repo if nothing is specified
case ${REPO:=linux} in
"common-"*)
branch=android-${REPO##*-}
tree=common
url=https://android.googlesource.com/kernel/${tree} ;;
"linux")
owner=torvalds
tree=linux ;;
"linux-next")
owner=next
tree=linux-next ;;
"4.4"|"4.9"|"4.14"|"4.19")
owner=stable
branch=linux-${REPO}.y
tree=linux ;;
esac
[[ -z "${url:-}" ]] && url=git://git.kernel.org/pub/scm/linux/kernel/git/${owner}/${tree}.git
# arm64 is the current default if nothing is specified
case ${ARCH:=arm64} in
"arm32_v5")
config=multi_v5_defconfig
image_name=zImage
qemu="qemu-system-arm"
qemu_cmdline=( -machine palmetto-bmc
-no-reboot
-dtb "${tree}/arch/arm/boot/dts/aspeed-bmc-opp-palmetto.dtb"
-initrd "images/arm/rootfs.cpio" )
export ARCH=arm
export CROSS_COMPILE=arm-linux-gnueabi- ;;
"arm32_v6")
config=aspeed_g5_defconfig
image_name=zImage
qemu="qemu-system-arm"
qemu_cmdline=( -machine romulus-bmc
-no-reboot
-dtb "${tree}/arch/arm/boot/dts/aspeed-bmc-opp-romulus.dtb"
-initrd "images/arm/rootfs.cpio" )
export ARCH=arm
export CROSS_COMPILE=arm-linux-gnueabi- ;;
"arm32_v7")
config=multi_v7_defconfig
image_name=zImage
qemu="qemu-system-arm"
qemu_cmdline=( -machine virt
-no-reboot
-drive "file=images/arm/rootfs.ext4,format=raw,id=rootfs,if=none"
-device "virtio-blk-device,drive=rootfs"
-append "console=ttyAMA0 root=/dev/vda" )
export ARCH=arm
export CROSS_COMPILE=arm-linux-gnueabi- ;;
"arm64")
case ${REPO} in
common-*) config=cuttlefish_defconfig ;;
*) config=defconfig ;;
esac
image_name=Image.gz
qemu="qemu-system-aarch64"
qemu_cmdline=( -cpu cortex-a57
-drive "file=images/arm64/rootfs.ext4,format=raw"
-append "console=ttyAMA0 root=/dev/vda" )
export CROSS_COMPILE=aarch64-linux-gnu- ;;
"x86_64")
case ${REPO} in
common-*)
config=x86_64_cuttlefish_defconfig
qemu_cmdline=( -append "console=ttyS0"
-initrd "images/x86_64/rootfs.cpio" ) ;;
*)
config=defconfig
qemu_cmdline=( -drive "file=images/x86_64/rootfs.ext4,format=raw,if=ide"
-append "console=ttyS0 root=/dev/sda" ) ;;
esac
image_name=bzImage
qemu="qemu-system-x86_64" ;;
"ppc32")
config=ppc44x_defconfig
image_name=zImage
qemu="qemu-system-ppc"
qemu_ram=128m
qemu_cmdline=( -machine bamboo
-append "console=ttyS0"
-no-reboot
-initrd "images/ppc32/rootfs.cpio" )
export ARCH=powerpc
export CROSS_COMPILE=powerpc-linux-gnu- ;;
"ppc64le")
config=powernv_defconfig
image_name=zImage.epapr
qemu="qemu-system-ppc64"
qemu_ram=2G
qemu_cmdline=( -machine powernv
-device "ipmi-bmc-sim,id=bmc0"
-device "isa-ipmi-bt,bmc=bmc0,irq=10"
-L images/ppc64le/ -bios skiboot.lid
-initrd images/ppc64le/rootfs.cpio )
export ARCH=powerpc
export CROSS_COMPILE=powerpc64le-linux-gnu- ;;
# Unknown arch, error out
*)
echo "Unknown ARCH specified!"
exit 1 ;;
esac
export ARCH=${ARCH}
}
check_dependencies() {
# Check for existence of needed binaries
command -v nproc
command -v "${CROSS_COMPILE:-}"as
command -v ${qemu}
command -v timeout
command -v unbuffer
for readelf in llvm-readelf-9 llvm-readelf-8 llvm-readelf-7 llvm-readelf; do
command -v ${readelf} &>/dev/null && break
done
# Check for LD, CC, OBJCOPY, and AR environmental variables
# and print the version string of each. If CC and AR
# don't exist, try to find them.
# lld isn't ready for all architectures so it's just
# simpler to fall back to GNU ld when LD isn't specified
# to avoid architecture specific selection logic.
"${LD:="${CROSS_COMPILE:-}"ld}" --version
if [[ -z "${CC:-}" ]]; then
for CC in clang-9 clang-8 clang-7 clang; do
command -v ${CC} &>/dev/null && break
done
fi
${CC} --version 2>/dev/null || {
set +x
echo
echo "Looks like ${CC} could not be found in PATH!"
echo
echo "Please install as recent a version of clang as you can from your distro or"
echo "properly specify the CC variable to point to the correct clang binary."
echo
echo "If you don't want to install clang, you can either download AOSP's prebuilt"
echo "clang [1] or build it from source [2] then add the bin folder to your PATH."
echo
echo "[1]: https://android.googlesource.com/platform/prebuilts/clang/host/linux-x86/"
echo "[2]: https://github.com/ClangBuiltLinux/linux/wiki/Building-Clang-from-source"
echo
exit;
}
if [[ -z "${AR:-}" ]]; then
for AR in llvm-ar-9 llvm-ar-8 llvm-ar-7 llvm-ar "${CROSS_COMPILE:-}"ar; do
command -v ${AR} 2>/dev/null && break
done
fi
check_ar_version
${AR} --version
if [[ -z "${OBJCOPY:-}" ]]; then
for OBJCOPY in llvm-objcopy-9 llvm-objcopy-8 llvm-objcopy-7 llvm-objcopy "${CROSS_COMPILE:-}"objcopy; do
command -v ${OBJCOPY} 2>/dev/null && break
done
fi
check_objcopy_version
${OBJCOPY} --version
if [[ -z "${AS:-}" ]]; then
for AS in clang-9 "${CROSS_COMPILE:-}"as; do
command -v ${AS} 2>/dev/null && break
done
fi
}
# Optimistically check to see that the user has a llvm-ar
# with https://reviews.llvm.org/rL354044. If they don't,
# fall back to GNU ar and let them know.
check_ar_version() {
if ${AR} --version | grep -q "LLVM" && \
[[ $(${AR} --version | grep version | sed -e 's/.*LLVM version //g' -e 's/[[:blank:]]*$//' -e 's/\.//g' -e 's/svn//' ) -lt 900 ]]; then
set +x
echo
echo "${AR} found but appears to be too old to build the kernel (needs to be at least 9.0.0)."
echo
echo "Please either update llvm-ar from your distro or build it from source!"
echo
echo "See https://github.com/ClangBuiltLinux/linux/issues/33 for more info."
echo
echo "Falling back to GNU ar..."
echo
AR=${CROSS_COMPILE:-}ar
set -x
fi
}
# Optimistically check to see that the user has a llvm-objcopy
# with https://reviews.llvm.org/rL357017. If they don't,
# fall back to GNU objcopy and let them know.
check_objcopy_version() {
if ${OBJCOPY} --version | grep -q "LLVM" && \
[[ $(${OBJCOPY} --version | grep version | sed -e 's/.*LLVM version //g' -e 's/[[:blank:]]*$//' -e 's/\.//g' -e 's/svn//' ) -lt 900 ]]; then
set +x
echo
echo "${OBJCOPY} found but appears to be too old to build the kernel (needs to be at least 9.0.0)."
echo
echo "Please either update llvm-objcopy from your distro or build it from source!"
echo
echo "See https://github.com/ClangBuiltLinux/linux/issues/418 for more info."
echo
echo "Falling back to GNU objcopy..."
echo
OBJCOPY=${CROSS_COMPILE:-}objcopy
set -x
fi
}
mako_reactor() {
# https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/kbuild/kbuild.txt
time \
KBUILD_BUILD_TIMESTAMP="Thu Jan 1 00:00:00 UTC 1970" \
KBUILD_BUILD_USER=driver \
KBUILD_BUILD_HOST=clangbuiltlinux \
make -j"${jobs:-$(nproc)}" CC="${CC}" HOSTCC="${CC}" LD="${LD}" HOSTLD="${HOSTLD:-ld}" AR="${AR}" OBJCOPY="${OBJCOPY}" "${@}"
}
apply_patches() {
patches_folder=$1
if [[ -d ${patches_folder} ]]; then
git apply -v -3 "${patches_folder}"/*.patch
else
return 0
fi
}
build_linux() {
# Wrap CC in ccache if it is available (it's not strictly required)
CC="$(command -v ccache) ${CC}"
[[ ${LD} =~ lld ]] && HOSTLD=${LD}
if [[ -d ${tree} ]]; then
cd ${tree}
git fetch --depth=1 ${url} ${branch:=master}
git reset --hard FETCH_HEAD
else
git clone --depth=1 -b ${branch:=master} --single-branch ${url}
cd ${tree}
fi
git show -s | cat
apply_patches "../patches/all"
apply_patches "../patches/${REPO}/all"
apply_patches "../patches/${REPO}/${ARCH}"
# Only clean up old artifacts if requested, the Linux build system
# is good about figuring out what needs to be rebuilt
[[ -n "${cleanup:-}" ]] && mako_reactor mrproper
mako_reactor ${config}
# If we're using a defconfig, enable some more common config options
# like debugging, selftests, and common drivers
if [[ ${config} =~ defconfig ]]; then
cat ../configs/common.config >> .config
# Some torture test configs cause issues on x86_64
[[ $ARCH != "x86_64" ]] && cat ../configs/tt.config >> .config
# Disable ftrace on arm32: https://github.com/ClangBuiltLinux/linux/issues/35
[[ $ARCH == "arm" ]] && ./scripts/config -d CONFIG_FTRACE
fi
# Make sure we build with CONFIG_DEBUG_SECTION_MISMATCH so that the
# full warning gets printed and we can file and fix it properly.
./scripts/config -e DEBUG_SECTION_MISMATCH
mako_reactor olddefconfig &>/dev/null
mako_reactor ${image_name}
[[ $ARCH =~ arm ]] && mako_reactor dtbs
${readelf} --string-dump=.comment vmlinux
cd "${OLDPWD}"
}
boot_qemu() {
local kernel_image=${tree}/arch/${ARCH}/boot/${image_name}
test -e ${kernel_image}
qemu=( timeout 2m unbuffer "${qemu}"
-m "${qemu_ram:=512m}"
"${qemu_cmdline[@]}"
-nographic
-kernel "${kernel_image}" )
# For arm64, we want to test booting at both EL1 and EL2
if [[ ${ARCH} = "arm64" ]]; then
"${qemu[@]}" -machine virt
"${qemu[@]}" -machine "virt,virtualization=true"
else
"${qemu[@]}"
fi
}
setup_variables "${@}"
check_dependencies
build_linux
boot_qemu