* [PATCH] IMote2 machine config
@ 2009-11-04 19:59 Jonathan Cameron
2009-11-04 20:10 ` Marcin Juszkiewicz
0 siblings, 1 reply; 6+ messages in thread
From: Jonathan Cameron @ 2009-11-04 19:59 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Jonathan Cameron <jic23@cam.ac.uk>
---
conf/machine/imote2.conf | 15 +++++++++++++++
1 files changed, 15 insertions(+), 0 deletions(-)
diff --git a/conf/machine/imote2.conf b/conf/machine/imote2.conf
new file mode 100644
index 0000000..278fd71
--- /dev/null
+++ b/conf/machine/imote2.conf
@@ -0,0 +1,15 @@
+TARGET_ARCH= "arm"
+require conf/machine/include/tune-xscale.inc
+KERNEL_IMAGETYPE="zImage"
+IMAGE_FSTYPE="jffs2"
+EXTRA_IMAGECMD_jffs2 = "--little-endian -e 0x40000 --pad=0x01DC0000 --eraseblock=0x20000"
+MACHINE_FEATURES ="kernel26 usbgadget"
+CMDLINE="root=/dev/mtdblock2 rootfstype=jffs2 console=ttyS2,115200 mem=32M"
+
+# used by sysvinit_2
+SERIAL_CONSOLE = "115200 ttyS2"
+
+ROOT_FLASH_SIZE = "30"
+MACHINE_EXTRA_RRECOMMENDS = "kernel-modules"
+
+RDEPENDS_kernel-base = ""
--
1.6.0.4
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] IMote2 machine config
2009-11-04 19:59 [PATCH] IMote2 machine config Jonathan Cameron
@ 2009-11-04 20:10 ` Marcin Juszkiewicz
2009-11-05 12:41 ` Jonathan Cameron
0 siblings, 1 reply; 6+ messages in thread
From: Marcin Juszkiewicz @ 2009-11-04 20:10 UTC (permalink / raw)
To: openembedded-devel
Dnia środa, 4 listopada 2009 o 20:59:22 Jonathan Cameron napisał(a):
> +MACHINE_EXTRA_RRECOMMENDS = "kernel-modules"
You install all kernel modules into rootfs so it looks like you do not need
to specify all of selected ones in imote2-image recipe.
Please also add some description of device and URL to vendor page.
Regards,
--
JID: hrw@jabber.org
Website: http://marcin.juszkiewicz.com.pl/
LinkedIn: http://www.linkedin.com/in/marcinjuszkiewicz
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] IMote2 machine config
2009-11-04 20:10 ` Marcin Juszkiewicz
@ 2009-11-05 12:41 ` Jonathan Cameron
2009-11-05 13:12 ` [PATCH v2] " Jonathan Cameron
0 siblings, 1 reply; 6+ messages in thread
From: Jonathan Cameron @ 2009-11-05 12:41 UTC (permalink / raw)
To: openembedded-devel
Marcin Juszkiewicz wrote:
> Dnia środa, 4 listopada 2009 o 20:59:22 Jonathan Cameron napisał(a):
>
>> +MACHINE_EXTRA_RRECOMMENDS = "kernel-modules"
>
> You install all kernel modules into rootfs so it looks like you do not need
> to specify all of selected ones in imote2-image recipe.
Hmm.. something odd is going on then, because they aren't all turning up in the
image. Will look into it later.
> Please also add some description of device and URL to vendor page.
Will do.
Thanks
Jonathan
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v2] IMote2 machine config
2009-11-05 12:41 ` Jonathan Cameron
@ 2009-11-05 13:12 ` Jonathan Cameron
2010-03-27 12:04 ` Stefan Schmidt
0 siblings, 1 reply; 6+ messages in thread
From: Jonathan Cameron @ 2009-11-05 13:12 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Jonathan Cameron <jic23@cam.ac.uk>
---
Only change is to provide some info about the board.
conf/machine/imote2.conf | 23 +++++++++++++++++++++++
1 files changed, 23 insertions(+), 0 deletions(-)
create mode 100644 conf/machine/imote2.conf
diff --git a/conf/machine/imote2.conf b/conf/machine/imote2.conf
new file mode 100644
index 0000000..7f94f29
--- /dev/null
+++ b/conf/machine/imote2.conf
@@ -0,0 +1,23 @@
+#-----------------------------------------------------------------------------
+#@TYPE: Machine
+#@NAME: IMote2
+#@DESCRIPTION: Machine configuration for the IMote2
+# http://imote2-linux.sourceforge.net
+#-----------------------------------------------------------------------------
+
+
+TARGET_ARCH= "arm"
+require conf/machine/include/tune-xscale.inc
+KERNEL_IMAGETYPE="zImage"
+IMAGE_FSTYPE="jffs2"
+EXTRA_IMAGECMD_jffs2 = "--little-endian -e 0x40000 --pad=0x01DC0000 --eraseblock=0x20000"
+MACHINE_FEATURES ="kernel26 usbgadget"
+CMDLINE="root=/dev/mtdblock2 rootfstype=jffs2 console=ttyS2,115200 mem=32M"
+
+# used by sysvinit_2
+SERIAL_CONSOLE = "115200 ttyS2"
+
+ROOT_FLASH_SIZE = "30"
+MACHINE_EXTRA_RRECOMMENDS = "kernel-modules"
+
+RDEPENDS_kernel-base = ""
--
1.6.4.4
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH v2] IMote2 machine config
2009-11-05 13:12 ` [PATCH v2] " Jonathan Cameron
@ 2010-03-27 12:04 ` Stefan Schmidt
2010-03-27 13:36 ` Stefan Schmidt
0 siblings, 1 reply; 6+ messages in thread
From: Stefan Schmidt @ 2010-03-27 12:04 UTC (permalink / raw)
To: openembedded-devel
Hello.
On Thu, 2009-11-05 at 13:12, Jonathan Cameron wrote:
>
> Signed-off-by: Jonathan Cameron <jic23@cam.ac.uk>
> ---
> Only change is to provide some info about the board.
As you know I'm also working on the iMote2 platform now. I pushed in a machine
file some weeks ago and totally missed this patchset. Sorry.
I'll go through the patches the next days and merge things together so we have
good support in OE for the iMote2. If you have any outstanding or refreshed
patches please send them in. Sorry again for not having seen this earlier.
regards
Stefan Schmidt
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2] IMote2 machine config
2010-03-27 12:04 ` Stefan Schmidt
@ 2010-03-27 13:36 ` Stefan Schmidt
0 siblings, 0 replies; 6+ messages in thread
From: Stefan Schmidt @ 2010-03-27 13:36 UTC (permalink / raw)
To: openembedded-devel
Hello.
On Sat, 2010-03-27 at 13:04, Stefan Schmidt wrote:
>
> On Thu, 2009-11-05 at 13:12, Jonathan Cameron wrote:
> >
> > Signed-off-by: Jonathan Cameron <jic23@cam.ac.uk>
> > ---
> > Only change is to provide some info about the board.
>
> As you know I'm also working on the iMote2 platform now. I pushed in a machine
> file some weeks ago and totally missed this patchset. Sorry.
>
> I'll go through the patches the next days and merge things together so we have
> good support in OE for the iMote2. If you have any outstanding or refreshed
> patches please send them in. Sorry again for not having seen this earlier.
I should have merged all relevant parts of your config into the one in OE now.
For the other patches I'll wait for a rebased patchset before workign through
them.
regards
Stefan Schmidt
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2010-03-27 13:40 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-04 19:59 [PATCH] IMote2 machine config Jonathan Cameron
2009-11-04 20:10 ` Marcin Juszkiewicz
2009-11-05 12:41 ` Jonathan Cameron
2009-11-05 13:12 ` [PATCH v2] " Jonathan Cameron
2010-03-27 12:04 ` Stefan Schmidt
2010-03-27 13:36 ` Stefan Schmidt
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.