From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qe0-f42.google.com (mail-qe0-f42.google.com [209.85.128.42]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 052BBE01472 for ; Mon, 18 Mar 2013 13:25:52 -0700 (PDT) Received: by mail-qe0-f42.google.com with SMTP id f6so3685660qej.29 for ; Mon, 18 Mar 2013 13:25:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=kCCrFZSYix1T6mfdto1FMB+ABExWWenFbWfOAkolfvM=; b=EwvC7CdVM/xuJIDXU+ym03F5LownvCtARgmc4oLRCYUTFhv0uA3AcAhW31f3LNOhXc QjfT38fyLXzHv8sYQVRaFUy5BHvi1X60KK7ABeTMccWOuKEIMRVP4DDt8Eyybu7eFgTI LzLNJidZwmmf0DDHq0Nyt5ptl9EykK4BURRsoTN5N+7HsJNiFtv4f3B29qa8BdJ6SlGa s8VQC2pMPyJ7QQDuriTh1jU+iA2Ee7cQtBbiyPDiZpvyDHKu2yNQpUaEXRFeS+wba+Ch 7Y5ZmH3Z/dkLQAi85aviEvKsUQVdQsYeICni9p8dcH30SPP53jAbAepA65BCGae4TRqm nu8Q== X-Received: by 10.229.170.194 with SMTP id e2mr386926qcz.48.1363638352369; Mon, 18 Mar 2013 13:25:52 -0700 (PDT) Received: from localhost.localdomain ([75.76.228.60]) by mx.google.com with ESMTPS id az3sm34754411qeb.7.2013.03.18.13.25.51 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 18 Mar 2013 13:25:51 -0700 (PDT) From: John Weber To: meta-freescale@yoctoproject.org Date: Mon, 18 Mar 2013 15:25:29 -0500 Message-Id: <1363638331-4603-4-git-send-email-rjohnweber@gmail.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1363638331-4603-1-git-send-email-rjohnweber@gmail.com> References: <1363638331-4603-1-git-send-email-rjohnweber@gmail.com> Subject: [meta-fsl-arm-extra][PATCH v2 3/5] linux-firmware: Add bbappend to include Broadcom wifi drivers X-BeenThere: meta-freescale@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Usage and development list for the meta-fsl-* layers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Mar 2013 20:25:53 -0000 This recipe adds files for split packages to support the bcm4329, bcm4330, and bcm4334. They are installed in /lib/firmware/brcm/brcmfmac43.bin where is the last two digits of the device product number. Note: The wifi driver for these devices expects the firmware file to be named brcmfmac-sdio.bin, and so a link must be created named brcmfmac-sdio.bin to the appropriate file. Ultimately, this could be done with update-alternatives in this recipe but it could also be accomplished in another recipe which RDEPENDS on linux-firmware-bcm43 Signed-off-by: John Weber --- .../linux-firmware/linux-firmware_git.bbappend | 24 ++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 recipes-kernel/linux-firmware/linux-firmware_git.bbappend diff --git a/recipes-kernel/linux-firmware/linux-firmware_git.bbappend b/recipes-kernel/linux-firmware/linux-firmware_git.bbappend new file mode 100644 index 0000000..b854cca --- /dev/null +++ b/recipes-kernel/linux-firmware/linux-firmware_git.bbappend @@ -0,0 +1,24 @@ +FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}" + +LIC_FILES_CHKSUM += "file://LICENCE.broadcom_bcm43xx;md5=3160c14df7228891b868060e1951dfbc\ +" + +PACKAGES =+ "${PN}-bcm4329 ${PN}-bcm4330 ${PN}-bcm4334" + +LICENSE_${PN}-bcm4329 = "Firmware-bcm4329" +FILES_${PN}-bcm4329 = " \ + /lib/firmware/brcm/brcmfmac4329.bin \ + /lib/firmware/LICENCE.broadcom_bcm43xx \ +" + +LICENSE_${PN}-bcm4330 = "Firmware-bcm4330" +FILES_${PN}-bcm4330 = " \ + /lib/firmware/brcm/brcmfmac4330.bin \ + /lib/firmware/LICENCE.broadcom_bcm43xx \ +" + +LICENSE_${PN}-bcm4334 = "Firmware-bcm4334" +FILES_${PN}-bcm4334 = " \ + /lib/firmware/brcm/brcmfmac4334.bin \ + /lib/firmware/LICENCE.broadcom_bcm43xx \ +" -- 1.7.9.5