9 lines
177 B
Bash
9 lines
177 B
Bash
#!/bin/bash
|
|
if [[ `whoami` != root ]]; then
|
|
echo 这不是 root 用户,结束
|
|
exit 1
|
|
fi
|
|
modprobe binder_linux
|
|
mkdir /dev/binderfs
|
|
mount -t binder binder /dev/binderfs
|