[Armadeus-commitlog] armadeus branch, master, updated. armadeus-5.3-635-gb2f5b0e
Brought to you by:
sszy
|
From: Julien B a. A. <ar...@us...> - 2015-03-02 16:34:19
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "armadeus".
The branch, master has been updated
via b2f5b0ee88a1bd4001f97bf70652a6fdf9e24f73 (commit)
via 71ce737c7b05d83d9ec0bc3ca09123189b50c0f5 (commit)
from bf63223603be598a499b0c5b472f2692fd60d29f (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit b2f5b0ee88a1bd4001f97bf70652a6fdf9e24f73
Author: Julien Boibessot <jul...@ar...>
Date: Mon Mar 2 17:32:45 2015 +0100
[LINUX] APF6: 3.10 legacy: add LED heartbeat support
commit 71ce737c7b05d83d9ec0bc3ca09123189b50c0f5
Author: Julien Boibessot <jul...@ar...>
Date: Mon Mar 2 17:30:55 2015 +0100
[BUILDROOT] 2015.02: Add the possibilty to choose i.MX Librairies version to avoid incompatibility with some kernels
-----------------------------------------------------------------------
Summary of changes:
.../armadeus/apf6/apf6legacy-linux-3.10.config | 6 ++
...sibility-to-choose-i.MX-Libraries-version.patch | 76 ++++++++++++++++++++
2 files changed, 82 insertions(+), 0 deletions(-)
create mode 100644 patches/buildroot/2015.02/019-armadeus-Add-the-possibility-to-choose-i.MX-Libraries-version.patch
diff --git a/buildroot/target/device/armadeus/apf6/apf6legacy-linux-3.10.config b/buildroot/target/device/armadeus/apf6/apf6legacy-linux-3.10.config
index 2abc708..dceab50 100644
--- a/buildroot/target/device/armadeus/apf6/apf6legacy-linux-3.10.config
+++ b/buildroot/target/device/armadeus/apf6/apf6legacy-linux-3.10.config
@@ -250,6 +250,12 @@ CONFIG_MXC_MIPI_CSI2=y
CONFIG_MXC_MLB150=m
CONFIG_NEW_LEDS=y
CONFIG_LEDS_CLASS=y
+CONFIG_LEDS_GPIO=y
+CONFIG_LEDS_PWM=y
+CONFIG_LEDS_TRIGGERS=y
+CONFIG_LEDS_TRIGGER_TIMER=y
+CONFIG_LEDS_TRIGGER_HEARTBEAT=y
+CONFIG_LEDS_TRIGGER_DEFAULT_ON=y
CONFIG_RTC_CLASS=y
CONFIG_RTC_INTF_DEV_UIE_EMUL=y
CONFIG_RTC_DRV_MC13XXX=y
diff --git a/patches/buildroot/2015.02/019-armadeus-Add-the-possibility-to-choose-i.MX-Libraries-version.patch b/patches/buildroot/2015.02/019-armadeus-Add-the-possibility-to-choose-i.MX-Libraries-version.patch
new file mode 100644
index 0000000..9c7faac
--- /dev/null
+++ b/patches/buildroot/2015.02/019-armadeus-Add-the-possibility-to-choose-i.MX-Libraries-version.patch
@@ -0,0 +1,76 @@
+From 8d3a9e4482c7e349f22fb29bb9676d599d88435a Mon Sep 17 00:00:00 2001
+From: Julien Boibessot <jul...@ar...>
+Date: Mon, 2 Mar 2015 16:46:07 +0100
+Subject: [PATCH 1/1] Add the possibility to choose i.MX Libraries version
+
+
+Signed-off-by: Julien Boibessot <jul...@ar...>
+---
+ package/freescale-imx/Config.in | 25 ++++++++++++++++++++
+ package/freescale-imx/freescale-imx.mk | 2 +-
+ .../0001-vpu-io-fix-IOSystemInit-failure.patch | 0
+ ...-lib-fix-IOGetVirtMem-return-value-checks.patch | 0
+ 4 files changed, 26 insertions(+), 1 deletion(-)
+ rename package/freescale-imx/imx-vpu/{ => 3.10.17-1.0.0}/0001-vpu-io-fix-IOSystemInit-failure.patch (100%)
+ rename package/freescale-imx/imx-vpu/{ => 3.10.17-1.0.0}/0002-vpu-lib-fix-IOGetVirtMem-return-value-checks.patch (100%)
+
+diff --git a/package/freescale-imx/Config.in b/package/freescale-imx/Config.in
+index 72d3c59..c2629b3 100644
+--- a/package/freescale-imx/Config.in
++++ b/package/freescale-imx/Config.in
+@@ -42,6 +42,31 @@ config BR2_PACKAGE_FREESCALE_IMX_PLATFORM
+ default "IMX53" if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX53
+ default "IMX6Q" if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX6Q
+
++choice
++ prompt "Version"
++ help
++ Freescale libraries are tidly binded with Linux kernel and so one
++ must choose the right librairies version for the right kernel.
++ For ex: rel_imx_3.10.17_1.0.0_ga kernel works only with 3.10.17-1.0.0
++ libraires.
++
++config BR2_PACKAGE_FREESCALE_IMX_VERSION_3_10_17
++ bool "3.10.17-1.0.0"
++
++config BR2_PACKAGE_FREESCALE_IMX_VERSION_3_10_31
++ bool "3.10.31-1.1.0-beta"
++
++config BR2_PACKAGE_FREESCALE_IMX_VERSION_3_10_53
++ bool "3.10.53-1.0.0"
++
++endchoice
++
++config BR2_PACKAGE_FREESCALE_IMX_VERSION
++ string
++ default "3.10.17-1.0.0" if BR2_PACKAGE_FREESCALE_IMX_VERSION_3_10_17
++ default "3.10.31-1.1.0-beta" if BR2_PACKAGE_FREESCALE_IMX_VERSION_3_10_31
++ default "3.10.53-1.0.0" if BR2_PACKAGE_FREESCALE_IMX_VERSION_3_10_53
++
+ source "package/freescale-imx/imx-lib/Config.in"
+ source "package/freescale-imx/imx-vpu/Config.in"
+ source "package/freescale-imx/firmware-imx/Config.in"
+diff --git a/package/freescale-imx/freescale-imx.mk b/package/freescale-imx/freescale-imx.mk
+index 64f3b6b..e34205a 100644
+--- a/package/freescale-imx/freescale-imx.mk
++++ b/package/freescale-imx/freescale-imx.mk
+@@ -4,7 +4,7 @@
+ #
+ ################################################################################
+
+-FREESCALE_IMX_VERSION = 3.10.17-1.0.0
++FREESCALE_IMX_VERSION = $(call qstrip,$(BR2_PACKAGE_FREESCALE_IMX_VERSION))
+ FREESCALE_IMX_SITE = http://www.freescale.com/lgfiles/NMG/MAD/YOCTO
+
+ # Helper for self-extracting binaries distributed by Freescale.
+diff --git a/package/freescale-imx/imx-vpu/0001-vpu-io-fix-IOSystemInit-failure.patch b/package/freescale-imx/imx-vpu/3.10.17-1.0.0/0001-vpu-io-fix-IOSystemInit-failure.patch
+similarity index 100%
+rename from package/freescale-imx/imx-vpu/0001-vpu-io-fix-IOSystemInit-failure.patch
+rename to package/freescale-imx/imx-vpu/3.10.17-1.0.0/0001-vpu-io-fix-IOSystemInit-failure.patch
+diff --git a/package/freescale-imx/imx-vpu/0002-vpu-lib-fix-IOGetVirtMem-return-value-checks.patch b/package/freescale-imx/imx-vpu/3.10.17-1.0.0/0002-vpu-lib-fix-IOGetVirtMem-return-value-checks.patch
+similarity index 100%
+rename from package/freescale-imx/imx-vpu/0002-vpu-lib-fix-IOGetVirtMem-return-value-checks.patch
+rename to package/freescale-imx/imx-vpu/3.10.17-1.0.0/0002-vpu-lib-fix-IOGetVirtMem-return-value-checks.patch
+--
+1.7.9.5
+
hooks/post-receive
--
armadeus
|