From patchwork Mon Mar 18 19:00:21 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jacob Kjaergaard X-Patchwork-Id: 228774 X-Patchwork-Delegate: esben@haabendal.dk Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hugin.dotsrc.org (hugin.dotsrc.org [IPv6:2001:878:346::102]) by ozlabs.org (Postfix) with ESMTP id D397B2C00AC for ; Tue, 19 Mar 2013 06:00:30 +1100 (EST) Received: from hugin.dotsrc.org (localhost [127.0.0.1]) by hugin.dotsrc.org (Postfix) with ESMTP id 9F9A73FC19 for ; Mon, 18 Mar 2013 20:00:29 +0100 (CET) X-Original-To: dev@oe-lite.org Delivered-To: dev@oe-lite.org Received: from mail02.prevas.se (mail02.prevas.se [62.95.78.10]) by hugin.dotsrc.org (Postfix) with ESMTPS id E5DED3FDDF for ; Mon, 18 Mar 2013 20:00:28 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=prevas.dk; i=@prevas.dk; l=3385; q=dns/txt; s=ironport2; t=1363633228; x=1395169228; h=from:to:cc:subject:date:message-id; bh=s/SW0e0du7VaqF6RQqIwSGQjwV/6jscz8kTcpxlAD5E=; b=qSWUYUTImvlVsnGaFfAZdlDmgrsxgdlEiO4QZaE+pw6BpkomFYXVMKrB lrO4KKHcgBefQU3lu02Q4Myj275G9q2Lf3IStKnhUj3A14SH0mVibOLdQ JAOwm6oivK/zXdq4AvU9OKKrIDGUB7tL4vZ1e5geds5DualKnjfzUtLL3 M=; X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AtlhAC1jR1FXOZe5PGdsb2JhbABDjFi4QAQBgVUXAwEBAQE4NYIkAQEFViMQHAMBAh0SOQoMCBmIGMIdjUowgRALB4NAA5ZeiVGKPDs X-IronPort-AV: E=Sophos;i="4.84,865,1355094000"; d="scan'208";a="2284712" Received: from 87-57-151-185-dynamic.dk.customer.tdc.net (HELO arh116.home) ([87.57.151.185]) by mail02.prevas.se with ESMTP/TLS/DHE-RSA-AES256-SHA; 18 Mar 2013 20:00:28 +0100 From: Jacob Barsoe To: dev@oe-lite.org Subject: [PATCH 2/2] iproute2: Remove version 3.2.0 Date: Mon, 18 Mar 2013 20:00:21 +0100 Message-Id: X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <67dfc569207121d72bcf6a75f8748cf249806529.1363632977.git.jacob.kjaergaard@prevas.dk> References: <67dfc569207121d72bcf6a75f8748cf249806529.1363632977.git.jacob.kjaergaard@prevas.dk> In-Reply-To: References: X-BeenThere: dev@oe-lite.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: OE-lite development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: dev-bounces@oe-lite.org Errors-To: dev-bounces@oe-lite.org From: Jacob Kjaergaard --- .../iproute2/iproute2-3.2.0/configure-cross.patch | 76 -------------------- recipes/iproute2/iproute2_3.2.0.oe | 7 -- 2 files changed, 83 deletions(-) delete mode 100644 recipes/iproute2/iproute2-3.2.0/configure-cross.patch delete mode 100644 recipes/iproute2/iproute2_3.2.0.oe diff --git a/recipes/iproute2/iproute2-3.2.0/configure-cross.patch b/recipes/iproute2/iproute2-3.2.0/configure-cross.patch deleted file mode 100644 index bed7b84..0000000 --- a/recipes/iproute2/iproute2-3.2.0/configure-cross.patch +++ /dev/null @@ -1,76 +0,0 @@ -From 85b0589b4843c03e8e6fd9416d71ea449a73c5c0 Mon Sep 17 00:00:00 2001 -From: Koen Kooi -Date: Thu, 3 Nov 2011 10:46:16 +0100 -Subject: [PATCH] make configure cross compile safe - -According to Kevin Tian: -Upstream-Status: Pending - -Signed-off-by: Koen Kooi -Signed-off-by: Shane Wang - -diff -r e4e1b14b9c4a configure ---- a/configure Sun Jan 22 15:26:47 2012 +0800 -+++ b/configure Sun Jan 22 15:29:38 2012 +0800 -@@ -2,6 +2,7 @@ - # This is not an autconf generated configure - # - INCLUDE=${1:-"$PWD/include"} -+SYSROOT=$1 - - check_atm() - { -@@ -13,7 +14,7 @@ - return 0; - } - EOF --gcc -I$INCLUDE -o /tmp/atmtest /tmp/atmtest.c -latm >/dev/null 2>&1 -+$CC -I$INCLUDE -o /tmp/atmtest /tmp/atmtest.c -latm >/dev/null 2>&1 - if [ $? -eq 0 ] - then - echo "TC_CONFIG_ATM:=y" >>Config -@@ -47,7 +48,7 @@ - - EOF - --if gcc -I$INCLUDE $IPTC -o /tmp/ipttest /tmp/ipttest.c $IPTL $(pkg-config xtables --cflags --libs) -ldl >/dev/null 2>&1 -+if $CC -I$INCLUDE $IPTC -o /tmp/ipttest /tmp/ipttest.c $IPTL $(pkg-config xtables --cflags --libs) -ldl >/dev/null 2>&1 - then - echo "TC_CONFIG_XT:=y" >>Config - echo "using xtables" -@@ -84,7 +85,7 @@ - } - - EOF --gcc -I$INCLUDE $IPTC -o /tmp/ipttest /tmp/ipttest.c $IPTL -ldl >/dev/null 2>&1 -+$CC -I$INCLUDE $IPTC -o /tmp/ipttest /tmp/ipttest.c $IPTL -ldl >/dev/null 2>&1 - - if [ $? -eq 0 ] - then -@@ -124,7 +125,7 @@ - } - - EOF --gcc -I$INCLUDE $IPTC -o /tmp/ipttest /tmp/ipttest.c $IPTL -ldl >/dev/null 2>&1 -+$CC -I$INCLUDE $IPTC -o /tmp/ipttest /tmp/ipttest.c $IPTL -ldl >/dev/null 2>&1 - - if [ $? -eq 0 ] - then -@@ -145,7 +146,7 @@ - check_ipt_lib_dir() - { - IPT_LIB_DIR="" -- for dir in /lib /usr/lib /usr/local/lib -+ for dir in $SYSROOT/lib $SYSROOT/usr/lib $SYSROOT/usr/local/lib - do - for file in $dir/{xtables,iptables}/lib*t_*so ; do - if [ -f $file ]; then -@@ -168,7 +169,7 @@ - return 0; - } - EOF --gcc -I$INCLUDE -o /tmp/setnstest /tmp/setnstest.c >/dev/null 2>&1 -+$CC -I$INCLUDE -o /tmp/setnstest /tmp/setnstest.c >/dev/null 2>&1 - if [ $? -eq 0 ] - then - echo "IP_CONFIG_SETNS:=y" >>Config diff --git a/recipes/iproute2/iproute2_3.2.0.oe b/recipes/iproute2/iproute2_3.2.0.oe deleted file mode 100644 index e34cc70..0000000 --- a/recipes/iproute2/iproute2_3.2.0.oe +++ /dev/null @@ -1,7 +0,0 @@ -require iproute2.inc - -#v3.2.0 tag is "447c118f138171b260ad045ad6e1b17f9ef462e2" -#but it was not fully tested and had build error, and the next commit fixed it. -GIT_COMMIT= "447c118f138171b260ad045ad6e1b17f9ef462e2" - -SRC_URI += "file://configure-cross.patch"