From patchwork Sun Mar 17 18:19:43 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Yann E. MORIN" X-Patchwork-Id: 228304 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 74ADD2C00C5 for ; Mon, 18 Mar 2013 05:21:03 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 458BB103065; Sun, 17 Mar 2013 18:20:46 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References" Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id aN32b+r9rYRb; Sun, 17 Mar 2013 18:20:41 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 16F3B101F9E; Sun, 17 Mar 2013 18:20:41 +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 B20348F74B for ; Sun, 17 Mar 2013 18:20:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 154198BBBD for ; Sun, 17 Mar 2013 18:20:15 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References" Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id EqdhDusXpohR for ; Sun, 17 Mar 2013 18:20:03 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wg0-f50.google.com (mail-wg0-f50.google.com [74.125.82.50]) by whitealder.osuosl.org (Postfix) with ESMTPS id 7D8838B67A for ; Sun, 17 Mar 2013 18:20:02 +0000 (UTC) Received: by mail-wg0-f50.google.com with SMTP id es5so4468542wgb.29 for ; Sun, 17 Mar 2013 11:20:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:sender:from:to:cc:subject:date:message-id:x-mailer :in-reply-to:references:in-reply-to:references; bh=QD+KdsFeNKo7+ff0COIGmSSnQTw4n5rfgFWGDq/Sy64=; b=QvpQLNtGIXrLx1LOs5ydIACGVzBlL2QDAcCjvyCXcg1XpTJiTWNFVcpG1BhvpETWHA 5m3i7ls/oPXgmtwpAh2ioogezpuM/IfSogRELvajjIpXPpoCodeVbdm155x7mVx6ncNy o9SJNESIPT5erk4Wati4CevRSGVCqPKC/PVy4TIFr0ZGjtOd1hsCItdaqGQeY6MsAseh nBsSyYHzYIdhbO6nQ3DILwn7DChY48PXK5QBGJnKNNjh09RBwy2HgLeErW2jrCrhZrt8 y0uTQ3rIlKE54lwIaa6H/C/C6sAlFyxoLGpteuYf7LzEqIqLwo/X2Vc2Sm0dxMkWtA0P J0IQ== X-Received: by 10.194.22.5 with SMTP id z5mr20259017wje.5.1363544400675; Sun, 17 Mar 2013 11:20:00 -0700 (PDT) Received: from localhost.localdomain (ks3095497.kimsufi.com. [94.23.60.27]) by mx.google.com with ESMTPS id o8sm9331106wix.7.2013.03.17.11.19.59 (version=TLSv1 cipher=RC4-SHA bits=128/128); Sun, 17 Mar 2013 11:19:59 -0700 (PDT) From: "Yann E. MORIN" To: buildroot@busybox.net Date: Sun, 17 Mar 2013 19:19:43 +0100 Message-Id: <54a4d3e4cadf57b105adf8f8a216ebe846bcbeeb.1363544331.git.yann.morin.1998@free.fr> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: References: In-Reply-To: References: Cc: "Yann E. MORIN" Subject: [Buildroot] [PATCH 4/6] package/genimage: new host-only package 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: "Yann E. MORIN" Tested-by: Thomas Petazzoni --- Changes v1 -> v2: - add license info (Thomas) --- package/Config.in.host | 1 + package/genimage/Config.in.host | 12 ++++++++++++ package/genimage/genimage.mk | 13 +++++++++++++ 3 files changed, 26 insertions(+), 0 deletions(-) create mode 100644 package/genimage/Config.in.host create mode 100644 package/genimage/genimage.mk diff --git a/package/Config.in.host b/package/Config.in.host index 43f292c..c456d5d 100644 --- a/package/Config.in.host +++ b/package/Config.in.host @@ -3,6 +3,7 @@ menu "Host utilities" source "package/dfu-util/Config.in.host" source "package/dosfstools/Config.in.host" source "package/e2fsprogs/Config.in.host" +source "package/genimage/Config.in.host" source "package/lpc3250loader/Config.in.host" source "package/omap-u-boot-utils/Config.in.host" source "package/openocd/Config.in.host" diff --git a/package/genimage/Config.in.host b/package/genimage/Config.in.host new file mode 100644 index 0000000..cfa267c --- /dev/null +++ b/package/genimage/Config.in.host @@ -0,0 +1,12 @@ +config BR2_PACKAGE_HOST_GENIMAGE + bool "host genimage" + help + genimage is a tool to generate multiple filesystem and flash images + from a given root filesystem tree. genimage is intended to be run + in a fakeroot environment. + + Configuration is done is a config file parsed by libconfuse. Options + like the path to tools can be given in environment variables, the config + file or commandline switches. + + http://www.pengutronix.de/software/genimage/ diff --git a/package/genimage/genimage.mk b/package/genimage/genimage.mk new file mode 100644 index 0000000..6ed44a4 --- /dev/null +++ b/package/genimage/genimage.mk @@ -0,0 +1,13 @@ +############################################################# +# +# genimage +# +############################################################## + +GENIMAGE_VERSION = 4 +GENIMAGE_SOURCE = genimage-$(GENIMAGE_VERSION).tar.xz +GENIMAGE_SITE = http://www.pengutronix.de/software/genimage/download/ +GENIMAGE_DEPENDENCIES = libconfuse +GENIMAGE_LICENSE = GPLv2 + +$(eval $(host-autotools-package))