From patchwork Mon May 13 07:58:40 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabio Porcedda X-Patchwork-Id: 243318 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id EE6B52C00A7 for ; Mon, 13 May 2013 17:58:55 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 0E4C331753; Mon, 13 May 2013 07:58:53 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id OaTN2ZOZOm4H; Mon, 13 May 2013 07:58:51 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 660CD317CE; Mon, 13 May 2013 07:58:51 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id D3AB08F7AA for ; Mon, 13 May 2013 07:58:56 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 8C56CA017A for ; Mon, 13 May 2013 07:58:47 +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 XSiPhIF7ucHL for ; Mon, 13 May 2013 07:58:46 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-da0-f47.google.com (mail-da0-f47.google.com [209.85.210.47]) by hemlock.osuosl.org (Postfix) with ESMTPS id 3C052A00FE for ; Mon, 13 May 2013 07:58:46 +0000 (UTC) Received: by mail-da0-f47.google.com with SMTP id k13so1176241dae.34 for ; Mon, 13 May 2013 00:58:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:subject:date:message-id:x-mailer; bh=no0WVEjw5X0KWpbxh3qO5cNbjRsO6jmsamLKVKXWfiA=; b=aS5UifgqsVWk33lINlhSu6COVdOvIDldUbEgY3KY5aUrw85uRgD15hDnaiK5BatE0f YYJ+ZriYvM9Wn2GYpFTVLQNxeGhfd7ABNWuY/lBfrIuRtPlSOmAicd4fTfSiAbg1WgeA ilzfv8ZYCKYyA42qBAxANqQE67evopl1rQlys0Cxu6BuRf8YsYHTsDfck6ZkbEe+rpPz 4CHW7GsHvEvKaBY9E6xVAdosjGIfzUlX182jrxHoMk+YdgxB01irjGizFCk12QLMTaZV 4UU+NnVIP6LdGNZLAx+Q3XHiP6Z/jOId2YHyKu+n7iNtRgiiL1nx23efc2k4I3YkelPJ rxcA== X-Received: by 10.66.166.107 with SMTP id zf11mr28893124pab.166.1368431927602; Mon, 13 May 2013 00:58:47 -0700 (PDT) Received: from ld2036.tmt.telital.com.com ([213.205.6.118]) by mx.google.com with ESMTPSA id sg4sm13082996pbc.7.2013.05.13.00.58.45 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Mon, 13 May 2013 00:58:46 -0700 (PDT) From: Fabio Porcedda To: buildroot@uclibc.org Date: Mon, 13 May 2013 09:58:40 +0200 Message-Id: <1368431920-22020-1-git-send-email-fabio.porcedda@gmail.com> X-Mailer: git-send-email 1.8.1.4 Subject: [Buildroot] [PATCH] linux: CONFIG_KERNEL_LZO option requires host-lzop 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 When the LZO compression mode is chosen the linux kernel requires lzop host utility at build time. Signed-off-by: Fabio Porcedda --- linux/linux.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux/linux.mk b/linux/linux.mk index d375cf0..3877c35 100644 --- a/linux/linux.mk +++ b/linux/linux.mk @@ -34,7 +34,7 @@ endif LINUX_PATCHES = $(call qstrip,$(BR2_LINUX_KERNEL_PATCH)) LINUX_INSTALL_IMAGES = YES -LINUX_DEPENDENCIES += host-module-init-tools +LINUX_DEPENDENCIES += host-module-init-tools host-lzop ifeq ($(BR2_LINUX_KERNEL_UBOOT_IMAGE),y) LINUX_DEPENDENCIES += host-uboot-tools