Talk:Getting OpenMoko working on host with Xephyr

From Openmoko

(Difference between revisions)
Jump to: navigation, search
 
 
(10 intermediate revisions by 5 users not shown)
Line 1: Line 1:
I get the following error:
+
Well, i cant build with MACHINE set to "qemux86". It stoppped on building ltrace package.
 +
Thats because, as I believe, qemux86 configuration use "i586" for a TARGET_ARCH and ltrace
 +
can build only for i386. Or mayby Im totaly wrong ;-), but with MACHINE set to "x86" openmoko
 +
is building fine. Thats why I have changed this article. Regards :-).
  
OE Build Configuration:
+
--[[User:PiotrDuda|PiotrDuda]] 11:00, 23 May 2007 (CEST)
BB_VERSION    = "1.6.7"
+
OE_REVISION    = "<unknown>"
+
TARGET_ARCH    = "i586"
+
TARGET_OS      = "linux"
+
MACHINE        = "qemux86"
+
DISTRO        = "openmoko"
+
DISTRO_VERSION = ".dev-snapshot-20070502"
+
TARGET_FPU    = ""
+
  
NOTE: preferred version 2.12.3 of glib-2.0 not available
+
I can't get dbus working.  
...
+
NOTE: package ltrace-0.4: started
+
NOTE: package ltrace-0.4-r0: task do_compile: started
+
ERROR: function do_compile failed
+
ERROR: log data follows (/media/sda3/dump/workspace/moko/build/tmp/work/i586-linux/ltrace-0.4-r0/temp/log.do_compile.11205)
+
| /media/sda3/dump/workspace/moko/build/tmp/work/i586-linux/ltrace-0.4-r0/temp/run.do_compile.11205: line 34: INSTALL: command not found
+
| /media/sda3/dump/workspace/moko/build/tmp/work/i586-linux/ltrace-0.4-r0/temp/run.do_compile.11205: line 34: INSTALL: command not found
+
| /media/sda3/dump/workspace/moko/build/tmp/work/i586-linux/ltrace-0.4-r0/temp/run.do_compile.11205: line 34: INSTALL: command not found
+
| /media/sda3/dump/workspace/moko/build/tmp/work/i586-linux/ltrace-0.4-r0/temp/run.do_compile.11205: line 34: INSTALL: command not found
+
| NOTE: make ARCH=i586 INSTALL_FILE=$(INSTALL) -p -m 0644 INSTALL_PROGRAM=$(INSTALL) -p -m 0755 INSTALL_SCRIPT=$(INSTALL) -p -m 0755 INSTALL_DIR=$(INSTALL) -p -d -m 0755 LDFLAGS=-L/media/sda3/dump/workspace/moko/build/tmp/staging/i586-linux/lib -Wl,-rpath-link,/media/sda3/dump/workspace/moko/build/tmp/staging/i586-linux/lib -Wl,-O1 LIBS=-lsupc++ -liberty -Wl,-Bstatic -lelf -Wl,-Bdynamic ARCH=i586 INSTALL_FILE=$(INSTALL) -p -m 0644 INSTALL_PROGRAM=$(INSTALL) -p -m 0755 INSTALL_SCRIPT=$(INSTALL) -p -m 0755 INSTALL_DIR=$(INSTALL) -p -d -m 0755
+
| make[1]: Entering directory `/media/sda3/dump/workspace/moko/build/tmp/work/i586-linux/ltrace-0.4-r0/ltrace-0.4'
+
| make -C sysdeps/linux-gnu
+
| make[2]: Entering directory `/media/sda3/dump/workspace/moko/build/tmp/work/i586-linux/ltrace-0.4-r0/ltrace-0.4/sysdeps/linux-gnu'
+
| make[2]: *** No rule to make target `i586/arch.h', needed by `sysdep.h'.  Stop.
+
| make[2]: Leaving directory `/media/sda3/dump/workspace/moko/build/tmp/work/i586-linux/ltrace-0.4-r0/ltrace-0.4/sysdeps/linux-gnu'
+
| make[1]: *** [sysdeps/sysdep.o] Error 2
+
| make[1]: Leaving directory `/media/sda3/dump/workspace/moko/build/tmp/work/i586-linux/ltrace-0.4-r0/ltrace-0.4'
+
| FATAL: oe_runmake failed
+
NOTE: Task failed: /media/sda3/dump/workspace/moko/build/tmp/work/i586-linux/ltrace-0.4-r0/temp/log.do_compile.11205
+
NOTE: package ltrace-0.4-r0: task do_compile: failed
+
ERROR: TaskFailed event exception, aborting
+
NOTE: package ltrace-0.4: failed
+
ERROR: Build of openmoko-devel-image failed
+
make: *** [openmoko-devel-image] Error 1
+
  
--[[User:Miohtama|Miohtama]] 21:50, 2 May 2007 (CEST)
+
After succesfully evaling dbus-launch, I start getting these errors:
 +
 
 +
got heredbus-marshal-recursive.c(1186)
 +
got heredbus-marshal-recursive.c(1186)
 +
 
 +
and applications like web and messages don't launch
 +
 
 +
--[[User:Miohtama|Moo]] 22:34, 8 May 2007 (CEST)
 +
 
 +
: I also get this error (even running "export $(dbus-launch)" which should work better).
 +
: My main problem is that none of my icons are found.  Somewhat puzzling.  (i486, FPU="").
 +
: [[User:Dfsmith|Dfsmith]] 10:29, 6 July 2007 (CEST)
 +
 
 +
Note that using
 +
tar -C build/tmp/rootfs/ -cf - . | tar -C mokobox/ -xvf -
 +
instead of "cp -r" will preserve the sym-links much better.
 +
[[User:Dfsmith|Dfsmith]] 10:46, 6 July 2007 (CEST)
 +
 
 +
 
 +
I had to copy (as root) the theme to my rootfs  for it to use the openmoko theme, and I'm still missing some icons
 +
cp -r /home/moko/openmoko/trunk/src/target/OM-2007.2/artwork/themes/openmoko-standard-2/gtk-2.0/* /home/moko/mokobox/etc/gtk-2.0/
 +
--[[User:Enjahova|Enjahova]]

Latest revision as of 21:56, 31 October 2007

Well, i cant build with MACHINE set to "qemux86". It stoppped on building ltrace package. Thats because, as I believe, qemux86 configuration use "i586" for a TARGET_ARCH and ltrace can build only for i386. Or mayby Im totaly wrong ;-), but with MACHINE set to "x86" openmoko is building fine. Thats why I have changed this article. Regards :-).

--PiotrDuda 11:00, 23 May 2007 (CEST)

I can't get dbus working.

After succesfully evaling dbus-launch, I start getting these errors:

got heredbus-marshal-recursive.c(1186) got heredbus-marshal-recursive.c(1186)

and applications like web and messages don't launch

--Moo 22:34, 8 May 2007 (CEST)

I also get this error (even running "export $(dbus-launch)" which should work better).
My main problem is that none of my icons are found. Somewhat puzzling. (i486, FPU="").
Dfsmith 10:29, 6 July 2007 (CEST)

Note that using

tar -C build/tmp/rootfs/ -cf - . | tar -C mokobox/ -xvf -

instead of "cp -r" will preserve the sym-links much better. Dfsmith 10:46, 6 July 2007 (CEST)


I had to copy (as root) the theme to my rootfs for it to use the openmoko theme, and I'm still missing some icons

cp -r /home/moko/openmoko/trunk/src/target/OM-2007.2/artwork/themes/openmoko-standard-2/gtk-2.0/* /home/moko/mokobox/etc/gtk-2.0/

--Enjahova

Personal tools

I get the following error:

OE Build Configuration: BB_VERSION = "1.6.7" OE_REVISION = "<unknown>" TARGET_ARCH = "i586" TARGET_OS = "linux" MACHINE = "qemux86" DISTRO = "openmoko" DISTRO_VERSION = ".dev-snapshot-20070502" TARGET_FPU = ""

NOTE: preferred version 2.12.3 of glib-2.0 not available ... NOTE: package ltrace-0.4: started NOTE: package ltrace-0.4-r0: task do_compile: started ERROR: function do_compile failed ERROR: log data follows (/media/sda3/dump/workspace/moko/build/tmp/work/i586-linux/ltrace-0.4-r0/temp/log.do_compile.11205) | /media/sda3/dump/workspace/moko/build/tmp/work/i586-linux/ltrace-0.4-r0/temp/run.do_compile.11205: line 34: INSTALL: command not found | /media/sda3/dump/workspace/moko/build/tmp/work/i586-linux/ltrace-0.4-r0/temp/run.do_compile.11205: line 34: INSTALL: command not found | /media/sda3/dump/workspace/moko/build/tmp/work/i586-linux/ltrace-0.4-r0/temp/run.do_compile.11205: line 34: INSTALL: command not found | /media/sda3/dump/workspace/moko/build/tmp/work/i586-linux/ltrace-0.4-r0/temp/run.do_compile.11205: line 34: INSTALL: command not found | NOTE: make ARCH=i586 INSTALL_FILE=$(INSTALL) -p -m 0644 INSTALL_PROGRAM=$(INSTALL) -p -m 0755 INSTALL_SCRIPT=$(INSTALL) -p -m 0755 INSTALL_DIR=$(INSTALL) -p -d -m 0755 LDFLAGS=-L/media/sda3/dump/workspace/moko/build/tmp/staging/i586-linux/lib -Wl,-rpath-link,/media/sda3/dump/workspace/moko/build/tmp/staging/i586-linux/lib -Wl,-O1 LIBS=-lsupc++ -liberty -Wl,-Bstatic -lelf -Wl,-Bdynamic ARCH=i586 INSTALL_FILE=$(INSTALL) -p -m 0644 INSTALL_PROGRAM=$(INSTALL) -p -m 0755 INSTALL_SCRIPT=$(INSTALL) -p -m 0755 INSTALL_DIR=$(INSTALL) -p -d -m 0755 | make[1]: Entering directory `/media/sda3/dump/workspace/moko/build/tmp/work/i586-linux/ltrace-0.4-r0/ltrace-0.4' | make -C sysdeps/linux-gnu | make[2]: Entering directory `/media/sda3/dump/workspace/moko/build/tmp/work/i586-linux/ltrace-0.4-r0/ltrace-0.4/sysdeps/linux-gnu' | make[2]: *** No rule to make target `i586/arch.h', needed by `sysdep.h'. Stop. | make[2]: Leaving directory `/media/sda3/dump/workspace/moko/build/tmp/work/i586-linux/ltrace-0.4-r0/ltrace-0.4/sysdeps/linux-gnu' | make[1]: *** [sysdeps/sysdep.o] Error 2 | make[1]: Leaving directory `/media/sda3/dump/workspace/moko/build/tmp/work/i586-linux/ltrace-0.4-r0/ltrace-0.4' | FATAL: oe_runmake failed NOTE: Task failed: /media/sda3/dump/workspace/moko/build/tmp/work/i586-linux/ltrace-0.4-r0/temp/log.do_compile.11205 NOTE: package ltrace-0.4-r0: task do_compile: failed ERROR: TaskFailed event exception, aborting NOTE: package ltrace-0.4: failed ERROR: Build of openmoko-devel-image failed make: *** [openmoko-devel-image] Error 1

--Miohtama 21:50, 2 May 2007 (CEST)