This repository has been archived by the owner on Nov 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvendorsetup.sh
72 lines (70 loc) · 2.6 KB
/
vendorsetup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#
# This file is part of the OrangeFox Recovery Project
# Copyright (C) 2019-2022 The OrangeFox Recovery Project
#
# OrangeFox is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# any later version.
#
# OrangeFox is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# This software is released under GPL version 3 or any later version.
# See <http://www.gnu.org/licenses/>.
#
# Please maintain this if you use this script or any part of it
#
FOX_MANIFEST_ROOT=$(gettop)
if [ -f $FOX_MANIFEST_ROOT/bootable/recovery/orangefox_defaults.go -a -f $FOX_MANIFEST_ROOT/bootable/recovery/orangefox.mk ]; then
if [ -z "$TW_DEFAULT_LANGUAGE" ]; then
unset TW_DEFAULT_LANGUAGE
export TW_DEFAULT_LANGUAGE="zh_CH"
fi
export LC_ALL="C"
export FOX_VERSION=$(date +%y.%m.%d)
export OF_AB_DEVICE=1
export OF_USE_MAGISKBOOT_FOR_ALL_PATCHES=1
export OF_NO_MIUI_PATCH_WARNING=1
export OF_FBE_METADATA_MOUNT_IGNORE=1
export OF_PATCH_AVB20=1
export OF_PATCH_VBMETA_FLAG=1
export OF_USE_GREEN_LED=0
export OF_FLASHLIGHT_ENABLE=0
export OF_SCREEN_H=3200
export OF_STATUS_H=50
export OF_STATUS_INDENT_LEFT=85
export OF_STATUS_INDENT_RIGHT=85
export OF_HIDE_NOTCH=1
export OF_CLOCK_POS=1
export OF_ALLOW_DISABLE_NAVBAR=0
export TARGET_DEVICE_ALT="daumier"
export FOX_USE_BASH_SHELL=1
export FOX_ASH_IS_BASH=1
export FOX_USE_NANO_EDITOR=1
export FOX_USE_GREP_BINARY=1
export FOX_USE_TAR_BINARY=1
export FOX_USE_ZIP_BINARY=1
export FOX_USE_SED_BINARY=1
export FOX_REPLACE_TOOLBOX_GETPROP=1
export FOX_USE_XZ_UTILS=1
export FOX_REPLACE_BUSYBOX_PS=1
export OF_ENABLE_LPTOOLS=1
export OF_USE_NEW_MAGISKBOOT=1
export OF_DONT_PATCH_ENCRYPTED_DEVICE=1
export OF_NO_RELOAD_AFTER_DECRYPTION=1
export MAGISK_VER=25.1
export OF_SUPPORT_ALL_BLOCK_OTA_UPDATES=1
export OF_FIX_OTA_UPDATE_MANUAL_FLASH_ERROR=1
export FOX_R11=1
export OF_DISABLE_MIUI_OTA_BY_DEFAULT=1
export OF_QUICK_BACKUP_LIST="/boot;/vendor_boot;/data;"
if [ -n "$FOX_BUILD_LOG_FILE" -a -f "$FOX_BUILD_LOG_FILE" ]; then
export | grep "FOX" >>$FOX_BUILD_LOG_FILE
export | grep "OF_" >>$FOX_BUILD_LOG_FILE
export | grep "TARGET_" >>$FOX_BUILD_LOG_FILE
export | grep "TW_" >>$FOX_BUILD_LOG_FILE
fi
fi