27 lines
856 B
BlitzBasic
27 lines
856 B
BlitzBasic
#
|
|
# Copyright (C) 2012 Digi International.
|
|
#
|
|
SUMMARY = "Wireless packagegroup for DEY image"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|
|
inherit packagegroup
|
|
|
|
WIRELESS_MODULE ?= ""
|
|
WIRELESS_MODULE_append_mx5 = "${@base_contains('MACHINE_FEATURES', 'wifi', 'kernel-module-redpine', '', d)}"
|
|
WIRELESS_MODULE_append_mxs = "${@base_contains('MACHINE_FEATURES', 'wifi', 'kernel-module-atheros', '', d)}"
|
|
WIRELESS_MODULE_append_mx6 = "${@base_contains('MACHINE_FEATURES', 'wifi', 'kernel-module-atheros', '', d)}"
|
|
|
|
RDEPENDS_${PN} = "\
|
|
crda \
|
|
wireless-tools \
|
|
wpa-supplicant \
|
|
wpa-supplicant-cli \
|
|
wpa-supplicant-passphrase \
|
|
${WIRELESS_MODULE} \
|
|
"
|
|
|
|
RDEPENDS_${PN}_append_mxs = " iw ath-prop-tools"
|
|
RDEPENDS_${PN}_append_mx6 = " iw ath-prop-tools"
|