From patchwork Tue Jul 30 09:57:28 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Kim_B=C3=B8ndergaard?= X-Patchwork-Id: 263354 X-Patchwork-Delegate: esben@haabendal.dk Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hugin.dotsrc.org (hugin.dotsrc.org [IPv6:2001:878:346::102]) by ozlabs.org (Postfix) with ESMTP id 76E152C00B3 for ; Tue, 30 Jul 2013 19:57:32 +1000 (EST) Received: from hugin.dotsrc.org (localhost [127.0.0.1]) by hugin.dotsrc.org (Postfix) with ESMTP id 2175B3FD64 for ; Tue, 30 Jul 2013 11:57:31 +0200 (CEST) X-Original-To: dev@oe-lite.org Delivered-To: dev@oe-lite.org Received: from mail01.prevas.se (mail01.prevas.se [62.95.78.3]) by hugin.dotsrc.org (Postfix) with ESMTPS id ED86E3FD64 for ; Tue, 30 Jul 2013 11:57:29 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=prevas.dk; i=@prevas.dk; l=1279; q=dns/txt; s=ironport1; t=1375178250; x=1406714250; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version; bh=oGXXxaMVPyalmP5TIq94OZf/m4yiOf6brcP7akmOrPI=; b=rVrJKSecIJSOOEY2QqBXfHXXe6RifJHGRwlVGCXPIeAeeZWgYxEu9f9G l0YtMVEAFzpiAmSt3dQuEfQz5fWhkot6sveRwdIajzNyPdifWcll1bCGn i6Rh8mduZYkSRn4u5RYRkklXlfwmni7Gek2HKkr8cEnVwLLubZR9yDtoQ A=; X-IronPort-AV: E=Sophos;i="4.89,777,1367964000"; d="scan'208";a="3479537" Received: from vmprevas3.prevas.se (HELO smtp.prevas.se) ([172.16.8.103]) by ironport1.prevas.se with ESMTP/TLS/AES128-SHA; 30 Jul 2013 11:57:29 +0200 Received: from localhost (172.16.10.102) by smtp.prevas.se (172.16.8.105) with Microsoft SMTP Server id 14.2.342.3; Tue, 30 Jul 2013 11:57:29 +0200 Received: by localhost (Postfix, from userid 30019) id 492C268164E; Tue, 30 Jul 2013 09:57:29 +0000 (UTC) From: =?UTF-8?q?Kim=20B=C3=B8ndergaard?= To: Subject: [PATCH 1/1] busybox: added subpackage busybox-udhcpc-scripts to allow custom scripts to be installed Date: Tue, 30 Jul 2013 09:57:28 +0000 Message-ID: X-Mailer: git-send-email 1.8.3.1 In-Reply-To: References: MIME-Version: 1.0 Cc: =?UTF-8?q?Kim=20B=C3=B8ndergaard?= X-BeenThere: dev@oe-lite.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: OE-lite development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dev-bounces@oe-lite.org Errors-To: dev-bounces@oe-lite.org --- recipes/busybox/busybox.inc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/recipes/busybox/busybox.inc b/recipes/busybox/busybox.inc index 217b940..59f73e8 100644 --- a/recipes/busybox/busybox.inc +++ b/recipes/busybox/busybox.inc @@ -38,6 +38,8 @@ SRC_URI += "\ file://default.script \ " +PACKAGES:USE_busybox_init_shutdown_umount = " file://init-shutdown-umount.patch" @@ -70,11 +72,14 @@ require busybox-install.inc FILES_${PN}:>USE_busybox_runit = " ${runitservicedir}" FILES_${PN}:>USE_busybox_syslogd = " ${localstatedir}/log" -FILES_${PN}:>USE_busybox_udhcpc = " ${datadir}/udhcpc" FILES_${PN}:>USE_busybox_httpd = " /srv/www" FILES_${PN}:>USE_busybox_tftpd = " ${USE_busybox_tftpd_dir}" FILES_${PN}:>USE_busybox_ftpd = " ${USE_busybox_ftpd_dir}" +FILES_${PN}-udhcpc-scripts = "${datadir}/udhcpc ${sysconfdir}/udhcpc.d" + RDEPENDS_${PN} = "netbase base-passwd base-files ${LIB_DEPENDS}" +RDEPENDS_${PN}:>USE_busybox_udhcpc += "${PN}-udhcpc-scripts" + BUSYBOX_PROVIDES += "util/awk" PROVIDES_${PN} = "${BUSYBOX_PROVIDES}"