From 1590d3020aa76e6893d55d6641e111dd21982edf Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sun, 25 Jun 2006 15:42:53 +0000 Subject: add a simple /sbin/wifi script with support for the new broadcom driver (incomplete, but works) git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4072 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/base-files/brcm-2.4/etc/config/wireless | 12 +++++++ package/base-files/default/sbin/wifi | 47 +++++++++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 package/base-files/brcm-2.4/etc/config/wireless create mode 100755 package/base-files/default/sbin/wifi (limited to 'package/base-files') diff --git a/package/base-files/brcm-2.4/etc/config/wireless b/package/base-files/brcm-2.4/etc/config/wireless new file mode 100644 index 0000000000..a7e67435cf --- /dev/null +++ b/package/base-files/brcm-2.4/etc/config/wireless @@ -0,0 +1,12 @@ +config wifi-device wl0 + option type broadcom + option channel 5 + +config wifi-iface + option device wl0 + option mode ap + option ssid OpenWrt + option hidden 0 + option encryption none + + diff --git a/package/base-files/default/sbin/wifi b/package/base-files/default/sbin/wifi new file mode 100755 index 0000000000..c983fe0dfa --- /dev/null +++ b/package/base-files/default/sbin/wifi @@ -0,0 +1,47 @@ +#!/bin/sh +. /etc/functions.sh + +config_get_bool() { + local _tmp + config_get "$1" "$2" "$3" + eval "_tmp=\$$1" + case "$_tmp" in + 1|on|enabled) eval "$1=1";; + 0|off|disabled) eval "$1=0";; + *) eval "$1=${4:-0}";; + esac +} + +config_cb() { + config_get TYPE "$CONFIG_SECTION" TYPE + case "$TYPE" in + wifi-device) + append DEVICES "$CONFIG_SECTION" + ;; + wifi-iface) + config_get device "$CONFIG_SECTION" device + config_get vifs "$device" vifs + append vifs "$CONFIG_SECTION" + config_set "$device" vifs "$vifs" + ;; + esac +} + +config_load wireless + +[ -d /lib/wifi -a -n "$(ls /lib/wifi/*.sh 2>&-)" ] && { + for script in /lib/wifi/*.sh; do + . $script + done +} + +for device in $DEVICES; do ( + config_get type "$device" type + eval "type setup_$type 2>&- >&-" && { + eval "scan_$type '$device'" + eval "setup_$type '$device'" && { + # TODO: set up network settings + /bin/true + } || echo "$device($type): Setup failed" || true + } || echo "$device($type): Interface type not supported" +); done -- cgit v1.2.3