15 lines
258 B
Bash
Executable file
15 lines
258 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# Copyright (C) 2020 The LineageOS Project
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
set -e
|
|
|
|
# Required!
|
|
export DEVICE=haydn
|
|
export DEVICE_COMMON=sm8350-common
|
|
export VENDOR=xiaomi
|
|
|
|
"./../../${VENDOR}/${DEVICE_COMMON}/setup-makefiles.sh" "$@"
|