Saturday, July 28, 2007

Next generation of OMAP3

http://www.youtube.com/watch?v=Cy1uqv9nNGs
The board looks good.. the next generation of boards much more "compressed" and deadlier!!! Love being on the bleeding edge of tech!!!

Thursday, July 12, 2007

Quick RPM creation

Searching for a ready made rpm is pain if yum does not pull it out automagically. instead download source, and run "rpmbuild -ta git-1.5.2.3.tar.gz"

Tuesday, July 03, 2007

Denx uboot stories

Denx is out looking for a new u-boot maintanence mechanism similar to what Linux has.
some new(?) guidelines on development: http://www.denx.de/wiki/UBoot/DesignPrinciples

See this thread on the maintainer stuff: http://sourceforge.net/mailarchive/forum.php?thread_name=20070704002828.E7F34353B2C%40atlas.denx.de&forum_name=u-boot-users

here is more on code refactor stuff: http://sourceforge.net/mailarchive/forum.php?thread_name=E1I5qQW-0007cq-3i%40jdl.com&forum_name=u-boot-users

A story of 16 byte character LCD driver on linux

Yesterday night, I was looking at my linux box, and thought, let me revamp my old kernel driver skills.. thought I'd write a small character LCD driver.. checked the datasheet, gathered that it was childish. Till i started looking at userspace functionality... Thats when I groaned..
Options:
LCDProc: http://lcdproc.omnipotent.net/
LCD Module: http://lcd.sourceforge.net/
LCD mod: http://lcd-mod.sourceforge.net/
etc....
in the end.. hmm.. I kind of have decided on lcd proc.. dunno how difficult it is.. the worst part is that.. there are no standard interfaces in the kernel itself..
Will update this post as I develop on this..