mirror of
https://github.com/PixelExperience-Devices/device_xiaomi_miatoll.git
synced 2025-04-29 02:37:19 +09:00
Co-authored-by: Demon000 <demonsingur@gmail.com> Change-Id: Ia0d3ae0deb9ac8549065f2ae25d8f28ce9b5dd02
21 lines
421 B
Bash
Executable File
21 lines
421 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright (C) 2021 The LineageOS Project
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
# If we're being sourced by the common script that we called,
|
|
# stop right here. No need to go down the rabbit hole.
|
|
if [ "${BASH_SOURCE[0]}" != "${0}" ]; then
|
|
return
|
|
fi
|
|
|
|
set -e
|
|
|
|
export DEVICE=miatoll
|
|
export DEVICE_COMMON=sm6250-common
|
|
export VENDOR=xiaomi
|
|
|
|
"./../../${VENDOR}/${DEVICE_COMMON}/extract-files.sh" "$@"
|