From: Pali Rohár Date: Tue, 3 Jul 2012 12:41:02 +0000 (+0200) Subject: Added package wl1251-maemo which contains source code of packet injection wl1251... X-Git-Tag: wl1251-maemo-0.2 X-Git-Url: https://vcs.maemo.org/git/?a=commitdiff_plain;h=59ac09e200e34ea9c2ed53e22e962d4a5f1ea1e3;hp=2cd1abf4d2df149e49d90127a2b131c27dd863f4;p=kernel-power Added package wl1251-maemo which contains source code of packet injection wl1251 driver --- diff --git a/wl1251-maemo/debian/changelog b/wl1251-maemo/debian/changelog new file mode 100644 index 0000000..c60c187 --- /dev/null +++ b/wl1251-maemo/debian/changelog @@ -0,0 +1,5 @@ +wl1251-maemo (0.2) unstable; urgency=low + + * Initial release + + -- Pali Rohár Sun, 01 Jul 2012 21:11:26 +0200 diff --git a/wl1251-maemo/debian/compat b/wl1251-maemo/debian/compat new file mode 100644 index 0000000..7ed6ff8 --- /dev/null +++ b/wl1251-maemo/debian/compat @@ -0,0 +1 @@ +5 diff --git a/wl1251-maemo/debian/control b/wl1251-maemo/debian/control new file mode 100644 index 0000000..32eaef6 --- /dev/null +++ b/wl1251-maemo/debian/control @@ -0,0 +1,20 @@ +Source: wl1251-maemo +Section: devel +Priority: optional +Maintainer: Pali Rohár +Build-Depends: debhelper (>= 5) +Standards-Version: 3.9.2 +Homepage: http://david.gnedt.eu/blog/wl1251/ + +Package: wl1251-maemo-source +Architecture: all +Description: Source code of bleeding-edge wl1251 driver + This package contains a bleeding-edge wl1251 driver for use with Maemo + Fremantle on the Nokia N900. + . + It incorporates nearly all features found in the stock wl12xx driver used + in Maemo Fremantle, adds some bugfixes to wl1251 and also provides some + unique features like packet injection. + . + This package contains only source code of driver. Package is used by + source kernel packages which build driver at kernel compile time. diff --git a/wl1251-maemo/debian/rules b/wl1251-maemo/debian/rules new file mode 100755 index 0000000..8e15b8e --- /dev/null +++ b/wl1251-maemo/debian/rules @@ -0,0 +1,21 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +build: + +clean: + dh_testdir + dh_clean + +binary: + dh_testdir + dh_clean + mkdir -p debian/wl1251-maemo-source/usr/src + cp *.tar.bz2 debian/wl1251-maemo-source/usr/src/ + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +.PHONY: build clean binary