From patchwork Sun Apr 6 18:18:55 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Mattias_Walstr=C3=B6m?= X-Patchwork-Id: 337280 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 02EDA1400ED for ; Mon, 7 Apr 2014 04:19:10 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:message-id:date:from:mime-version:to:subject :content-type:content-transfer-encoding; q=dns; s=default; b=NkA pIAkklJBwYHc9wfJyhcXwASxSa2IrK7VlyT0SLWNT/3YZI6KiJaMryt+z4LAZ0nE i+PyYCBdbbi1CYQqqltc1kNrLcP03wwCXlPkcODfBY/Qbt4nPdMrFUzIM2xRMGKX yLMDf1bf9G2Zcgh1PIxW841HMJt0v/rv/VLGmKIA= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:message-id:date:from:mime-version:to:subject :content-type:content-transfer-encoding; s=default; bh=+3v47Bsus AFjtSfPRogJYucLznY=; b=QV9Dj5sGlIRyhj7ViayGldZ35XiYwuvQqze0LUKLD WYvnrVkc6bX7x8kGg6+eAcsu0YecwhkkT2Ue4+S1Os9qOqZNplnaZ7PAwRcSTYKO WF1jmMuVLqrid8T3SkOu+iL8sfZNJHjF33xRb0xHViLC/VqXZmhYqO6MBFhP8qD5 QM= Received: (qmail 3159 invoked by alias); 6 Apr 2014 18:19:04 -0000 Mailing-List: contact crossgcc-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: crossgcc-owner@sourceware.org Delivered-To: mailing list crossgcc@sourceware.org Received: (qmail 3149 invoked by uid 89); 6 Apr 2014 18:19:03 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.3 required=5.0 tests=AWL, BAYES_40, FREEMAIL_FROM, RCVD_IN_BL_SPAMCOP_NET, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=no version=3.3.2 X-HELO: mail-la0-f53.google.com Received: from mail-la0-f53.google.com (HELO mail-la0-f53.google.com) (209.85.215.53) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Sun, 06 Apr 2014 18:19:02 +0000 Received: by mail-la0-f53.google.com with SMTP id b8so3953005lan.26 for ; Sun, 06 Apr 2014 11:18:58 -0700 (PDT) X-Received: by 10.112.13.101 with SMTP id g5mr1942426lbc.39.1396808338150; Sun, 06 Apr 2014 11:18:58 -0700 (PDT) Received: from [192.168.3.7] (c-83-233-113-136.cust.bredband2.com. [83.233.113.136]) by mx.google.com with ESMTPSA id md15sm10191956lbb.28.2014.04.06.11.18.56 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 06 Apr 2014 11:18:57 -0700 (PDT) Message-ID: <53419A8F.1080201@gmail.com> Date: Sun, 06 Apr 2014 20:18:55 +0200 From: =?ISO-8859-1?Q?Mattias_Walstr=F6m?= User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 MIME-Version: 1.0 To: crossgcc@sourceware.org Subject: [PATCH] Add new linux kernels, 3.13 and 3.14 # HG changeset patch # User Mattias Walström # Date 1396807342 -7200 # Node ID 8d4b117b0673247fee3509580f6507a732456cb9 # Parent de48a1603e33afb2a30ae5efee95eb656e9f61a9 Add new linux kernels, 3.13 and 3.14 --- For unsubscribe information see http://sourceware.org/lists.html#faq diff -r de48a1603e33 -r 8d4b117b0673 config/kernel/linux.in --- a/config/kernel/linux.in Sun Apr 06 20:02:04 2014 +0200 +++ b/config/kernel/linux.in Sun Apr 06 20:02:22 2014 +0200 @@ -26,6 +26,15 @@ # Don't remove next line # CT_INSERT_VERSION_BELOW + +config KERNEL_V_3_14 + bool + prompt "3.14" + +config KERNEL_V_3_13 + bool + prompt "3.13" + config KERNEL_V_3_12 bool prompt "3.12" @@ -167,6 +176,8 @@ string # Don't remove next line # CT_INSERT_VERSION_STRING_BELOW + default "3.14" if KERNEL_V_3_14 + default "3.13" if KERNEL_V_3_13 default "3.12" if KERNEL_V_3_12 default "3.11.8" if KERNEL_V_3_11 default "3.10.19" if KERNEL_V_3_10