All of lore.kernel.org
 help / color / mirror / Atom feed
* [yocto-docs][PATCH 0/3] Archiver documentation updates
@ 2013-01-28 23:06 Kevin Strasser
  2013-01-28 23:06 ` [yocto-docs][PATCH 1/3] dev-manual: use path independent bblayers.conf example Kevin Strasser
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Kevin Strasser @ 2013-01-28 23:06 UTC (permalink / raw)
  To: yocto

The following changes since commit 69fa3cc4a07fc471fc869a81ff2545d62b63286e:

  mega-manual: Removed support for old kernel-manual. (2013-01-28 15:14:01 -0600)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib strassek/docs_updates
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=strassek/docs_updates

Kevin Strasser (3):
  dev-manual: use path independent bblayers.conf example
  dev-manual: fix gpl source release example
  dev-manual: clarify what source is being archived

 .../dev-manual/dev-manual-common-tasks.xml         |   20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

-- 
1.7.9.5



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

* [yocto-docs][PATCH 1/3] dev-manual: use path independent bblayers.conf example
  2013-01-28 23:06 [yocto-docs][PATCH 0/3] Archiver documentation updates Kevin Strasser
@ 2013-01-28 23:06 ` Kevin Strasser
  2013-01-28 23:06 ` [yocto-docs][PATCH 2/3] dev-manual: fix gpl source release example Kevin Strasser
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Kevin Strasser @ 2013-01-28 23:06 UTC (permalink / raw)
  To: yocto

Signed-off-by: Kevin Strasser <kevin.strasser@linux.intel.com>
---
 .../dev-manual/dev-manual-common-tasks.xml         |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml
index 425b05a..e7d5d02 100644
--- a/documentation/dev-manual/dev-manual-common-tasks.xml
+++ b/documentation/dev-manual/dev-manual-common-tasks.xml
@@ -3060,15 +3060,15 @@
      BBFILES ?= ""
 
      BBLAYERS ?= " \
-       $HOME/poky/meta \
-       $HOME/poky/meta-yocto \
-       $HOME/poky/meta-yocto-bsp \
-       $HOME/poky/meta-mylayer \
+       ##COREBASE##/meta \
+       ##COREBASE##/meta-yocto \
+       ##COREBASE##/meta-yocto-bsp \
+       ##COREBASE##/meta-mylayer \
        "
 
      BBLAYERS_NON_REMOVABLE ?= " \
-       $HOME/poky/meta \
-       $HOME/poky/meta-yocto \
+       ##COREBASE##/meta \
+       ##COREBASE##/meta-yocto \
        "
                 </literallayout>
                 Creating and providing an archive of the metadata layers
-- 
1.7.9.5



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

* [yocto-docs][PATCH 2/3] dev-manual: fix gpl source release example
  2013-01-28 23:06 [yocto-docs][PATCH 0/3] Archiver documentation updates Kevin Strasser
  2013-01-28 23:06 ` [yocto-docs][PATCH 1/3] dev-manual: use path independent bblayers.conf example Kevin Strasser
@ 2013-01-28 23:06 ` Kevin Strasser
  2013-01-28 23:06 ` [yocto-docs][PATCH 3/3] dev-manual: clarify what source is being archived Kevin Strasser
  2013-01-29 17:46 ` [yocto-docs][PATCH 0/3] Archiver documentation updates Rifenbark, Scott M
  3 siblings, 0 replies; 5+ messages in thread
From: Kevin Strasser @ 2013-01-28 23:06 UTC (permalink / raw)
  To: yocto

The example doesn't account for an extra level of directories
that organise the sources by machine type.

Signed-off-by: Kevin Strasser <kevin.strasser@linux.intel.com>
---
 .../dev-manual/dev-manual-common-tasks.xml         |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml
index e7d5d02..30751e3 100644
--- a/documentation/dev-manual/dev-manual-common-tasks.xml
+++ b/documentation/dev-manual/dev-manual-common-tasks.xml
@@ -2968,7 +2968,7 @@
                 <literallayout class='monospaced'>
      $ cd poky/build/tmp/deploy/sources
      $ mkdir ~/gpl_source_release
-     $ for x in `ls|grep GPL`; do cp -R $x/* ~/gpl_source_release; done
+     $ for dir in */*GPL*; do cp -r $dir ~/gpl_source_release; done
                 </literallayout>
                 At this point, you could create a tarball from the
                 <filename>gpl_source_release</filename> directory and
-- 
1.7.9.5



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

* [yocto-docs][PATCH 3/3] dev-manual: clarify what source is being archived
  2013-01-28 23:06 [yocto-docs][PATCH 0/3] Archiver documentation updates Kevin Strasser
  2013-01-28 23:06 ` [yocto-docs][PATCH 1/3] dev-manual: use path independent bblayers.conf example Kevin Strasser
  2013-01-28 23:06 ` [yocto-docs][PATCH 2/3] dev-manual: fix gpl source release example Kevin Strasser
@ 2013-01-28 23:06 ` Kevin Strasser
  2013-01-29 17:46 ` [yocto-docs][PATCH 0/3] Archiver documentation updates Rifenbark, Scott M
  3 siblings, 0 replies; 5+ messages in thread
From: Kevin Strasser @ 2013-01-28 23:06 UTC (permalink / raw)
  To: yocto

Part of section 5.15.1 incorrectly implies that only copyleft
source will be archived to the specified directory, when in fact
copyleft filtering is disabled by default.

Signed-off-by: Kevin Strasser <kevin.strasser@linux.intel.com>
---
 .../dev-manual/dev-manual-common-tasks.xml         |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml
index 30751e3..5856c35 100644
--- a/documentation/dev-manual/dev-manual-common-tasks.xml
+++ b/documentation/dev-manual/dev-manual-common-tasks.xml
@@ -2947,9 +2947,9 @@
      INHERIT += "${ARCHIVER_CLASS}"
      SOURCE_ARCHIVE_PACKAGE_TYPE = "tar"
                 </literallayout>
-                During the creation of your image, all GPL
-                or other copyleft licensed source
-                is placed within subdirectories of
+                During the creation of your image, the source from all
+                recipes that deploy packages to the image is placed within
+                subdirectories of
                 <filename>DEPLOY_DIR/sources</filename> based on the
                 <ulink url='&YOCTO_DOCS_REF_URL;#var-LICENSE'><filename>LICENSE</filename></ulink>
                 for each recipe.
-- 
1.7.9.5



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

* Re: [yocto-docs][PATCH 0/3] Archiver documentation updates
  2013-01-28 23:06 [yocto-docs][PATCH 0/3] Archiver documentation updates Kevin Strasser
                   ` (2 preceding siblings ...)
  2013-01-28 23:06 ` [yocto-docs][PATCH 3/3] dev-manual: clarify what source is being archived Kevin Strasser
@ 2013-01-29 17:46 ` Rifenbark, Scott M
  3 siblings, 0 replies; 5+ messages in thread
From: Rifenbark, Scott M @ 2013-01-29 17:46 UTC (permalink / raw)
  To: Kevin Strasser, yocto@yoctoproject.org

Kevin, 

Thanks for the fixes.  I cherry-picked them from your contrib area and they are now in yocto-docs/master. 

Scott

>-----Original Message-----
>From: yocto-bounces@yoctoproject.org [mailto:yocto-
>bounces@yoctoproject.org] On Behalf Of Kevin Strasser
>Sent: Monday, January 28, 2013 3:06 PM
>To: yocto@yoctoproject.org
>Subject: [yocto] [yocto-docs][PATCH 0/3] Archiver documentation updates
>
>The following changes since commit
>69fa3cc4a07fc471fc869a81ff2545d62b63286e:
>
>  mega-manual: Removed support for old kernel-manual. (2013-01-28
>15:14:01 -0600)
>
>are available in the git repository at:
>
>  git://git.yoctoproject.org/poky-contrib strassek/docs_updates
>  http://git.yoctoproject.org/cgit.cgi/poky-
>contrib/log/?h=strassek/docs_updates
>
>Kevin Strasser (3):
>  dev-manual: use path independent bblayers.conf example
>  dev-manual: fix gpl source release example
>  dev-manual: clarify what source is being archived
>
> .../dev-manual/dev-manual-common-tasks.xml         |   20 ++++++++++---
>-------
> 1 file changed, 10 insertions(+), 10 deletions(-)
>
>--
>1.7.9.5
>
>_______________________________________________
>yocto mailing list
>yocto@yoctoproject.org
>https://lists.yoctoproject.org/listinfo/yocto


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

end of thread, other threads:[~2013-01-29 17:46 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-28 23:06 [yocto-docs][PATCH 0/3] Archiver documentation updates Kevin Strasser
2013-01-28 23:06 ` [yocto-docs][PATCH 1/3] dev-manual: use path independent bblayers.conf example Kevin Strasser
2013-01-28 23:06 ` [yocto-docs][PATCH 2/3] dev-manual: fix gpl source release example Kevin Strasser
2013-01-28 23:06 ` [yocto-docs][PATCH 3/3] dev-manual: clarify what source is being archived Kevin Strasser
2013-01-29 17:46 ` [yocto-docs][PATCH 0/3] Archiver documentation updates Rifenbark, Scott M

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.