From patchwork Mon Oct 29 08:41:12 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gregory Hermant X-Patchwork-Id: 194882 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 2EBAA2C008B for ; Mon, 29 Oct 2012 19:41:46 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 3C801103AF2; Mon, 29 Oct 2012 08:41:38 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Egct0AQyt29l; Mon, 29 Oct 2012 08:41:27 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id CA98F102643; Mon, 29 Oct 2012 08:41:24 +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 2E69B8F783 for ; Mon, 29 Oct 2012 08:41:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 8DEDB8C11D for ; Mon, 29 Oct 2012 08:41:27 +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 gvwYpgtx96YS for ; Mon, 29 Oct 2012 08:41:25 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mo-p00-ob.rzone.de (mo-p00-ob.rzone.de [81.169.146.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id A31208C0A8 for ; Mon, 29 Oct 2012 08:41:24 +0000 (UTC) X-RZG-AUTH: :K34Bck+6YrEgjuBfzmrkukPJhhbHEm1G+2SCnvvjhur6rsGj/jgixsrTkwdMQP1Z/nY9De0+2BgiMclr0OQ= X-RZG-CLASS-ID: mo00 Received: from ghermant-Q310.home (ALyon-754-1-10-162.w90-53.abo.wanadoo.fr [90.53.121.162]) by smtp.strato.de (jorabe mo45) (RZmta 30.20 DYNA|AUTH) with ESMTPA id 6063a4o9T81jKC ; Mon, 29 Oct 2012 09:41:22 +0100 (CET) From: Gregory Hermant To: buildroot@busybox.net Date: Mon, 29 Oct 2012 09:41:12 +0100 Message-Id: <1351500073-4351-6-git-send-email-gregory.hermant@calao-systems.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1351500073-4351-1-git-send-email-gregory.hermant@calao-systems.com> References: <1351500073-4351-1-git-send-email-gregory.hermant@calao-systems.com> Subject: [Buildroot] [PATCH 5/6] Add init script files for snowball board 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: Gregory Hermant --- package/Config.in | 1 + package/snowball-init/Config.in | 7 +++++++ package/snowball-init/snowball-init.mk | 13 +++++++++++++ 3 files changed, 21 insertions(+) create mode 100644 package/snowball-init/Config.in create mode 100644 package/snowball-init/snowball-init.mk diff --git a/package/Config.in b/package/Config.in index fd5281f..bfe1d3b 100644 --- a/package/Config.in +++ b/package/Config.in @@ -533,6 +533,7 @@ source "package/hdmiservice/Config.in" source "package/mobile-broadband-provider-info/Config.in" source "package/shared-mime-info/Config.in" source "package/snowball-firmware/Config.in" +source "package/snowball-init/Config.in" source "package/sound-theme-borealis/Config.in" source "package/sound-theme-freedesktop/Config.in" endmenu diff --git a/package/snowball-init/Config.in b/package/snowball-init/Config.in new file mode 100644 index 0000000..f3cefbd --- /dev/null +++ b/package/snowball-init/Config.in @@ -0,0 +1,7 @@ +config BR2_PACKAGE_SNOWBALL_INIT + bool "snowball-init" + help + Snowball init scripts + + http://www.igloocommunity.org/gitweb/?p=bsp/snowball-init.git + diff --git a/package/snowball-init/snowball-init.mk b/package/snowball-init/snowball-init.mk new file mode 100644 index 0000000..03c1cf5 --- /dev/null +++ b/package/snowball-init/snowball-init.mk @@ -0,0 +1,13 @@ +############################################################# +# +# snowball-init +# +############################################################# +SNOWBALL_INIT_VERSION = b064be21de25729039e5e54037bbdd2e25cfd5b7 +SNOWBALL_INIT_SITE = git://igloocommunity.org/git/bsp/snowball-init.git + +define SNOWBALL_INIT_INSTALL_TARGET_CMDS + cp $(@D)/snowball $(TARGET_DIR)/etc/init.d/S50snowball +endef + +$(eval $(generic-package))