blob: 12a8caea81641dd9888be2f69ea361b2dd2a45b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
DESCRIPTION = "meta-package for prism3 support through ifupdown and hostap_fw_load"
SECTION = "base"
LICENSE = "GPL"
DEPENDS = "prism3-firmware hostap-utils"
RDEPENDS = "prism3-firmware hostap-utils"
MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>"
PR = "r0"
PACKAGE_ARCH = "all"
SRC_URI = "file://hostap-fw-load"
do_install() {
install -d ${D}${sysconfdir}/network/if-pre-up.d/
install -m 0755 ${WORKDIR}/hostap-fw-load ${D}${sysconfdir}/network/if-pre-up.d/
}
|