Skip to content

Commit 7aae0fc

Browse files
Add vendor for bonito-user 12 SP2A.220505.008 2023020600 release-keys
Signed-off-by: HyperNotAryanX97 <[email protected]>
1 parent 75687ee commit 7aae0fc

File tree

2,243 files changed

+64780
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,243 files changed

+64780
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
com.android.vibrator.drv2624B:vndkBlibbinder_ndk.soBlibc.soBlibdl.soB liblog.soBlibm.so
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
service vendor.vibrator.drv2624 /apex/com.android.vibrator.drv2624/bin/hw/android.hardware.vibrator-service.drv2624
2+
class hal
3+
user system
4+
group system
5+
6+
setenv PROPERTY_PREFIX ro.vendor.vibrator.hal.
7+
setenv CALIBRATION_FILEPATH /persist/haptics/drv2624.cal
8+
9+
setenv HWAPI_PATH_PREFIX /sys/class/leds/vibrator/
10+
setenv HWAPI_DEBUG_PATHS "
11+
device/autocal
12+
device/lp_trigger_effect
13+
device/lp_trigger_scale
14+
device/ol_lra_period
15+
state
16+
"
17+
18+
disabled
16.5 KB
Binary file not shown.
Binary file not shown.
160 Bytes
Binary file not shown.

vendor/bin/[

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/acpi

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/adsprpcd

11.2 KB
Binary file not shown.

vendor/bin/applypatch

268 KB
Binary file not shown.

vendor/bin/awk

133 KB
Binary file not shown.

vendor/bin/base64

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/basename

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/blockdev

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/boringssl_self_test32

2.6 KB
Binary file not shown.

vendor/bin/boringssl_self_test64

10.5 KB
Binary file not shown.

vendor/bin/cal

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/cat

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/cdsprpcd

11.2 KB
Binary file not shown.

vendor/bin/chattr

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/chcon

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/checkpoint_gc

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
#!/system/bin/sh
2+
3+
#
4+
# Copyright (C) 2019 The Android Open Source 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+
19+
# This script will run as an pre-checkpointing cleanup for mounting f2fs
20+
# with checkpoint=disable, so that the first mount after the reboot will
21+
# be faster. It is unnecessary to run if the device does not use userdata
22+
# checkpointing on F2FS.
23+
24+
# TARGET_SLOT="${1}"
25+
STATUS_FD="${2}"
26+
27+
SLEEP=5
28+
TIME=0
29+
MAX_TIME=1200
30+
31+
# We only need to run this if we're using f2fs
32+
if [ ! -f /dev/sys/fs/by-name/userdata/gc_urgent ]; then
33+
exit 0
34+
fi
35+
36+
# Ideally we want to track unusable, as it directly measures what we
37+
# care about. If it's not present, dirty_segments is the best proxy.
38+
if [ -f /dev/sys/fs/by-name/userdata/unusable ]; then
39+
UNUSABLE=1
40+
METRIC="unusable blocks"
41+
THRESHOLD=25000
42+
read START < /dev/sys/fs/by-name/userdata/unusable
43+
else
44+
METRIC="dirty segments"
45+
THRESHOLD=200
46+
read START < /dev/sys/fs/by-name/userdata/dirty_segments
47+
fi
48+
49+
log -pi -t checkpoint_gc Turning on GC for userdata
50+
echo 2 > /dev/sys/fs/by-name/userdata/gc_urgent || exit 1
51+
52+
53+
CURRENT=${START}
54+
TODO=$((${START}-${THRESHOLD}))
55+
while [ ${CURRENT} -gt ${THRESHOLD} ]; do
56+
log -pi -t checkpoint_gc ${METRIC}:${CURRENT} \(threshold:${THRESHOLD}\)
57+
PROGRESS=`echo "(${START}-${CURRENT})/${TODO}"|bc -l`
58+
if [[ $PROGRESS == -* ]]; then
59+
PROGRESS=0
60+
fi
61+
print -u${STATUS_FD} "global_progress ${PROGRESS}"
62+
if [ ${UNUSABLE} -eq 1 ]; then
63+
read CURRENT < /dev/sys/fs/by-name/userdata/unusable
64+
else
65+
read CURRENT < /dev/sys/fs/by-name/userdata/dirty_segments
66+
fi
67+
sleep ${SLEEP}
68+
TIME=$((${TIME}+${SLEEP}))
69+
if [ ${TIME} -gt ${MAX_TIME} ]; then
70+
log -pi -t checkpoint_gc Timed out with gc threshold not met.
71+
break
72+
fi
73+
# In case someone turns it off behind our back
74+
echo 2 > /dev/sys/fs/by-name/userdata/gc_urgent
75+
done
76+
77+
# It could be a while before the system reboots for the update...
78+
# Leaving on low level GC can help ensure the boot for ota is faster
79+
# If powerhints decides to turn it off, we'll just rely on normal GC
80+
log -pi -t checkpoint_gc Leaving on low GC for userdata
81+
echo 2 > /dev/sys/fs/by-name/userdata/gc_urgent
82+
sync
83+
84+
print -u${STATUS_FD} "global_progress 1.0"
85+
exit 0

vendor/bin/chgrp

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/chmod

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/chown

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/chre

92 KB
Binary file not shown.

vendor/bin/chroot

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/chrt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/cksum

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/clear

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/cmp

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/cnd

20.4 KB
Binary file not shown.

vendor/bin/cnss-daemon

66.1 KB
Binary file not shown.

vendor/bin/cnss_diag

297 KB
Binary file not shown.

vendor/bin/comm

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/cp

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/cpio

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/cut

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/date

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/dd

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/devmem

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/df

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/diag_mdlog

45.5 KB
Binary file not shown.

vendor/bin/diff

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/dirname

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/dmesg

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/dos2unix

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/du

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/dumpsys

41.5 KB
Binary file not shown.

vendor/bin/easelmanagerd

168 KB
Binary file not shown.

vendor/bin/echo

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/egrep

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/env

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/expand

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/expr

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/fallocate

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/false

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/fgrep

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/file

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/find

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/flock

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/fmt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/free

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/fsync

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/getconf

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/getenforce

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/getevent

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toolbox

vendor/bin/getprop

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toolbox

vendor/bin/grep

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/groups

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/gunzip

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/gzip

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/head

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/hostname

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
toybox_vendor

vendor/bin/hw/[email protected]

28.3 KB
Binary file not shown.
8.54 KB
Binary file not shown.

vendor/bin/hw/[email protected]

61.9 KB
Binary file not shown.

vendor/bin/hw/[email protected]

10.9 KB
Binary file not shown.

vendor/bin/hw/[email protected]

10.9 KB
Binary file not shown.

vendor/bin/hw/[email protected]_64

11.2 KB
Binary file not shown.

vendor/bin/hw/[email protected]

34.8 KB
Binary file not shown.

vendor/bin/hw/[email protected]

20.7 KB
Binary file not shown.

vendor/bin/hw/[email protected]

80.5 KB
Binary file not shown.

vendor/bin/hw/[email protected]

108 KB
Binary file not shown.

vendor/bin/hw/[email protected]

11 KB
Binary file not shown.

vendor/bin/hw/[email protected]

164 KB
Binary file not shown.

vendor/bin/hw/[email protected]

15.1 KB
Binary file not shown.

vendor/bin/hw/[email protected]

64.9 KB
Binary file not shown.

vendor/bin/hw/[email protected]

11.2 KB
Binary file not shown.

vendor/bin/hw/[email protected]

10.8 KB
Binary file not shown.

vendor/bin/hw/[email protected]

110 KB
Binary file not shown.

vendor/bin/hw/[email protected]

87.1 KB
Binary file not shown.

vendor/bin/hw/[email protected]

102 KB
Binary file not shown.

vendor/bin/hw/[email protected]

88.4 KB
Binary file not shown.

vendor/bin/hw/[email protected]

11.4 KB
Binary file not shown.

vendor/bin/hw/[email protected]

15.2 KB
Binary file not shown.

vendor/bin/hw/[email protected]

10.9 KB
Binary file not shown.

vendor/bin/hw/[email protected]

8.86 KB
Binary file not shown.

vendor/bin/hw/[email protected]

10.9 KB
Binary file not shown.

vendor/bin/hw/[email protected]

1.3 MB
Binary file not shown.

vendor/bin/hw/[email protected]

2.11 MB
Binary file not shown.

vendor/bin/hw/[email protected]

30.7 KB
Binary file not shown.
Binary file not shown.

vendor/bin/hw/[email protected]

113 KB
Binary file not shown.
Binary file not shown.

vendor/bin/hw/[email protected]

29.2 KB
Binary file not shown.

vendor/bin/hw/[email protected]

10.9 KB
Binary file not shown.

vendor/bin/hw/[email protected]

224 KB
Binary file not shown.

vendor/bin/hw/[email protected]

133 KB
Binary file not shown.

vendor/bin/hw/[email protected]

15.3 KB
Binary file not shown.

vendor/bin/hw/[email protected]

509 KB
Binary file not shown.

vendor/bin/hw/citadel_updater

49.7 KB
Binary file not shown.

vendor/bin/hw/citadeld

67.5 KB
Binary file not shown.

vendor/bin/hw/hostapd

1.48 MB
Binary file not shown.

0 commit comments

Comments
 (0)