From patchwork Wed Feb 6 18:43:25 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 218715 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 68B382C02CF for ; Thu, 7 Feb 2013 05:43:44 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id A13CAA01D5; Wed, 6 Feb 2013 18:43:44 +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 jVGhqhNrF2QW; Wed, 6 Feb 2013 18:43:39 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 4EB59A01DD; Wed, 6 Feb 2013 18:43:39 +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 C9C948F7A4 for ; Wed, 6 Feb 2013 18:43:43 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 84B6984123 for ; Wed, 6 Feb 2013 18:43:36 +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 wSWzqfjpVx9m for ; Wed, 6 Feb 2013 18:43:35 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [78.46.79.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id C1A2783143 for ; Wed, 6 Feb 2013 18:43:34 +0000 (UTC) Received: from asgard (host132.190-136-125.telecom.net.ar [190.136.125.132]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.6/8.14.6) with ESMTP id r16IhR1D023501 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Wed, 6 Feb 2013 18:43:30 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1360176212; bh=KdrUE1byLzb5SGrDbR0tTGrWlwMo5SlBMnPmJDoy2LQ=; h=From:To:Cc:Subject:Date; b=bmxqRTnExQQTkKhZbGxPw6Z9TziLWGnJQUA0KtE8eshWtle0jfLBw7/EjeyYfp9Us ICZzH3J9dfrfNBwDIdA9j9UWLj5WqjzKzbcAKro/RLxbuZ25CfQ1iIPR3ZycaK4QtH 69bjMOwAxe/CF4yIkKmVRhFuz0QFNfq0o8rhLPFk= Received: by asgard (sSMTP sendmail emulation); Wed, 06 Feb 2013 15:43:26 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Wed, 6 Feb 2013 15:43:25 -0300 Message-Id: <1360176205-12224-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.12.4 X-Virus-Scanned: clamav-milter 0.97.5 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] toolchain/kernel-headers: not just 2.6 for manual 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: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net The manual linux headers option may specify versions other than the 2.6 series, so drop the "2.6" Signed-off-by: Gustavo Zacarias --- toolchain/kernel-headers/Config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolchain/kernel-headers/Config.in b/toolchain/kernel-headers/Config.in index 710dd13..38e051f 100644 --- a/toolchain/kernel-headers/Config.in +++ b/toolchain/kernel-headers/Config.in @@ -43,7 +43,7 @@ choice bool "Linux 3.7.x kernel headers" config BR2_KERNEL_HEADERS_VERSION - bool "Linux 2.6 (manually specified version)" + bool "Manually specified Linux version" config BR2_KERNEL_HEADERS_SNAP bool "Local Linux snapshot (linux-2.6.tar.bz2)"