Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH v2 0/2] Misc bugfixes
@ 2014-03-20 19:19 Paul Eggleton
  2014-03-20 19:19 ` [PATCH v2 1/2] classes/kernel: move module postinst commands to kernel-base Paul Eggleton
  2014-03-20 19:19 ` [PATCH v2 2/2] x264: add perlnative to inherit Paul Eggleton
  0 siblings, 2 replies; 3+ messages in thread
From: Paul Eggleton @ 2014-03-20 19:19 UTC (permalink / raw)
  To: openembedded-core

Since v1, drop the python fix; this will be fixed and sent out in another
series.


The following changes since commit ef196434620522affc11b5b1b867386b5d14a4c3:

  alsa-tools: fix build when x11 and gtk+ not available (2014-03-19 14:41:55 +0000)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib paule/fixes5
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=paule/fixes5

Paul Eggleton (2):
  classes/kernel: move module postinst commands to kernel-base
  x264: add perlnative to inherit

 meta/classes/kernel.bbclass              | 7 +++++--
 meta/recipes-multimedia/x264/x264_git.bb | 2 +-
 2 files changed, 6 insertions(+), 3 deletions(-)

-- 
1.8.5.3



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

* [PATCH v2 1/2] classes/kernel: move module postinst commands to kernel-base
  2014-03-20 19:19 [PATCH v2 0/2] Misc bugfixes Paul Eggleton
@ 2014-03-20 19:19 ` Paul Eggleton
  2014-03-20 19:19 ` [PATCH v2 2/2] x264: add perlnative to inherit Paul Eggleton
  1 sibling, 0 replies; 3+ messages in thread
From: Paul Eggleton @ 2014-03-20 19:19 UTC (permalink / raw)
  To: openembedded-core

Since kernel-base is the package that contains the files that depmod
needs to run, we should be running depmod from the kernel-base
postinstall rather than kernel-image.

Fixes [YOCTO #5392].

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta/classes/kernel.bbclass | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass
index 6953109..19b159b 100644
--- a/meta/classes/kernel.bbclass
+++ b/meta/classes/kernel.bbclass
@@ -362,8 +362,7 @@ ALLOW_EMPTY_kernel-image = "1"
 ALLOW_EMPTY_kernel-modules = "1"
 DESCRIPTION_kernel-modules = "Kernel modules meta package"
 
-pkg_postinst_kernel-image () {
-	update-alternatives --install /${KERNEL_IMAGEDEST}/${KERNEL_IMAGETYPE} ${KERNEL_IMAGETYPE} ${KERNEL_IMAGETYPE}-${KERNEL_VERSION} ${KERNEL_PRIORITY} || true
+pkg_postinst_kernel-base () {
 	if [ ! -e "$D/lib/modules/${KERNEL_VERSION}" ]; then
 		mkdir -p $D/lib/modules/${KERNEL_VERSION}
 	fi
@@ -374,6 +373,10 @@ pkg_postinst_kernel-image () {
 	fi
 }
 
+pkg_postinst_kernel-image () {
+	update-alternatives --install /${KERNEL_IMAGEDEST}/${KERNEL_IMAGETYPE} ${KERNEL_IMAGETYPE} ${KERNEL_IMAGETYPE}-${KERNEL_VERSION} ${KERNEL_PRIORITY} || true
+}
+
 pkg_postrm_kernel-image () {
 	update-alternatives --remove ${KERNEL_IMAGETYPE} ${KERNEL_IMAGETYPE}-${KERNEL_VERSION} || true
 }
-- 
1.8.5.3



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

* [PATCH v2 2/2] x264: add perlnative to inherit
  2014-03-20 19:19 [PATCH v2 0/2] Misc bugfixes Paul Eggleton
  2014-03-20 19:19 ` [PATCH v2 1/2] classes/kernel: move module postinst commands to kernel-base Paul Eggleton
@ 2014-03-20 19:19 ` Paul Eggleton
  1 sibling, 0 replies; 3+ messages in thread
From: Paul Eggleton @ 2014-03-20 19:19 UTC (permalink / raw)
  To: openembedded-core

perl is run as part of the configure process, so we should ensure that
it's available.

Should fix [YOCTO #5768].

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta/recipes-multimedia/x264/x264_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-multimedia/x264/x264_git.bb b/meta/recipes-multimedia/x264/x264_git.bb
index 0e305ea..d192c30 100644
--- a/meta/recipes-multimedia/x264/x264_git.bb
+++ b/meta/recipes-multimedia/x264/x264_git.bb
@@ -18,7 +18,7 @@ PV = "r2265+git${SRCPV}"
 
 S = "${WORKDIR}/git"
 
-inherit lib_package pkgconfig
+inherit lib_package pkgconfig perlnative
 
 X264_DISABLE_ASM = ""
 X264_DISABLE_ASM_armv4 = "--disable-asm"
-- 
1.8.5.3



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

end of thread, other threads:[~2014-03-20 19:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-20 19:19 [PATCH v2 0/2] Misc bugfixes Paul Eggleton
2014-03-20 19:19 ` [PATCH v2 1/2] classes/kernel: move module postinst commands to kernel-base Paul Eggleton
2014-03-20 19:19 ` [PATCH v2 2/2] x264: add perlnative to inherit Paul Eggleton

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