From patchwork Fri Apr 20 14:34:46 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sven Neumann X-Patchwork-Id: 154046 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 F0A64B7031 for ; Sat, 21 Apr 2012 00:34:59 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id F19BEA03B4; Fri, 20 Apr 2012 14:34:57 +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 IQ+SMh+KbK4a; Fri, 20 Apr 2012 14:34:56 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 8BF27A00E7; Fri, 20 Apr 2012 14:34:56 +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 69A768F78D for ; Fri, 20 Apr 2012 14:34:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 601558D6FA for ; Fri, 20 Apr 2012 14:34:55 +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 34BcYDJg8Y85 for ; Fri, 20 Apr 2012 14:34:53 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mail.zonque.de (svenfoo.org [82.94.215.22]) by whitealder.osuosl.org (Postfix) with ESMTPS id D0CAA84D90 for ; Fri, 20 Apr 2012 14:34:52 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.zonque.de (Postfix) with ESMTP id 23237C01FB; Fri, 20 Apr 2012 16:34:49 +0200 (CEST) Received: from mail.zonque.de ([127.0.0.1]) by localhost (rambrand.c2342.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3z8lNq+RxCuz; Fri, 20 Apr 2012 16:34:49 +0200 (CEST) Received: from sven.BERLIN.TEUFEL.LOCAL (pd907dbf4.dip0.t-ipconnect.de [217.7.219.244]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.zonque.de (Postfix) with ESMTPSA id B77FEC01BD; Fri, 20 Apr 2012 16:34:48 +0200 (CEST) From: Sven Neumann To: buildroot@busybox.net Date: Fri, 20 Apr 2012 16:34:46 +0200 Message-Id: <1334932486-6346-1-git-send-email-s.neumann@raumfeld.com> X-Mailer: git-send-email 1.7.9.5 Subject: [Buildroot] [PATCH] kexec: update to kexec-tools 2.0.3 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: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Drop kexec-fix-linker-options.patch as this has been fixed upstream. Signed-off-by: Sven Neumann --- package/kexec/kexec-fix-linker-options.patch | 15 --------------- package/kexec/kexec.mk | 2 +- 2 files changed, 1 insertion(+), 16 deletions(-) delete mode 100644 package/kexec/kexec-fix-linker-options.patch diff --git a/package/kexec/kexec-fix-linker-options.patch b/package/kexec/kexec-fix-linker-options.patch deleted file mode 100644 index 7bd5f1d..0000000 --- a/package/kexec/kexec-fix-linker-options.patch +++ /dev/null @@ -1,15 +0,0 @@ -Fix compilation with gcc 4.6 by correcting the way that linker options -are passed to gcc. - -Signed-off-by: Sven Neumann ---- kexec-2.0.2/purgatory/Makefile.orig 2011-09-26 14:16:44.256595912 +0200 -+++ kexec-2.0.2/purgatory/Makefile 2011-09-26 14:17:01.606621357 +0200 -@@ -56,7 +56,7 @@ - -I$(srcdir)/include \ - -I$(shell $(CC) -print-file-name=include) - $(PURGATORY): LDFLAGS=$($(ARCH)_PURGATORY_EXTRA_CFLAGS)\ -- --no-undefined -nostartfiles -nostdlib -nodefaultlibs \ -+ -Wl,-no-undefined -nostartfiles -nostdlib -nodefaultlibs \ - -e purgatory_start -r - - $(PURGATORY): $(PURGATORY_OBJS) diff --git a/package/kexec/kexec.mk b/package/kexec/kexec.mk index ed01494..ef99dfb 100644 --- a/package/kexec/kexec.mk +++ b/package/kexec/kexec.mk @@ -3,7 +3,7 @@ # kexec # ############################################################# -KEXEC_VERSION = 2.0.2 +KEXEC_VERSION = 2.0.3 KEXEC_SOURCE = kexec-tools-$(KEXEC_VERSION).tar.bz2 KEXEC_SITE = $(BR2_KERNEL_MIRROR)/linux/utils/kernel/kexec