diff options
author | Robert Nelson <robertcnelson@gmail.com> | 2009-06-03 09:11:48 +0200 |
---|---|---|
committer | Koen Kooi <koen@Powerbook-3.local> | 2009-06-05 17:48:07 +0200 |
commit | 24d1f97335abff79e26cac5e66b401acca411170 (patch) | |
tree | 8becb9ab94710bffbbfe5bb8603315c1f76b8fb6 /recipes/linux-firmware/zd1211-firmware_1.4.bb | |
parent | d73aaeeb6f68bc0f190813d6c7c93dcb510c1a78 (diff) |
linux-firmware: add recipes to package firmwares that used to be in the kernel
Diffstat (limited to 'recipes/linux-firmware/zd1211-firmware_1.4.bb')
-rw-r--r-- | recipes/linux-firmware/zd1211-firmware_1.4.bb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/recipes/linux-firmware/zd1211-firmware_1.4.bb b/recipes/linux-firmware/zd1211-firmware_1.4.bb new file mode 100644 index 0000000000..c297921373 --- /dev/null +++ b/recipes/linux-firmware/zd1211-firmware_1.4.bb @@ -0,0 +1,20 @@ +DESCRIPTION = "zd1211 wifi files for the Linux kernel" +HOMEPAGE = "http://zd1211.ath.cx/" +LICENSE = "GPL" + +SRC_URI = "${SOURCEFORGE_MIRROR}/zd1211/zd1211-firmware-${PV}.tar.bz2" + +S = "${WORKDIR}" + +do_compile() { + : +} + +do_install() { + install -d ${D}/lib/firmware/zd1211 + cp -rpP zd1211-firmware/* ${D}/lib/firmware/zd1211 +} + +FILES_${PN} += "/lib/firmware/zd1211/*" +PACKAGE_ARCH = "all" + |