Archive

Archive for April, 2009

Experimental rootfs and kernel of Maemo/Mer for freerunner

I’ve published a rootfs of the Maemo/Mer operating system for the freerunner. This is a very experimental version, with NO GUI and with a lot of bug still opened. Ssh access is available, so it’s easy to login and do changes to the system. If you work on this image and you make some changes that you want to share, please consider to mail me with the changes you do. It runs with the qi bootloader and a sd card. To install just do:

cd /tmp

wget http://data.vincenzo-ampolo.net/Projects/Mer/mer-freerunner-09-04-26.tar.gz

sudo tar-xzf mer-freerunner-09-04-26.tar.gz

Mount your sd card on your pc

sudo rsync -aHx freerunner * /mountpoint

Where mountpoint is the mountpoint of your sd card.

Just plug your microsd card into the freerunner and load it. Your freerunner has a default address of 192.168.2.2 and a gateway of 192.168.2.1. So you need to setup your usb0 device in your pc which is connected to the freerunner as 192.168.2.1 like this:

sudo ifconfig usb0 192.168.2.1

If you do:

ping 192.168.2.2

You will be able to ping the frerunner. to login via ssh do:

ssh root@192.168.2.2

Password is rootme.

Please feel free to mail me or comment this post for any suggestion.

Categories: freerunner Tags: , ,

Mer sees the light on Freerunner

mer on freerunner

mer-freerunner login : :)

It’s a pic i took 2 weeks ago, a lot of progress have been done and we are still working on it. As soon as possible we hope to release an image.

Good night..

Categories: freerunner Tags: ,

Ldc: debian and ubuntu packages for x86 and x86_64 (amd64)

UPDATE:

To install the package on ubuntu, you need to install the libconfig++6 package from debian.

We are working to put ldc on debian and ubuntu.

In the meantime packages for x86 and x86_64 are ready and can be freely downloaded, you just need to install them and you can start compiling any source like in this example:

goshawk@earth:~/Documents/Projects/MOTU/ldc/d1/ldc$ sudo dpkg -i  ldc_0.9.1~20090403.dfsg-1_amd64.deb
Selecting previously deselected package ldc.
(Reading database … 236469 files and directories currently installed.)
Unpacking ldc (from ldc_0.9.1~20090403.dfsg-1_amd64.deb) …
Setting up ldc (0.9.1~20090403.dfsg-1) …
Processing triggers for man-db …
goshawk@earth:~/Documents/Projects/MOTU/ldc/d1/ldc$ cd
goshawk@earth:~$

goshawk@earth:~$ cat test.d
import  tango.io.Console;

void    main()
{
Cout(“Hello, World”).newline;
}

goshawk@earth:~$ ldc test.d
goshawk@earth:~$ ./test
Hello, World
goshawk@earth:~$

:)

Categories: D Tags: , , ,

Ldc package published

I did some more tests to the ldc package for debian and thus ubuntu.

Me and Arthur are working to put on debian testing soon as possible (and then on ubuntu koala). For now you can grab the ldc package.

Categories: D Tags: , , ,