blob: d2f8ca7c26a0732b5c3c9a6d48016e0095d8a062 [file] [log] [blame]
#!/system/bin/sh
# Setup networking when boot starts
ifconfig eth0 10.0.2.15 netmask 255.255.255.0 up
route add default gw 10.0.2.2
# Open up port 5555 for adb
iptables -I INPUT -p tcp --dport 5555 -j ACCEPT -w
# Run dnsmasq so we can access hosts on the Internet. This is needed since
# Bionic hard-wires DNS requests to go to 0.0.0.0, so this acts as a DNS proxy.
dnsmasq --no-hosts --listen-address=127.0.0.1 --no-resolv --server=8.8.8.8 \
--pid-file < /dev/null