All of lore.kernel.org
 help / color / mirror / Atom feed
From: Darren Hart <dvhart@linux.intel.com>
To: Akshat Saha <akshat.saha@spectracoretech.com>
Cc: poky@yoctoproject.org
Subject: Re: Adding Packages
Date: Thu, 03 Feb 2011 08:29:13 -0800	[thread overview]
Message-ID: <4D4AD7D9.60407@linux.intel.com> (raw)
In-Reply-To: <AANLkTikBFCb2kNE2ePDhNZ6+Up3HzuiqLgi9UTiyP0sP@mail.gmail.com>

On 02/03/2011 03:54 AM, Akshat Saha wrote:
> Hi All,
>
> I want to meta/packages/psplash package to my rfs. I
> compiled poky-image-minimal-live, with the following command
>
> $ bitbake poky-image-minimal-live
>
> Can any one guide me, how...?

There are a few ways to go about this I'm sure. What I've done is either:

1) Create a layer with .bbappend for the image
2) Create your own image recipe

For example, the following recipes create a new image,
poky-image-dvhart (as well as a live version), and add dropbear, 
trace-cmd, and kernelshark to the list of packages installed.


$ cat poky-image-dvhart.bb
#
# Copyright (C) 2010 Intel Corporation.
#
require recipes-core/images/poky-image-minimal.bb
IMAGE_INSTALL += "dropbear trace-cmd kernelshark"
LICENSE = "MIT"



$ cat poky-image-dvhart-live.bb
DESCRIPTION = "Bootable Live Image"
require recipes-core/images/poky-image-live.inc
LABELS += "boot install"
ROOTFS = "${DEPLOY_DIR_IMAGE}/poky-image-dvhart-${MACHINE}.ext3"
LICENSE = "MIT"
do_bootimg[depends] += "poky-image-dvhart:do_rootfs"


-- 
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel


  reply	other threads:[~2011-02-03 16:29 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-02-03 11:54 Adding Packages Akshat Saha
2011-02-03 16:29 ` Darren Hart [this message]
2011-02-04 10:25   ` Akshat Saha
2011-02-04 12:24     ` Joshua Lock
2011-02-04 19:04     ` Darren Hart
2011-02-05 13:33       ` Akshat Saha

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4D4AD7D9.60407@linux.intel.com \
    --to=dvhart@linux.intel.com \
    --cc=akshat.saha@spectracoretech.com \
    --cc=poky@yoctoproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.