From patchwork Fri May 4 01:08:39 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 156793 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 A7FC6B6FD1 for ; Fri, 4 May 2012 11:09:27 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id C08FBA0066; Fri, 4 May 2012 01:09:26 +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 s24kYkJ07KLg; Fri, 4 May 2012 01:09:25 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id CAD04A00A8; Fri, 4 May 2012 01:09:25 +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 D1ECD8F753 for ; Fri, 4 May 2012 01:09:23 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id CDB5A8A78B for ; Fri, 4 May 2012 01:09:23 +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 WFYg0pgaxYBR for ; Fri, 4 May 2012 01:09:22 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [74.118.36.95]) by whitealder.osuosl.org (Postfix) with ESMTPS id 9970A8D70B for ; Fri, 4 May 2012 01:09:22 +0000 (UTC) Received: from asgard (host105.190-136-216.telecom.net.ar [190.136.216.105]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.4/8.14.4) with ESMTP id q4419Ftn023555 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 3 May 2012 22:09:17 -0300 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1336093759; bh=dhsg+rKL26nvR7SRqQ0JXjArDo8HbZFEBQvPvVAj+vo=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References; b=MRyK20QhU54KPwHQLvuI4PzUGRDnCjGd18GJjtv+y46zGE6x3Q5OmkjeV9GPWC813 d/P8iJIq9DMr8VcsTZcUk/ZJOLnho7iu74Jb0XOrEsi+8p9ULqwNs7vQPUt3pO9P9/ eMkkRYuAqef2pv6/0nmlZeOwfTxZrmi4DVTIwjR4= Received: by asgard (sSMTP sendmail emulation); Thu, 03 May 2012 22:09:15 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Thu, 3 May 2012 22:08:39 -0300 Message-Id: <1336093719-20972-8-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.3.4 In-Reply-To: <1336093719-20972-1-git-send-email-gustavo@zacarias.com.ar> References: <1336093719-20972-1-git-send-email-gustavo@zacarias.com.ar> X-Virus-Scanned: clamav-milter 0.97.3 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH 8/8] qemu/x86: update to use kernel 3.3.4 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 Signed-off-by: Gustavo Zacarias --- configs/qemu_x86_defconfig | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/configs/qemu_x86_defconfig b/configs/qemu_x86_defconfig index 5d0e23b..f22fdea 100644 --- a/configs/qemu_x86_defconfig +++ b/configs/qemu_x86_defconfig @@ -10,9 +10,12 @@ BR2_TARGET_GENERIC_GETTY_PORT="tty1" BR2_TARGET_ROOTFS_EXT2=y # BR2_TARGET_ROOTFS_TAR is not set +# Lock to 3.3 headers to avoid breaking with newer kernels +BR2_KERNEL_HEADERS_3_3=y + # Kernel BR2_LINUX_KERNEL=y BR2_LINUX_KERNEL_CUSTOM_VERSION=y -BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.3" +BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.3.4" BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/x86/linux-3.3.config"