From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from dan.rpsys.net ([93.97.175.187]) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from ) id 1UVLQw-0002FB-V7 for openembedded-core@lists.openembedded.org; Thu, 25 Apr 2013 14:38:01 +0200 Received: from localhost (dan.rpsys.net [127.0.0.1]) by dan.rpsys.net (8.14.4/8.14.4/Debian-2.1ubuntu1) with ESMTP id r3PCLK3I018310; Thu, 25 Apr 2013 13:21:20 +0100 X-Virus-Scanned: Debian amavisd-new at dan.rpsys.net Received: from dan.rpsys.net ([127.0.0.1]) by localhost (dan.rpsys.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id BnFxOC76VcfP; Thu, 25 Apr 2013 13:21:20 +0100 (BST) Received: from [192.168.3.10] (rpvlan0 [192.168.3.10]) (authenticated bits=0) by dan.rpsys.net (8.14.4/8.14.4/Debian-2.1ubuntu1) with ESMTP id r3PCLEd9018296 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NOT); Thu, 25 Apr 2013 13:21:15 +0100 Message-ID: <1366892397.29677.56.camel@ted> From: Richard Purdie To: "Lewis, Nick" Date: Thu, 25 Apr 2013 13:19:57 +0100 In-Reply-To: References: <1366820905.23738.153.camel@ted> X-Mailer: Evolution 3.6.2-0ubuntu0.1 Mime-Version: 1.0 Cc: "'openembedded-core@lists.openembedded.org'" Subject: Re: Problems with PACKAGE_CLASSES = "package_tar" X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Apr 2013 12:38:04 -0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit On Thu, 2013-04-25 at 11:21 +0100, Lewis, Nick wrote: > >> I am seeing problems when using PACKAGE_CLASSES = "package_tar" > >> > >> There are many warnings about python indents and there are errors > >> regarding missing populate_sdk_tar.bbclass and rootfs_tar.bbclass > > > >With 1.3 (danny)? These should be fixed in 1.4 (dyland) and master... > > Richard > I have tried cherry picking from Dylan but it also seems to be missing populate_sdk_tar.bbclass and rootfs_tar.bbclass > Does Dylan support PACKAGE_CLASSES = "package_tar" without these classes? The package_tar class generates tarballs. tarballs do not have dependency information so its not possible to implement the populate_sdk_tar or rootfs_tar classes on top of it. I'm seriously considering removing the package_tar code since it isn't really useful and its clear nobody uses it since it remained broken for a long time. What you probably want to do is use a low overhead package manager like opkg, then after image generation remove the package data. core-image-minimal is an example of an image which does this. Cheers, Richard