[Armadeus-commitlog] armadeus branch, master, updated. armadeus-4.1-126-g396bada
Brought to you by:
sszy
|
From: jorasse <jo...@us...> - 2012-03-13 15:49:30
|
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 396badac15634e47e19abd37314e8f48bc5c698a (commit)
from 2ca2fe309f3c961499059ec738a1b67663ecbbe9 (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 396badac15634e47e19abd37314e8f48bc5c698a
Author: Eric Jarrige <eri...@ar...>
Date: Tue Mar 13 16:59:24 2012 +0100
[BUILDROOT] update u-boot.sb file format and elftosb package
-----------------------------------------------------------------------
Summary of changes:
...support-for-Safe-Boot-file-format-this-fo.patch | 21 +++++++------------
.../165-Add-Freescale-elftosb-host-package.patch | 20 ++++++++++++------
2 files changed, 21 insertions(+), 20 deletions(-)
diff --git a/patches/buildroot/2012.02/051a-U-Boot-add-support-for-Safe-Boot-file-format-this-fo.patch b/patches/buildroot/2012.02/051a-U-Boot-add-support-for-Safe-Boot-file-format-this-fo.patch
index ecc0856..b5578e5 100644
--- a/patches/buildroot/2012.02/051a-U-Boot-add-support-for-Safe-Boot-file-format-this-fo.patch
+++ b/patches/buildroot/2012.02/051a-U-Boot-add-support-for-Safe-Boot-file-format-this-fo.patch
@@ -1,8 +1,10 @@
-From 4120ce0947982895eba6cea75615bac32e2c8e42 Mon Sep 17 00:00:00 2001
+From c6f5dc1ac36a8b01a732b972035a1ace5b97f790 Mon Sep 17 00:00:00 2001
From: Eric Jarrige <eri...@ar...>
-Date: Thu, 8 Mar 2012 13:28:29 +0100
-Subject: [PATCH] U-Boot: add support for Safe Boot file format - this format is used by some Freescale cpu
+Date: Tue, 13 Mar 2012 12:42:52 +0100
+Subject: [PATCH 2/2] u-boot: add support for u-boot.sb file format
+add u-boot.sb binary format in BR menuconfig - Safe Boot (.sb) file format
+have to be used with Freescale CPUs like imx23, imx28, stp37xx
Signed-off-by: Eric Jarrige <eri...@ar...>
---
@@ -25,22 +27,15 @@ index c8db9fb..5fd5258 100644
menuconfig BR2_TARGET_UBOOT_NETWORK
diff --git a/boot/uboot/uboot.mk b/boot/uboot/uboot.mk
-index db9de8d..47a016f 100644
+index db9de8d..1394400 100644
--- a/boot/uboot/uboot.mk
+++ b/boot/uboot/uboot.mk
-@@ -7,6 +7,7 @@ UBOOT_VERSION = $(call qstrip,$(BR2_TARGET_UBOOT_VERSION))
- UBOOT_BOARD_NAME = $(call qstrip,$(BR2_TARGET_UBOOT_BOARDNAME))
-
- UBOOT_INSTALL_IMAGES = YES
-+UBOOT_DEPENDENCIES = $(ifeq ($(BR2_TARGET_UBOOT_FORMAT_SB),y)) host-elftosb
-
- ifeq ($(UBOOT_VERSION),custom)
- # Handle custom U-Boot tarballs as specified by the configuration
-@@ -29,6 +30,9 @@ else ifeq ($(BR2_TARGET_UBOOT_FORMAT_LDR),y)
+@@ -29,6 +29,10 @@ else ifeq ($(BR2_TARGET_UBOOT_FORMAT_LDR),y)
UBOOT_BIN = u-boot.ldr
else ifeq ($(BR2_TARGET_UBOOT_FORMAT_NAND_BIN),y)
UBOOT_BIN = u-boot-nand.bin
+else ifeq ($(BR2_TARGET_UBOOT_FORMAT_SB),y)
++UBOOT_DEPENDENCIES += host-elftosb
+UBOOT_BIN = u-boot.sb
+UBOOT_MAKE_TARGET = $(UBOOT_BIN)
else
diff --git a/patches/buildroot/2012.02/165-Add-Freescale-elftosb-host-package.patch b/patches/buildroot/2012.02/165-Add-Freescale-elftosb-host-package.patch
index 6b69eb1..8fe5346 100644
--- a/patches/buildroot/2012.02/165-Add-Freescale-elftosb-host-package.patch
+++ b/patches/buildroot/2012.02/165-Add-Freescale-elftosb-host-package.patch
@@ -1,7 +1,7 @@
-From 25876250d2d0fe7fffa0855b65ea2b824618779e Mon Sep 17 00:00:00 2001
+From 20b9ebcb8f0b655a6954995982cd8a7182f9acc9 Mon Sep 17 00:00:00 2001
From: Eric Jarrige <eri...@ar...>
-Date: Mon, 12 Mar 2012 11:57:34 +0100
-Subject: [PATCH] Add (Freescale) elftosb host package
+Date: Tue, 13 Mar 2012 11:10:57 +0100
+Subject: [PATCH 1/2] Add (Freescale) elftosb host package
Elftosb is a Freescale toolset to build binary image files (like U-Boot.sb)
to be used with CPUs imx23, imx28, stp37xx
@@ -9,8 +9,8 @@ to be used with CPUs imx23, imx28, stp37xx
Signed-off-by: Eric Jarrige <eri...@ar...>
---
package/elftosb/elftosb.mk | 28 ++++++++++++++++++++
- .../elftosb/elftosb10.12.01-fixes_includes.patch | 13 +++++++++
- 2 files changed, 41 insertions(+), 0 deletions(-)
+ .../elftosb/elftosb10.12.01-fixes_includes.patch | 19 +++++++++++++
+ 2 files changed, 47 insertions(+), 0 deletions(-)
create mode 100644 package/elftosb/elftosb.mk
create mode 100644 package/elftosb/elftosb10.12.01-fixes_includes.patch
@@ -50,10 +50,16 @@ index 0000000..75b95a5
+
diff --git a/package/elftosb/elftosb10.12.01-fixes_includes.patch b/package/elftosb/elftosb10.12.01-fixes_includes.patch
new file mode 100644
-index 0000000..5e31233
+index 0000000..eaf8eba
--- /dev/null
+++ b/package/elftosb/elftosb10.12.01-fixes_includes.patch
-@@ -0,0 +1,13 @@
+@@ -0,0 +1,19 @@
++This patch uses system include files instead of a hard coded system path to fixe
++potential compilation failure on systems that do not populate system header
++files in /usr/include/..
++
++Signed-off-by: Eric Jarrige <eri...@ar...>
++---
+Index: host-elftosb-10.12.01/common/stdafx.h
+===================================================================
+--- host-elftosb-10.12.01.orig/common/stdafx.h 2012-01-30 12:43:35.000000000 +0100
hooks/post-receive
--
armadeus
|