]> git.ipfire.org Git - thirdparty/hostap.git/blame - wpa_supplicant/wpa_supplicant_conf.sh
EAP: Increase the maximum number of message exchanges
[thirdparty/hostap.git] / wpa_supplicant / wpa_supplicant_conf.sh
CommitLineData
6e2a570e
DS
1#!/bin/bash
2#
3# Copyright (C) 2010 The Android Open Source Project
4#
dfb42efb
DS
5# This software may be distributed under the terms of the BSD license.
6# See README for more details.
6e2a570e
DS
7#
8
9# Generate a wpa_supplicant.conf from the template.
10# $1: the template file name
11if [ -n "$WIFI_DRIVER_SOCKET_IFACE" ]
12then
13 sed -e 's/#.*$//' -e 's/[ \t]*$//' -e '/^$/d' < $1 | sed -e "s/wlan0/$WIFI_DRIVER_SOCKET_IFACE/"
14else
15 sed -e 's/#.*$//' -e 's/[ \t]*$//' -e '/^$/d' < $1
16fi