[API-886][wifi]support DFS,add IFL change for DFS
Change-Id: Ic5559b30ee86e2394a2866df806a093179a1f987
diff --git a/src/lynq/packages/thirdpart/lynq-wg870/hostap/wpaspy/setup.py b/src/lynq/packages/thirdpart/lynq-wg870/hostap/wpaspy/setup.py
new file mode 100755
index 0000000..4dbf765
--- /dev/null
+++ b/src/lynq/packages/thirdpart/lynq-wg870/hostap/wpaspy/setup.py
@@ -0,0 +1,22 @@
+#!/usr/bin/python
+#
+# Python bindings for wpa_ctrl (wpa_supplicant/hostapd control interface)
+# Copyright (c) 2013, Jouni Malinen <j@w1.fi>
+#
+# This software may be distributed under the terms of the BSD license.
+# See README for more details.
+
+from distutils.core import setup, Extension
+
+ext = Extension(name = 'wpaspy',
+ sources = ['../src/common/wpa_ctrl.c',
+ '../src/utils/os_unix.c',
+ 'wpaspy.c'],
+ extra_compile_args = ["-I../src/common",
+ "-I../src/utils",
+ "-DCONFIG_CTRL_IFACE",
+ "-DCONFIG_CTRL_IFACE_UNIX"])
+
+setup(name = 'wpaspy',
+ ext_modules = [ext],
+ description = 'Python bindings for wpa_ctrl (wpa_supplicant/hostapd)')