Dear Sunder,
I have faced the same problem and solved by adding crda source manually. Below the steps which I followed.@
wget http://wireless.kernel.org/download/crda/crda-1.1.3.tar.bz2
cp crda-1.1.3.tar.bz2 downloads/
touch downloads/crda-1.1.3.tar.bz2
and before starting the build process, commented the url path and checksum checking parameter in BB script. Below my bb script for crda -
DESCRIPTION = "Wireless Central Regulatory Domain Agent"
HOMEPAGE = "http://wireless.kernel.org/en/developers/Regulatory/CRDA"
LICENSE = "ISC"
LIC_FILES_CHKSUM = "file://LICENSE;md5=07c4f6dea3845b02a18dc00c8c87699c"
DEPENDS = "python-m2crypto-native python-native libgcrypt libnl"
#SRC_URI = "http://wireless.kernel.org/download/crda/${BP}.tar.bz2;name=crda \
# http://wireless.kernel.org/download/wireless-regdb/regulatory.bins/2013.01.11-regulatory.bin;name=bi... \
#"
#Defined local source path by MELabs-Feb24,2015
#SRC_URI = "file://home/sijisunny/Desktop/Atoll/FreeScale/Build/imx/downloads/crda-1.1.3.tar.bz2;name=crda2;name=crda \
# http://wireless.kernel.org/download/wireless-regdb/regulatory.bins/2013.01.11-regulatory.bin;name=bi... \
#"
#SRC_URI[crda.md5sum] = "4852ec6af7a01c1e34bba9c3e95552d9"
#SRC_URI[crda.sha256sum] = "027b3540c80b07c138f8ba37cb7d770b65845f92c20fe827f05619285eff0a70"
inherit python-dir pythonnative
# Recursive make problem !
EXTRA_OEMAKE = "MAKEFLAGS= DESTDIR=${D}"
do_compile() {
oe_runmake all_noverify
}
do_install() {
oe_runmake install
install -d ${D}${libdir}/crda/
install -m 0644 ${WORKDIR}/2013.01.11-regulatory.bin ${D}${libdir}/crda/regulatory.bin
}
RDEPENDS_${PN} = "udev"
FILES_${PN} += "${libdir}crda/regulatory.bin \
${base_libdir}/udev/rules.d/85-regulatory.rules \