mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-15 05:22:59 +02:00
Fix forgotten bluetooth/settings
Some work on hostapd/wlanap package
This commit is contained in:
@@ -14,8 +14,8 @@ case "${1}" in
|
||||
# enable wlan module of collectd
|
||||
sed -i -e "s|#LoadPlugin wireless|LoadPlugin wireless|g" /etc/collectd.conf
|
||||
|
||||
# Set Atheros Card to master mode
|
||||
/usr/bin/wlanconfig ath0 destroy > /dev/null
|
||||
# Set Atheros Cards to master mode
|
||||
/usr/bin/wlanconfig $INTERFACE destroy > /dev/null
|
||||
/usr/bin/wlanconfig $INTERFACE create wlandev wifi0 wlanmode ap > /dev/null
|
||||
|
||||
# Set other cards to master mode
|
||||
@@ -31,16 +31,21 @@ case "${1}" in
|
||||
/usr/bin/hostapd -P /var/run/hostapd /etc/hostapd.conf </dev/tty12 >/dev/tty12 2>&1 &
|
||||
evaluate_retval
|
||||
fi
|
||||
|
||||
# Bring blue up (but not at boot)
|
||||
if [ "$(basename $0)" == "hostapd" ]; then
|
||||
/etc/rc.d/init.d/networking/blue start
|
||||
fi
|
||||
;;
|
||||
|
||||
stop)
|
||||
boot_mesg "Stopping hostapd..."
|
||||
|
||||
# Set Atheros Card to Managed mode
|
||||
# /usr/bin/wlanconfig $INTERFACE destroy > /dev/null
|
||||
# /usr/bin/wlanconfig $INTERFACE create wlandev wifi0 wlanmode sta > /dev/null
|
||||
# Set Atheros Card to managed mode
|
||||
/usr/bin/wlanconfig $INTERFACE destroy > /dev/null
|
||||
/usr/bin/wlanconfig $INTERFACE create wlandev wifi0 wlanmode sta > /dev/null
|
||||
|
||||
# Set other cards to master mode
|
||||
# Set other cards to managed mode
|
||||
#/usr/sbin/iwconfig blue0 mode Managed
|
||||
|
||||
killproc /usr/bin/hostapd
|
||||
|
||||
Reference in New Issue
Block a user