Openembedded Devel Discussions
 help / color / mirror / Atom feed
* [meta-initramfs][PATCH 0/9] add missing SUMMARY and DESCRIPTION
@ 2013-06-17 20:34 Andrea Adami
  2013-06-17 20:34 ` [meta-initramfs][PATCH 1/9] initramfs-kexecboot(-klibc)-image: provide " Andrea Adami
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: Andrea Adami @ 2013-06-17 20:34 UTC (permalink / raw)
  To: openembedded-devel

Andrea Adami (9):
  initramfs-kexecboot(-klibc)-image: provide SUMMARY and DESCRIPTION
  kexecboot_cfg: add SUMMARY and extend DESCRIPTION
  kexecboot(-klibc): add SUMMARY, DESCRIPTION, HOMEPAGE
  ubi-utils-klibc: add SUMMARY and DESCRIPTION
  kexec-tools-klibc: add custom SUMMARY
  linux-yocto-tiny-kexecboot: add custom SUMMARY
  klibc(-static)-utils: add SUMMARY
  klcc-cross: add SUMMARY
  klibc: add SUMMARY

 meta-initramfs/recipes-bsp/images/initramfs-kexecboot-image.bb | 10 ++++------
 .../recipes-bsp/images/initramfs-kexecboot-klibc-image.bb      |  6 +++++-
 meta-initramfs/recipes-bsp/kexecboot/kexecboot-cfg_0.1.bb      |  4 +++-
 meta-initramfs/recipes-bsp/kexecboot/kexecboot-klibc_git.bb    |  1 +
 meta-initramfs/recipes-bsp/kexecboot/kexecboot.inc             |  3 +++
 meta-initramfs/recipes-devtools/klibc/klcc-cross_2.0.2.bb      |  1 +
 .../recipes-devtools/klibc/klibc-static-utils_2.0.2.bb         |  1 +
 meta-initramfs/recipes-devtools/klibc/klibc-utils_2.0.2.bb     |  1 +
 meta-initramfs/recipes-devtools/klibc/klibc_2.0.2.bb           |  1 +
 meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc_1.5.0.bb   |  3 ++-
 meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc_2.0.2.bb |  1 +
 .../recipes-kernel/linux/linux-yocto-tiny-kexecboot_3.8.bb     |  1 +
 12 files changed, 24 insertions(+), 9 deletions(-)

-- 
1.8.1.5



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

* [meta-initramfs][PATCH 1/9] initramfs-kexecboot(-klibc)-image: provide SUMMARY and DESCRIPTION
  2013-06-17 20:34 [meta-initramfs][PATCH 0/9] add missing SUMMARY and DESCRIPTION Andrea Adami
@ 2013-06-17 20:34 ` Andrea Adami
  2013-06-17 20:34 ` [meta-initramfs][PATCH 2/9] kexecboot_cfg: add SUMMARY and extend DESCRIPTION Andrea Adami
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Andrea Adami @ 2013-06-17 20:34 UTC (permalink / raw)
  To: openembedded-devel

* plus some minor editing of comments

Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
---
 meta-initramfs/recipes-bsp/images/initramfs-kexecboot-image.bb | 10 ++++------
 .../recipes-bsp/images/initramfs-kexecboot-klibc-image.bb      |  6 +++++-
 2 files changed, 9 insertions(+), 7 deletions(-)

diff --git a/meta-initramfs/recipes-bsp/images/initramfs-kexecboot-image.bb b/meta-initramfs/recipes-bsp/images/initramfs-kexecboot-image.bb
index dbe5583..dd6d07d 100644
--- a/meta-initramfs/recipes-bsp/images/initramfs-kexecboot-image.bb
+++ b/meta-initramfs/recipes-bsp/images/initramfs-kexecboot-image.bb
@@ -1,6 +1,5 @@
-# Initramfs image providing kexecboot
-# a linux as bootloader implementation
-
+SUMMARY = "Initramfs image for kexecboot kernel"
+DESCRIPTION = "This image provides kexecboot (linux as bootloader) and helpers."
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
 
@@ -9,9 +8,8 @@ IMAGE_FSTYPES = "${INITRAMFS_FSTYPES}"
 # avoid circular dependencies
 EXTRA_IMAGEDEPENDS = ""
 
-# for ubiattach we have to install mtd-utils-ubifs
-# or use ubiattach-klibc instead
-IMAGE_INSTALL = "kexec kexecboot mtd-utils-ubifs"
+# We really need just kexecboot, kexec and ubiattach
+IMAGE_INSTALL = "kexecboot kexec mtd-utils-ubifs"
 
 # Do not pollute the initrd image with rootfs features
 IMAGE_FEATURES = ""
diff --git a/meta-initramfs/recipes-bsp/images/initramfs-kexecboot-klibc-image.bb b/meta-initramfs/recipes-bsp/images/initramfs-kexecboot-klibc-image.bb
index 37349e1..df97511 100644
--- a/meta-initramfs/recipes-bsp/images/initramfs-kexecboot-klibc-image.bb
+++ b/meta-initramfs/recipes-bsp/images/initramfs-kexecboot-klibc-image.bb
@@ -1,3 +1,7 @@
 require initramfs-kexecboot-image.bb
 
-IMAGE_INSTALL = "kexec-klibc kexecboot-klibc ubiattach-klibc"
+SUMMARY = "Initramfs image for kexecboot kernel (klibc-static binaries)"
+
+# We really need just kexecboot, kexec and ubiattach
+# statically compiled against klibc
+IMAGE_INSTALL = "kexecboot-klibc kexec-klibc ubiattach-klibc"
-- 
1.8.1.5



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

* [meta-initramfs][PATCH 2/9] kexecboot_cfg: add SUMMARY and extend DESCRIPTION
  2013-06-17 20:34 [meta-initramfs][PATCH 0/9] add missing SUMMARY and DESCRIPTION Andrea Adami
  2013-06-17 20:34 ` [meta-initramfs][PATCH 1/9] initramfs-kexecboot(-klibc)-image: provide " Andrea Adami
@ 2013-06-17 20:34 ` Andrea Adami
  2013-06-17 20:34 ` [meta-initramfs][PATCH 3/9] kexecboot(-klibc): add SUMMARY, DESCRIPTION, HOMEPAGE Andrea Adami
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Andrea Adami @ 2013-06-17 20:34 UTC (permalink / raw)
  To: openembedded-devel

 Signed-off-by: Andrea Adami <andrea.adami@gmail.com>

---
 meta-initramfs/recipes-bsp/kexecboot/kexecboot-cfg_0.1.bb | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/meta-initramfs/recipes-bsp/kexecboot/kexecboot-cfg_0.1.bb b/meta-initramfs/recipes-bsp/kexecboot/kexecboot-cfg_0.1.bb
index 0b305f0..619a143 100644
--- a/meta-initramfs/recipes-bsp/kexecboot/kexecboot-cfg_0.1.bb
+++ b/meta-initramfs/recipes-bsp/kexecboot/kexecboot-cfg_0.1.bb
@@ -1,4 +1,5 @@
-DESCRIPTION = "Configuration file for kexecboot"
+SUMMARY = "Configuration files for kexecboot"
+DESCRIPTION = "Default icon and boot.cfg for kexecboot linux-as-bootloader."
 SECTION = "base"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
@@ -23,6 +24,7 @@ do_install_prepend () {
 echo '# First kernel stanza.
 # Show this label in kexecboot menu.
 LABEL=${KEXECBOOT_LABEL}
+#
 # Specify full kernel path on target.
 KERNEL=/boot/${KERNEL_IMAGETYPE}
 #
-- 
1.8.1.5



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

* [meta-initramfs][PATCH 3/9] kexecboot(-klibc): add SUMMARY, DESCRIPTION, HOMEPAGE
  2013-06-17 20:34 [meta-initramfs][PATCH 0/9] add missing SUMMARY and DESCRIPTION Andrea Adami
  2013-06-17 20:34 ` [meta-initramfs][PATCH 1/9] initramfs-kexecboot(-klibc)-image: provide " Andrea Adami
  2013-06-17 20:34 ` [meta-initramfs][PATCH 2/9] kexecboot_cfg: add SUMMARY and extend DESCRIPTION Andrea Adami
@ 2013-06-17 20:34 ` Andrea Adami
  2013-06-17 20:34 ` [meta-initramfs][PATCH 4/9] ubi-utils-klibc: add SUMMARY and DESCRIPTION Andrea Adami
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Andrea Adami @ 2013-06-17 20:34 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
---
 meta-initramfs/recipes-bsp/kexecboot/kexecboot-klibc_git.bb | 1 +
 meta-initramfs/recipes-bsp/kexecboot/kexecboot.inc          | 3 +++
 2 files changed, 4 insertions(+)

diff --git a/meta-initramfs/recipes-bsp/kexecboot/kexecboot-klibc_git.bb b/meta-initramfs/recipes-bsp/kexecboot/kexecboot-klibc_git.bb
index a158eb4..5e33182 100644
--- a/meta-initramfs/recipes-bsp/kexecboot/kexecboot-klibc_git.bb
+++ b/meta-initramfs/recipes-bsp/kexecboot/kexecboot-klibc_git.bb
@@ -9,3 +9,4 @@ S = "${WORKDIR}/git"
 inherit klibc
 
 require kexecboot.inc
+SUMMARY = "kexecboot linux-as-bootloader, statically compiled against klibc"
diff --git a/meta-initramfs/recipes-bsp/kexecboot/kexecboot.inc b/meta-initramfs/recipes-bsp/kexecboot/kexecboot.inc
index b06293c..3854b9f 100644
--- a/meta-initramfs/recipes-bsp/kexecboot/kexecboot.inc
+++ b/meta-initramfs/recipes-bsp/kexecboot/kexecboot.inc
@@ -31,6 +31,9 @@
 #  --with-kexec-binary     look for kexec binary at path
 #                            [default="/usr/sbin/kexec"]
 ##########################
+SUMMARY = "kexecboot linux-as-bootloader"
+DESCRIPTION = "kexecboot is a graphical linux-as-bootloader implementation based on kexec."
+HOMEPAGE = "http://kexecboot.org"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
 inherit autotools
-- 
1.8.1.5



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

* [meta-initramfs][PATCH 4/9] ubi-utils-klibc: add SUMMARY and DESCRIPTION
  2013-06-17 20:34 [meta-initramfs][PATCH 0/9] add missing SUMMARY and DESCRIPTION Andrea Adami
                   ` (2 preceding siblings ...)
  2013-06-17 20:34 ` [meta-initramfs][PATCH 3/9] kexecboot(-klibc): add SUMMARY, DESCRIPTION, HOMEPAGE Andrea Adami
@ 2013-06-17 20:34 ` Andrea Adami
  2013-06-17 20:34 ` [meta-initramfs][PATCH 5/9] kexec-tools-klibc: add custom SUMMARY Andrea Adami
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Andrea Adami @ 2013-06-17 20:34 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
---
 meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc_1.5.0.bb | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc_1.5.0.bb b/meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc_1.5.0.bb
index e00fc30..3039eb7 100644
--- a/meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc_1.5.0.bb
+++ b/meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc_1.5.0.bb
@@ -1,4 +1,5 @@
-DESCRIPTION = "Tools for managing memory technology devices."
+SUMMARY = "UBI utils statically compiled against klibc"
+DESCRIPTION = "Small sized tools from mtd-utils for use with initramfs."
 SECTION = "base"
 DEPENDS = "zlib lzo e2fsprogs util-linux"
 HOMEPAGE = "http://www.linux-mtd.infradead.org/"
-- 
1.8.1.5



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

* [meta-initramfs][PATCH 5/9] kexec-tools-klibc: add custom SUMMARY
  2013-06-17 20:34 [meta-initramfs][PATCH 0/9] add missing SUMMARY and DESCRIPTION Andrea Adami
                   ` (3 preceding siblings ...)
  2013-06-17 20:34 ` [meta-initramfs][PATCH 4/9] ubi-utils-klibc: add SUMMARY and DESCRIPTION Andrea Adami
@ 2013-06-17 20:34 ` Andrea Adami
  2013-06-17 20:34 ` [meta-initramfs][PATCH 6/9] linux-yocto-tiny-kexecboot: " Andrea Adami
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Andrea Adami @ 2013-06-17 20:34 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
---
 meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc_2.0.2.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc_2.0.2.bb b/meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc_2.0.2.bb
index eedcaa5..a54d38e 100644
--- a/meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc_2.0.2.bb
+++ b/meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc_2.0.2.bb
@@ -1,5 +1,6 @@
 # the binaries are statically linked against klibc
 require recipes-kernel/kexec/kexec-tools.inc
+SUMMARY = "Kexec tools, statically compiled against klibc"
 SRC_URI[md5sum] = "92eff93b097475b7767f8c98df84408a"
 SRC_URI[sha256sum] = "09e180ff36dee087182cdc939ba6c6917b6adbb5fc12d589f31fd3659b6471f2"
 
-- 
1.8.1.5



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

* [meta-initramfs][PATCH 6/9] linux-yocto-tiny-kexecboot: add custom SUMMARY
  2013-06-17 20:34 [meta-initramfs][PATCH 0/9] add missing SUMMARY and DESCRIPTION Andrea Adami
                   ` (4 preceding siblings ...)
  2013-06-17 20:34 ` [meta-initramfs][PATCH 5/9] kexec-tools-klibc: add custom SUMMARY Andrea Adami
@ 2013-06-17 20:34 ` Andrea Adami
  2013-06-17 20:34 ` [meta-initramfs][PATCH 7/9] klibc(-static)-utils: add SUMMARY Andrea Adami
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Andrea Adami @ 2013-06-17 20:34 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
---
 meta-initramfs/recipes-kernel/linux/linux-yocto-tiny-kexecboot_3.8.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-initramfs/recipes-kernel/linux/linux-yocto-tiny-kexecboot_3.8.bb b/meta-initramfs/recipes-kernel/linux/linux-yocto-tiny-kexecboot_3.8.bb
index c4f7f20..78858a3 100644
--- a/meta-initramfs/recipes-kernel/linux/linux-yocto-tiny-kexecboot_3.8.bb
+++ b/meta-initramfs/recipes-kernel/linux/linux-yocto-tiny-kexecboot_3.8.bb
@@ -1,4 +1,5 @@
 require recipes-kernel/linux/linux-yocto-tiny_3.8.bb
+SUMMARY = "Yocto tiny kernel embedding a minimalistic kexecboot initramfs"
 
 PACKAGES = ""
 PROVIDES = ""
-- 
1.8.1.5



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

* [meta-initramfs][PATCH 7/9] klibc(-static)-utils: add SUMMARY
  2013-06-17 20:34 [meta-initramfs][PATCH 0/9] add missing SUMMARY and DESCRIPTION Andrea Adami
                   ` (5 preceding siblings ...)
  2013-06-17 20:34 ` [meta-initramfs][PATCH 6/9] linux-yocto-tiny-kexecboot: " Andrea Adami
@ 2013-06-17 20:34 ` Andrea Adami
  2013-06-17 20:34 ` [meta-initramfs][PATCH 8/9] klcc-cross: " Andrea Adami
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Andrea Adami @ 2013-06-17 20:34 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
---
 meta-initramfs/recipes-devtools/klibc/klibc-static-utils_2.0.2.bb | 1 +
 meta-initramfs/recipes-devtools/klibc/klibc-utils_2.0.2.bb        | 1 +
 2 files changed, 2 insertions(+)

diff --git a/meta-initramfs/recipes-devtools/klibc/klibc-static-utils_2.0.2.bb b/meta-initramfs/recipes-devtools/klibc/klibc-static-utils_2.0.2.bb
index ffad585..a3f9ec3 100644
--- a/meta-initramfs/recipes-devtools/klibc/klibc-static-utils_2.0.2.bb
+++ b/meta-initramfs/recipes-devtools/klibc/klibc-static-utils_2.0.2.bb
@@ -14,3 +14,4 @@ FILES_${PN} = ""
 
 require klibc-utils.inc
 require klibc.inc
+SUMMARY = "klibc utils for initramfs statically compiled"
diff --git a/meta-initramfs/recipes-devtools/klibc/klibc-utils_2.0.2.bb b/meta-initramfs/recipes-devtools/klibc/klibc-utils_2.0.2.bb
index 96fd19e..c77e041 100644
--- a/meta-initramfs/recipes-devtools/klibc/klibc-utils_2.0.2.bb
+++ b/meta-initramfs/recipes-devtools/klibc/klibc-utils_2.0.2.bb
@@ -14,3 +14,4 @@ FILES_${PN} = ""
 
 require klibc-utils.inc
 require klibc.inc
+SUMMARY = "klibc utils for initramfs"
-- 
1.8.1.5



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

* [meta-initramfs][PATCH 8/9] klcc-cross: add SUMMARY
  2013-06-17 20:34 [meta-initramfs][PATCH 0/9] add missing SUMMARY and DESCRIPTION Andrea Adami
                   ` (6 preceding siblings ...)
  2013-06-17 20:34 ` [meta-initramfs][PATCH 7/9] klibc(-static)-utils: add SUMMARY Andrea Adami
@ 2013-06-17 20:34 ` Andrea Adami
  2013-06-17 20:34 ` [meta-initramfs][PATCH 9/9] klibc: " Andrea Adami
  2013-06-18 21:13 ` [meta-initramfs][PATCH 0/9] add missing SUMMARY and DESCRIPTION Paul Eggleton
  9 siblings, 0 replies; 11+ messages in thread
From: Andrea Adami @ 2013-06-17 20:34 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
---
 meta-initramfs/recipes-devtools/klibc/klcc-cross_2.0.2.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-initramfs/recipes-devtools/klibc/klcc-cross_2.0.2.bb b/meta-initramfs/recipes-devtools/klibc/klcc-cross_2.0.2.bb
index 0c187d2..b30d165 100644
--- a/meta-initramfs/recipes-devtools/klibc/klcc-cross_2.0.2.bb
+++ b/meta-initramfs/recipes-devtools/klibc/klcc-cross_2.0.2.bb
@@ -1,6 +1,7 @@
 PR = "${INC_PR}.0"
 
 require klibc.inc
+SUMMARY = "The klcc crosscompiler for klibc"
 
 export KLCC_INST = "${STAGING_DIR_TARGET}/lib/klibc"
 
-- 
1.8.1.5



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

* [meta-initramfs][PATCH 9/9] klibc: add SUMMARY
  2013-06-17 20:34 [meta-initramfs][PATCH 0/9] add missing SUMMARY and DESCRIPTION Andrea Adami
                   ` (7 preceding siblings ...)
  2013-06-17 20:34 ` [meta-initramfs][PATCH 8/9] klcc-cross: " Andrea Adami
@ 2013-06-17 20:34 ` Andrea Adami
  2013-06-18 21:13 ` [meta-initramfs][PATCH 0/9] add missing SUMMARY and DESCRIPTION Paul Eggleton
  9 siblings, 0 replies; 11+ messages in thread
From: Andrea Adami @ 2013-06-17 20:34 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
---
 meta-initramfs/recipes-devtools/klibc/klibc_2.0.2.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-initramfs/recipes-devtools/klibc/klibc_2.0.2.bb b/meta-initramfs/recipes-devtools/klibc/klibc_2.0.2.bb
index 4ec989f..9c2590e 100644
--- a/meta-initramfs/recipes-devtools/klibc/klibc_2.0.2.bb
+++ b/meta-initramfs/recipes-devtools/klibc/klibc_2.0.2.bb
@@ -24,3 +24,4 @@ FILES_libklibc-dev = "${base_libdir}/klibc.so \
                       ${base_libdir}/klibc/include/* \
 "
 require klibc.inc
+SUMMARY = "klibc, a small C library for use with initramfs"
-- 
1.8.1.5



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

* Re: [meta-initramfs][PATCH 0/9] add missing SUMMARY and DESCRIPTION
  2013-06-17 20:34 [meta-initramfs][PATCH 0/9] add missing SUMMARY and DESCRIPTION Andrea Adami
                   ` (8 preceding siblings ...)
  2013-06-17 20:34 ` [meta-initramfs][PATCH 9/9] klibc: " Andrea Adami
@ 2013-06-18 21:13 ` Paul Eggleton
  9 siblings, 0 replies; 11+ messages in thread
From: Paul Eggleton @ 2013-06-18 21:13 UTC (permalink / raw)
  To: Andrea Adami; +Cc: openembedded-devel

On Monday 17 June 2013 22:34:43 Andrea Adami wrote:
> Andrea Adami (9):
>   initramfs-kexecboot(-klibc)-image: provide SUMMARY and DESCRIPTION
>   kexecboot_cfg: add SUMMARY and extend DESCRIPTION
>   kexecboot(-klibc): add SUMMARY, DESCRIPTION, HOMEPAGE
>   ubi-utils-klibc: add SUMMARY and DESCRIPTION
>   kexec-tools-klibc: add custom SUMMARY
>   linux-yocto-tiny-kexecboot: add custom SUMMARY
>   klibc(-static)-utils: add SUMMARY
>   klcc-cross: add SUMMARY
>   klibc: add SUMMARY
> 
>  meta-initramfs/recipes-bsp/images/initramfs-kexecboot-image.bb | 10
> ++++------ .../recipes-bsp/images/initramfs-kexecboot-klibc-image.bb      |
>  6 +++++- meta-initramfs/recipes-bsp/kexecboot/kexecboot-cfg_0.1.bb      | 
> 4 +++- meta-initramfs/recipes-bsp/kexecboot/kexecboot-klibc_git.bb    |  1
> + meta-initramfs/recipes-bsp/kexecboot/kexecboot.inc             |  3 +++
> meta-initramfs/recipes-devtools/klibc/klcc-cross_2.0.2.bb      |  1 +
> .../recipes-devtools/klibc/klibc-static-utils_2.0.2.bb         |  1 +
> meta-initramfs/recipes-devtools/klibc/klibc-utils_2.0.2.bb     |  1 +
> meta-initramfs/recipes-devtools/klibc/klibc_2.0.2.bb           |  1 +
> meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc_1.5.0.bb   |  3 ++-
> meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc_2.0.2.bb |  1 +
> .../recipes-kernel/linux/linux-yocto-tiny-kexecboot_3.8.bb     |  1 + 12
> files changed, 24 insertions(+), 9 deletions(-)

Merged, thanks.

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre


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

end of thread, other threads:[~2013-06-18 21:13 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-17 20:34 [meta-initramfs][PATCH 0/9] add missing SUMMARY and DESCRIPTION Andrea Adami
2013-06-17 20:34 ` [meta-initramfs][PATCH 1/9] initramfs-kexecboot(-klibc)-image: provide " Andrea Adami
2013-06-17 20:34 ` [meta-initramfs][PATCH 2/9] kexecboot_cfg: add SUMMARY and extend DESCRIPTION Andrea Adami
2013-06-17 20:34 ` [meta-initramfs][PATCH 3/9] kexecboot(-klibc): add SUMMARY, DESCRIPTION, HOMEPAGE Andrea Adami
2013-06-17 20:34 ` [meta-initramfs][PATCH 4/9] ubi-utils-klibc: add SUMMARY and DESCRIPTION Andrea Adami
2013-06-17 20:34 ` [meta-initramfs][PATCH 5/9] kexec-tools-klibc: add custom SUMMARY Andrea Adami
2013-06-17 20:34 ` [meta-initramfs][PATCH 6/9] linux-yocto-tiny-kexecboot: " Andrea Adami
2013-06-17 20:34 ` [meta-initramfs][PATCH 7/9] klibc(-static)-utils: add SUMMARY Andrea Adami
2013-06-17 20:34 ` [meta-initramfs][PATCH 8/9] klcc-cross: " Andrea Adami
2013-06-17 20:34 ` [meta-initramfs][PATCH 9/9] klibc: " Andrea Adami
2013-06-18 21:13 ` [meta-initramfs][PATCH 0/9] add missing SUMMARY and DESCRIPTION Paul Eggleton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox