All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] beagleboard-test-image: added ramdisk
@ 2010-08-04  4:44 Jason Kridner
  2010-08-04  8:18 ` Paul Menzel
  2010-08-04 12:46 ` Jason Kridner
  0 siblings, 2 replies; 3+ messages in thread
From: Jason Kridner @ 2010-08-04  4:44 UTC (permalink / raw)
  To: Openembedded-devel

Simply adding 'ext2.gz' to the IMAGE_FSTYPES to produce a default sized
ramdisk image whenever this image is built.
---
 recipes/images/beagleboard-test-image.bb |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/recipes/images/beagleboard-test-image.bb b/recipes/images/beagleboard-test-image.bb
index 0ea323a..f4d736d 100644
--- a/recipes/images/beagleboard-test-image.bb
+++ b/recipes/images/beagleboard-test-image.bb
@@ -22,4 +22,5 @@ IMAGE_INSTALL += " \
 
 export IMAGE_BASENAME = "beagleboard-test-image"
 
-EXTRA_IMAGEDEPENDS += "x-load u-boot virtual/kernel"
+EXTRA_IMAGEDEPENDS += " x-load u-boot virtual/kernel"
+IMAGE_FSTYPES += " ext2.gz"
-- 
1.5.6.4




^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] beagleboard-test-image: added ramdisk
  2010-08-04  4:44 [PATCH] beagleboard-test-image: added ramdisk Jason Kridner
@ 2010-08-04  8:18 ` Paul Menzel
  2010-08-04 12:46 ` Jason Kridner
  1 sibling, 0 replies; 3+ messages in thread
From: Paul Menzel @ 2010-08-04  8:18 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1152 bytes --]

Am Dienstag, den 03.08.2010, 23:44 -0500 schrieb Jason Kridner:
> Simply adding 'ext2.gz' to the IMAGE_FSTYPES to produce a default sized
> ramdisk image whenever this image is built.
> ---
>  recipes/images/beagleboard-test-image.bb |    3 ++-
>  1 files changed, 2 insertions(+), 1 deletions(-)
> 
> diff --git a/recipes/images/beagleboard-test-image.bb b/recipes/images/beagleboard-test-image.bb
> index 0ea323a..f4d736d 100644
> --- a/recipes/images/beagleboard-test-image.bb
> +++ b/recipes/images/beagleboard-test-image.bb
> @@ -22,4 +22,5 @@ IMAGE_INSTALL += " \
>  
>  export IMAGE_BASENAME = "beagleboard-test-image"
>  
> -EXTRA_IMAGEDEPENDS += "x-load u-boot virtual/kernel"
> +EXTRA_IMAGEDEPENDS += " x-load u-boot virtual/kernel"

Not needed [1].

        You can append values to existing variables using the +=
        operator. Note that this operator will add a space between the
        existing content of the variable and the new content.

(It should have been a separate patch anyway.)

> +IMAGE_FSTYPES += " ext2.gz"


Thanks,

Paul


[1] http://docs.openembedded.org/usermanual/usermanual.html

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH] beagleboard-test-image: added ramdisk
  2010-08-04  4:44 [PATCH] beagleboard-test-image: added ramdisk Jason Kridner
  2010-08-04  8:18 ` Paul Menzel
@ 2010-08-04 12:46 ` Jason Kridner
  1 sibling, 0 replies; 3+ messages in thread
From: Jason Kridner @ 2010-08-04 12:46 UTC (permalink / raw)
  To: Openembedded-devel

Simply adding 'ext2.gz' to the IMAGE_FSTYPES to produce a default sized
ramdisk image whenever this image is built.

Uses 'IMAGE_FSTYPES +=' syntax to add a compressed ext2 image to use as
a ramdisk for BeagleBoard validation.  No space is required in the
string per link provided by Paul Menzel. [1]

[1] http://docs.openembedded.org/usermanual/usermanual.html
---
 recipes/images/beagleboard-test-image.bb |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/recipes/images/beagleboard-test-image.bb b/recipes/images/beagleboard-test-image.bb
index 0ea323a..669eb52 100644
--- a/recipes/images/beagleboard-test-image.bb
+++ b/recipes/images/beagleboard-test-image.bb
@@ -23,3 +23,4 @@ IMAGE_INSTALL += " \
 export IMAGE_BASENAME = "beagleboard-test-image"
 
 EXTRA_IMAGEDEPENDS += "x-load u-boot virtual/kernel"
+IMAGE_FSTYPES += "ext2.gz"
-- 
1.5.6.4




^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-08-04 12:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-08-04  4:44 [PATCH] beagleboard-test-image: added ramdisk Jason Kridner
2010-08-04  8:18 ` Paul Menzel
2010-08-04 12:46 ` Jason Kridner

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.