All of lore.kernel.org
 help / color / mirror / Atom feed
From: Paul Eggleton <paul.eggleton@linux.intel.com>
To: Zafrullah Syed <zafrullahmehdi@gmail.com>
Cc: yocto@yoctoproject.org
Subject: Re: Hello world-Checksum error
Date: Tue, 28 May 2013 14:54:40 +0100	[thread overview]
Message-ID: <3376326.FccA9gDt9x@helios> (raw)
In-Reply-To: <CAAGt+t1eJo8yRC7ZKLFOz1c8zLAJZv7Uc_2d6SxkXq-ij+Pe=A@mail.gmail.com>

On Tuesday 28 May 2013 15:45:10 Zafrullah Syed wrote:
> Error corrected. Thank You.
> 
> Do we need to add IMAGE_INSTALL += " hello " and EXTRA_IMAGE_FEATURES += "
> hello " to yocto/build/conf/local.conf or yocto/poky/build/conf/local.conf
>  before running build?

If you want it installed into an image, yes. However, IMAGE_INSTALL += "hello" 
in local.conf won't work, because it will be overridden by the setting of 
IMAGE_INSTALL in the image recipe itself, since local.conf will be parsed 
first. You need to do this instead in local.conf:

IMAGE_INSTALL_append = " hello"

(note the leading space, this is important with _append as _append does not 
add a space for you). _append operations are deferred until the end of parsing 
and thus will be applied even if the value is set with = afterwards as in this 
case.

Also, EXTRA_IMAGE_FEATURES += " hello " won't do anything since "hello" is not 
a valid image feature, it's a package. Appending it to IMAGE_INSTALL is enough 
to have it installed into the image.

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre


  reply	other threads:[~2013-05-28 13:54 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-05-28 11:46 Hello world-Checksum error Zafrullah Syed
2013-05-28 11:57 ` Satya Swaroop Damarla
2013-05-28 12:03   ` Zafrullah Syed
2013-05-28 12:05 ` Usman, Fahad
2013-05-28 12:14 ` Paul Eggleton
2013-05-28 12:32   ` Zafrullah Syed
2013-05-28 12:36     ` Erik Botö
2013-05-28 13:45       ` Zafrullah Syed
2013-05-28 13:54         ` Paul Eggleton [this message]
2013-06-04 10:42           ` Zafrullah Syed
2013-06-04 10:58             ` Paul Eggleton
2013-06-04 13:19               ` Zafrullah Syed
2013-06-04 13:26                 ` Paul Eggleton
2013-06-04 13:42                   ` Zafrullah Syed
2013-06-04 13:57                     ` Paul Eggleton
2013-06-04 19:45                       ` Zafrullah Syed
2013-06-04 20:01                         ` Michael Stickel
2013-06-04 16:19                     ` michael

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=3376326.FccA9gDt9x@helios \
    --to=paul.eggleton@linux.intel.com \
    --cc=yocto@yoctoproject.org \
    --cc=zafrullahmehdi@gmail.com \
    /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.