⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 init.goldfish.sh

📁 Android 一些工具
💻 SH
字号:
#!/system/bin/shifconfig eth0 10.0.2.15 netmask 255.255.255.0 uproute add default gw 10.0.2.2 dev eth0qemud=`getprop.ro.kernel.android.qemud`if test -z "$qemud"; then    radio_ril=`getprop ro.kernel.android.ril`    if test -z "$radio_ril"; then        # no need for the radio interface daemon        # telephony is entirely emulated in Java        setprop ro.radio.noril yes        stop ril-daemon    fifinum_dns=`getprop ro.kernel.android.ndns`case "$num_dns" in    2) setprop net.eth0.dns2 10.0.2.4    ;;    3) setprop net.eth0.dns2 10.0.2.4    setprop net.eth0.dns3 10.0.2.5    ;;    4) setprop net.eth0.dns2 10.0.2.4    setprop net.eth0.dns3 10.0.2.5    setprop net.eth0.dns4 10.0.2.6    ;;esac# disable boot animation for a faster boot sequence when neededboot_anim=`getprop ro.kernel.android.bootanim`case "$boot_anim" in    0)  setprop debug.sf.nobootanimation 1    ;;esac# this line doesn't really do anything useful. however without it the# previous setprop doesn't seem to apply for some really odd reasonsetprop ro.qemu.init.completed 1

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -