* [meta-handheld] [PATCH 0/2] [Zaurus] Minor changes
@ 2012-01-15 0:03 Andrea Adami
2012-01-15 0:03 ` [meta-handheld] [PATCH 1/2] initramfs-kexecboot-* images: adapt to oe-core Andrea Adami
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Andrea Adami @ 2012-01-15 0:03 UTC (permalink / raw)
To: openembedded-devel
* Standardize the initramfs-kexecboot images and adapt
* mimicking core-image-minimal-initramfs.
*
* Remove legacy device table for Zaurus, now using devtmpfs in kernel.
Andrea Adami (2):
initramfs-kexecboot-* images: adapt to oe-core
zaurus.inc: remove IMAGE_DEVICETABLE settings, now using devtmpfs
conf/machine/include/zaurus.inc | 5 -----
recipes-bsp/images/initramfs-kexecboot-image.bb | 5 +++++
.../images/initramfs-kexecboot-klibc-image.bb | 2 ++
3 files changed, 7 insertions(+), 5 deletions(-)
--
1.7.3.4
^ permalink raw reply [flat|nested] 5+ messages in thread
* [meta-handheld] [PATCH 1/2] initramfs-kexecboot-* images: adapt to oe-core
2012-01-15 0:03 [meta-handheld] [PATCH 0/2] [Zaurus] Minor changes Andrea Adami
@ 2012-01-15 0:03 ` Andrea Adami
2012-01-15 0:03 ` [meta-handheld] [PATCH 2/2] zaurus.inc: remove IMAGE_DEVICE_TABLES settings Andrea Adami
2012-01-16 0:01 ` [meta-handheld] [PATCH 0/2] [Zaurus] Minor changes Paul Eggleton
2 siblings, 0 replies; 5+ messages in thread
From: Andrea Adami @ 2012-01-15 0:03 UTC (permalink / raw)
To: openembedded-devel
* Set IMAGE_FEATURES = "" to prevent the setting of things
* like EXTRA_IMAGE_FEATURES in local.conf (from oe-core).
* Readd IMAGE_BASENAME like all other images are doing.
* Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
---
recipes-bsp/images/initramfs-kexecboot-image.bb | 5 +++++
.../images/initramfs-kexecboot-klibc-image.bb | 2 ++
2 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/recipes-bsp/images/initramfs-kexecboot-image.bb b/recipes-bsp/images/initramfs-kexecboot-image.bb
index a1609d6..5321ed5 100644
--- a/recipes-bsp/images/initramfs-kexecboot-image.bb
+++ b/recipes-bsp/images/initramfs-kexecboot-image.bb
@@ -11,6 +11,11 @@ EXTRA_IMAGEDEPENDS = ""
IMAGE_INSTALL = "kexecboot"
+# Do not pollute the initrd image with rootfs features
+IMAGE_FEATURES = ""
+
+export IMAGE_BASENAME = "initramfs-kexecboot-image"
+
IMAGE_LINGUAS = ""
IMAGE_LOGIN_MANAGER = ""
IMAGE_INIT_MANAGER = ""
diff --git a/recipes-bsp/images/initramfs-kexecboot-klibc-image.bb b/recipes-bsp/images/initramfs-kexecboot-klibc-image.bb
index d8e92ca..6c6de7a 100644
--- a/recipes-bsp/images/initramfs-kexecboot-klibc-image.bb
+++ b/recipes-bsp/images/initramfs-kexecboot-klibc-image.bb
@@ -1,3 +1,5 @@
require initramfs-kexecboot-image.bb
IMAGE_INSTALL = "kexecboot-klibc"
+
+export IMAGE_BASENAME = "initramfs-kexecboot-klibc-image"
--
1.7.3.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [meta-handheld] [PATCH 2/2] zaurus.inc: remove IMAGE_DEVICE_TABLES settings
2012-01-15 0:03 [meta-handheld] [PATCH 0/2] [Zaurus] Minor changes Andrea Adami
2012-01-15 0:03 ` [meta-handheld] [PATCH 1/2] initramfs-kexecboot-* images: adapt to oe-core Andrea Adami
@ 2012-01-15 0:03 ` Andrea Adami
2012-01-15 11:07 ` Andrea Adami
2012-01-16 0:01 ` [meta-handheld] [PATCH 0/2] [Zaurus] Minor changes Paul Eggleton
2 siblings, 1 reply; 5+ messages in thread
From: Andrea Adami @ 2012-01-15 0:03 UTC (permalink / raw)
To: openembedded-devel
* Zaurus devices are now only using devtmpfs enabled kernels
Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
---
conf/machine/include/zaurus.inc | 5 -----
1 files changed, 0 insertions(+), 5 deletions(-)
diff --git a/conf/machine/include/zaurus.inc b/conf/machine/include/zaurus.inc
index ee24900..4419192 100644
--- a/conf/machine/include/zaurus.inc
+++ b/conf/machine/include/zaurus.inc
@@ -17,11 +17,6 @@ EXTRA_IMAGECMD_sum.jffs2 = "${EXTRA_IMAGECMD_jffs2}"
EXTRA_IMAGEDEPENDS += "zaurus-installer"
-IMAGE_DEVICE_TABLES = "files/device_table-minimal.txt \
- files/device_table_add-scsi.txt \
- files/device_table_add-loop.txt \
- "
-
#########
# xserver
#########
--
1.7.3.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [meta-handheld] [PATCH 2/2] zaurus.inc: remove IMAGE_DEVICE_TABLES settings
2012-01-15 0:03 ` [meta-handheld] [PATCH 2/2] zaurus.inc: remove IMAGE_DEVICE_TABLES settings Andrea Adami
@ 2012-01-15 11:07 ` Andrea Adami
0 siblings, 0 replies; 5+ messages in thread
From: Andrea Adami @ 2012-01-15 11:07 UTC (permalink / raw)
To: openembedded-devel
On Sun, Jan 15, 2012 at 1:03 AM, Andrea Adami <andrea.adami@gmail.com> wrote:
> * Zaurus devices are now only using devtmpfs enabled kernels
>
> Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
> ---
> conf/machine/include/zaurus.inc | 5 -----
> 1 files changed, 0 insertions(+), 5 deletions(-)
>
> diff --git a/conf/machine/include/zaurus.inc b/conf/machine/include/zaurus.inc
> index ee24900..4419192 100644
> --- a/conf/machine/include/zaurus.inc
> +++ b/conf/machine/include/zaurus.inc
> @@ -17,11 +17,6 @@ EXTRA_IMAGECMD_sum.jffs2 = "${EXTRA_IMAGECMD_jffs2}"
>
> EXTRA_IMAGEDEPENDS += "zaurus-installer"
>
> -IMAGE_DEVICE_TABLES = "files/device_table-minimal.txt \
> - files/device_table_add-scsi.txt \
> - files/device_table_add-loop.txt \
> - "
> -
> #########
> # xserver
> #########
> --
> 1.7.3.4
>
After this patch I'll test declaring
IMAGE_DEVICE_TABLES = ""
It remains to see if the /dev directory has to be manually added
before.
Regards
Andrea
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [meta-handheld] [PATCH 0/2] [Zaurus] Minor changes
2012-01-15 0:03 [meta-handheld] [PATCH 0/2] [Zaurus] Minor changes Andrea Adami
2012-01-15 0:03 ` [meta-handheld] [PATCH 1/2] initramfs-kexecboot-* images: adapt to oe-core Andrea Adami
2012-01-15 0:03 ` [meta-handheld] [PATCH 2/2] zaurus.inc: remove IMAGE_DEVICE_TABLES settings Andrea Adami
@ 2012-01-16 0:01 ` Paul Eggleton
2 siblings, 0 replies; 5+ messages in thread
From: Paul Eggleton @ 2012-01-16 0:01 UTC (permalink / raw)
To: openembedded-devel
On Sunday 15 January 2012 01:03:04 Andrea Adami wrote:
> * Standardize the initramfs-kexecboot images and adapt
> * mimicking core-image-minimal-initramfs.
> *
> * Remove legacy device table for Zaurus, now using devtmpfs in kernel.
>
> Andrea Adami (2):
> initramfs-kexecboot-* images: adapt to oe-core
> zaurus.inc: remove IMAGE_DEVICETABLE settings, now using devtmpfs
>
> conf/machine/include/zaurus.inc | 5 -----
> recipes-bsp/images/initramfs-kexecboot-image.bb | 5 +++++
> .../images/initramfs-kexecboot-klibc-image.bb | 2 ++
> 3 files changed, 7 insertions(+), 5 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 0:09 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-15 0:03 [meta-handheld] [PATCH 0/2] [Zaurus] Minor changes Andrea Adami
2012-01-15 0:03 ` [meta-handheld] [PATCH 1/2] initramfs-kexecboot-* images: adapt to oe-core Andrea Adami
2012-01-15 0:03 ` [meta-handheld] [PATCH 2/2] zaurus.inc: remove IMAGE_DEVICE_TABLES settings Andrea Adami
2012-01-15 11:07 ` Andrea Adami
2012-01-16 0:01 ` [meta-handheld] [PATCH 0/2] [Zaurus] Minor changes Paul Eggleton
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.