blob: 5f62d838275cf1a8a7fb6392f60a8461e7b54468 [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=
Sam Mortimer26329022017-08-23 18:59:52 -0700745 local DEXBASE=
746 local ODEX=
747 local VDEX=
Steve Kondik5bd66602016-07-15 10:39:58 -0700748
749 if [ -z "$BAKSMALIJAR" ] || [ -z "$SMALIJAR" ]; then
Marko Man6a182a42016-09-18 01:59:20 +0200750 export BAKSMALIJAR="$CM_ROOT"/vendor/omni/build/tools/smali/baksmali.jar
751 export SMALIJAR="$CM_ROOT"/vendor/omni/build/tools/smali/smali.jar
Steve Kondik5bd66602016-07-15 10:39:58 -0700752 fi
753
754 # Extract existing boot.oats to the temp folder
755 if [ -z "$ARCHES" ]; then
Jake Whatley9843b322017-01-25 21:49:16 -0500756 echo "Checking if system is odexed and locating boot.oats..."
Steve Kondik5bd66602016-07-15 10:39:58 -0700757 for ARCH in "arm64" "arm" "x86_64" "x86"; do
Jake Whatley9843b322017-01-25 21:49:16 -0500758 mkdir -p "$TMPDIR/system/framework/$ARCH"
Rashed Abdel-Tawabe7d9b5c2017-08-05 23:11:35 -0400759 if [ -d "$SRC/framework" ] && [ "$SRC" != "adb" ]; then
760 ARCHDIR="framework/$ARCH/"
761 else
762 ARCHDIR="system/framework/$ARCH/"
763 fi
764 if get_file "$ARCHDIR" "$TMPDIR/system/framework/" "$SRC"; then
Steve Kondik5bd66602016-07-15 10:39:58 -0700765 ARCHES+="$ARCH "
Jake Whatley9843b322017-01-25 21:49:16 -0500766 else
767 rmdir "$TMPDIR/system/framework/$ARCH"
Steve Kondik5bd66602016-07-15 10:39:58 -0700768 fi
769 done
770 fi
771
772 if [ -z "$ARCHES" ]; then
773 FULLY_DEODEXED=1 && return 0 # system is fully deodexed, return
774 fi
775
776 if [ ! -f "$CM_TARGET" ]; then
777 return;
778 fi
779
780 if grep "classes.dex" "$CM_TARGET" >/dev/null; then
781 return 0 # target apk|jar is already odexed, return
782 fi
783
784 for ARCH in $ARCHES; do
Jake Whatley9843b322017-01-25 21:49:16 -0500785 BOOTOAT="$TMPDIR/system/framework/$ARCH/boot.oat"
Steve Kondik5bd66602016-07-15 10:39:58 -0700786
Sam Mortimer26329022017-08-23 18:59:52 -0700787 local DEXBASE="$(dirname "$OEM_TARGET")/oat/$ARCH/$(basename "$OEM_TARGET" ."${OEM_TARGET##*.}")"
788 local ODEX="${DEXBASE}.odex"
789 local VDEX="${DEXBASE}.vdex"
Steve Kondik5bd66602016-07-15 10:39:58 -0700790
Sam Mortimer26329022017-08-23 18:59:52 -0700791 if get_file "$ODEX" "$TMPDIR" "$SRC"; then
792 # If there was an odex, also look for a vdex.
793 get_file "$VDEX" "$TMPDIR" "$SRC"
794 java -jar "$BAKSMALIJAR" deodex -o "$TMPDIR/dexout" -b "$BOOTOAT" -d "$TMPDIR" "$TMPDIR/$(basename "$ODEX")"
Steve Kondik5bd66602016-07-15 10:39:58 -0700795 elif [[ "$CM_TARGET" =~ .jar$ ]]; then
Jake Whatley9843b322017-01-25 21:49:16 -0500796 # try to extract classes.dex from boot.oats for framework jars
797 JAROAT="$TMPDIR/system/framework/$ARCH/boot-$(basename ${OEM_TARGET%.*}).oat"
798 if [ ! -f "$JAROAT" ]; then
799 JAROAT=$BOOTOAT;
800 fi
801 java -jar "$BAKSMALIJAR" deodex -o "$TMPDIR/dexout" -b "$BOOTOAT" -d "$TMPDIR" "$JAROAT/$OEM_TARGET"
Steve Kondik5bd66602016-07-15 10:39:58 -0700802 else
803 continue
804 fi
805
Jake Whatley9843b322017-01-25 21:49:16 -0500806 java -jar "$SMALIJAR" assemble "$TMPDIR/dexout" -o "$TMPDIR/classes.dex" && break
Steve Kondik5bd66602016-07-15 10:39:58 -0700807 done
808
809 rm -rf "$TMPDIR/dexout"
810}
811
812#
813# init_adb_connection:
814#
815# Starts adb server and waits for the device
816#
817function init_adb_connection() {
818 adb start-server # Prevent unexpected starting server message from adb get-state in the next line
819 if ! _adb_connected; then
820 echo "No device is online. Waiting for one..."
821 echo "Please connect USB and/or enable USB debugging"
822 until _adb_connected; do
823 sleep 1
824 done
825 echo "Device Found."
826 fi
827
828 # Retrieve IP and PORT info if we're using a TCP connection
829 TCPIPPORT=$(adb devices | egrep '^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+:[0-9]+[^0-9]+' \
830 | head -1 | awk '{print $1}')
831 adb root &> /dev/null
832 sleep 0.3
833 if [ -n "$TCPIPPORT" ]; then
834 # adb root just killed our connection
835 # so reconnect...
836 adb connect "$TCPIPPORT"
837 fi
838 adb wait-for-device &> /dev/null
839 sleep 0.3
840}
841
842#
843# fix_xml:
844#
845# $1: xml file to fix
846#
847function fix_xml() {
848 local XML="$1"
849 local TEMP_XML="$TMPDIR/`basename "$XML"`.temp"
850
Dobroslaw Kijowski3af2a8d2017-05-18 12:35:02 +0200851 grep -a '^<?xml version' "$XML" > "$TEMP_XML"
852 grep -av '^<?xml version' "$XML" >> "$TEMP_XML"
Steve Kondik5bd66602016-07-15 10:39:58 -0700853
854 mv "$TEMP_XML" "$XML"
855}
856
857#
858# extract:
859#
860# $1: file containing the list of items to extract
Dan Pasanen0cc05012017-03-21 09:06:11 -0500861# $2: path to extracted system folder, an ota zip file, or "adb" to extract from device
Rashed Abdel-Tawabb0d08e82017-04-04 02:48:18 -0400862# $3: section in list file to extract - optional
Steve Kondik5bd66602016-07-15 10:39:58 -0700863#
864function extract() {
865 if [ -z "$OUTDIR" ]; then
866 echo "Output dir not set!"
867 exit 1
868 fi
869
Harry Youd972c4112017-08-05 09:18:56 +0100870 if [ -z "$3" ]; then
871 parse_file_list "$1"
872 else
873 parse_file_list "$1" "$3"
874 fi
Steve Kondik5bd66602016-07-15 10:39:58 -0700875
876 # Allow failing, so we can try $DEST and/or $FILE
877 set +e
878
879 local FILELIST=( ${PRODUCT_COPY_FILES_LIST[@]} ${PRODUCT_PACKAGES_LIST[@]} )
880 local HASHLIST=( ${PRODUCT_COPY_FILES_HASHES[@]} ${PRODUCT_PACKAGES_HASHES[@]} )
881 local COUNT=${#FILELIST[@]}
882 local SRC="$2"
883 local OUTPUT_ROOT="$CM_ROOT"/"$OUTDIR"/proprietary
884 local OUTPUT_TMP="$TMPDIR"/"$OUTDIR"/proprietary
885
886 if [ "$SRC" = "adb" ]; then
887 init_adb_connection
888 fi
889
Dan Pasanen0cc05012017-03-21 09:06:11 -0500890 if [ -f "$SRC" ] && [ "${SRC##*.}" == "zip" ]; then
891 DUMPDIR="$CM_ROOT"/system_dump
892
893 # Check if we're working with the same zip that was passed last time.
894 # If so, let's just use what's already extracted.
895 MD5=`md5sum "$SRC"| awk '{print $1}'`
896 OLDMD5=`cat "$DUMPDIR"/zipmd5.txt`
897
898 if [ "$MD5" != "$OLDMD5" ]; then
899 rm -rf "$DUMPDIR"
900 mkdir "$DUMPDIR"
901 unzip "$SRC" -d "$DUMPDIR"
902 echo "$MD5" > "$DUMPDIR"/zipmd5.txt
903
904 # Stop if an A/B OTA zip is detected. We cannot extract these.
905 if [ -a "$DUMPDIR"/payload.bin ]; then
906 echo "A/B style OTA zip detected. This is not supported at this time. Stopping..."
907 exit 1
908 # If OTA is block based, extract it.
909 elif [ -a "$DUMPDIR"/system.new.dat ]; then
910 echo "Converting system.new.dat to system.img"
911 python "$CM_ROOT"/vendor/omni/build/tools/sdat2img.py "$DUMPDIR"/system.transfer.list "$DUMPDIR"/system.new.dat "$DUMPDIR"/system.img 2>&1
912 rm -rf "$DUMPDIR"/system.new.dat "$DUMPDIR"/system
913 mkdir "$DUMPDIR"/system "$DUMPDIR"/tmp
914 echo "Requesting sudo access to mount the system.img"
915 sudo mount -o loop "$DUMPDIR"/system.img "$DUMPDIR"/tmp
916 cp -r "$DUMPDIR"/tmp/* "$DUMPDIR"/system/
917 sudo umount "$DUMPDIR"/tmp
918 rm -rf "$DUMPDIR"/tmp "$DUMPDIR"/system.img
919 fi
920 fi
921
922 SRC="$DUMPDIR"
923 fi
924
Steve Kondik5bd66602016-07-15 10:39:58 -0700925 if [ "$VENDOR_STATE" -eq "0" ]; then
926 echo "Cleaning output directory ($OUTPUT_ROOT).."
927 rm -rf "${OUTPUT_TMP:?}"
928 mkdir -p "${OUTPUT_TMP:?}"
Jake Whatley9843b322017-01-25 21:49:16 -0500929 if [ -d "$OUTPUT_ROOT" ]; then
930 mv "${OUTPUT_ROOT:?}/"* "${OUTPUT_TMP:?}/"
931 fi
Steve Kondik5bd66602016-07-15 10:39:58 -0700932 VENDOR_STATE=1
933 fi
934
935 echo "Extracting $COUNT files in $1 from $SRC:"
936
937 for (( i=1; i<COUNT+1; i++ )); do
938
939 local FROM=$(target_file "${FILELIST[$i-1]}")
940 local ARGS=$(target_args "${FILELIST[$i-1]}")
941 local SPLIT=(${FILELIST[$i-1]//:/ })
942 local FILE="${SPLIT[0]#-}"
943 local OUTPUT_DIR="$OUTPUT_ROOT"
944 local TMP_DIR="$OUTPUT_TMP"
945 local TARGET=
946
947 if [ "$ARGS" = "rootfs" ]; then
948 TARGET="$FROM"
949 OUTPUT_DIR="$OUTPUT_DIR/rootfs"
950 TMP_DIR="$TMP_DIR/rootfs"
Rashed Abdel-Tawab7da4a1b2017-04-04 18:03:35 -0400951 elif [ -f "$SRC/$FILE" ] && [ "$SRC" != "adb" ]; then
952 TARGET="$FROM"
Steve Kondik5bd66602016-07-15 10:39:58 -0700953 else
954 TARGET="system/$FROM"
955 FILE="system/$FILE"
956 fi
957
958 if [ "$SRC" = "adb" ]; then
959 printf ' - %s .. ' "/$TARGET"
960 else
961 printf ' - %s \n' "/$TARGET"
962 fi
963
964 local DIR=$(dirname "$FROM")
965 if [ ! -d "$OUTPUT_DIR/$DIR" ]; then
966 mkdir -p "$OUTPUT_DIR/$DIR"
967 fi
968 local DEST="$OUTPUT_DIR/$FROM"
969
Gabriele M58270a32017-11-13 23:15:29 +0100970 # Check pinned files
971 local HASH="${HASHLIST[$i-1]}"
972 local KEEP=""
973 if [ "$DISABLE_PINNING" != "1" ] && [ ! -z "$HASH" ] && [ "$HASH" != "x" ]; then
974 if [ -f "$DEST" ]; then
975 local PINNED="$DEST"
976 else
977 local PINNED="$TMP_DIR/$FROM"
978 fi
979 if [ -f "$PINNED" ]; then
980 if [ "$(uname)" == "Darwin" ]; then
981 local TMP_HASH=$(shasum "$PINNED" | awk '{print $1}' )
982 else
983 local TMP_HASH=$(sha1sum "$PINNED" | awk '{print $1}' )
984 fi
985 if [ "$TMP_HASH" = "$HASH" ]; then
986 KEEP="1"
987 if [ ! -f "$DEST" ]; then
988 cp -p "$PINNED" "$DEST"
989 fi
990 fi
991 fi
992 fi
993
994 if [ "$KEEP" = "1" ]; then
995 printf ' + (keeping pinned file with hash %s)\n' "$HASH"
996 elif [ "$SRC" = "adb" ]; then
Steve Kondik5bd66602016-07-15 10:39:58 -0700997 # Try CM target first
998 adb pull "/$TARGET" "$DEST"
999 # if file does not exist try OEM target
1000 if [ "$?" != "0" ]; then
1001 adb pull "/$FILE" "$DEST"
1002 fi
1003 else
Christopher R. Palmer1fbf6872017-03-04 05:12:29 -05001004 # Try CM target first
1005 if [ -f "$SRC/$TARGET" ]; then
Steve Kondik5bd66602016-07-15 10:39:58 -07001006 cp "$SRC/$TARGET" "$DEST"
Christopher R. Palmer1fbf6872017-03-04 05:12:29 -05001007 # if file does not exist try OEM target
1008 elif [ -f "$SRC/$FILE" ]; then
1009 cp "$SRC/$FILE" "$DEST"
Steve Kondik5bd66602016-07-15 10:39:58 -07001010 else
1011 printf ' !! file not found in source\n'
1012 fi
1013 fi
1014
1015 if [ "$?" == "0" ]; then
1016 # Deodex apk|jar if that's the case
1017 if [[ "$FULLY_DEODEXED" -ne "1" && "$DEST" =~ .(apk|jar)$ ]]; then
1018 oat2dex "$DEST" "$FILE" "$SRC"
1019 if [ -f "$TMPDIR/classes.dex" ]; then
1020 zip -gjq "$DEST" "$TMPDIR/classes.dex"
1021 rm "$TMPDIR/classes.dex"
1022 printf ' (updated %s from odex files)\n' "/$FILE"
1023 fi
1024 elif [[ "$DEST" =~ .xml$ ]]; then
1025 fix_xml "$DEST"
1026 fi
1027 fi
1028
1029 # Check pinned files
1030 local HASH="${HASHLIST[$i-1]}"
Jake Whatley9843b322017-01-25 21:49:16 -05001031 if [ "$DISABLE_PINNING" != "1" ] && [ ! -z "$HASH" ] && [ "$HASH" != "x" ]; then
Steve Kondik5bd66602016-07-15 10:39:58 -07001032 local KEEP=""
1033 local TMP="$TMP_DIR/$FROM"
1034 if [ -f "$TMP" ]; then
1035 if [ ! -f "$DEST" ]; then
1036 KEEP="1"
1037 else
Jake Whatley9843b322017-01-25 21:49:16 -05001038 if [ "$(uname)" == "Darwin" ]; then
1039 local DEST_HASH=$(shasum "$DEST" | awk '{print $1}' )
1040 else
1041 local DEST_HASH=$(sha1sum "$DEST" | awk '{print $1}' )
1042 fi
Steve Kondik5bd66602016-07-15 10:39:58 -07001043 if [ "$DEST_HASH" != "$HASH" ]; then
1044 KEEP="1"
1045 fi
1046 fi
1047 if [ "$KEEP" = "1" ]; then
Jake Whatley9843b322017-01-25 21:49:16 -05001048 if [ "$(uname)" == "Darwin" ]; then
1049 local TMP_HASH=$(shasum "$TMP" | awk '{print $1}' )
1050 else
1051 local TMP_HASH=$(sha1sum "$TMP" | awk '{print $1}' )
1052 fi
Steve Kondik5bd66602016-07-15 10:39:58 -07001053 if [ "$TMP_HASH" = "$HASH" ]; then
1054 printf ' + (keeping pinned file with hash %s)\n' "$HASH"
1055 cp -p "$TMP" "$DEST"
1056 fi
1057 fi
1058 fi
1059 fi
1060
1061 if [ -f "$DEST" ]; then
1062 local TYPE="${DIR##*/}"
1063 if [ "$TYPE" = "bin" -o "$TYPE" = "sbin" ]; then
1064 chmod 755 "$DEST"
1065 else
1066 chmod 644 "$DEST"
1067 fi
1068 fi
1069
1070 done
1071
1072 # Don't allow failing
1073 set -e
1074}
1075
1076#
1077# extract_firmware:
1078#
1079# $1: file containing the list of items to extract
1080# $2: path to extracted radio folder
1081#
1082function extract_firmware() {
1083 if [ -z "$OUTDIR" ]; then
1084 echo "Output dir not set!"
1085 exit 1
1086 fi
1087
1088 parse_file_list "$1"
1089
1090 # Don't allow failing
1091 set -e
1092
1093 local FILELIST=( ${PRODUCT_COPY_FILES_LIST[@]} )
1094 local COUNT=${#FILELIST[@]}
1095 local SRC="$2"
1096 local OUTPUT_DIR="$CM_ROOT"/"$OUTDIR"/radio
1097
1098 if [ "$VENDOR_RADIO_STATE" -eq "0" ]; then
1099 echo "Cleaning firmware output directory ($OUTPUT_DIR).."
1100 rm -rf "${OUTPUT_DIR:?}/"*
1101 VENDOR_RADIO_STATE=1
1102 fi
1103
1104 echo "Extracting $COUNT files in $1 from $SRC:"
1105
1106 for (( i=1; i<COUNT+1; i++ )); do
1107 local FILE="${FILELIST[$i-1]}"
1108 printf ' - %s \n' "/radio/$FILE"
1109
1110 if [ ! -d "$OUTPUT_DIR" ]; then
1111 mkdir -p "$OUTPUT_DIR"
1112 fi
1113 cp "$SRC/$FILE" "$OUTPUT_DIR/$FILE"
1114 chmod 644 "$OUTPUT_DIR/$FILE"
1115 done
1116}