1
0
mirror of https://github.com/EliasKotlyar/Xiaomi-Dafang-Hacks.git synced 2025-09-09 15:40:45 +02:00

Dropbear new version (#1348)

* Dropbear new bin

* New version of Dropbear (v2019.78)
This commit is contained in:
nik0
2020-04-11 09:45:36 +02:00
committed by Julian Tatsch
parent aa17555e93
commit f5e985fdb0
2 changed files with 4 additions and 2 deletions

Binary file not shown.

View File

@@ -60,11 +60,13 @@ if [ ! -f ~/.busybox_aliases ]; then
/system/sdcard/bin/busybox --list | sed "s/^\(.*\)$/alias \1='busybox \1'/" > ~/.busybox_aliases
fi
## Create a swap file on SD if desired
## please view the swap.conf.dist file for more infomation
if [ -f "$CONFIGPATH/swap.conf" ]; then
. $CONFIGPATH/swap.conf
else
SWAP=false
fi
## Create a swap file on SD if desired
if [ "$SWAP" = true ]; then
if [ ! -f $SWAPPATH ]; then
echo "Creating ${SWAPSIZE}MB swap file on SD card" >> $LOGPATH