blob: 0e05be1618965d1d49414249a4ca758d26dda4e4 [file] [log] [blame]
Steve Kondik5bd66602016-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=()
19PRODUCT_COPY_FILES_HASHES=()
20PRODUCT_PACKAGES_LIST=()
21PRODUCT_PACKAGES_HASHES=()
22PACKAGE_LIST=()
23VENDOR_STATE=-1
24VENDOR_RADIO_STATE=-1
25COMMON=-1
26ARCHES=
27FULLY_DEODEXED=-1
28
Rashed Abdel-Tawabe7d9b5c2017-08-05 23:11:35 -040029TMPDIR=$(mktemp -d)
Steve Kondik5bd66602016-07-15 10:39:58 -070030
31#
32# cleanup
33#
34# kill our tmpfiles with fire on exit
35#
36function cleanup() {
37 rm -rf "${TMPDIR:?}"
38}
39
40trap cleanup EXIT INT TERM ERR
41
42#
43# setup_vendor
44#
45# $1: device name
46# $2: vendor name
47# $3: CM root directory
48# $4: is common device - optional, default to false
49# $5: cleanup - optional, default to true
Jake Whatley9843b322017-01-25 21:49:16 -050050# $6: custom vendor makefile name - optional, default to false
Steve Kondik5bd66602016-07-15 10:39:58 -070051#
52# Must be called before any other functions can be used. This
53# sets up the internal state for a new vendor configuration.
54#
55function setup_vendor() {
56 local DEVICE="$1"
57 if [ -z "$DEVICE" ]; then
58 echo "\$DEVICE must be set before including this script!"
59 exit 1
60 fi
61
62 export VENDOR="$2"
63 if [ -z "$VENDOR" ]; then
64 echo "\$VENDOR must be set before including this script!"
65 exit 1
66 fi
67
68 export CM_ROOT="$3"
69 if [ ! -d "$CM_ROOT" ]; then
70 echo "\$CM_ROOT must be set and valid before including this script!"
71 exit 1
72 fi
73
74 export OUTDIR=vendor/"$VENDOR"/"$DEVICE"
75 if [ ! -d "$CM_ROOT/$OUTDIR" ]; then
76 mkdir -p "$CM_ROOT/$OUTDIR"
77 fi
78
Jake Whatley9843b322017-01-25 21:49:16 -050079 VNDNAME="$6"
80 if [ -z "$VNDNAME" ]; then
81 VNDNAME="$DEVICE"
82 fi
83
Jake Whatleycb7cd072016-09-18 20:55:12 +020084 export PRODUCTMK="$CM_ROOT"/"$OUTDIR"/device-vendor.mk
Steve Kondik5bd66602016-07-15 10:39:58 -070085 export ANDROIDMK="$CM_ROOT"/"$OUTDIR"/Android.mk
86 export BOARDMK="$CM_ROOT"/"$OUTDIR"/BoardConfigVendor.mk
87
88 if [ "$4" == "true" ] || [ "$4" == "1" ]; then
89 COMMON=1
90 else
91 COMMON=0
92 fi
93
Gabriele Mc44696d2017-05-01 18:22:04 +020094 if [ "$5" == "false" ] || [ "$5" == "0" ]; then
Steve Kondik5bd66602016-07-15 10:39:58 -070095 VENDOR_STATE=1
96 VENDOR_RADIO_STATE=1
97 else
98 VENDOR_STATE=0
99 VENDOR_RADIO_STATE=0
100 fi
101}
102
103#
104# target_file:
105#
106# $1: colon delimited list
107#
108# Returns destination filename without args
109#
110function target_file() {
111 local LINE="$1"
112 local SPLIT=(${LINE//:/ })
113 local COUNT=${#SPLIT[@]}
114 if [ "$COUNT" -gt "1" ]; then
115 if [[ "${SPLIT[1]}" =~ .*/.* ]]; then
116 printf '%s\n' "${SPLIT[1]}"
117 return 0
118 fi
119 fi
120 printf '%s\n' "${SPLIT[0]}"
121}
122
123#
124# target_args:
125#
126# $1: colon delimited list
127#
128# Returns optional arguments (last value) for given target
129#
130function target_args() {
131 local LINE="$1"
132 local SPLIT=(${LINE//:/ })
133 local COUNT=${#SPLIT[@]}
134 if [ "$COUNT" -gt "1" ]; then
135 if [[ ! "${SPLIT[$COUNT-1]}" =~ .*/.* ]]; then
136 printf '%s\n' "${SPLIT[$COUNT-1]}"
137 fi
138 fi
139}
140
141#
142# prefix_match:
143#
144# $1: the prefix to match on
145#
146# Internal function which loops thru the packages list and returns a new
147# list containing the matched files with the prefix stripped away.
148#
149function prefix_match() {
150 local PREFIX="$1"
151 for FILE in "${PRODUCT_PACKAGES_LIST[@]}"; do
152 if [[ "$FILE" =~ ^"$PREFIX" ]]; then
153 printf '%s\n' "${FILE#$PREFIX}"
154 fi
155 done
156}
157
158#
Rashed Abdel-Tawab7fd3ccb2017-10-07 14:18:39 -0400159# prefix_match_file:
160#
161# $1: the prefix to match on
162# $2: the file to match the prefix for
163#
164# Internal function which returns true if a filename contains the
165# specified prefix.
166#
167function prefix_match_file() {
168 local PREFIX="$1"
169 local FILE="$2"
170 if [[ "$FILE" =~ ^"$PREFIX" ]]; then
171 return 0
172 else
173 return 1
174 fi
175}
176
177#
178# truncate_file
179#
180# $1: the filename to truncate
181# $2: the argument to output the truncated filename to
182#
183# Internal function which truncates a filename by removing the first dir
184# in the path. ex. vendor/lib/libsdmextension.so -> lib/libsdmextension.so
185#
186function truncate_file() {
187 local FILE="$1"
188 RETURN_FILE="$2"
189 local FIND="${FILE%%/*}"
190 local LOCATION="${#FIND}+1"
191 echo ${FILE:$LOCATION}
192}
193
194#
Steve Kondik5bd66602016-07-15 10:39:58 -0700195# write_product_copy_files:
196#
Rashed Abdel-Tawab7fd3ccb2017-10-07 14:18:39 -0400197# $1: make treble compatible makefile - optional, default to false
198#
Steve Kondik5bd66602016-07-15 10:39:58 -0700199# Creates the PRODUCT_COPY_FILES section in the product makefile for all
200# items in the list which do not start with a dash (-).
201#
202function write_product_copy_files() {
203 local COUNT=${#PRODUCT_COPY_FILES_LIST[@]}
204 local TARGET=
205 local FILE=
206 local LINEEND=
Rashed Abdel-Tawab7fd3ccb2017-10-07 14:18:39 -0400207 local TREBLE_COMPAT=$1
Steve Kondik5bd66602016-07-15 10:39:58 -0700208
209 if [ "$COUNT" -eq "0" ]; then
210 return 0
211 fi
212
213 printf '%s\n' "PRODUCT_COPY_FILES += \\" >> "$PRODUCTMK"
214 for (( i=1; i<COUNT+1; i++ )); do
215 FILE="${PRODUCT_COPY_FILES_LIST[$i-1]}"
216 LINEEND=" \\"
217 if [ "$i" -eq "$COUNT" ]; then
218 LINEEND=""
219 fi
220
221 TARGET=$(target_file "$FILE")
Rashed Abdel-Tawab7fd3ccb2017-10-07 14:18:39 -0400222 if [ "$TREBLE_COMPAT" == "true" ] || [ "$TREBLE_COMPAT" == "1" ]; then
223 if prefix_match_file "vendor/" $TARGET ; then
224 local OUTTARGET=$(truncate_file $TARGET)
225 printf ' %s/proprietary/%s:$(TARGET_COPY_OUT_VENDOR)/%s%s\n' \
226 "$OUTDIR" "$TARGET" "$OUTTARGET" "$LINEEND" >> "$PRODUCTMK"
227 else
228 printf ' %s/proprietary/%s:system/%s%s\n' \
229 "$OUTDIR" "$TARGET" "$TARGET" "$LINEEND" >> "$PRODUCTMK"
230 fi
231 else
232 printf ' %s/proprietary/%s:system/%s%s\n' \
233 "$OUTDIR" "$TARGET" "$TARGET" "$LINEEND" >> "$PRODUCTMK"
234 fi
Steve Kondik5bd66602016-07-15 10:39:58 -0700235 done
236 return 0
237}
238
239#
240# write_packages:
241#
242# $1: The LOCAL_MODULE_CLASS for the given module list
243# $2: "true" if this package is part of the vendor/ path
244# $3: type-specific extra flags
245# $4: Name of the array holding the target list
246#
247# Internal function which writes out the BUILD_PREBUILT stanzas
248# for all modules in the list. This is called by write_product_packages
249# after the modules are categorized.
250#
251function write_packages() {
252
253 local CLASS="$1"
254 local VENDOR_PKG="$2"
255 local EXTRA="$3"
256
257 # Yes, this is a horrible hack - we create a new array using indirection
258 local ARR_NAME="$4[@]"
259 local FILELIST=("${!ARR_NAME}")
260
261 local FILE=
262 local ARGS=
263 local BASENAME=
264 local EXTENSION=
265 local PKGNAME=
266 local SRC=
267
268 for P in "${FILELIST[@]}"; do
269 FILE=$(target_file "$P")
270 ARGS=$(target_args "$P")
271
272 BASENAME=$(basename "$FILE")
M1cha3e8c5bf2017-01-04 09:00:11 +0100273 DIRNAME=$(dirname "$FILE")
Steve Kondik5bd66602016-07-15 10:39:58 -0700274 EXTENSION=${BASENAME##*.}
275 PKGNAME=${BASENAME%.*}
276
277 # Add to final package list
278 PACKAGE_LIST+=("$PKGNAME")
279
280 SRC="proprietary"
281 if [ "$VENDOR_PKG" = "true" ]; then
282 SRC+="/vendor"
283 fi
284
285 printf 'include $(CLEAR_VARS)\n'
286 printf 'LOCAL_MODULE := %s\n' "$PKGNAME"
287 printf 'LOCAL_MODULE_OWNER := %s\n' "$VENDOR"
288 if [ "$CLASS" = "SHARED_LIBRARIES" ]; then
289 if [ "$EXTRA" = "both" ]; then
290 printf 'LOCAL_SRC_FILES_64 := %s/lib64/%s\n' "$SRC" "$FILE"
291 printf 'LOCAL_SRC_FILES_32 := %s/lib/%s\n' "$SRC" "$FILE"
292 #if [ "$VENDOR_PKG" = "true" ]; then
293 # echo "LOCAL_MODULE_PATH_64 := \$(TARGET_OUT_VENDOR_SHARED_LIBRARIES)"
294 # echo "LOCAL_MODULE_PATH_32 := \$(2ND_TARGET_OUT_VENDOR_SHARED_LIBRARIES)"
295 #else
296 # echo "LOCAL_MODULE_PATH_64 := \$(TARGET_OUT_SHARED_LIBRARIES)"
297 # echo "LOCAL_MODULE_PATH_32 := \$(2ND_TARGET_OUT_SHARED_LIBRARIES)"
298 #fi
299 elif [ "$EXTRA" = "64" ]; then
300 printf 'LOCAL_SRC_FILES := %s/lib64/%s\n' "$SRC" "$FILE"
301 else
302 printf 'LOCAL_SRC_FILES := %s/lib/%s\n' "$SRC" "$FILE"
303 fi
304 if [ "$EXTRA" != "none" ]; then
305 printf 'LOCAL_MULTILIB := %s\n' "$EXTRA"
306 fi
307 elif [ "$CLASS" = "APPS" ]; then
Jake Whatley9843b322017-01-25 21:49:16 -0500308 if [ -z "$ARGS" ]; then
309 if [ "$EXTRA" = "priv-app" ]; then
310 SRC="$SRC/priv-app"
311 else
312 SRC="$SRC/app"
313 fi
Steve Kondik5bd66602016-07-15 10:39:58 -0700314 fi
315 printf 'LOCAL_SRC_FILES := %s/%s\n' "$SRC" "$FILE"
316 local CERT=platform
317 if [ ! -z "$ARGS" ]; then
318 CERT="$ARGS"
319 fi
320 printf 'LOCAL_CERTIFICATE := %s\n' "$CERT"
321 elif [ "$CLASS" = "JAVA_LIBRARIES" ]; then
322 printf 'LOCAL_SRC_FILES := %s/framework/%s\n' "$SRC" "$FILE"
Elektroschmockdd792302016-10-04 21:11:43 +0200323 local CERT=platform
324 if [ ! -z "$ARGS" ]; then
325 CERT="$ARGS"
326 fi
327 printf 'LOCAL_CERTIFICATE := %s\n' "$CERT"
Steve Kondik5bd66602016-07-15 10:39:58 -0700328 elif [ "$CLASS" = "ETC" ]; then
329 printf 'LOCAL_SRC_FILES := %s/etc/%s\n' "$SRC" "$FILE"
330 elif [ "$CLASS" = "EXECUTABLES" ]; then
331 if [ "$ARGS" = "rootfs" ]; then
332 SRC="$SRC/rootfs"
333 if [ "$EXTRA" = "sbin" ]; then
334 SRC="$SRC/sbin"
335 printf '%s\n' "LOCAL_MODULE_PATH := \$(TARGET_ROOT_OUT_SBIN)"
336 printf '%s\n' "LOCAL_UNSTRIPPED_PATH := \$(TARGET_ROOT_OUT_SBIN_UNSTRIPPED)"
337 fi
338 else
339 SRC="$SRC/bin"
340 fi
341 printf 'LOCAL_SRC_FILES := %s/%s\n' "$SRC" "$FILE"
342 unset EXTENSION
343 else
344 printf 'LOCAL_SRC_FILES := %s/%s\n' "$SRC" "$FILE"
345 fi
346 printf 'LOCAL_MODULE_TAGS := optional\n'
347 printf 'LOCAL_MODULE_CLASS := %s\n' "$CLASS"
Hashbang173575f3bb2016-08-28 20:38:45 -0400348 if [ "$CLASS" = "APPS" ]; then
349 printf 'LOCAL_DEX_PREOPT := false\n'
350 fi
Steve Kondik5bd66602016-07-15 10:39:58 -0700351 if [ ! -z "$EXTENSION" ]; then
352 printf 'LOCAL_MODULE_SUFFIX := .%s\n' "$EXTENSION"
353 fi
M1cha3e8c5bf2017-01-04 09:00:11 +0100354 if [ "$CLASS" = "SHARED_LIBRARIES" ] || [ "$CLASS" = "EXECUTABLES" ]; then
355 if [ "$DIRNAME" != "." ]; then
356 printf 'LOCAL_MODULE_RELATIVE_PATH := %s\n' "$DIRNAME"
357 fi
358 fi
Steve Kondik5bd66602016-07-15 10:39:58 -0700359 if [ "$EXTRA" = "priv-app" ]; then
360 printf 'LOCAL_PRIVILEGED_MODULE := true\n'
361 fi
362 if [ "$VENDOR_PKG" = "true" ]; then
363 printf 'LOCAL_PROPRIETARY_MODULE := true\n'
364 fi
365 printf 'include $(BUILD_PREBUILT)\n\n'
366 done
367}
368
369#
370# write_product_packages:
371#
372# This function will create BUILD_PREBUILT entries in the
373# Android.mk and associated PRODUCT_PACKAGES list in the
374# product makefile for all files in the blob list which
375# start with a single dash (-) character.
376#
377function write_product_packages() {
378 PACKAGE_LIST=()
379
380 local COUNT=${#PRODUCT_PACKAGES_LIST[@]}
381
382 if [ "$COUNT" = "0" ]; then
383 return 0
384 fi
385
386 # Figure out what's 32-bit, what's 64-bit, and what's multilib
387 # I really should not be doing this in bash due to shitty array passing :(
388 local T_LIB32=( $(prefix_match "lib/") )
389 local T_LIB64=( $(prefix_match "lib64/") )
390 local MULTILIBS=( $(comm -12 <(printf '%s\n' "${T_LIB32[@]}") <(printf '%s\n' "${T_LIB64[@]}")) )
391 local LIB32=( $(comm -23 <(printf '%s\n' "${T_LIB32[@]}") <(printf '%s\n' "${MULTILIBS[@]}")) )
392 local LIB64=( $(comm -23 <(printf '%s\n' "${T_LIB64[@]}") <(printf '%s\n' "${MULTILIBS[@]}")) )
393
394 if [ "${#MULTILIBS[@]}" -gt "0" ]; then
395 write_packages "SHARED_LIBRARIES" "false" "both" "MULTILIBS" >> "$ANDROIDMK"
396 fi
397 if [ "${#LIB32[@]}" -gt "0" ]; then
398 write_packages "SHARED_LIBRARIES" "false" "32" "LIB32" >> "$ANDROIDMK"
399 fi
400 if [ "${#LIB64[@]}" -gt "0" ]; then
401 write_packages "SHARED_LIBRARIES" "false" "64" "LIB64" >> "$ANDROIDMK"
402 fi
403
404 local T_V_LIB32=( $(prefix_match "vendor/lib/") )
405 local T_V_LIB64=( $(prefix_match "vendor/lib64/") )
406 local V_MULTILIBS=( $(comm -12 <(printf '%s\n' "${T_V_LIB32[@]}") <(printf '%s\n' "${T_V_LIB64[@]}")) )
407 local V_LIB32=( $(comm -23 <(printf '%s\n' "${T_V_LIB32[@]}") <(printf '%s\n' "${V_MULTILIBS[@]}")) )
408 local V_LIB64=( $(comm -23 <(printf '%s\n' "${T_V_LIB64[@]}") <(printf '%s\n' "${V_MULTILIBS[@]}")) )
409
410 if [ "${#V_MULTILIBS[@]}" -gt "0" ]; then
411 write_packages "SHARED_LIBRARIES" "true" "both" "V_MULTILIBS" >> "$ANDROIDMK"
412 fi
413 if [ "${#V_LIB32[@]}" -gt "0" ]; then
414 write_packages "SHARED_LIBRARIES" "true" "32" "V_LIB32" >> "$ANDROIDMK"
415 fi
416 if [ "${#V_LIB64[@]}" -gt "0" ]; then
417 write_packages "SHARED_LIBRARIES" "true" "64" "V_LIB64" >> "$ANDROIDMK"
418 fi
419
420 # Apps
421 local APPS=( $(prefix_match "app/") )
422 if [ "${#APPS[@]}" -gt "0" ]; then
423 write_packages "APPS" "false" "" "APPS" >> "$ANDROIDMK"
424 fi
425 local PRIV_APPS=( $(prefix_match "priv-app/") )
426 if [ "${#PRIV_APPS[@]}" -gt "0" ]; then
427 write_packages "APPS" "false" "priv-app" "PRIV_APPS" >> "$ANDROIDMK"
428 fi
429 local V_APPS=( $(prefix_match "vendor/app/") )
430 if [ "${#V_APPS[@]}" -gt "0" ]; then
431 write_packages "APPS" "true" "" "V_APPS" >> "$ANDROIDMK"
432 fi
433 local V_PRIV_APPS=( $(prefix_match "vendor/priv-app/") )
434 if [ "${#V_PRIV_APPS[@]}" -gt "0" ]; then
435 write_packages "APPS" "true" "priv-app" "V_PRIV_APPS" >> "$ANDROIDMK"
436 fi
437
438 # Framework
439 local FRAMEWORK=( $(prefix_match "framework/") )
440 if [ "${#FRAMEWORK[@]}" -gt "0" ]; then
441 write_packages "JAVA_LIBRARIES" "false" "" "FRAMEWORK" >> "$ANDROIDMK"
442 fi
Christian Oder974b5902017-10-08 23:15:52 +0200443 local V_FRAMEWORK=( $(prefix_match "vendor/framework/") )
Michael Bestas26eb01e2018-02-27 22:31:55 +0200444 if [ "${#V_FRAMEWORK[@]}" -gt "0" ]; then
Christian Oder974b5902017-10-08 23:15:52 +0200445 write_packages "JAVA_LIBRARIES" "true" "" "V_FRAMEWORK" >> "$ANDROIDMK"
446 fi
Steve Kondik5bd66602016-07-15 10:39:58 -0700447
448 # Etc
449 local ETC=( $(prefix_match "etc/") )
450 if [ "${#ETC[@]}" -gt "0" ]; then
451 write_packages "ETC" "false" "" "ETC" >> "$ANDROIDMK"
452 fi
453 local V_ETC=( $(prefix_match "vendor/etc/") )
454 if [ "${#V_ETC[@]}" -gt "0" ]; then
Rashed Abdel-Tawabcc98bc32017-10-08 17:33:42 -0400455 write_packages "ETC" "true" "" "V_ETC" >> "$ANDROIDMK"
Steve Kondik5bd66602016-07-15 10:39:58 -0700456 fi
457
458 # Executables
459 local BIN=( $(prefix_match "bin/") )
460 if [ "${#BIN[@]}" -gt "0" ]; then
461 write_packages "EXECUTABLES" "false" "" "BIN" >> "$ANDROIDMK"
462 fi
463 local V_BIN=( $(prefix_match "vendor/bin/") )
464 if [ "${#V_BIN[@]}" -gt "0" ]; then
465 write_packages "EXECUTABLES" "true" "" "V_BIN" >> "$ANDROIDMK"
466 fi
467 local SBIN=( $(prefix_match "sbin/") )
468 if [ "${#SBIN[@]}" -gt "0" ]; then
469 write_packages "EXECUTABLES" "false" "sbin" "SBIN" >> "$ANDROIDMK"
470 fi
471
472
473 # Actually write out the final PRODUCT_PACKAGES list
474 local PACKAGE_COUNT=${#PACKAGE_LIST[@]}
475
476 if [ "$PACKAGE_COUNT" -eq "0" ]; then
477 return 0
478 fi
479
480 printf '\n%s\n' "PRODUCT_PACKAGES += \\" >> "$PRODUCTMK"
481 for (( i=1; i<PACKAGE_COUNT+1; i++ )); do
482 local LINEEND=" \\"
483 if [ "$i" -eq "$PACKAGE_COUNT" ]; then
484 LINEEND=""
485 fi
486 printf ' %s%s\n' "${PACKAGE_LIST[$i-1]}" "$LINEEND" >> "$PRODUCTMK"
487 done
488}
489
490#
491# write_header:
492#
493# $1: file which will be written to
494#
495# writes out the copyright header with the current year.
496# note that this is not an append operation, and should
497# be executed first!
498#
499function write_header() {
Jake Whatley9843b322017-01-25 21:49:16 -0500500 if [ -f $1 ]; then
501 rm $1
502 fi
503
Steve Kondik5bd66602016-07-15 10:39:58 -0700504 YEAR=$(date +"%Y")
505
506 [ "$COMMON" -eq 1 ] && local DEVICE="$DEVICE_COMMON"
507
Jake Whatley9843b322017-01-25 21:49:16 -0500508 NUM_REGEX='^[0-9]+$'
509 if [[ $INITIAL_COPYRIGHT_YEAR =~ $NUM_REGEX ]] && [ $INITIAL_COPYRIGHT_YEAR -le $YEAR ]; then
510 if [ $INITIAL_COPYRIGHT_YEAR -lt 2016 ]; then
511 printf "# Copyright (C) $INITIAL_COPYRIGHT_YEAR-2016 The CyanogenMod Project\n" > $1
512 elif [ $INITIAL_COPYRIGHT_YEAR -eq 2016 ]; then
513 printf "# Copyright (C) 2016 The CyanogenMod Project\n" > $1
514 fi
515 if [ $YEAR -eq 2017 ]; then
516 printf "# Copyright (C) 2017 The LineageOS Project\n" >> $1
517 elif [ $INITIAL_COPYRIGHT_YEAR -eq $YEAR ]; then
518 printf "# Copyright (C) $YEAR The LineageOS Project\n" >> $1
519 elif [ $INITIAL_COPYRIGHT_YEAR -le 2017 ]; then
520 printf "# Copyright (C) 2017-$YEAR The LineageOS Project\n" >> $1
521 else
522 printf "# Copyright (C) $INITIAL_COPYRIGHT_YEAR-$YEAR The LineageOS Project\n" >> $1
523 fi
524 else
525 printf "# Copyright (C) $YEAR The LineageOS Project\n" > $1
526 fi
527
528 cat << EOF >> $1
Steve Kondik5bd66602016-07-15 10:39:58 -0700529#
530# Licensed under the Apache License, Version 2.0 (the "License");
531# you may not use this file except in compliance with the License.
532# You may obtain a copy of the License at
533#
534# http://www.apache.org/licenses/LICENSE-2.0
535#
536# Unless required by applicable law or agreed to in writing, software
537# distributed under the License is distributed on an "AS IS" BASIS,
538# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
539# See the License for the specific language governing permissions and
540# limitations under the License.
541
542# This file is generated by device/$VENDOR/$DEVICE/setup-makefiles.sh
543
544EOF
545}
546
547#
548# write_headers:
549#
550# $1: devices falling under common to be added to guard - optional
Jake Whatley9843b322017-01-25 21:49:16 -0500551# $2: custom guard - optional
Steve Kondik5bd66602016-07-15 10:39:58 -0700552#
553# Calls write_header for each of the makefiles and creates
554# the initial path declaration and device guard for the
555# Android.mk
556#
557function write_headers() {
558 write_header "$ANDROIDMK"
Jake Whatley9843b322017-01-25 21:49:16 -0500559
560 GUARD="$2"
561 if [ -z "$GUARD" ]; then
562 GUARD="TARGET_DEVICE"
563 fi
564
Steve Kondik5bd66602016-07-15 10:39:58 -0700565 cat << EOF >> "$ANDROIDMK"
566LOCAL_PATH := \$(call my-dir)
567
568EOF
569 if [ "$COMMON" -ne 1 ]; then
570 cat << EOF >> "$ANDROIDMK"
Jake Whatley9843b322017-01-25 21:49:16 -0500571ifeq (\$($GUARD),$DEVICE)
Steve Kondik5bd66602016-07-15 10:39:58 -0700572
573EOF
574 else
575 if [ -z "$1" ]; then
576 echo "Argument with devices to be added to guard must be set!"
577 exit 1
578 fi
579 cat << EOF >> "$ANDROIDMK"
Jake Whatley9843b322017-01-25 21:49:16 -0500580ifneq (\$(filter $1,\$($GUARD)),)
Steve Kondik5bd66602016-07-15 10:39:58 -0700581
582EOF
583 fi
584
585 write_header "$BOARDMK"
586 write_header "$PRODUCTMK"
587}
588
589#
590# write_footers:
591#
592# Closes the inital guard and any other finalization tasks. Must
593# be called as the final step.
594#
595function write_footers() {
596 cat << EOF >> "$ANDROIDMK"
597endif
598EOF
599}
600
601# Return success if adb is up and not in recovery
602function _adb_connected {
603 {
Jake Whatley9843b322017-01-25 21:49:16 -0500604 if [[ "$(adb get-state)" == device ]]
Steve Kondik5bd66602016-07-15 10:39:58 -0700605 then
606 return 0
607 fi
608 } 2>/dev/null
609
610 return 1
611};
612
613#
614# parse_file_list:
615#
616# $1: input file
Rashed Abdel-Tawabb0d08e82017-04-04 02:48:18 -0400617# $2: blob section in file - optional
Steve Kondik5bd66602016-07-15 10:39:58 -0700618#
619# Sets PRODUCT_PACKAGES and PRODUCT_COPY_FILES while parsing the input file
620#
621function parse_file_list() {
622 if [ -z "$1" ]; then
623 echo "An input file is expected!"
624 exit 1
625 elif [ ! -f "$1" ]; then
626 echo "Input file "$1" does not exist!"
627 exit 1
628 fi
629
Rashed Abdel-Tawabb0d08e82017-04-04 02:48:18 -0400630 if [ $# -eq 2 ]; then
631 LIST=$TMPDIR/files.txt
632 cat $1 | sed -n '/# '"$2"'/I,/^\s*$/p' > $LIST
633 else
634 LIST=$1
635 fi
636
637
Steve Kondik5bd66602016-07-15 10:39:58 -0700638 PRODUCT_PACKAGES_LIST=()
639 PRODUCT_PACKAGES_HASHES=()
640 PRODUCT_COPY_FILES_LIST=()
641 PRODUCT_COPY_FILES_HASHES=()
642
643 while read -r line; do
644 if [ -z "$line" ]; then continue; fi
645
646 # If the line has a pipe delimiter, a sha1 hash should follow.
647 # This indicates the file should be pinned and not overwritten
648 # when extracting files.
649 local SPLIT=(${line//\|/ })
650 local COUNT=${#SPLIT[@]}
651 local SPEC=${SPLIT[0]}
652 local HASH="x"
653 if [ "$COUNT" -gt "1" ]; then
654 HASH=${SPLIT[1]}
655 fi
656
657 # if line starts with a dash, it needs to be packaged
658 if [[ "$SPEC" =~ ^- ]]; then
659 PRODUCT_PACKAGES_LIST+=("${SPEC#-}")
660 PRODUCT_PACKAGES_HASHES+=("$HASH")
661 else
662 PRODUCT_COPY_FILES_LIST+=("$SPEC")
663 PRODUCT_COPY_FILES_HASHES+=("$HASH")
664 fi
665
Rashed Abdel-Tawabb0d08e82017-04-04 02:48:18 -0400666 done < <(egrep -v '(^#|^[[:space:]]*$)' "$LIST" | LC_ALL=C sort | uniq)
Steve Kondik5bd66602016-07-15 10:39:58 -0700667}
668
669#
670# write_makefiles:
671#
672# $1: file containing the list of items to extract
Rashed Abdel-Tawab7fd3ccb2017-10-07 14:18:39 -0400673# $2: make treble compatible makefile - optional
Steve Kondik5bd66602016-07-15 10:39:58 -0700674#
675# Calls write_product_copy_files and write_product_packages on
676# the given file and appends to the Android.mk as well as
677# the product makefile.
678#
679function write_makefiles() {
680 parse_file_list "$1"
Rashed Abdel-Tawab7fd3ccb2017-10-07 14:18:39 -0400681 write_product_copy_files "$2"
Steve Kondik5bd66602016-07-15 10:39:58 -0700682 write_product_packages
683}
684
685#
686# append_firmware_calls_to_makefiles:
687#
688# Appends to Android.mk the calls to all images present in radio folder
689# (filesmap file used by releasetools to map firmware images should be kept in the device tree)
690#
691function append_firmware_calls_to_makefiles() {
692 cat << EOF >> "$ANDROIDMK"
693ifeq (\$(LOCAL_PATH)/radio, \$(wildcard \$(LOCAL_PATH)/radio))
694
695RADIO_FILES := \$(wildcard \$(LOCAL_PATH)/radio/*)
696\$(foreach f, \$(notdir \$(RADIO_FILES)), \\
697 \$(call add-radio-file,radio/\$(f)))
698\$(call add-radio-file,../../../device/$VENDOR/$DEVICE/radio/filesmap)
699
700endif
701
702EOF
703}
704
705#
706# get_file:
707#
708# $1: input file
709# $2: target file/folder
710# $3: source of the file (can be "adb" or a local folder)
711#
712# Silently extracts the input file to defined target
713# Returns success if file can be pulled from the device or found locally
714#
715function get_file() {
716 local SRC="$3"
717
718 if [ "$SRC" = "adb" ]; then
719 # try to pull
720 adb pull "$1" "$2" >/dev/null 2>&1 && return 0
721
722 return 1
723 else
724 # try to copy
Jake Whatley9843b322017-01-25 21:49:16 -0500725 cp -r "$SRC/$1" "$2" 2>/dev/null && return 0
Steve Kondik5bd66602016-07-15 10:39:58 -0700726
727 return 1
728 fi
729};
730
731#
732# oat2dex:
733#
734# $1: extracted apk|jar (to check if deodex is required)
735# $2: odexed apk|jar to deodex
736# $3: source of the odexed apk|jar
737#
738# Convert apk|jar .odex in the corresposing classes.dex
739#
740function oat2dex() {
741 local CM_TARGET="$1"
742 local OEM_TARGET="$2"
743 local SRC="$3"
744 local TARGET=
Joe Maplesfb3941c2018-01-05 14:51:33 -0500745 local OAT=
746 local HOST="$(uname)"
Steve Kondik5bd66602016-07-15 10:39:58 -0700747
Joe Maplesfb3941c2018-01-05 14:51:33 -0500748 if [ -z "$ANDROID_HOST_OUT" ]; then
749 echo "ERROR: ANDROID_HOST_OUT not found!"
750 echo "ERROR: Please lunch a device before running this script."
751 exit 1
Steve Kondik5bd66602016-07-15 10:39:58 -0700752 fi
753
Joe Maplesfb3941c2018-01-05 14:51:33 -0500754 if [ -z "$OATDUMP" ] || [ -z "$VDEXEXTRACTOR" ]; then
755 if [ ! -f "$ANDROID_HOST_OUT/bin/oatdump" ]; then
756 echo "ERROR: oatdump utility not found!"
757 echo "ERROR: Please run 'make oatdump'"
758 echo "ERROR: from the top of the android tree before running this script."
759 exit 1
760 else
761 export OATDUMP="$ANDROID_HOST_OUT/bin/oatdump"
762 fi
763 export VDEXEXTRACTOR="$CM_ROOT"/vendor/omni/build/tools/"$HOST"/vdexExtractor
764 fi
765
Steve Kondik5bd66602016-07-15 10:39:58 -0700766 # Extract existing boot.oats to the temp folder
767 if [ -z "$ARCHES" ]; then
Jake Whatley9843b322017-01-25 21:49:16 -0500768 echo "Checking if system is odexed and locating boot.oats..."
Steve Kondik5bd66602016-07-15 10:39:58 -0700769 for ARCH in "arm64" "arm" "x86_64" "x86"; do
Jake Whatley9843b322017-01-25 21:49:16 -0500770 mkdir -p "$TMPDIR/system/framework/$ARCH"
Rashed Abdel-Tawabe7d9b5c2017-08-05 23:11:35 -0400771 if [ -d "$SRC/framework" ] && [ "$SRC" != "adb" ]; then
772 ARCHDIR="framework/$ARCH/"
773 else
774 ARCHDIR="system/framework/$ARCH/"
775 fi
776 if get_file "$ARCHDIR" "$TMPDIR/system/framework/" "$SRC"; then
Steve Kondik5bd66602016-07-15 10:39:58 -0700777 ARCHES+="$ARCH "
Jake Whatley9843b322017-01-25 21:49:16 -0500778 else
779 rmdir "$TMPDIR/system/framework/$ARCH"
Steve Kondik5bd66602016-07-15 10:39:58 -0700780 fi
781 done
782 fi
783
784 if [ -z "$ARCHES" ]; then
785 FULLY_DEODEXED=1 && return 0 # system is fully deodexed, return
786 fi
787
788 if [ ! -f "$CM_TARGET" ]; then
789 return;
790 fi
791
792 if grep "classes.dex" "$CM_TARGET" >/dev/null; then
793 return 0 # target apk|jar is already odexed, return
794 fi
795
796 for ARCH in $ARCHES; do
Jake Whatley9843b322017-01-25 21:49:16 -0500797 BOOTOAT="$TMPDIR/system/framework/$ARCH/boot.oat"
Steve Kondik5bd66602016-07-15 10:39:58 -0700798
Joe Maplesfb3941c2018-01-05 14:51:33 -0500799 local OAT="$(dirname "$OEM_TARGET")/oat/$ARCH/$(basename "$OEM_TARGET" ."${OEM_TARGET##*.}").odex"
800 local VDEX="$(dirname "$OEM_TARGET")/oat/$ARCH/$(basename "$OEM_TARGET" ."${OEM_TARGET##*.}").vdex"
Steve Kondik5bd66602016-07-15 10:39:58 -0700801
Joe Maplesfb3941c2018-01-05 14:51:33 -0500802
803 if get_file "$OAT" "$TMPDIR" "$SRC"; then
804 if get_file "$VDEX" "$TMPDIR" "$SRC"; then
805 "$VDEXEXTRACTOR" -o "$TMPDIR/" -i "$TMPDIR/$(basename "$VDEX")" > /dev/null
806 mv "$TMPDIR/$(basename "${OEM_TARGET%.*}").apk_classes.dex" "$TMPDIR/classes.dex"
807 else
808 "$OATDUMP" --oat-file="$TMPDIR/$(basename "$OAT")" --export-dex-to="$TMPDIR" > /dev/null
809 mv "$(find "$TMPDIR" -maxdepth 1 -type f -name "*_export.dex" | wc -l | tr -d ' ')" "$TMPDIR/classes.dex"
810 fi
Steve Kondik5bd66602016-07-15 10:39:58 -0700811 elif [[ "$CM_TARGET" =~ .jar$ ]]; then
Jake Whatley9843b322017-01-25 21:49:16 -0500812 JAROAT="$TMPDIR/system/framework/$ARCH/boot-$(basename ${OEM_TARGET%.*}).oat"
Joe Maplesfb3941c2018-01-05 14:51:33 -0500813 JARVDEX="$TMPDIR/system/framework/$ARCH/boot-$(basename ${OEM_TARGET%.*}).vdex"
Jake Whatley9843b322017-01-25 21:49:16 -0500814 if [ ! -f "$JAROAT" ]; then
815 JAROAT=$BOOTOAT;
816 fi
Joe Maplesfb3941c2018-01-05 14:51:33 -0500817
818 # try to extract classes.dex from boot.vdex for frameworks jars
819 # fallback to boot.oat if vdex is not available
820 if [ -f "$JARVDEX" ]; then
821 "$VDEXEXTRACTOR" -o "$TMPDIR/" -i "$JARVDEX" > /dev/null
822 mv "$TMPDIR/boot-$(basename "${OEM_TARGET%.*}").apk_classes.dex" "$TMPDIR/classes.dex"
823 else
824 "$OATDUMP" --oat-file="$JAROAT" --export-dex-to="$TMPDIR" > /dev/null
825 mv "$(find "$TMPDIR" -maxdepth 1 -type f -name "*_export.dex" | wc -l | tr -d ' ')" "$TMPDIR/classes.dex"
826 fi
Steve Kondik5bd66602016-07-15 10:39:58 -0700827 else
828 continue
829 fi
830
Steve Kondik5bd66602016-07-15 10:39:58 -0700831 done
Steve Kondik5bd66602016-07-15 10:39:58 -0700832}
833
834#
835# init_adb_connection:
836#
837# Starts adb server and waits for the device
838#
839function init_adb_connection() {
840 adb start-server # Prevent unexpected starting server message from adb get-state in the next line
841 if ! _adb_connected; then
842 echo "No device is online. Waiting for one..."
843 echo "Please connect USB and/or enable USB debugging"
844 until _adb_connected; do
845 sleep 1
846 done
847 echo "Device Found."
848 fi
849
850 # Retrieve IP and PORT info if we're using a TCP connection
851 TCPIPPORT=$(adb devices | egrep '^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+:[0-9]+[^0-9]+' \
852 | head -1 | awk '{print $1}')
853 adb root &> /dev/null
854 sleep 0.3
855 if [ -n "$TCPIPPORT" ]; then
856 # adb root just killed our connection
857 # so reconnect...
858 adb connect "$TCPIPPORT"
859 fi
860 adb wait-for-device &> /dev/null
861 sleep 0.3
862}
863
864#
865# fix_xml:
866#
867# $1: xml file to fix
868#
869function fix_xml() {
870 local XML="$1"
871 local TEMP_XML="$TMPDIR/`basename "$XML"`.temp"
872
Dobroslaw Kijowski3af2a8d2017-05-18 12:35:02 +0200873 grep -a '^<?xml version' "$XML" > "$TEMP_XML"
874 grep -av '^<?xml version' "$XML" >> "$TEMP_XML"
Steve Kondik5bd66602016-07-15 10:39:58 -0700875
876 mv "$TEMP_XML" "$XML"
877}
878
879#
880# extract:
881#
882# $1: file containing the list of items to extract
Dan Pasanen0cc05012017-03-21 09:06:11 -0500883# $2: path to extracted system folder, an ota zip file, or "adb" to extract from device
Rashed Abdel-Tawabb0d08e82017-04-04 02:48:18 -0400884# $3: section in list file to extract - optional
Steve Kondik5bd66602016-07-15 10:39:58 -0700885#
886function extract() {
887 if [ -z "$OUTDIR" ]; then
888 echo "Output dir not set!"
889 exit 1
890 fi
891
Harry Youd972c4112017-08-05 09:18:56 +0100892 if [ -z "$3" ]; then
893 parse_file_list "$1"
894 else
895 parse_file_list "$1" "$3"
896 fi
Steve Kondik5bd66602016-07-15 10:39:58 -0700897
898 # Allow failing, so we can try $DEST and/or $FILE
899 set +e
900
901 local FILELIST=( ${PRODUCT_COPY_FILES_LIST[@]} ${PRODUCT_PACKAGES_LIST[@]} )
902 local HASHLIST=( ${PRODUCT_COPY_FILES_HASHES[@]} ${PRODUCT_PACKAGES_HASHES[@]} )
903 local COUNT=${#FILELIST[@]}
904 local SRC="$2"
905 local OUTPUT_ROOT="$CM_ROOT"/"$OUTDIR"/proprietary
906 local OUTPUT_TMP="$TMPDIR"/"$OUTDIR"/proprietary
907
908 if [ "$SRC" = "adb" ]; then
909 init_adb_connection
910 fi
911
Dan Pasanen0cc05012017-03-21 09:06:11 -0500912 if [ -f "$SRC" ] && [ "${SRC##*.}" == "zip" ]; then
913 DUMPDIR="$CM_ROOT"/system_dump
914
915 # Check if we're working with the same zip that was passed last time.
916 # If so, let's just use what's already extracted.
917 MD5=`md5sum "$SRC"| awk '{print $1}'`
918 OLDMD5=`cat "$DUMPDIR"/zipmd5.txt`
919
920 if [ "$MD5" != "$OLDMD5" ]; then
921 rm -rf "$DUMPDIR"
922 mkdir "$DUMPDIR"
923 unzip "$SRC" -d "$DUMPDIR"
924 echo "$MD5" > "$DUMPDIR"/zipmd5.txt
925
926 # Stop if an A/B OTA zip is detected. We cannot extract these.
927 if [ -a "$DUMPDIR"/payload.bin ]; then
928 echo "A/B style OTA zip detected. This is not supported at this time. Stopping..."
929 exit 1
930 # If OTA is block based, extract it.
931 elif [ -a "$DUMPDIR"/system.new.dat ]; then
932 echo "Converting system.new.dat to system.img"
933 python "$CM_ROOT"/vendor/omni/build/tools/sdat2img.py "$DUMPDIR"/system.transfer.list "$DUMPDIR"/system.new.dat "$DUMPDIR"/system.img 2>&1
934 rm -rf "$DUMPDIR"/system.new.dat "$DUMPDIR"/system
935 mkdir "$DUMPDIR"/system "$DUMPDIR"/tmp
936 echo "Requesting sudo access to mount the system.img"
937 sudo mount -o loop "$DUMPDIR"/system.img "$DUMPDIR"/tmp
938 cp -r "$DUMPDIR"/tmp/* "$DUMPDIR"/system/
939 sudo umount "$DUMPDIR"/tmp
940 rm -rf "$DUMPDIR"/tmp "$DUMPDIR"/system.img
941 fi
942 fi
943
944 SRC="$DUMPDIR"
945 fi
946
Steve Kondik5bd66602016-07-15 10:39:58 -0700947 if [ "$VENDOR_STATE" -eq "0" ]; then
948 echo "Cleaning output directory ($OUTPUT_ROOT).."
949 rm -rf "${OUTPUT_TMP:?}"
950 mkdir -p "${OUTPUT_TMP:?}"
Jake Whatley9843b322017-01-25 21:49:16 -0500951 if [ -d "$OUTPUT_ROOT" ]; then
952 mv "${OUTPUT_ROOT:?}/"* "${OUTPUT_TMP:?}/"
953 fi
Steve Kondik5bd66602016-07-15 10:39:58 -0700954 VENDOR_STATE=1
955 fi
956
957 echo "Extracting $COUNT files in $1 from $SRC:"
958
959 for (( i=1; i<COUNT+1; i++ )); do
960
961 local FROM=$(target_file "${FILELIST[$i-1]}")
962 local ARGS=$(target_args "${FILELIST[$i-1]}")
963 local SPLIT=(${FILELIST[$i-1]//:/ })
964 local FILE="${SPLIT[0]#-}"
965 local OUTPUT_DIR="$OUTPUT_ROOT"
966 local TMP_DIR="$OUTPUT_TMP"
967 local TARGET=
968
969 if [ "$ARGS" = "rootfs" ]; then
970 TARGET="$FROM"
971 OUTPUT_DIR="$OUTPUT_DIR/rootfs"
972 TMP_DIR="$TMP_DIR/rootfs"
Rashed Abdel-Tawab7da4a1b2017-04-04 18:03:35 -0400973 elif [ -f "$SRC/$FILE" ] && [ "$SRC" != "adb" ]; then
974 TARGET="$FROM"
Steve Kondik5bd66602016-07-15 10:39:58 -0700975 else
976 TARGET="system/$FROM"
977 FILE="system/$FILE"
978 fi
979
980 if [ "$SRC" = "adb" ]; then
981 printf ' - %s .. ' "/$TARGET"
982 else
983 printf ' - %s \n' "/$TARGET"
984 fi
985
986 local DIR=$(dirname "$FROM")
987 if [ ! -d "$OUTPUT_DIR/$DIR" ]; then
988 mkdir -p "$OUTPUT_DIR/$DIR"
989 fi
990 local DEST="$OUTPUT_DIR/$FROM"
991
Gabriele M58270a32017-11-13 23:15:29 +0100992 # Check pinned files
993 local HASH="${HASHLIST[$i-1]}"
994 local KEEP=""
995 if [ "$DISABLE_PINNING" != "1" ] && [ ! -z "$HASH" ] && [ "$HASH" != "x" ]; then
996 if [ -f "$DEST" ]; then
997 local PINNED="$DEST"
998 else
999 local PINNED="$TMP_DIR/$FROM"
1000 fi
1001 if [ -f "$PINNED" ]; then
1002 if [ "$(uname)" == "Darwin" ]; then
1003 local TMP_HASH=$(shasum "$PINNED" | awk '{print $1}' )
1004 else
1005 local TMP_HASH=$(sha1sum "$PINNED" | awk '{print $1}' )
1006 fi
1007 if [ "$TMP_HASH" = "$HASH" ]; then
1008 KEEP="1"
1009 if [ ! -f "$DEST" ]; then
1010 cp -p "$PINNED" "$DEST"
1011 fi
1012 fi
1013 fi
1014 fi
1015
1016 if [ "$KEEP" = "1" ]; then
1017 printf ' + (keeping pinned file with hash %s)\n' "$HASH"
1018 elif [ "$SRC" = "adb" ]; then
Steve Kondik5bd66602016-07-15 10:39:58 -07001019 # Try CM target first
1020 adb pull "/$TARGET" "$DEST"
1021 # if file does not exist try OEM target
1022 if [ "$?" != "0" ]; then
1023 adb pull "/$FILE" "$DEST"
1024 fi
1025 else
Christopher R. Palmer1fbf6872017-03-04 05:12:29 -05001026 # Try CM target first
1027 if [ -f "$SRC/$TARGET" ]; then
Steve Kondik5bd66602016-07-15 10:39:58 -07001028 cp "$SRC/$TARGET" "$DEST"
Christopher R. Palmer1fbf6872017-03-04 05:12:29 -05001029 # if file does not exist try OEM target
1030 elif [ -f "$SRC/$FILE" ]; then
1031 cp "$SRC/$FILE" "$DEST"
Steve Kondik5bd66602016-07-15 10:39:58 -07001032 else
1033 printf ' !! file not found in source\n'
1034 fi
1035 fi
1036
1037 if [ "$?" == "0" ]; then
1038 # Deodex apk|jar if that's the case
1039 if [[ "$FULLY_DEODEXED" -ne "1" && "$DEST" =~ .(apk|jar)$ ]]; then
1040 oat2dex "$DEST" "$FILE" "$SRC"
1041 if [ -f "$TMPDIR/classes.dex" ]; then
1042 zip -gjq "$DEST" "$TMPDIR/classes.dex"
1043 rm "$TMPDIR/classes.dex"
1044 printf ' (updated %s from odex files)\n' "/$FILE"
1045 fi
1046 elif [[ "$DEST" =~ .xml$ ]]; then
1047 fix_xml "$DEST"
1048 fi
1049 fi
1050
1051 # Check pinned files
1052 local HASH="${HASHLIST[$i-1]}"
Jake Whatley9843b322017-01-25 21:49:16 -05001053 if [ "$DISABLE_PINNING" != "1" ] && [ ! -z "$HASH" ] && [ "$HASH" != "x" ]; then
Steve Kondik5bd66602016-07-15 10:39:58 -07001054 local KEEP=""
1055 local TMP="$TMP_DIR/$FROM"
1056 if [ -f "$TMP" ]; then
1057 if [ ! -f "$DEST" ]; then
1058 KEEP="1"
1059 else
Jake Whatley9843b322017-01-25 21:49:16 -05001060 if [ "$(uname)" == "Darwin" ]; then
1061 local DEST_HASH=$(shasum "$DEST" | awk '{print $1}' )
1062 else
1063 local DEST_HASH=$(sha1sum "$DEST" | awk '{print $1}' )
1064 fi
Steve Kondik5bd66602016-07-15 10:39:58 -07001065 if [ "$DEST_HASH" != "$HASH" ]; then
1066 KEEP="1"
1067 fi
1068 fi
1069 if [ "$KEEP" = "1" ]; then
Jake Whatley9843b322017-01-25 21:49:16 -05001070 if [ "$(uname)" == "Darwin" ]; then
1071 local TMP_HASH=$(shasum "$TMP" | awk '{print $1}' )
1072 else
1073 local TMP_HASH=$(sha1sum "$TMP" | awk '{print $1}' )
1074 fi
Steve Kondik5bd66602016-07-15 10:39:58 -07001075 if [ "$TMP_HASH" = "$HASH" ]; then
1076 printf ' + (keeping pinned file with hash %s)\n' "$HASH"
1077 cp -p "$TMP" "$DEST"
1078 fi
1079 fi
1080 fi
1081 fi
1082
1083 if [ -f "$DEST" ]; then
1084 local TYPE="${DIR##*/}"
1085 if [ "$TYPE" = "bin" -o "$TYPE" = "sbin" ]; then
1086 chmod 755 "$DEST"
1087 else
1088 chmod 644 "$DEST"
1089 fi
1090 fi
1091
1092 done
1093
1094 # Don't allow failing
1095 set -e
1096}
1097
1098#
1099# extract_firmware:
1100#
1101# $1: file containing the list of items to extract
1102# $2: path to extracted radio folder
1103#
1104function extract_firmware() {
1105 if [ -z "$OUTDIR" ]; then
1106 echo "Output dir not set!"
1107 exit 1
1108 fi
1109
1110 parse_file_list "$1"
1111
1112 # Don't allow failing
1113 set -e
1114
1115 local FILELIST=( ${PRODUCT_COPY_FILES_LIST[@]} )
1116 local COUNT=${#FILELIST[@]}
1117 local SRC="$2"
1118 local OUTPUT_DIR="$CM_ROOT"/"$OUTDIR"/radio
1119
1120 if [ "$VENDOR_RADIO_STATE" -eq "0" ]; then
1121 echo "Cleaning firmware output directory ($OUTPUT_DIR).."
1122 rm -rf "${OUTPUT_DIR:?}/"*
1123 VENDOR_RADIO_STATE=1
1124 fi
1125
1126 echo "Extracting $COUNT files in $1 from $SRC:"
1127
1128 for (( i=1; i<COUNT+1; i++ )); do
1129 local FILE="${FILELIST[$i-1]}"
1130 printf ' - %s \n' "/radio/$FILE"
1131
1132 if [ ! -d "$OUTPUT_DIR" ]; then
1133 mkdir -p "$OUTPUT_DIR"
1134 fi
1135 cp "$SRC/$FILE" "$OUTPUT_DIR/$FILE"
1136 chmod 644 "$OUTPUT_DIR/$FILE"
1137 done
1138}