From patchwork Fri Jan 24 11:29:50 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Anders Darander X-Patchwork-Id: 313889 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 1696E2C009E for ; Fri, 24 Jan 2014 22:30:08 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 0B32B93358; Fri, 24 Jan 2014 11:30:06 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id hmX4sg7Hdyr2; Fri, 24 Jan 2014 11:30:05 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 7ACFC89EB3; Fri, 24 Jan 2014 11:30:05 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id D49171BF838 for ; Fri, 24 Jan 2014 11:30:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id CD6848BBE6 for ; Fri, 24 Jan 2014 11:30:00 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id IKpsmeqbZznC for ; Fri, 24 Jan 2014 11:29:59 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from stoexhubfe02.domain01.net (STOEXHUBFE02.domain01.net [83.145.59.141]) by whitealder.osuosl.org (Postfix) with ESMTPS id 702158BC19 for ; Fri, 24 Jan 2014 11:29:58 +0000 (UTC) Received: from localhost (83.252.255.124) by stoexhubfe02.domain01.net (10.12.10.7) with Microsoft SMTP Server id 8.3.279.1; Fri, 24 Jan 2014 12:29:39 +0100 From: Anders Darander To: Date: Fri, 24 Jan 2014 12:29:50 +0100 Message-ID: <1390562992-9267-3-git-send-email-anders@chargestorm.se> X-Mailer: git-send-email 1.8.5.3 In-Reply-To: <1390562992-9267-1-git-send-email-anders@chargestorm.se> References: <1390562992-9267-1-git-send-email-anders@chargestorm.se> MIME-Version: 1.0 X-GFI-SMTP-Submission: 1 Cc: Anders Darander Subject: [Buildroot] [PATCH v2 2/4] am33x-cm3: update to latest version X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net This goes hand-in-hand with the kernel update. The version is taken from meta-ti. The new kernel version, 3.12, requires a newer PM FW. Signed-off-by: Anders Darander --- package/am33x-cm3/am33x-cm3-0001-fix-makefile.patch | 16 ++++++++++------ package/am33x-cm3/am33x-cm3.mk | 2 +- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/package/am33x-cm3/am33x-cm3-0001-fix-makefile.patch b/package/am33x-cm3/am33x-cm3-0001-fix-makefile.patch index 77ba11c..f3cdb5e 100644 --- a/package/am33x-cm3/am33x-cm3-0001-fix-makefile.patch +++ b/package/am33x-cm3/am33x-cm3-0001-fix-makefile.patch @@ -11,16 +11,20 @@ Fix this by explicitly indicating -march=armv7-m. Signed-off-by: Thomas Petazzoni +Updated the patch to the latest version of the Makefile + +Signed-off-by: Anders Darander + Index: b/Makefile =================================================================== --- a/Makefile +++ b/Makefile -@@ -13,7 +13,7 @@ +@@ -13,7 +13,7 @@ SRCDIR = src BINDIR = bin INCLUDES = $(SRCDIR)/include --CFLAGS =-mcpu=cortex-m3 -mthumb -nostdlib -Wall -g -I$(INCLUDES) -+CFLAGS =-march=armv7-m -mcpu=cortex-m3 -mthumb -nostdlib -Wall -g -I$(INCLUDES) - LDFLAGS =-nostartfiles -fno-exceptions -Tfirmware.ld - - EXECUTABLE=am335x-pm-firmware.elf +-CFLAGS =-mcpu=cortex-m3 -mthumb -nostdlib -Wall -Wundef \ ++CFLAGS =-march=armv7-m -mcpu=cortex-m3 -mthumb -nostdlib -Wall -Wundef \ + -Werror-implicit-function-declaration -Wstrict-prototypes \ + -Wdeclaration-after-statement -fno-delete-null-pointer-checks \ + -Wempty-body -fno-strict-overflow -g -I$(INCLUDES) -O2 diff --git a/package/am33x-cm3/am33x-cm3.mk b/package/am33x-cm3/am33x-cm3.mk index 929c4a5..9f9932c 100644 --- a/package/am33x-cm3/am33x-cm3.mk +++ b/package/am33x-cm3/am33x-cm3.mk @@ -4,7 +4,7 @@ # ################################################################################ -AM33X_CM3_VERSION = AM335xPSP_04.06.00.10-rc1 +AM33X_CM3_VERSION = v05.00.00.01 AM33X_CM3_SITE = http://arago-project.org/git/projects/am33x-cm3.git AM33X_CM3_SITE_METHOD = git AM33X_CM3_LICENSE = TI Publicly Available Software License