blob: de453381e4324d07db64d7c03cdec0556176d59d [file] [log] [blame]
Steve Kondik4e2aaab2016-07-15 10:39:58 -07001#!/bin/bash
2#
3# Copyright (C) 2016 The CyanogenMod Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
17
18PRODUCT_COPY_FILES_LIST=()
Steve Kondik48f8df82016-08-14 03:55:08 -070019PRODUCT_COPY_FILES_HASHES=()
Steve Kondik4e2aaab2016-07-15 10:39:58 -070020PRODUCT_PACKAGES_LIST=()
Steve Kondik48f8df82016-08-14 03:55:08 -070021PRODUCT_PACKAGES_HASHES=()
Steve Kondik4e2aaab2016-07-15 10:39:58 -070022PACKAGE_LIST=()
23VENDOR_STATE=-1
Louis Popia516c2f2016-07-25 15:51:13 +020024VENDOR_RADIO_STATE=-1
Steve Kondik4e2aaab2016-07-15 10:39:58 -070025COMMON=-1
Luca Stefani7f9fff22016-07-18 13:47:55 +020026ARCHES=
27FULLY_DEODEXED=-1
28
29TMPDIR="/tmp/extractfiles.$$"
30mkdir "$TMPDIR"
Steve Kondik4e2aaab2016-07-15 10:39:58 -070031
32#
Steve Kondik48f8df82016-08-14 03:55:08 -070033# cleanup
34#
35# kill our tmpfiles with fire on exit
36#
37function cleanup() {
38 rm -rf "${TMPDIR:?}"
39}
40
41trap cleanup EXIT INT TERM ERR
42
43#
Steve Kondik4e2aaab2016-07-15 10:39:58 -070044# setup_vendor
45#
46# $1: device name
47# $2: vendor name
48# $3: CM root directory
49# $4: is common device - optional, default to false
50# $5: cleanup - optional, default to true
Rashed Abdel-Tawab5f173152016-10-01 20:33:00 -040051# $6: custom vendor makefile name - optional, default to false
Steve Kondik4e2aaab2016-07-15 10:39:58 -070052#
53# Must be called before any other functions can be used. This
54# sets up the internal state for a new vendor configuration.
55#
56function setup_vendor() {
57 local DEVICE="$1"
58 if [ -z "$DEVICE" ]; then
59 echo "\$DEVICE must be set before including this script!"
60 exit 1
61 fi
62
63 export VENDOR="$2"
64 if [ -z "$VENDOR" ]; then
65 echo "\$VENDOR must be set before including this script!"
66 exit 1
67 fi
68
69 export CM_ROOT="$3"
70 if [ ! -d "$CM_ROOT" ]; then
71 echo "\$CM_ROOT must be set and valid before including this script!"
72 exit 1
73 fi
74
75 export OUTDIR=vendor/"$VENDOR"/"$DEVICE"
76 if [ ! -d "$CM_ROOT/$OUTDIR" ]; then
77 mkdir -p "$CM_ROOT/$OUTDIR"
78 fi
79
Rashed Abdel-Tawab5f173152016-10-01 20:33:00 -040080 VNDNAME="$6"
81 if [ -z "$VNDNAME" ]; then
82 VNDNAME="$DEVICE"
83 fi
84
85 export PRODUCTMK="$CM_ROOT"/"$OUTDIR"/"$VNDNAME"-vendor.mk
Steve Kondik4e2aaab2016-07-15 10:39:58 -070086 export ANDROIDMK="$CM_ROOT"/"$OUTDIR"/Android.mk
87 export BOARDMK="$CM_ROOT"/"$OUTDIR"/BoardConfigVendor.mk
88
89 if [ "$4" == "true" ] || [ "$4" == "1" ]; then
90 COMMON=1
91 else
92 COMMON=0
93 fi
94
95 if [ "$5" == "true" ] || [ "$5" == "1" ]; then
96 VENDOR_STATE=1
Louis Popia516c2f2016-07-25 15:51:13 +020097 VENDOR_RADIO_STATE=1
Steve Kondik4e2aaab2016-07-15 10:39:58 -070098 else
99 VENDOR_STATE=0
Louis Popia516c2f2016-07-25 15:51:13 +0200100 VENDOR_RADIO_STATE=0
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700101 fi
102}
103
104#
105# target_file:
106#
107# $1: colon delimited list
108#
109# Returns destination filename without args
110#
111function target_file() {
112 local LINE="$1"
113 local SPLIT=(${LINE//:/ })
114 local COUNT=${#SPLIT[@]}
115 if [ "$COUNT" -gt "1" ]; then
116 if [[ "${SPLIT[1]}" =~ .*/.* ]]; then
117 printf '%s\n' "${SPLIT[1]}"
118 return 0
119 fi
120 fi
121 printf '%s\n' "${SPLIT[0]}"
122}
123
124#
125# target_args:
126#
127# $1: colon delimited list
128#
129# Returns optional arguments (last value) for given target
130#
131function target_args() {
132 local LINE="$1"
133 local SPLIT=(${LINE//:/ })
134 local COUNT=${#SPLIT[@]}
135 if [ "$COUNT" -gt "1" ]; then
136 if [[ ! "${SPLIT[$COUNT-1]}" =~ .*/.* ]]; then
137 printf '%s\n' "${SPLIT[$COUNT-1]}"
138 fi
139 fi
140}
141
142#
143# prefix_match:
144#
145# $1: the prefix to match on
146#
147# Internal function which loops thru the packages list and returns a new
148# list containing the matched files with the prefix stripped away.
149#
150function prefix_match() {
151 local PREFIX="$1"
152 for FILE in "${PRODUCT_PACKAGES_LIST[@]}"; do
153 if [[ "$FILE" =~ ^"$PREFIX" ]]; then
154 printf '%s\n' "${FILE#$PREFIX}"
155 fi
156 done
157}
158
159#
160# write_product_copy_files:
161#
162# Creates the PRODUCT_COPY_FILES section in the product makefile for all
163# items in the list which do not start with a dash (-).
164#
165function write_product_copy_files() {
166 local COUNT=${#PRODUCT_COPY_FILES_LIST[@]}
167 local TARGET=
168 local FILE=
169 local LINEEND=
170
171 if [ "$COUNT" -eq "0" ]; then
172 return 0
173 fi
174
175 printf '%s\n' "PRODUCT_COPY_FILES += \\" >> "$PRODUCTMK"
176 for (( i=1; i<COUNT+1; i++ )); do
177 FILE="${PRODUCT_COPY_FILES_LIST[$i-1]}"
178 LINEEND=" \\"
179 if [ "$i" -eq "$COUNT" ]; then
180 LINEEND=""
181 fi
182
183 TARGET=$(target_file "$FILE")
184 printf ' %s/proprietary/%s:system/%s%s\n' \
185 "$OUTDIR" "$TARGET" "$TARGET" "$LINEEND" >> "$PRODUCTMK"
186 done
187 return 0
188}
189
190#
191# write_packages:
192#
193# $1: The LOCAL_MODULE_CLASS for the given module list
194# $2: "true" if this package is part of the vendor/ path
Steve Kondika991cf12016-07-28 12:13:12 -0700195# $3: type-specific extra flags
196# $4: Name of the array holding the target list
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700197#
198# Internal function which writes out the BUILD_PREBUILT stanzas
199# for all modules in the list. This is called by write_product_packages
200# after the modules are categorized.
201#
202function write_packages() {
203
204 local CLASS="$1"
205 local VENDOR_PKG="$2"
Steve Kondika991cf12016-07-28 12:13:12 -0700206 local EXTRA="$3"
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700207
208 # Yes, this is a horrible hack - we create a new array using indirection
Steve Kondika991cf12016-07-28 12:13:12 -0700209 local ARR_NAME="$4[@]"
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700210 local FILELIST=("${!ARR_NAME}")
211
212 local FILE=
213 local ARGS=
214 local BASENAME=
215 local EXTENSION=
216 local PKGNAME=
217 local SRC=
218
219 for P in "${FILELIST[@]}"; do
220 FILE=$(target_file "$P")
221 ARGS=$(target_args "$P")
222
223 BASENAME=$(basename "$FILE")
224 EXTENSION=${BASENAME##*.}
225 PKGNAME=${BASENAME%.*}
226
227 # Add to final package list
228 PACKAGE_LIST+=("$PKGNAME")
229
230 SRC="proprietary"
231 if [ "$VENDOR_PKG" = "true" ]; then
232 SRC+="/vendor"
233 fi
234
235 printf 'include $(CLEAR_VARS)\n'
236 printf 'LOCAL_MODULE := %s\n' "$PKGNAME"
237 printf 'LOCAL_MODULE_OWNER := %s\n' "$VENDOR"
238 if [ "$CLASS" = "SHARED_LIBRARIES" ]; then
Steve Kondika991cf12016-07-28 12:13:12 -0700239 if [ "$EXTRA" = "both" ]; then
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700240 printf 'LOCAL_SRC_FILES_64 := %s/lib64/%s\n' "$SRC" "$FILE"
241 printf 'LOCAL_SRC_FILES_32 := %s/lib/%s\n' "$SRC" "$FILE"
242 #if [ "$VENDOR_PKG" = "true" ]; then
243 # echo "LOCAL_MODULE_PATH_64 := \$(TARGET_OUT_VENDOR_SHARED_LIBRARIES)"
244 # echo "LOCAL_MODULE_PATH_32 := \$(2ND_TARGET_OUT_VENDOR_SHARED_LIBRARIES)"
245 #else
246 # echo "LOCAL_MODULE_PATH_64 := \$(TARGET_OUT_SHARED_LIBRARIES)"
247 # echo "LOCAL_MODULE_PATH_32 := \$(2ND_TARGET_OUT_SHARED_LIBRARIES)"
248 #fi
Steve Kondika991cf12016-07-28 12:13:12 -0700249 elif [ "$EXTRA" = "64" ]; then
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700250 printf 'LOCAL_SRC_FILES := %s/lib64/%s\n' "$SRC" "$FILE"
251 else
252 printf 'LOCAL_SRC_FILES := %s/lib/%s\n' "$SRC" "$FILE"
253 fi
Steve Kondik03ce4002016-07-29 00:00:16 -0700254 if [ "$EXTRA" != "none" ]; then
Steve Kondika991cf12016-07-28 12:13:12 -0700255 printf 'LOCAL_MULTILIB := %s\n' "$EXTRA"
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700256 fi
257 elif [ "$CLASS" = "APPS" ]; then
HashBangd3030312016-08-01 14:36:46 -0400258 if [ -z "$ARGS" ]; then
259 if [ "$EXTRA" = "priv-app" ]; then
260 SRC="$SRC/priv-app"
261 else
262 SRC="$SRC/app"
263 fi
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700264 fi
265 printf 'LOCAL_SRC_FILES := %s/%s\n' "$SRC" "$FILE"
266 local CERT=platform
267 if [ ! -z "$ARGS" ]; then
268 CERT="$ARGS"
269 fi
270 printf 'LOCAL_CERTIFICATE := %s\n' "$CERT"
271 elif [ "$CLASS" = "JAVA_LIBRARIES" ]; then
272 printf 'LOCAL_SRC_FILES := %s/framework/%s\n' "$SRC" "$FILE"
Elektroschmock082e0ec2016-10-04 21:11:43 +0200273 local CERT=platform
274 if [ ! -z "$ARGS" ]; then
275 CERT="$ARGS"
276 fi
277 printf 'LOCAL_CERTIFICATE := %s\n' "$CERT"
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700278 elif [ "$CLASS" = "ETC" ]; then
279 printf 'LOCAL_SRC_FILES := %s/etc/%s\n' "$SRC" "$FILE"
280 elif [ "$CLASS" = "EXECUTABLES" ]; then
Steve Kondika991cf12016-07-28 12:13:12 -0700281 if [ "$ARGS" = "rootfs" ]; then
282 SRC="$SRC/rootfs"
283 if [ "$EXTRA" = "sbin" ]; then
284 SRC="$SRC/sbin"
285 printf '%s\n' "LOCAL_MODULE_PATH := \$(TARGET_ROOT_OUT_SBIN)"
286 printf '%s\n' "LOCAL_UNSTRIPPED_PATH := \$(TARGET_ROOT_OUT_SBIN_UNSTRIPPED)"
287 fi
288 else
289 SRC="$SRC/bin"
290 fi
291 printf 'LOCAL_SRC_FILES := %s/%s\n' "$SRC" "$FILE"
292 unset EXTENSION
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700293 else
Steve Kondika991cf12016-07-28 12:13:12 -0700294 printf 'LOCAL_SRC_FILES := %s/%s\n' "$SRC" "$FILE"
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700295 fi
296 printf 'LOCAL_MODULE_TAGS := optional\n'
297 printf 'LOCAL_MODULE_CLASS := %s\n' "$CLASS"
Hashbang1733b3a0e12016-08-28 20:38:45 -0400298 if [ "$CLASS" = "APPS" ]; then
299 printf 'LOCAL_DEX_PREOPT := false\n'
300 fi
Steve Kondika991cf12016-07-28 12:13:12 -0700301 if [ ! -z "$EXTENSION" ]; then
302 printf 'LOCAL_MODULE_SUFFIX := .%s\n' "$EXTENSION"
303 fi
304 if [ "$EXTRA" = "priv-app" ]; then
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700305 printf 'LOCAL_PRIVILEGED_MODULE := true\n'
306 fi
307 if [ "$VENDOR_PKG" = "true" ]; then
308 printf 'LOCAL_PROPRIETARY_MODULE := true\n'
309 fi
310 printf 'include $(BUILD_PREBUILT)\n\n'
311 done
312}
313
314#
315# write_product_packages:
316#
317# This function will create BUILD_PREBUILT entries in the
318# Android.mk and associated PRODUCT_PACKAGES list in the
319# product makefile for all files in the blob list which
320# start with a single dash (-) character.
321#
322function write_product_packages() {
323 PACKAGE_LIST=()
324
325 local COUNT=${#PRODUCT_PACKAGES_LIST[@]}
326
327 if [ "$COUNT" = "0" ]; then
328 return 0
329 fi
330
331 # Figure out what's 32-bit, what's 64-bit, and what's multilib
332 # I really should not be doing this in bash due to shitty array passing :(
333 local T_LIB32=( $(prefix_match "lib/") )
334 local T_LIB64=( $(prefix_match "lib64/") )
335 local MULTILIBS=( $(comm -12 <(printf '%s\n' "${T_LIB32[@]}") <(printf '%s\n' "${T_LIB64[@]}")) )
336 local LIB32=( $(comm -23 <(printf '%s\n' "${T_LIB32[@]}") <(printf '%s\n' "${MULTILIBS[@]}")) )
Steve Kondik60ef86d2016-07-20 20:03:40 -0700337 local LIB64=( $(comm -23 <(printf '%s\n' "${T_LIB64[@]}") <(printf '%s\n' "${MULTILIBS[@]}")) )
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700338
Steve Kondik03ce4002016-07-29 00:00:16 -0700339 if [ "${#MULTILIBS[@]}" -gt "0" ]; then
340 write_packages "SHARED_LIBRARIES" "false" "both" "MULTILIBS" >> "$ANDROIDMK"
341 fi
342 if [ "${#LIB32[@]}" -gt "0" ]; then
343 write_packages "SHARED_LIBRARIES" "false" "32" "LIB32" >> "$ANDROIDMK"
344 fi
345 if [ "${#LIB64[@]}" -gt "0" ]; then
346 write_packages "SHARED_LIBRARIES" "false" "64" "LIB64" >> "$ANDROIDMK"
347 fi
348
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700349 local T_V_LIB32=( $(prefix_match "vendor/lib/") )
350 local T_V_LIB64=( $(prefix_match "vendor/lib64/") )
351 local V_MULTILIBS=( $(comm -12 <(printf '%s\n' "${T_V_LIB32[@]}") <(printf '%s\n' "${T_V_LIB64[@]}")) )
352 local V_LIB32=( $(comm -23 <(printf '%s\n' "${T_V_LIB32[@]}") <(printf '%s\n' "${V_MULTILIBS[@]}")) )
Steve Kondik60ef86d2016-07-20 20:03:40 -0700353 local V_LIB64=( $(comm -23 <(printf '%s\n' "${T_V_LIB64[@]}") <(printf '%s\n' "${V_MULTILIBS[@]}")) )
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700354
355 if [ "${#V_MULTILIBS[@]}" -gt "0" ]; then
Steve Kondika991cf12016-07-28 12:13:12 -0700356 write_packages "SHARED_LIBRARIES" "true" "both" "V_MULTILIBS" >> "$ANDROIDMK"
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700357 fi
358 if [ "${#V_LIB32[@]}" -gt "0" ]; then
Steve Kondik03ce4002016-07-29 00:00:16 -0700359 write_packages "SHARED_LIBRARIES" "true" "32" "V_LIB32" >> "$ANDROIDMK"
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700360 fi
361 if [ "${#V_LIB64[@]}" -gt "0" ]; then
Steve Kondika991cf12016-07-28 12:13:12 -0700362 write_packages "SHARED_LIBRARIES" "true" "64" "V_LIB64" >> "$ANDROIDMK"
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700363 fi
364
365 # Apps
366 local APPS=( $(prefix_match "app/") )
367 if [ "${#APPS[@]}" -gt "0" ]; then
Steve Kondika991cf12016-07-28 12:13:12 -0700368 write_packages "APPS" "false" "" "APPS" >> "$ANDROIDMK"
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700369 fi
370 local PRIV_APPS=( $(prefix_match "priv-app/") )
371 if [ "${#PRIV_APPS[@]}" -gt "0" ]; then
Steve Kondika991cf12016-07-28 12:13:12 -0700372 write_packages "APPS" "false" "priv-app" "PRIV_APPS" >> "$ANDROIDMK"
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700373 fi
374 local V_APPS=( $(prefix_match "vendor/app/") )
375 if [ "${#V_APPS[@]}" -gt "0" ]; then
Steve Kondika991cf12016-07-28 12:13:12 -0700376 write_packages "APPS" "true" "" "V_APPS" >> "$ANDROIDMK"
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700377 fi
378 local V_PRIV_APPS=( $(prefix_match "vendor/priv-app/") )
379 if [ "${#V_PRIV_APPS[@]}" -gt "0" ]; then
Steve Kondika991cf12016-07-28 12:13:12 -0700380 write_packages "APPS" "true" "priv-app" "V_PRIV_APPS" >> "$ANDROIDMK"
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700381 fi
382
383 # Framework
384 local FRAMEWORK=( $(prefix_match "framework/") )
385 if [ "${#FRAMEWORK[@]}" -gt "0" ]; then
Steve Kondika991cf12016-07-28 12:13:12 -0700386 write_packages "JAVA_LIBRARIES" "false" "" "FRAMEWORK" >> "$ANDROIDMK"
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700387 fi
388
389 # Etc
390 local ETC=( $(prefix_match "etc/") )
391 if [ "${#ETC[@]}" -gt "0" ]; then
Steve Kondika991cf12016-07-28 12:13:12 -0700392 write_packages "ETC" "false" "" "ETC" >> "$ANDROIDMK"
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700393 fi
394 local V_ETC=( $(prefix_match "vendor/etc/") )
395 if [ "${#V_ETC[@]}" -gt "0" ]; then
Steve Kondika991cf12016-07-28 12:13:12 -0700396 write_packages "ETC" "false" "" "V_ETC" >> "$ANDROIDMK"
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700397 fi
398
399 # Executables
400 local BIN=( $(prefix_match "bin/") )
401 if [ "${#BIN[@]}" -gt "0" ]; then
Steve Kondika991cf12016-07-28 12:13:12 -0700402 write_packages "EXECUTABLES" "false" "" "BIN" >> "$ANDROIDMK"
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700403 fi
404 local V_BIN=( $(prefix_match "vendor/bin/") )
405 if [ "${#V_BIN[@]}" -gt "0" ]; then
Steve Kondika991cf12016-07-28 12:13:12 -0700406 write_packages "EXECUTABLES" "true" "" "V_BIN" >> "$ANDROIDMK"
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700407 fi
Steve Kondika991cf12016-07-28 12:13:12 -0700408 local SBIN=( $(prefix_match "sbin/") )
409 if [ "${#SBIN[@]}" -gt "0" ]; then
410 write_packages "EXECUTABLES" "false" "sbin" "SBIN" >> "$ANDROIDMK"
411 fi
412
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700413
414 # Actually write out the final PRODUCT_PACKAGES list
415 local PACKAGE_COUNT=${#PACKAGE_LIST[@]}
416
417 if [ "$PACKAGE_COUNT" -eq "0" ]; then
418 return 0
419 fi
420
421 printf '\n%s\n' "PRODUCT_PACKAGES += \\" >> "$PRODUCTMK"
422 for (( i=1; i<PACKAGE_COUNT+1; i++ )); do
423 local LINEEND=" \\"
424 if [ "$i" -eq "$PACKAGE_COUNT" ]; then
425 LINEEND=""
426 fi
427 printf ' %s%s\n' "${PACKAGE_LIST[$i-1]}" "$LINEEND" >> "$PRODUCTMK"
428 done
429}
430
431#
432# write_header:
433#
434# $1: file which will be written to
435#
436# writes out the copyright header with the current year.
437# note that this is not an append operation, and should
438# be executed first!
439#
440function write_header() {
Matt Mower8945f5e2017-01-07 14:08:17 -0600441 if [ -f $1 ]; then
442 rm $1
443 fi
444
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700445 YEAR=$(date +"%Y")
446
447 [ "$COMMON" -eq 1 ] && local DEVICE="$DEVICE_COMMON"
448
Matt Mower8945f5e2017-01-07 14:08:17 -0600449 NUM_REGEX='^[0-9]+$'
450 if [[ $INITIAL_COPYRIGHT_YEAR =~ $NUM_REGEX ]] && [ $INITIAL_COPYRIGHT_YEAR -le $YEAR ]; then
451 if [ $INITIAL_COPYRIGHT_YEAR -lt 2016 ]; then
452 printf "# Copyright (C) $INITIAL_COPYRIGHT_YEAR-2016 The CyanogenMod Project\n" > $1
453 elif [ $INITIAL_COPYRIGHT_YEAR -eq 2016 ]; then
454 printf "# Copyright (C) 2016 The CyanogenMod Project\n" > $1
455 fi
456 if [ $YEAR -eq 2017 ]; then
457 printf "# Copyright (C) 2017 The LineageOS Project\n" >> $1
458 elif [ $INITIAL_COPYRIGHT_YEAR -eq $YEAR ]; then
459 printf "# Copyright (C) $YEAR The LineageOS Project\n" >> $1
460 elif [ $INITIAL_COPYRIGHT_YEAR -le 2017 ]; then
461 printf "# Copyright (C) 2017-$YEAR The LineageOS Project\n" >> $1
462 else
463 printf "# Copyright (C) $INITIAL_COPYRIGHT_YEAR-$YEAR The LineageOS Project\n" >> $1
464 fi
465 else
466 printf "# Copyright (C) $YEAR The LineageOS Project\n" > $1
467 fi
468
469 cat << EOF >> $1
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700470#
471# Licensed under the Apache License, Version 2.0 (the "License");
472# you may not use this file except in compliance with the License.
473# You may obtain a copy of the License at
474#
475# http://www.apache.org/licenses/LICENSE-2.0
476#
477# Unless required by applicable law or agreed to in writing, software
478# distributed under the License is distributed on an "AS IS" BASIS,
479# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
480# See the License for the specific language governing permissions and
481# limitations under the License.
482
483# This file is generated by device/$VENDOR/$DEVICE/setup-makefiles.sh
484
485EOF
486}
487
488#
489# write_headers:
490#
491# $1: devices falling under common to be added to guard - optional
Rashed Abdel-Tawabd53bff12016-10-02 01:00:54 -0400492# $2: custom guard - optional
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700493#
494# Calls write_header for each of the makefiles and creates
495# the initial path declaration and device guard for the
496# Android.mk
497#
498function write_headers() {
499 write_header "$ANDROIDMK"
Rashed Abdel-Tawabd53bff12016-10-02 01:00:54 -0400500
501 GUARD="$2"
502 if [ -z "$GUARD" ]; then
503 GUARD="TARGET_DEVICE"
504 fi
505
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700506 cat << EOF >> "$ANDROIDMK"
507LOCAL_PATH := \$(call my-dir)
508
509EOF
510 if [ "$COMMON" -ne 1 ]; then
511 cat << EOF >> "$ANDROIDMK"
Rashed Abdel-Tawabd53bff12016-10-02 01:00:54 -0400512ifeq (\$($GUARD),$DEVICE)
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700513
514EOF
515 else
516 if [ -z "$1" ]; then
517 echo "Argument with devices to be added to guard must be set!"
518 exit 1
519 fi
520 cat << EOF >> "$ANDROIDMK"
Rashed Abdel-Tawabd53bff12016-10-02 01:00:54 -0400521ifneq (\$(filter $1,\$($GUARD)),)
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700522
523EOF
524 fi
525
526 write_header "$BOARDMK"
527 write_header "$PRODUCTMK"
528}
529
530#
531# write_footers:
532#
533# Closes the inital guard and any other finalization tasks. Must
534# be called as the final step.
535#
536function write_footers() {
537 cat << EOF >> "$ANDROIDMK"
538endif
539EOF
540}
541
542# Return success if adb is up and not in recovery
543function _adb_connected {
544 {
Steve Kondik7561d192016-09-01 21:40:27 -0700545 if [[ "$(adb get-state)" == device ]]
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700546 then
547 return 0
548 fi
549 } 2>/dev/null
550
551 return 1
552};
553
554#
Bruno Martins3b96ba52016-07-27 15:00:05 +0100555# parse_file_list:
556#
557# $1: input file
558#
559# Sets PRODUCT_PACKAGES and PRODUCT_COPY_FILES while parsing the input file
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700560#
561function parse_file_list() {
Bruno Martins3b96ba52016-07-27 15:00:05 +0100562 if [ -z "$1" ]; then
563 echo "An input file is expected!"
564 exit 1
565 elif [ ! -f "$1" ]; then
566 echo "Input file "$1" does not exist!"
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700567 exit 1
568 fi
569
570 PRODUCT_PACKAGES_LIST=()
Steve Kondik48f8df82016-08-14 03:55:08 -0700571 PRODUCT_PACKAGES_HASHES=()
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700572 PRODUCT_COPY_FILES_LIST=()
Steve Kondik48f8df82016-08-14 03:55:08 -0700573 PRODUCT_COPY_FILES_HASHES=()
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700574
575 while read -r line; do
576 if [ -z "$line" ]; then continue; fi
577
Steve Kondik48f8df82016-08-14 03:55:08 -0700578 # If the line has a pipe delimiter, a sha1 hash should follow.
579 # This indicates the file should be pinned and not overwritten
580 # when extracting files.
581 local SPLIT=(${line//\|/ })
582 local COUNT=${#SPLIT[@]}
583 local SPEC=${SPLIT[0]}
584 local HASH="x"
585 if [ "$COUNT" -gt "1" ]; then
586 HASH=${SPLIT[1]}
587 fi
588
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700589 # if line starts with a dash, it needs to be packaged
Steve Kondik48f8df82016-08-14 03:55:08 -0700590 if [[ "$SPEC" =~ ^- ]]; then
591 PRODUCT_PACKAGES_LIST+=("${SPEC#-}")
592 PRODUCT_PACKAGES_HASHES+=("$HASH")
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700593 else
Steve Kondik48f8df82016-08-14 03:55:08 -0700594 PRODUCT_COPY_FILES_LIST+=("$SPEC")
595 PRODUCT_COPY_FILES_HASHES+=("$HASH")
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700596 fi
597
598 done < <(egrep -v '(^#|^[[:space:]]*$)' "$1" | sort | uniq)
599}
600
601#
602# write_makefiles:
603#
604# $1: file containing the list of items to extract
605#
606# Calls write_product_copy_files and write_product_packages on
607# the given file and appends to the Android.mk as well as
608# the product makefile.
609#
610function write_makefiles() {
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700611 parse_file_list "$1"
612 write_product_copy_files
613 write_product_packages
614}
615
616#
Louis Popia516c2f2016-07-25 15:51:13 +0200617# append_firmware_calls_to_makefiles:
618#
619# Appends to Android.mk the calls to all images present in radio folder
620# (filesmap file used by releasetools to map firmware images should be kept in the device tree)
621#
622function append_firmware_calls_to_makefiles() {
623 cat << EOF >> "$ANDROIDMK"
624ifeq (\$(LOCAL_PATH)/radio, \$(wildcard \$(LOCAL_PATH)/radio))
625
626RADIO_FILES := \$(wildcard \$(LOCAL_PATH)/radio/*)
627\$(foreach f, \$(notdir \$(RADIO_FILES)), \\
628 \$(call add-radio-file,radio/\$(f)))
629\$(call add-radio-file,../../../device/$VENDOR/$DEVICE/radio/filesmap)
630
631endif
632
633EOF
634}
635
636#
Luca Stefani7f9fff22016-07-18 13:47:55 +0200637# get_file:
638#
639# $1: input file
640# $2: target file/folder
641# $3: source of the file (can be "adb" or a local folder)
642#
643# Silently extracts the input file to defined target
644# Returns success if file can be pulled from the device or found locally
645#
646function get_file() {
647 local SRC="$3"
648
649 if [ "$SRC" = "adb" ]; then
650 # try to pull
651 adb pull "$1" "$2" >/dev/null 2>&1 && return 0
652
653 return 1
654 else
655 # try to copy
Sam Mortimer2e994ce2016-10-05 09:50:49 -0700656 cp -r "$SRC/$1" "$2" 2>/dev/null && return 0
Luca Stefani7f9fff22016-07-18 13:47:55 +0200657
658 return 1
659 fi
660};
661
662#
663# oat2dex:
664#
665# $1: extracted apk|jar (to check if deodex is required)
666# $2: odexed apk|jar to deodex
667# $3: source of the odexed apk|jar
668#
669# Convert apk|jar .odex in the corresposing classes.dex
670#
671function oat2dex() {
672 local CM_TARGET="$1"
673 local OEM_TARGET="$2"
674 local SRC="$3"
675 local TARGET=
676 local OAT=
677
678 if [ -z "$BAKSMALIJAR" ] || [ -z "$SMALIJAR" ]; then
679 export BAKSMALIJAR="$CM_ROOT"/vendor/cm/build/tools/smali/baksmali.jar
680 export SMALIJAR="$CM_ROOT"/vendor/cm/build/tools/smali/smali.jar
681 fi
682
683 # Extract existing boot.oats to the temp folder
684 if [ -z "$ARCHES" ]; then
Sam Mortimer2e994ce2016-10-05 09:50:49 -0700685 echo "Checking if system is odexed and locating boot.oats..."
Luca Stefani7f9fff22016-07-18 13:47:55 +0200686 for ARCH in "arm64" "arm" "x86_64" "x86"; do
Sam Mortimer2e994ce2016-10-05 09:50:49 -0700687 mkdir -p "$TMPDIR/system/framework/$ARCH"
688 if get_file "system/framework/$ARCH/" "$TMPDIR/system/framework/" "$SRC"; then
Luca Stefani7f9fff22016-07-18 13:47:55 +0200689 ARCHES+="$ARCH "
Sam Mortimer2e994ce2016-10-05 09:50:49 -0700690 else
691 rmdir "$TMPDIR/system/framework/$ARCH"
Luca Stefani7f9fff22016-07-18 13:47:55 +0200692 fi
693 done
694 fi
695
696 if [ -z "$ARCHES" ]; then
697 FULLY_DEODEXED=1 && return 0 # system is fully deodexed, return
698 fi
699
Steve Kondik48f8df82016-08-14 03:55:08 -0700700 if [ ! -f "$CM_TARGET" ]; then
701 return;
702 fi
703
Luca Stefani7f9fff22016-07-18 13:47:55 +0200704 if grep "classes.dex" "$CM_TARGET" >/dev/null; then
705 return 0 # target apk|jar is already odexed, return
706 fi
707
708 for ARCH in $ARCHES; do
Sam Mortimer2e994ce2016-10-05 09:50:49 -0700709 BOOTOAT="$TMPDIR/system/framework/$ARCH/boot.oat"
Luca Stefani7f9fff22016-07-18 13:47:55 +0200710
711 local OAT="$(dirname "$OEM_TARGET")/oat/$ARCH/$(basename "$OEM_TARGET" ."${OEM_TARGET##*.}").odex"
712
713 if get_file "$OAT" "$TMPDIR" "$SRC"; then
Sam Mortimer2e994ce2016-10-05 09:50:49 -0700714 java -jar "$BAKSMALIJAR" deodex -o "$TMPDIR/dexout" -b "$BOOTOAT" -d "$TMPDIR" "$TMPDIR/$(basename "$OAT")"
Luca Stefani7f9fff22016-07-18 13:47:55 +0200715 elif [[ "$CM_TARGET" =~ .jar$ ]]; then
Gabriele M4cf635a2017-01-05 22:10:00 +0100716 # try to extract classes.dex from boot.oats for framework jars
717 JAROAT="$TMPDIR/system/framework/$ARCH/boot-$(basename ${OEM_TARGET%.*}).oat"
718 if [ ! -f "$JAROAT" ]; then
719 JAROAT=$BOOTOAT;
720 fi
721 java -jar "$BAKSMALIJAR" deodex -o "$TMPDIR/dexout" -b "$BOOTOAT" -d "$TMPDIR" "$JAROAT/$OEM_TARGET"
Luca Stefani7f9fff22016-07-18 13:47:55 +0200722 else
723 continue
724 fi
725
Sam Mortimer2e994ce2016-10-05 09:50:49 -0700726 java -jar "$SMALIJAR" assemble "$TMPDIR/dexout" -o "$TMPDIR/classes.dex" && break
Luca Stefani7f9fff22016-07-18 13:47:55 +0200727 done
728
729 rm -rf "$TMPDIR/dexout"
730}
731
732#
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700733# init_adb_connection:
734#
735# Starts adb server and waits for the device
736#
737function init_adb_connection() {
738 adb start-server # Prevent unexpected starting server message from adb get-state in the next line
739 if ! _adb_connected; then
740 echo "No device is online. Waiting for one..."
741 echo "Please connect USB and/or enable USB debugging"
742 until _adb_connected; do
743 sleep 1
744 done
745 echo "Device Found."
746 fi
747
748 # Retrieve IP and PORT info if we're using a TCP connection
749 TCPIPPORT=$(adb devices | egrep '^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+:[0-9]+[^0-9]+' \
750 | head -1 | awk '{print $1}')
751 adb root &> /dev/null
752 sleep 0.3
753 if [ -n "$TCPIPPORT" ]; then
754 # adb root just killed our connection
755 # so reconnect...
756 adb connect "$TCPIPPORT"
757 fi
758 adb wait-for-device &> /dev/null
759 sleep 0.3
760}
761
762#
Luca Stefani3a030122016-07-30 12:08:25 +0200763# fix_xml:
764#
765# $1: xml file to fix
766#
767function fix_xml() {
768 local XML="$1"
769 local TEMP_XML="$TMPDIR/`basename "$XML"`.temp"
770
771 grep '^<?xml version' "$XML" > "$TEMP_XML"
772 grep -v '^<?xml version' "$XML" >> "$TEMP_XML"
773
774 mv "$TEMP_XML" "$XML"
775}
776
777#
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700778# extract:
779#
780# $1: file containing the list of items to extract
781# $2: path to extracted system folder, or "adb" to extract from device
782#
783function extract() {
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700784 if [ -z "$OUTDIR" ]; then
785 echo "Output dir not set!"
786 exit 1
787 fi
788
789 parse_file_list "$1"
790
791 # Allow failing, so we can try $DEST and/or $FILE
792 set +e
793
794 local FILELIST=( ${PRODUCT_COPY_FILES_LIST[@]} ${PRODUCT_PACKAGES_LIST[@]} )
Steve Kondik48f8df82016-08-14 03:55:08 -0700795 local HASHLIST=( ${PRODUCT_COPY_FILES_HASHES[@]} ${PRODUCT_PACKAGES_HASHES[@]} )
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700796 local COUNT=${#FILELIST[@]}
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700797 local SRC="$2"
Steve Kondika991cf12016-07-28 12:13:12 -0700798 local OUTPUT_ROOT="$CM_ROOT"/"$OUTDIR"/proprietary
Steve Kondik48f8df82016-08-14 03:55:08 -0700799 local OUTPUT_TMP="$TMPDIR"/"$OUTDIR"/proprietary
800
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700801 if [ "$SRC" = "adb" ]; then
802 init_adb_connection
803 fi
804
805 if [ "$VENDOR_STATE" -eq "0" ]; then
Steve Kondika991cf12016-07-28 12:13:12 -0700806 echo "Cleaning output directory ($OUTPUT_ROOT).."
Steve Kondik48f8df82016-08-14 03:55:08 -0700807 rm -rf "${OUTPUT_TMP:?}"
808 mkdir -p "${OUTPUT_TMP:?}"
Adrian DC3c6bdac2017-01-15 14:03:26 +0100809 if [ -d "$OUTPUT_ROOT" ]; then
810 mv "${OUTPUT_ROOT:?}/"* "${OUTPUT_TMP:?}/"
811 fi
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700812 VENDOR_STATE=1
813 fi
814
815 echo "Extracting $COUNT files in $1 from $SRC:"
816
817 for (( i=1; i<COUNT+1; i++ )); do
Steve Kondika991cf12016-07-28 12:13:12 -0700818
819 local FROM=$(target_file "${FILELIST[$i-1]}")
820 local ARGS=$(target_args "${FILELIST[$i-1]}")
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700821 local SPLIT=(${FILELIST[$i-1]//:/ })
822 local FILE="${SPLIT[0]#-}"
Steve Kondika991cf12016-07-28 12:13:12 -0700823 local OUTPUT_DIR="$OUTPUT_ROOT"
Steve Kondik48f8df82016-08-14 03:55:08 -0700824 local TMP_DIR="$OUTPUT_TMP"
Steve Kondika991cf12016-07-28 12:13:12 -0700825 local TARGET=
826
827 if [ "$ARGS" = "rootfs" ]; then
828 TARGET="$FROM"
829 OUTPUT_DIR="$OUTPUT_DIR/rootfs"
Steve Kondik48f8df82016-08-14 03:55:08 -0700830 TMP_DIR="$TMP_DIR/rootfs"
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700831 else
Steve Kondika991cf12016-07-28 12:13:12 -0700832 TARGET="system/$FROM"
833 FILE="system/$FILE"
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700834 fi
Steve Kondika991cf12016-07-28 12:13:12 -0700835
836 if [ "$SRC" = "adb" ]; then
837 printf ' - %s .. ' "/$TARGET"
838 else
839 printf ' - %s \n' "/$TARGET"
840 fi
841
842 local DIR=$(dirname "$FROM")
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700843 if [ ! -d "$OUTPUT_DIR/$DIR" ]; then
844 mkdir -p "$OUTPUT_DIR/$DIR"
845 fi
Steve Kondika991cf12016-07-28 12:13:12 -0700846 local DEST="$OUTPUT_DIR/$FROM"
847
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700848 if [ "$SRC" = "adb" ]; then
849 # Try CM target first
Steve Kondika991cf12016-07-28 12:13:12 -0700850 adb pull "/$TARGET" "$DEST"
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700851 # if file does not exist try OEM target
852 if [ "$?" != "0" ]; then
Steve Kondika991cf12016-07-28 12:13:12 -0700853 adb pull "/$FILE" "$DEST"
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700854 fi
855 else
Christopher R. Palmer052d9d92017-03-04 05:12:29 -0500856 # Try CM target first
857 if [ -f "$SRC/$TARGET" ]; then
Steve Kondika991cf12016-07-28 12:13:12 -0700858 cp "$SRC/$TARGET" "$DEST"
Christopher R. Palmer052d9d92017-03-04 05:12:29 -0500859 # if file does not exist try OEM target
860 elif [ -f "$SRC/$FILE" ]; then
861 cp "$SRC/$FILE" "$DEST"
Steve Kondik48f8df82016-08-14 03:55:08 -0700862 else
863 printf ' !! file not found in source\n'
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700864 fi
865 fi
Steve Kondika991cf12016-07-28 12:13:12 -0700866
Luca Stefani7f9fff22016-07-18 13:47:55 +0200867 if [ "$?" == "0" ]; then
868 # Deodex apk|jar if that's the case
869 if [[ "$FULLY_DEODEXED" -ne "1" && "$DEST" =~ .(apk|jar)$ ]]; then
870 oat2dex "$DEST" "$FILE" "$SRC"
871 if [ -f "$TMPDIR/classes.dex" ]; then
872 zip -gjq "$DEST" "$TMPDIR/classes.dex"
873 rm "$TMPDIR/classes.dex"
874 printf ' (updated %s from odex files)\n' "/$FILE"
875 fi
Luca Stefani3a030122016-07-30 12:08:25 +0200876 elif [[ "$DEST" =~ .xml$ ]]; then
877 fix_xml "$DEST"
Luca Stefani7f9fff22016-07-18 13:47:55 +0200878 fi
879 fi
880
Steve Kondik48f8df82016-08-14 03:55:08 -0700881 # Check pinned files
882 local HASH="${HASHLIST[$i-1]}"
Steve Kondik79fa59b2016-09-02 21:10:02 -0700883 if [ "$DISABLE_PINNING" != "1" ] && [ ! -z "$HASH" ] && [ "$HASH" != "x" ]; then
Steve Kondik48f8df82016-08-14 03:55:08 -0700884 local KEEP=""
885 local TMP="$TMP_DIR/$FROM"
886 if [ -f "$TMP" ]; then
887 if [ ! -f "$DEST" ]; then
888 KEEP="1"
889 else
Rashed Abdel-Tawab5b38c4f2016-11-23 23:00:37 -0500890 if [ "$(uname)" == "Darwin" ]; then
891 local DEST_HASH=$(shasum "$DEST" | awk '{print $1}' )
892 else
893 local DEST_HASH=$(sha1sum "$DEST" | awk '{print $1}' )
894 fi
Steve Kondik48f8df82016-08-14 03:55:08 -0700895 if [ "$DEST_HASH" != "$HASH" ]; then
896 KEEP="1"
897 fi
898 fi
899 if [ "$KEEP" = "1" ]; then
Rashed Abdel-Tawab5b38c4f2016-11-23 23:00:37 -0500900 if [ "$(uname)" == "Darwin" ]; then
901 local TMP_HASH=$(shasum "$TMP" | awk '{print $1}' )
902 else
903 local TMP_HASH=$(sha1sum "$TMP" | awk '{print $1}' )
904 fi
Steve Kondik48f8df82016-08-14 03:55:08 -0700905 if [ "$TMP_HASH" = "$HASH" ]; then
906 printf ' + (keeping pinned file with hash %s)\n' "$HASH"
907 cp -p "$TMP" "$DEST"
908 fi
909 fi
910 fi
Steve Kondika991cf12016-07-28 12:13:12 -0700911 fi
Steve Kondik48f8df82016-08-14 03:55:08 -0700912
913 if [ -f "$DEST" ]; then
914 local TYPE="${DIR##*/}"
915 if [ "$TYPE" = "bin" -o "$TYPE" = "sbin" ]; then
916 chmod 755 "$DEST"
917 else
918 chmod 644 "$DEST"
919 fi
920 fi
921
Steve Kondik4e2aaab2016-07-15 10:39:58 -0700922 done
923
924 # Don't allow failing
925 set -e
926}
Louis Popia516c2f2016-07-25 15:51:13 +0200927
928#
929# extract_firmware:
930#
931# $1: file containing the list of items to extract
932# $2: path to extracted radio folder
933#
934function extract_firmware() {
935 if [ -z "$OUTDIR" ]; then
936 echo "Output dir not set!"
937 exit 1
938 fi
939
940 parse_file_list "$1"
941
942 # Don't allow failing
943 set -e
944
945 local FILELIST=( ${PRODUCT_COPY_FILES_LIST[@]} )
946 local COUNT=${#FILELIST[@]}
947 local SRC="$2"
948 local OUTPUT_DIR="$CM_ROOT"/"$OUTDIR"/radio
949
950 if [ "$VENDOR_RADIO_STATE" -eq "0" ]; then
951 echo "Cleaning firmware output directory ($OUTPUT_DIR).."
952 rm -rf "${OUTPUT_DIR:?}/"*
953 VENDOR_RADIO_STATE=1
954 fi
955
956 echo "Extracting $COUNT files in $1 from $SRC:"
957
958 for (( i=1; i<COUNT+1; i++ )); do
959 local FILE="${FILELIST[$i-1]}"
960 printf ' - %s \n' "/radio/$FILE"
961
962 if [ ! -d "$OUTPUT_DIR" ]; then
963 mkdir -p "$OUTPUT_DIR"
964 fi
965 cp "$SRC/$FILE" "$OUTPUT_DIR/$FILE"
966 chmod 644 "$OUTPUT_DIR/$FILE"
967 done
968}