Openembedded Devel Discussions
 help / color / mirror / Atom feed
* [meta-handheld] [PATCH 0/3] [zaurus] rely on devtmpfs in kernel
@ 2012-01-16  0:12 Andrea Adami
  2012-01-16  0:12 ` [meta-handheld] [PATCH 1/3] kexecboot_git: move to 8f1d3cc3d9c650c6a6c88f83071185d6ee0ef9c7 Andrea Adami
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Andrea Adami @ 2012-01-16  0:12 UTC (permalink / raw)
  To: openembedded-devel

* No need for static device tables when using devtmpfs.
* The /dev directory must exist, though: kexecboot provides it
* Bump to latest kexecboot to manage the empty /dev and
* increase PR of linux-kexecboot to keep in synch.

Andrea Adami (3):
  kexecboot_git: move to 8f1d3cc3d9c650c6a6c88f83071185d6ee0ef9c7
  linux-kexecboot: bump INC_PR to follow kexecboot upgrade
  zaurus.inc: don't install device nodes, rely on devtmpfs

 conf/machine/include/zaurus.inc              |    2 ++
 recipes-bsp/kexecboot/kexecboot-klibc_git.bb |    4 ++--
 recipes-bsp/kexecboot/kexecboot.inc          |    3 ++-
 recipes-bsp/kexecboot/kexecboot_git.bb       |    4 ++--
 recipes-kernel/linux/linux-kexecboot.inc     |    2 +-
 5 files changed, 9 insertions(+), 6 deletions(-)

-- 
1.7.3.4




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

* [meta-handheld] [PATCH 1/3] kexecboot_git: move to 8f1d3cc3d9c650c6a6c88f83071185d6ee0ef9c7
  2012-01-16  0:12 [meta-handheld] [PATCH 0/3] [zaurus] rely on devtmpfs in kernel Andrea Adami
@ 2012-01-16  0:12 ` Andrea Adami
  2012-01-16  0:12 ` [meta-handheld] [PATCH 2/3] linux-kexecboot: bump INC_PR to follow kexecboot upgrade Andrea Adami
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Andrea Adami @ 2012-01-16  0:12 UTC (permalink / raw)
  To: openembedded-devel

* take advantage of last commits allowing to boot with empty /dev
* (the directory must be present, though)
* minor fixes
* bump PR

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

diff --git a/recipes-bsp/kexecboot/kexecboot-klibc_git.bb b/recipes-bsp/kexecboot/kexecboot-klibc_git.bb
index 22ef7de..0d6d00f 100644
--- a/recipes-bsp/kexecboot/kexecboot-klibc_git.bb
+++ b/recipes-bsp/kexecboot/kexecboot-klibc_git.bb
@@ -1,9 +1,9 @@
 RDEPENDS_${PN} = "kexec-klibc"
 PV = "0.5.9"
-PR = "r7+gitr${SRCREV}"
+PR = "r8+gitr${SRCREV}"
 
 SRC_URI = "git://git.linuxtogo.org/home/groups/kexecboot/kexecboot.git;protocol=git "
-SRCREV = "14e6d1a3641a749e4408fda1eadffe4f396b0279"
+SRCREV = "8f1d3cc3d9c650c6a6c88f83071185d6ee0ef9c7"
 S = "${WORKDIR}/git"
 
 # the binary is statically linked against klibc
diff --git a/recipes-bsp/kexecboot/kexecboot.inc b/recipes-bsp/kexecboot/kexecboot.inc
index b76abcc..3a7fd9f 100644
--- a/recipes-bsp/kexecboot/kexecboot.inc
+++ b/recipes-bsp/kexecboot/kexecboot.inc
@@ -50,11 +50,12 @@ do_install () {
         install -m 0755 kexecboot ${D}${bindir}/
         install -d ${D}/proc
         install -d ${D}/mnt
+        install -d ${D}/dev
 }
 
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 
-FILES_${PN} += " ${bindir}/kexecboot /init /proc /mnt"
+FILES_${PN} += " ${bindir}/kexecboot /init /proc /mnt /dev"
 
 pkg_postinst_${PN} () {
         ln -sf ${bindir}/kexecboot $D/init
diff --git a/recipes-bsp/kexecboot/kexecboot_git.bb b/recipes-bsp/kexecboot/kexecboot_git.bb
index 264d8e2..1341461 100644
--- a/recipes-bsp/kexecboot/kexecboot_git.bb
+++ b/recipes-bsp/kexecboot/kexecboot_git.bb
@@ -1,9 +1,9 @@
 RDEPENDS_${PN} = "kexec"
 PV = "0.5.9"
-PR = "r7+gitr${SRCREV}"
+PR = "r8+gitr${SRCREV}"
 
 SRC_URI = "git://git.linuxtogo.org/home/groups/kexecboot/kexecboot.git;protocol=git "
-SRCREV = "14e6d1a3641a749e4408fda1eadffe4f396b0279"
+SRCREV = "8f1d3cc3d9c650c6a6c88f83071185d6ee0ef9c7"
 S = "${WORKDIR}/git"
 
 require kexecboot.inc
-- 
1.7.3.4




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

* [meta-handheld] [PATCH 2/3] linux-kexecboot: bump INC_PR to follow kexecboot upgrade
  2012-01-16  0:12 [meta-handheld] [PATCH 0/3] [zaurus] rely on devtmpfs in kernel Andrea Adami
  2012-01-16  0:12 ` [meta-handheld] [PATCH 1/3] kexecboot_git: move to 8f1d3cc3d9c650c6a6c88f83071185d6ee0ef9c7 Andrea Adami
@ 2012-01-16  0:12 ` Andrea Adami
  2012-01-16  0:12 ` [meta-handheld] [PATCH 3/3] zaurus.inc: don't install device nodes, rely on devtmpfs Andrea Adami
  2012-01-16 16:16 ` [meta-handheld] [PATCH 0/3] [zaurus] rely on devtmpfs in kernel Paul Eggleton
  3 siblings, 0 replies; 5+ messages in thread
From: Andrea Adami @ 2012-01-16  0:12 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
---
 recipes-kernel/linux/linux-kexecboot.inc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/recipes-kernel/linux/linux-kexecboot.inc b/recipes-kernel/linux/linux-kexecboot.inc
index f6a061e..b2758a6 100644
--- a/recipes-kernel/linux/linux-kexecboot.inc
+++ b/recipes-kernel/linux/linux-kexecboot.inc
@@ -3,7 +3,7 @@ SECTION = "kernel"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7"
 
-INC_PR = "r0"
+INC_PR = "r1"
 
 inherit kernel siteinfo
 
-- 
1.7.3.4




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

* [meta-handheld] [PATCH 3/3] zaurus.inc: don't install device nodes, rely on devtmpfs
  2012-01-16  0:12 [meta-handheld] [PATCH 0/3] [zaurus] rely on devtmpfs in kernel Andrea Adami
  2012-01-16  0:12 ` [meta-handheld] [PATCH 1/3] kexecboot_git: move to 8f1d3cc3d9c650c6a6c88f83071185d6ee0ef9c7 Andrea Adami
  2012-01-16  0:12 ` [meta-handheld] [PATCH 2/3] linux-kexecboot: bump INC_PR to follow kexecboot upgrade Andrea Adami
@ 2012-01-16  0:12 ` Andrea Adami
  2012-01-16 16:16 ` [meta-handheld] [PATCH 0/3] [zaurus] rely on devtmpfs in kernel Paul Eggleton
  3 siblings, 0 replies; 5+ messages in thread
From: Andrea Adami @ 2012-01-16  0:12 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
---
 conf/machine/include/zaurus.inc |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/conf/machine/include/zaurus.inc b/conf/machine/include/zaurus.inc
index 7ff56fc..b42799f 100644
--- a/conf/machine/include/zaurus.inc
+++ b/conf/machine/include/zaurus.inc
@@ -18,6 +18,8 @@ EXTRA_IMAGECMD_sum.jffs2 = "${EXTRA_IMAGECMD_jffs2}"
 
 EXTRA_IMAGEDEPENDS += "zaurus-installer"
 
+IMAGE_DEVICE_TABLES = ""
+
 #########
 # xserver
 #########
-- 
1.7.3.4




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

* Re: [meta-handheld] [PATCH 0/3] [zaurus] rely on devtmpfs in kernel
  2012-01-16  0:12 [meta-handheld] [PATCH 0/3] [zaurus] rely on devtmpfs in kernel Andrea Adami
                   ` (2 preceding siblings ...)
  2012-01-16  0:12 ` [meta-handheld] [PATCH 3/3] zaurus.inc: don't install device nodes, rely on devtmpfs Andrea Adami
@ 2012-01-16 16:16 ` Paul Eggleton
  3 siblings, 0 replies; 5+ messages in thread
From: Paul Eggleton @ 2012-01-16 16:16 UTC (permalink / raw)
  To: openembedded-devel

On Monday 16 January 2012 01:12:08 Andrea Adami wrote:
> * No need for static device tables when using devtmpfs.
> * The /dev directory must exist, though: kexecboot provides it
> * Bump to latest kexecboot to manage the empty /dev and
> * increase PR of linux-kexecboot to keep in synch.
> 
> Andrea Adami (3):
>   kexecboot_git: move to 8f1d3cc3d9c650c6a6c88f83071185d6ee0ef9c7
>   linux-kexecboot: bump INC_PR to follow kexecboot upgrade
>   zaurus.inc: don't install device nodes, rely on devtmpfs
> 
>  conf/machine/include/zaurus.inc              |    2 ++
>  recipes-bsp/kexecboot/kexecboot-klibc_git.bb |    4 ++--
>  recipes-bsp/kexecboot/kexecboot.inc          |    3 ++-
>  recipes-bsp/kexecboot/kexecboot_git.bb       |    4 ++--
>  recipes-kernel/linux/linux-kexecboot.inc     |    2 +-
>  5 files changed, 9 insertions(+), 6 deletions(-)

Merged to meta-handheld master, thanks!

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre



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

end of thread, other threads:[~2012-01-16 16:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-16  0:12 [meta-handheld] [PATCH 0/3] [zaurus] rely on devtmpfs in kernel Andrea Adami
2012-01-16  0:12 ` [meta-handheld] [PATCH 1/3] kexecboot_git: move to 8f1d3cc3d9c650c6a6c88f83071185d6ee0ef9c7 Andrea Adami
2012-01-16  0:12 ` [meta-handheld] [PATCH 2/3] linux-kexecboot: bump INC_PR to follow kexecboot upgrade Andrea Adami
2012-01-16  0:12 ` [meta-handheld] [PATCH 3/3] zaurus.inc: don't install device nodes, rely on devtmpfs Andrea Adami
2012-01-16 16:16 ` [meta-handheld] [PATCH 0/3] [zaurus] rely on devtmpfs in kernel Paul Eggleton

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