[Lunar-commits] CVS: moonbase/net/wpa_supplicant CONFIGURE, NONE, 1.1 BUILD, 1.1, 1.2 DEPENDS, 1.1, 1.2

Moritz Heiber moe at lunar-linux.org
Tue Oct 19 19:11:25 UTC 2004


Update of /var/cvs/lunar/moonbase/net/wpa_supplicant
In directory espresso.foo-projects.org:/tmp/cvs-serv12908

Modified Files:
	BUILD DEPENDS 
Added Files:
	CONFIGURE 
Log Message:
Yeah well .. this one works better. First step of ipw2100 support.
Driver is in cvs but not in the stable branch yet (GNAH)


--- NEW FILE: CONFIGURE ---
if  !  grep  -q  CONFIGURED  $MODULE_CONFIG;  then

  if  query  "Enable support for the IPW2100 driver?" y;  then
    $WITH_IPW2100="y"
  fi

  echo  'WITH_IPW2100='\"$WITH_IPW2100\"    >>  $MODULE_CONFIG
  echo  'CONFIGURED="y"'  >>  $MODULE_CONFIG

fi

Index: BUILD
===================================================================
RCS file: /var/cvs/lunar/moonbase/net/wpa_supplicant/BUILD,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- BUILD	19 Oct 2004 18:20:46 -0000	1.1
+++ BUILD	19 Oct 2004 19:11:23 -0000	1.2
@@ -1,15 +1,11 @@
 (
+  if [ $WITH_IPW2100 ]; then
+	OPTS="$OPTS CONFIG_DRIVER_IPW2100=y"
+  fi
 
-  echo \
+  for option in \
   CONFIG_DRIVER_HOSTAP=y \
   CONFIG_DRIVER_PRISM54=y \
-  CONFIG_DRIVER_HERMES=y \
-  CONFIG_DRIVER_MADWIFI=y \
-  CONFIG_DRIVER_ATMEL=y \
-  CONFIG_DRIVER_WEXT=y \
-  CONFIG_DRIVER_NDISWRAPPER=y \
-  CONFIG_DRIVER_BROADCOM=y \
-  CONFIG_DRIVER_IPW2100=y \
   CONFIG_WIRELESS_EXTENSION=y \
   CONFIG_IEEE8021X_EAPOL=y \
   CONFIG_EAP_MD5=y \
@@ -23,8 +19,9 @@
   CONFIG_EAP_AKA=y \
   CONFIG_EAP_PSK=y \
   CONFIG_EAP_LEAP=y \
-  CONFIG_PCSC=y \
-  > .config &&
+  $OPTS; do
+	echo $option >> .config;
+  done &&
 
   make  &&
   install -m755 wpa_supplicant	/usr/bin	&&

Index: DEPENDS
===================================================================
RCS file: /var/cvs/lunar/moonbase/net/wpa_supplicant/DEPENDS,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- DEPENDS	19 Oct 2004 18:20:46 -0000	1.1
+++ DEPENDS	19 Oct 2004 19:11:23 -0000	1.2
@@ -1,2 +1,3 @@
 depends wireless_tools  &&
-depends openssl
+depends openssl  &&
+depends hostap-driver



More information about the Lunar-commits mailing list