pmaports/device/device-sony-castor-windy/device-sony-castor_windy.post-install
opendata26 b3dc47f687 Add firmware-adreno package (#393)
* Add support for wifi and touchscreen on castor
* Various fixes
* Add firmware-adreno package
* Download firmware files
2017-08-18 21:13:38 +00:00

17 lines
350 B
Bash

#!/bin/sh
# Enable networking service (requires /etc/interfaces, which is configured below)
rc-update add networking default
# Create /etc/network/interfaces if this doesn't exist
if [ ! -f /etc/network/interfaces ]; then
cat << EOF >> /etc/network/interfaces
auto lo
iface lo inet loopback
auto wlan0
iface wlan0 inet dhcp
EOF
fi
exit 0