All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2 v3] kexec-tools packaging
@ 2012-01-09 22:46 Andrea Adami
  2012-01-09 22:46 ` [PATCH 1/2 v3] kexec-tools: split packaging of kexec and kdump Andrea Adami
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Andrea Adami @ 2012-01-09 22:46 UTC (permalink / raw)
  To: openembedded-core

* This patchset proposes to package separately
* kexec and kdump.
* Referring to oe-core, task-core-tools has been adapted.

Andrea Adami (2):
  kexec-tools: split packaging of kexec and kdump
  task-core-tools: adapt to kexec-tools package split

 meta/recipes-core/tasks/task-core-tools.bb     |    4 ++--
 meta/recipes-kernel/kexec/kexec-tools_2.0.2.bb |    7 ++++++-
 2 files changed, 8 insertions(+), 3 deletions(-)

-- 
1.7.3.4




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

* [PATCH 1/2 v3] kexec-tools: split packaging of kexec and kdump
  2012-01-09 22:46 [PATCH 0/2 v3] kexec-tools packaging Andrea Adami
@ 2012-01-09 22:46 ` Andrea Adami
  2012-01-09 22:46 ` [PATCH 2/2 v3] task-core-tools: adapt to kexec-tools package split Andrea Adami
  2012-01-12  6:39 ` [PATCH 0/2 v3] kexec-tools packaging Saul Wold
  2 siblings, 0 replies; 4+ messages in thread
From: Andrea Adami @ 2012-01-09 22:46 UTC (permalink / raw)
  To: openembedded-core

* from meta-oe (originally from org.openembedded.dev)
* There are no reasons to install kdump when only kexec is needed.
*
* In oe-core/meta there are no references to kexec-tools so
* the recipes inn external layers rdepending on kexec-tools should be
* fixed and rdepend on kexec and/or kdump.
*
* Bump PR.

Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
---
 meta/recipes-kernel/kexec/kexec-tools_2.0.2.bb |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-kernel/kexec/kexec-tools_2.0.2.bb b/meta/recipes-kernel/kexec/kexec-tools_2.0.2.bb
index caed816..8d2e606 100644
--- a/meta/recipes-kernel/kexec/kexec-tools_2.0.2.bb
+++ b/meta/recipes-kernel/kexec/kexec-tools_2.0.2.bb
@@ -2,8 +2,13 @@ require kexec-tools.inc
 export LDFLAGS = "-L${STAGING_LIBDIR}"
 EXTRA_OECONF = " --with-zlib=yes"
 
-PR = "r1"
+PR = "r2"
 
 SRC_URI += " file://fix_for_compiling_with_gcc-4.6.0.patch"
 SRC_URI[md5sum] = "bc401cf3262b25ff7c9a51fc76c8ab91"
 SRC_URI[sha256sum] = "549ab65c18a2229b6bf21b6875ca6bbe0e579bca08c3543ce6aaf8287a0b4188"
+
+PACKAGES =+ "kexec kdump"
+
+FILES_kexec = "${sbindir}/kexec"
+FILES_kdump = "${sbindir}/kdump"
-- 
1.7.3.4




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

* [PATCH 2/2 v3] task-core-tools: adapt to kexec-tools package split
  2012-01-09 22:46 [PATCH 0/2 v3] kexec-tools packaging Andrea Adami
  2012-01-09 22:46 ` [PATCH 1/2 v3] kexec-tools: split packaging of kexec and kdump Andrea Adami
@ 2012-01-09 22:46 ` Andrea Adami
  2012-01-12  6:39 ` [PATCH 0/2 v3] kexec-tools packaging Saul Wold
  2 siblings, 0 replies; 4+ messages in thread
From: Andrea Adami @ 2012-01-09 22:46 UTC (permalink / raw)
  To: openembedded-core

* The recipe packages now kexec and kdump separately.
* For standard purposes only kexec is needed.
* Bump PR.

Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
---
 meta/recipes-core/tasks/task-core-tools.bb |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-core/tasks/task-core-tools.bb b/meta/recipes-core/tasks/task-core-tools.bb
index 6632b4f..1a42f15 100644
--- a/meta/recipes-core/tasks/task-core-tools.bb
+++ b/meta/recipes-core/tasks/task-core-tools.bb
@@ -6,7 +6,7 @@ DESCRIPTION = "Tools tasks for OE-Core"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
                     file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
-PR = "r14"
+PR = "r15"
 
 PACKAGES = "\
     task-core-tools-debug \
@@ -25,7 +25,7 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
 ALLOW_EMPTY = "1"
 
 # kexec-tools doesn't work on Mips
-KEXECTOOLS ?= "kexec-tools"
+KEXECTOOLS ?= "kexec"
 KEXECTOOLS_mips ?= ""
 KEXECTOOLS_mipsel ?= ""
 KEXECTOOLS_powerpc ?= ""
-- 
1.7.3.4




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

* Re: [PATCH 0/2 v3] kexec-tools packaging
  2012-01-09 22:46 [PATCH 0/2 v3] kexec-tools packaging Andrea Adami
  2012-01-09 22:46 ` [PATCH 1/2 v3] kexec-tools: split packaging of kexec and kdump Andrea Adami
  2012-01-09 22:46 ` [PATCH 2/2 v3] task-core-tools: adapt to kexec-tools package split Andrea Adami
@ 2012-01-12  6:39 ` Saul Wold
  2 siblings, 0 replies; 4+ messages in thread
From: Saul Wold @ 2012-01-12  6:39 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On 01/09/2012 02:46 PM, Andrea Adami wrote:
> * This patchset proposes to package separately
> * kexec and kdump.
> * Referring to oe-core, task-core-tools has been adapted.
>
> Andrea Adami (2):
>    kexec-tools: split packaging of kexec and kdump
>    task-core-tools: adapt to kexec-tools package split
>
>   meta/recipes-core/tasks/task-core-tools.bb     |    4 ++--
>   meta/recipes-kernel/kexec/kexec-tools_2.0.2.bb |    7 ++++++-
>   2 files changed, 8 insertions(+), 3 deletions(-)
>

Merged into OE-Core

Thanks
	Sau!



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

end of thread, other threads:[~2012-01-12 23:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-01-09 22:46 [PATCH 0/2 v3] kexec-tools packaging Andrea Adami
2012-01-09 22:46 ` [PATCH 1/2 v3] kexec-tools: split packaging of kexec and kdump Andrea Adami
2012-01-09 22:46 ` [PATCH 2/2 v3] task-core-tools: adapt to kexec-tools package split Andrea Adami
2012-01-12  6:39 ` [PATCH 0/2 v3] kexec-tools packaging Saul Wold

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.