Files
linux-kernel-module-cheat/rootfs_overlay/etc/init.d/S98
2019-07-07 00:00:01 +00:00

11 lines
257 B
Bash
Executable File

#!/bin/sh
# https://cirosantilli.com/linux-kernel-module-cheat#init-busybox
echo "hello S98"
cd "$lkmc_home"
if [ -n "$lkmc_eval" ]; then
eval "$lkmc_eval"
elif [ -n "$lkmc_eval_base64" ]; then
eval "$(printf "$lkmc_eval_base64" | base64 -d)"
fi
exit 0