May 26th 2010
Short news about the upgrade. I had to flash the new emmc and have had some problems doing so with windows. On my gentoo box it worked very fast and well. The Steps described on maemo.org should work. If not you have some problem with your OS and usb. It seems everything is running well. Even the backup function is working well, contacts and so on were there after a few seconds and the Software (Packagelist was backuped) was installed within an hour … about 400 MB to download …
LG xexplorer
Loading...
Posted in linux, maemo5 | No Comments »
May 25th 2010
I´ve bought a N900, but there were some problems with qt, which should be fixed with this release from Nokia.
Here you can get the latest firmware for the N900 and here you can read How to flash it here.
I will flash my device tonight and inform you about it. stay tuned …..
LG xexplorer
for new Features … go on
Read the rest of this entry »
Loading...
Posted in linux, maemo5 | No Comments »
May 21st 2010
Did you ever ask yourself how to make your internet tablet more powerful?
For a Linux based device like Nokias N810 this question is quite easy to answer. You can easily increase overall performance and responsiveness by using a “better” kernel than the stock kernel on your internet tablet. A further advantage is that you can add features that are not available in the stock kernel. Below you will find instructions on how to build your own optimized preemptive kernel or how to install my prebuilt kernel.
- Nokia N810 Internet Tablet
In both cases the following features are covered:
- preemtive kernel
- high-speed sd-cards
- screen rotation
- more granular backlight sertting
- easy-debian image
Read the rest of this entry »
Loading...
Posted in gadgets, kernel, linux | No Comments »
May 9th 2010
Recently, when updating the gentoo linux on my amd64 box I got errors when building packages with the doc USE flag. All failing packages were using the gtkdoc tool for generating the documentation. Nowhere in the web was a topic concerning this problem. All these packages failed similar to example for libbonobo below. But many other ebuilds, i.e. glib, gedit etc. were also affected.
Writing libbonobo-bonobo-persist-file.html for refentry(libbonobo-bonobo-persist-file)
Writing libbonobo-bonobo-persist-stream.html for refentry(libbonobo-bonobo-persist-stream)
Writing libbonobo-bonobo-persist-client.html for refentry(libbonobo-bonobo-persist-client)
Writing persist.html for chapter(persist)
Writing debugging.html for refentry(debugging)
Writing libbonobo-faq.html for refentry(libbonobo-faq)
Writing libbonobo-bonobo-config-database.html for refentry(libbonobo-bonobo-config-database)
Writing misc.html for chapter(misc)
Writing ix01.html for index
Writing index.html for book(index)
Writing index.sgml for book(index)
Writing libbonobo.devhelp for book(index)
Writing libbonobo.devhelp2 for book(index)
gtk-doc: Fixing cross-references
try vitry vish: /usr/bin/vim: Datei oder Verzeichnis nicht gefunden
readline() on closed filehandle NEWFILE at /usr/bin/gtkdoc-fixxref line 467.
Use of uninitialized value in substitution (s///) at /usr/bin/gtkdoc-fixxref line 470.
Use of uninitialized value in substitution (s///) at /usr/bin/gtkdoc-fixxref line 471.
Use of uninitialized value in substitution (s///) at /usr/bin/gtkdoc-fixxref line 475.
Use of uninitialized value in substitution (s///) at /usr/bin/gtkdoc-fixxref line 476.
Use of uninitialized value in substitution (s///) at /usr/bin/gtkdoc-fixxref line 477.
Use of uninitialized value in substitution (s///) at /usr/bin/gtkdoc-fixxref line 478.
Use of uninitialized value in substitution (s///) at /usr/bin/gtkdoc-fixxref line 479.
Use of uninitialized value in substitution (s///) at /usr/bin/gtkdoc-fixxref line 480.
Use of uninitialized value in substitution (s///) at /usr/bin/gtkdoc-fixxref line 481.
Can’t delete html/_temp_src.15046.h.html: Datei oder Verzeichnis nicht gefunden at /usr/bin/gtkdoc-fixxref line 486.
make[1]: *** [html-build.stamp] Fehler 2
make[1]: Leaving directory `/var/tmp/portage/gnome-base/libbonobo-2.24.3/work/libbonobo-2.24.3/doc/api’
make: *** [all-recursive] Fehler 1
After some days of searching I was able to track the issue down to the part of gtk-docfixref that uses vim for highlighting. Perhaps my gtk-doc version (gtk-doc-1.13-r2) is not compatible to my vi version (vim-7.2.303). Even uninstalling vi for testing purposes was not successful since at least this version of gtk-docfixref tries to use vi even if it is not installed.
Line 290 of gtkdoc fixref:
if (“/usr/bin/vim” ne “”) {
Changing this line to
if (“/usr/bin/vim” ne “/usr/bin/vim”) {
for forcing gtk-docfixref to always ignore vi was the (temporary) solution for me. Afterwards I was again able to build all the packages using gtk-doc for documentation.
Since I did not find any information about the problem in the web I am quite unsure if I should open a bug report for it or if it is only a local problem. So, if you experience the same problem please leave a comment.
Jürgen
Loading...
Posted in gentoo, linux | 2 Comments »