From patchwork Wed Dec 17 13:53:25 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: kim.hansen@prevas.dk X-Patchwork-Id: 422263 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 96D981400DE for ; Thu, 18 Dec 2014 00:53:28 +1100 (AEDT) Received: from hugin.dotsrc.org (localhost [127.0.0.1]) by hugin.dotsrc.org (Postfix) with ESMTP id 03DA23FD93 for ; Wed, 17 Dec 2014 14:53:27 +0100 (CET) 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 AC9EE3FD93 for ; Wed, 17 Dec 2014 14:53:25 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=prevas.dk; i=@prevas.dk; l=3175; q=dns/txt; s=ironport1; t=1418824405; x=1450360405; h=from:to:subject:date:message-id:references:in-reply-to: content-transfer-encoding:mime-version; bh=qrOTlosJEcnXutUpmcftvCugiNO2QmA3dGzNsthi5BU=; b=i4t5ZzFUORN+G0VtzSIxr3wlZrs8dI72PXgE3ETduqbe2jxzbgVFO+OH adlqDCVLHbn5VD1aCXCO/KnTt9pFot0s1jOO0XR8bHujHIAhGmirAtUc7 h1Yt4hUNkrX+8rdb6mlREwcm5rLqDeHdvnNBj2NykcA5qDF41LD3z6bjm 4=; X-IronPort-AV: E=Sophos;i="5.07,594,1413237600"; d="scan'208";a="5424457" Received: from vmprevas3.prevas.se (HELO smtp.prevas.se) ([172.16.8.103]) by ironport1.prevas.se with ESMTP/TLS/AES128-SHA; 17 Dec 2014 14:53:25 +0100 Received: from VMPREVAS1.prevas.se ([fe80::d582:e193:281c:3bc9]) by VMPREVAS3.prevas.se ([172.16.8.103]) with mapi id 14.02.0387.000; Wed, 17 Dec 2014 14:53:25 +0100 From: =?iso-8859-1?Q?Kim_H=F8jgaard-Hansen?= To: =?iso-8859-1?Q?Mads_Dor=E9?= , "dev@oe-lite.org" Subject: SV: [base] busybox use flags corrections and additions Thread-Topic: [base] busybox use flags corrections and additions Thread-Index: AQHPq77bDMMV1e2hV0qbBjmTNcvMYpyUqZfs Date: Wed, 17 Dec 2014 13:53:25 +0000 Message-ID: References: <1406701435-5790-1-git-send-email-dore@madsdore.dk> In-Reply-To: <1406701435-5790-1-git-send-email-dore@madsdore.dk> Accept-Language: da-DK, sv-SE, en-US Content-Language: da-DK X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [172.16.11.37] MIME-Version: 1.0 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 It is not clear what you are trying to do here. I see one addition of a simple use flag, that make sense. you move around some lines, that should be fixed. But why are you removing the /'es ? Seems like you are working around some provides conflict by changing the busybox recipe? Please add a little more information to your patches in the future, a log with the error you have run into would be helpful :) /Kim diff --git a/recipes/busybox/busybox-configure.inc b/recipes/busybox/busybox-configure.inc index c67242e..f67b3fa 100644 --- a/recipes/busybox/busybox-configure.inc +++ b/recipes/busybox/busybox-configure.inc @@ -491,8 +491,8 @@ do_configure_busybox_buffers () { .config } -# USE flag: enable feature verbose usage -BUSYBOX_SIMPLE_USE_FLAGS += "feature_verbose_usage" +# USE flag: enable man +BUSYBOX_SIMPLE_USE_FLAGS += "man:util/" # USE flag: enable chpasswd BUSYBOX_SIMPLE_USE_FLAGS += "chpasswd:util/" @@ -500,6 +500,9 @@ BUSYBOX_SIMPLE_USE_FLAGS += "chpasswd:util/" # USE flag: enable acpid BUSYBOX_SIMPLE_USE_FLAGS += "acpid:util/" +# USE flag: enable feature verbose usage +BUSYBOX_SIMPLE_USE_FLAGS += "feature_verbose_usage" + # USE flag: enable unzip utility BUSYBOX_SIMPLE_USE_FLAGS += "unzip:util/" @@ -687,10 +690,10 @@ BUSYBOX_SIMPLE_USE_FLAGS += "swaponoff:util/" BUSYBOX_SIMPLE_USE_FLAGS += "feature_mount_loop" # USE flag: enable sfdisk -BUSYBOX_SIMPLE_USE_FLAGS += "sfdisk:util/" +BUSYBOX_SIMPLE_USE_FLAGS += "sfdisk:util" # USE flag: enable pidof -BUSYBOX_SIMPLE_USE_FLAGS += "pidof:util/" +BUSYBOX_SIMPLE_USE_FLAGS += "pidof:util" BUSYBOX_SIMPLE_USE_FLAGS += "stat:util/:\ CONFIG_STAT,\ @@ -729,6 +732,9 @@ BUSYBOX_SIMPLE_USE_FLAGS += "printf:util/" # USE flag: enable readlink utility BUSYBOX_SIMPLE_USE_FLAGS += "readlink:util/" +# USE flag: enable feature readlink follow +BUSYBOX_SIMPLE_USE_FLAGS += "feature_readlink_follow" + # USE flag: enable readpath utility BUSYBOX_SIMPLE_USE_FLAGS += "readpath:util/"