Skip to content

Commit

Permalink
Refactor: CLI Core
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed May 22, 2021
1 parent 1bb469d commit f354470
Show file tree
Hide file tree
Showing 49 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ configure()
echo "aid_$(id -un):x:$(id -u):$(id -g):Android user:/:/usr/sbin/nologin" >> "$rootfs/etc/passwd"
echo "aid_$(id -un):*:18446:0:99999:7:::" >> "$rootfs/etc/shadow"
local aid
for aid in $(cat "$TOOLKIT/include/android_groups")
for aid in $(cat "$TOOLKIT/bin/include/android_groups")
do
local xname=$(echo ${aid} | awk -F: '{print $1}')
local xid=$(echo ${aid} | awk -F: '{print $2}')
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion app/src/main/assets/shell_init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export TOOLKIT="$START_DIR/app_xbin"
export APP_FILES_DIR="$SDCARD_PATH/Android/data/$PACKAGE_NAME/files/"
export PATH="/system/bin:/sbin:$TOOLKIT"
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$TOOLKIT/lib"
export TMPDIR="$TOOLKIT/cache"
export TMPDIR="$TOOLKIT/tmp"
export CONFIG_DIR="$APP_FILES_DIR/config"
export PROOT_TMP_DIR="$TMPDIR"
export PROOT_LOADER="$TOOLKIT/libexec/libloader.so"
Expand Down

0 comments on commit f354470

Please sign in to comment.