From patchwork Fri May 6 14:32:08 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [RFC] systemd units packaging Date: Fri, 06 May 2011 14:32:08 -0000 From: Koen Kooi X-Patchwork-Id: 3297 Message-Id: To: Patches and discussions about the oe-core layer Op 6 mei 2011, om 15:54 heeft Martin Jansa het volgende geschreven: > On Fri, May 06, 2011 at 06:51:58AM -0700, Chris Larson wrote: >> On Fri, May 6, 2011 at 6:39 AM, Koen Kooi wrote: >>> And related to this: how do I get the "installed but not packaged" output back? The bitbake logging changes are hiding it now, which is counterproductive. >> >> Could change those messages from info to warnings, then they'd show up. > > Agreed, please change it. I'm using -v since those were not shown, but -v > brings much more noise then I need. Like this? --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass @@ -676,7 +676,7 @@ python populate_packages () { unshipped.append(path) if unshipped != []: - bb.note("the following files were installed but not shipped in any package:") + bb.warn("the following files were installed but not shipped in any package:") for f in unshipped: bb.note(" " + f)