extract-files.sh 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #!/bin/bash
  2. #
  3. # Copyright (C) 2016 The CyanogenMod Project
  4. # Copyright (C) 2017-2018 The LineageOS Project
  5. #
  6. # Licensed under the Apache License, Version 2.0 (the "License");
  7. # you may not use this file except in compliance with the License.
  8. # You may obtain a copy of the License at
  9. #
  10. # http://www.apache.org/licenses/LICENSE-2.0
  11. #
  12. # Unless required by applicable law or agreed to in writing, software
  13. # distributed under the License is distributed on an "AS IS" BASIS,
  14. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. # See the License for the specific language governing permissions and
  16. # limitations under the License.
  17. #
  18. set -e
  19. export GAPPS_COMMON=common
  20. export VENDOR=gapps
  21. # Load extract_utils and do some sanity checks
  22. MY_DIR="${BASH_SOURCE%/*}"
  23. if [[ ! -d "$MY_DIR" ]]; then MY_DIR="$PWD"; fi
  24. LINEAGE_ROOT="$MY_DIR"/../..
  25. HELPER="$LINEAGE_ROOT"/vendor/lineage/build/tools/extract_utils.sh
  26. if [ ! -f "$HELPER" ]; then
  27. echo "Unable to find helper script at $HELPER"
  28. exit 1
  29. fi
  30. . "$HELPER"
  31. SRC=$1
  32. if [ -z "$SRC" ]; then
  33. echo "Path to system dump not specified! Specify one with --path"
  34. exit 1
  35. fi
  36. # Initialize the helper for common gapps
  37. setup_vendor "$GAPPS_COMMON" "$VENDOR" "$LINEAGE_ROOT"
  38. extract "$MY_DIR"/proprietary-files-common.txt "$SRC"
  39. extract "$MY_DIR"/proprietary-files-common-nongrouper.txt "$SRC"
  40. "$MY_DIR"/setup-makefiles.sh