run: create -F option to run base64 encoded command after busybox init

Fix ./run -h which was showing the build help instead.
This commit is contained in:
Ciro Santilli
2018-04-19 08:57:35 +01:00
parent 9805d333ea
commit 2c084f5fb2
4 changed files with 40 additions and 11 deletions

View File

@@ -1,7 +1,8 @@
#!/bin/sh
echo "hello S98"
if [ -n "$lkmc_eval" ]; then
echo "$lkmc_eval"
eval "$lkmc_eval"
elif [ -n "$lkmc_eval_base64" ]; then
eval "$(printf "$lkmc_eval_base64" | base64 -d)"
fi
exit 0