kopia lustrzana https://github.com/cyoung/stratux
30 wiersze
783 B
Bash
Executable File
30 wiersze
783 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
# Preliminaries. Kill off old services.
|
|
/usr/bin/killall -9 hostapd hostapd-edimax
|
|
/usr/sbin/service isc-dhcp-server stop
|
|
|
|
|
|
# Detect RPi version.
|
|
# Per http://elinux.org/RPi_HardwareHistory
|
|
|
|
DAEMON_CONF=/etc/hostapd/hostapd.conf
|
|
DAEMON_SBIN=/usr/sbin/hostapd
|
|
EW7811Un=$(lsusb | grep EW-7811Un)
|
|
RPI_REV=`cat /proc/cpuinfo | grep 'Revision' | awk '{print $3}' | sed 's/^1000//'`
|
|
if [ "$RPI_REV" = "a01041" ] || [ "$RPI_REV" = "a21041" ] || [ "$RPI_REV" = "900092" ] && [ "$EW7811Un" != '' ]; then
|
|
# This is a RPi2B or RPi0 with Edimax USB Wifi dongle.
|
|
DAEMON_CONF=/etc/hostapd/hostapd-edimax.conf
|
|
DAEMON_SBIN=/usr/sbin/hostapd-edimax
|
|
else
|
|
DAEMON_CONF=/etc/hostapd/hostapd.conf
|
|
fi
|
|
|
|
|
|
${DAEMON_SBIN} -B ${DAEMON_CONF}
|
|
|
|
sleep 5
|
|
|
|
/usr/sbin/service isc-dhcp-server start
|