Skip to content
This repository was archived by the owner on Jul 21, 2019. It is now read-only.

Commit fd479cd

Browse files
v8.22
Bug Fix: SD Card detection on some devices with emulated SD Card.
1 parent 6da5a0d commit fd479cd

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

changelog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,3 +204,4 @@ v8.12 - Bug Fix: Recovery partition backup on HTC One (Sprint).
204204
v8.20 - Added: Return device ID used by TWRP (-d flag).
205205
Removed: (cp)uid from list of partitions help screen.
206206
v8.21 - Bug Fix: boot and recovery partition backup on MTD devices.
207+
v8.22 - Bug Fix: SD Card detection on some devices with emulated SD Card.

onandroid

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
######################################################################
3535

3636
#### Define constants
37-
version="8.21"
37+
version="8.22"
3838
blobsdir="/clockworkmod/blobs"
3939
tz="utc"
4040
req_power=10
@@ -806,7 +806,7 @@ else
806806
if $bb [ ! "$sdcard" ]; then
807807
sdcard="sdcard"
808808
fi
809-
sdcard=`$bb mount | $bb grep -v "/mnt/asec/" | $bb egrep -i "($sdcard|sdcard|external|storage).* type (vfat|fuse)" | $bb tail -n 1 | $bb cut -d ' ' -f 3`
809+
sdcard=`$bb mount | $bb grep -v "/mnt/asec/" | $bb egrep -i "($sdcard|sdcard|external|storage|shell).* type (vfat|fuse)" | $bb tail -n 1 | $bb cut -d ' ' -f 3`
810810
if $bb [ ! "$sdcard" ]; then
811811
logmsg "SD card not found! Exiting..."
812812
logerror "Mounts:" "`$bb mount | $bb grep -v "/mnt/asec/"`"

version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8.21
1+
8.22

0 commit comments

Comments
 (0)