From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from r-finger.com (r-finger.com [178.79.160.5]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id ACEB7E01351 for ; Sat, 16 Jun 2012 09:37:28 -0700 (PDT) Received: from [192.168.0.2] (host86-170-69-176.range86-170.btcentralplus.com [86.170.69.176]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by r-finger.com (Postfix) with ESMTPSA id 0C29E9C07 for ; Sat, 16 Jun 2012 17:37:27 +0100 (BST) Message-ID: <4FDCB647.9080301@r-finger.com> Date: Sat, 16 Jun 2012 17:37:27 +0100 From: Tomas Frydrych User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:10.0.3) Gecko/20120329 Icedove/10.0.3 MIME-Version: 1.0 To: yocto@yoctoproject.org References: In-Reply-To: Subject: Re: how do I prevent a specific package from being built/installed (e.g., bash)? X-BeenThere: yocto@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Discussion of all things Yocto List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Jun 2012 16:37:28 -0000 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Hi, On 16/06/12 17:24, Anders Roxell wrote: > See subject. > Is there some config-file for package-masks (like portage's > /etc/portage/package.mask)? Packages are getting installed because something depends on them, so if you want an image that has different contents than one of the default images, you will need to create your own custom recipe for it. You can examine the package dependencies with 'bitbake -g -u depexp '; this does not give you any runtime dependencies that are automatically calculated from shared library deps, but for something like bash it will give you enough info to know what is pulling it in. Tomas