Home | History | Annotate | Line # | Download | only in wpa_supplicant
      1  1.1  christos #!/bin/bash
      2  1.1  christos #
      3  1.1  christos # Copyright (C) 2010 The Android Open Source Project
      4  1.1  christos #
      5  1.1  christos # This software may be distributed under the terms of the BSD license.
      6  1.1  christos # See README for more details.
      7  1.1  christos #
      8  1.1  christos 
      9  1.1  christos # Generate a wpa_supplicant.conf from the template.
     10  1.1  christos # $1: the template file name
     11  1.1  christos if [ -n "$WIFI_DRIVER_SOCKET_IFACE" ]
     12  1.1  christos then
     13  1.1  christos   sed -e 's/#.*$//' -e 's/[ \t]*$//' -e '/^$/d' < $1 | sed -e "s/wlan0/$WIFI_DRIVER_SOCKET_IFACE/"
     14  1.1  christos else
     15  1.1  christos   sed -e 's/#.*$//' -e 's/[ \t]*$//' -e '/^$/d' < $1
     16  1.1  christos fi
     17