From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qa0-f53.google.com (mail-qa0-f53.google.com [209.85.216.53]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 082D4E01410 for ; Mon, 18 Mar 2013 13:25:36 -0700 (PDT) Received: by mail-qa0-f53.google.com with SMTP id z4so1927812qan.12 for ; Mon, 18 Mar 2013 13:25:36 -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=KsXIuNDIhzjKFJAysUwBtsbY5H4R7THmdt+8iX4p+d4=; b=ePr81sfje5g19HBctDCWdPtbj2wECdGf35T6EB1IcSfeHGY7xdvp974TE9ADwr9mGH 459z1LS0v/1AITLEU99QGGFV53kRqs6qPuzo01QRbPggIQX3gZJKcRBAdTEJOU4KZoOj k6GGp0TSak6q0mZJj/VkVMazvFWV7tkATLaOywPsb/kp9V/ubDWz00hGUueqIuY9DEpe GLc6CMyzdrS/Hmvn5rceDQ+nv/G0WLVdQ5L6aR9tt/+qEkhSRM9xoDGD0U2bNgqPzMdF lC1M2Z0cuElEZSs76qA2dp9qwKpPEVBgJobtosGtn6fFg0GK0z+8vOF1NsE6DHcDgsPq 297w== X-Received: by 10.49.116.235 with SMTP id jz11mr25389278qeb.39.1363638336154; Mon, 18 Mar 2013 13:25:36 -0700 (PDT) Received: from localhost.localdomain ([75.76.228.60]) by mx.google.com with ESMTPS id az3sm34754411qeb.7.2013.03.18.13.25.34 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 18 Mar 2013 13:25:35 -0700 (PDT) From: John Weber To: meta-freescale@yoctoproject.org Date: Mon, 18 Mar 2013 15:25:26 -0500 Message-Id: <1363638331-4603-1-git-send-email-rjohnweber@gmail.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: References: Subject: [meta-fsl-arm-extra][PATCH v2 0/5] Enable wifi support for Wandboard Dual 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:37 -0000 This patchset provides fixes and wifi support for Wandboard-Dual. Fixes ESDHC platform data in kernel board init Replaces old wifi driver in drivers/staging with a backported driver from kernel v3.5 Adds a recipe to install wifi chip firmware (linux-firmware bbappend) Adds a recipe (wandboard-wifi-support) to provide the nvram file for the chip and to create appropriate symlinks for the firmware files. Adds a dependency in the wandboard-dual machine conf to integrate the wandboard-wifi-support recipe. Changes since v1: Removed an unneeded formatting change to the ESDHC platform data patch. Combined the remove and add patches for the wifi device driver, as well as integrated the changes to the kernel recipe. Separated out the machine-specific code from the linux-firmware.bbappend and removed the PRINC in linux-firmware_git.bbappend in anticipation that we will be upstreaming this into oe-core. Created a machine-specific wifi support recipe for wandboard. Added patch numbers to the shortlog John Weber (5): linux-imx (3.0.35): wandboard: fix sdhc platform data linux-imx (3.0.35): wandboard: replace brcm80211 driver linux-firmware: Add bbappend to include Broadcom wifi drivers wandboard-wifi-support: add nvram file and create firmware links wandboard-dual: Add wandboard-wifi-support to machine conf/machine/wandboard-dual.conf | 3 + .../files/LICENCE.broadcom_bcm43xx | 65 + .../files/wandboard-brcmfmac-nvram.txt | 70 + .../wandboard-wifi-support.bb | 41 + .../linux-firmware/linux-firmware_git.bbappend | 24 + ...002-wandboard-dual-fix-sdhc-platform-data.patch | 52 + ....0.35-Add-brcm80211-driver-backported-fro.patch |94038 +++++++++++++++ ...mx-3.0.35-remove-brcm80211-staging-driver.patch |123141 ++++++++++++++++++++ .../linux-imx-3.0.35/wandboard-dual/defconfig | 6 + recipes-kernel/linux/linux-imx_3.0.35.bbappend | 5 +- 10 files changed, 217444 insertions(+), 1 deletion(-) create mode 100644 recipes-bsp/wandboard-wifi-support/files/LICENCE.broadcom_bcm43xx create mode 100644 recipes-bsp/wandboard-wifi-support/files/wandboard-brcmfmac-nvram.txt create mode 100644 recipes-bsp/wandboard-wifi-support/wandboard-wifi-support.bb create mode 100644 recipes-kernel/linux-firmware/linux-firmware_git.bbappend create mode 100644 recipes-kernel/linux/linux-imx-3.0.35/wandboard-dual/0002-wandboard-dual-fix-sdhc-platform-data.patch create mode 100644 recipes-kernel/linux/linux-imx-3.0.35/wandboard-dual/0003-linux-imx-3.0.35-Add-brcm80211-driver-backported-fro.patch create mode 100644 recipes-kernel/linux/linux-imx-3.0.35/wandboard-dual/0003-linux-imx-3.0.35-remove-brcm80211-staging-driver.patch -- 1.7.9.5