From patchwork Tue Feb 5 10:48:04 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 218226 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 796992C02B7 for ; Tue, 5 Feb 2013 21:49:10 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id C7274311D7; Tue, 5 Feb 2013 10:49:08 +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 JTiehTSCe-Sn; Tue, 5 Feb 2013 10:48:58 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 5064C311BB; Tue, 5 Feb 2013 10:48:49 +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 BC9548F753 for ; Tue, 5 Feb 2013 10:48:54 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 55EDA8C2A8 for ; Tue, 5 Feb 2013 10:48:47 +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 MgwWa1chQ+9g for ; Tue, 5 Feb 2013 10:48:42 +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 379708C351 for ; Tue, 5 Feb 2013 10:48:17 +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 r15AmAPe019833 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Tue, 5 Feb 2013 10:48:13 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1360061295; bh=NpUP7PQiS2dGn1qbpVuNhQAl9llVnF5d1jJWMQw3DGs=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=r+2+qxVx/iHKBk2TlNJr6ha/q1Em9YKoIkxUG+bfAoZn0x6fCEMaJzo92rwsXAh8R VMN4CTanEAo8Ol+DwGAJ2blt8k2GyDhEOqILSDKNDH/8Sn5ONw49VXLpTwV3+cbvGQ Z/URYosIQYb3dRA8TXUrBn5SnfKQ9hjWuSwkaX/8= Received: by asgard (sSMTP sendmail emulation); Tue, 05 Feb 2013 07:48:10 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Tue, 5 Feb 2013 07:48:04 -0300 Message-Id: <1360061284-11353-2-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.12.4 In-Reply-To: <1360061284-11353-1-git-send-email-gustavo@zacarias.com.ar> References: <1360061284-11353-1-git-send-email-gustavo@zacarias.com.ar> X-Virus-Scanned: clamav-milter 0.97.5 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCHv2 2/2] exfat-utils: new 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: Gustavo Zacarias --- package/Config.in | 1 + package/exfat-utils/Config.in | 11 +++++++++++ package/exfat-utils/exfat-utils.mk | 24 ++++++++++++++++++++++++ 3 files changed, 36 insertions(+) create mode 100644 package/exfat-utils/Config.in create mode 100644 package/exfat-utils/exfat-utils.mk diff --git a/package/Config.in b/package/Config.in index 2a4656c..1e8297b 100644 --- a/package/Config.in +++ b/package/Config.in @@ -191,6 +191,7 @@ source "package/curlftpfs/Config.in" source "package/dosfstools/Config.in" source "package/e2fsprogs/Config.in" source "package/exfat/Config.in" +source "package/exfat-utils/Config.in" source "package/flashbench/Config.in" source "package/genext2fs/Config.in" source "package/genromfs/Config.in" diff --git a/package/exfat-utils/Config.in b/package/exfat-utils/Config.in new file mode 100644 index 0000000..1fc68be --- /dev/null +++ b/package/exfat-utils/Config.in @@ -0,0 +1,11 @@ +config BR2_PACKAGE_EXFAT_UTILS + bool "exfat-utils" + depends on BR2_LARGEFILE + depends on BR2_USE_WCHAR + help + exFAT filesystem utilities. + + http://code.google.com/p/exfat/ + +comment "exfat-utils requires a toolchain with LARGEFILE and WCHAR support" + depends on !BR2_LARGEFILE || !BR2_USE_WCHAR diff --git a/package/exfat-utils/exfat-utils.mk b/package/exfat-utils/exfat-utils.mk new file mode 100644 index 0000000..b1191e8 --- /dev/null +++ b/package/exfat-utils/exfat-utils.mk @@ -0,0 +1,24 @@ +############################################################# +# +# exfat-utils +# +############################################################# + +EXFAT_UTILS_VERSION = 1.0.1 +EXFAT_UTILS_SITE = http://exfat.googlecode.com/files +EXFAT_UTILS_DEPENDENCIES = host-scons +EXFAT_UTILS_LICENSE = GPLv3 +EXFAT_UTILS_LICENSE_FILES = COPYING + +define EXFAT_UTILS_BUILD_CMDS + (cd $(@D); \ + $(TARGET_CONFIGURE_OPTS) $(SCONS)) +endef + +define EXFAT_UTILS_INSTALL_TARGET_CMDS + (cd $(@D); \ + $(TARGET_CONFIGURE_OPTS) $(SCONS) \ + DESTDIR=$(TARGET_DIR)/usr/bin install) +endef + +$(eval $(generic-package))