Power Developer
https://powerdeveloper.org/forums/

Debian/armhf Bootable SD card image for EfikaMX!
https://powerdeveloper.org/forums/viewtopic.php?f=7&t=2031
Page 1 of 4

Author:  markos [ Mon Jul 25, 2011 7:04 am ]
Post subject:  Debian/armhf Bootable SD card image for EfikaMX!

Here it is:

http://www.powerdeveloper.org/assets/ef ... 716.img.xz

It offers both GNOME (2.3x not 3.0 yet), KDE 4.6 (and awesome for those who dislike full GUI environments) plus many more packages.

Root password is 'armhf', and user password is 'demo', but feel free to change those if you like.

It also includes phoronix-test-suite for those who would like to run their own benchmarks, google is your friend if you want to see how to use that -but for a quick pointer you can do:

$ phoronix-test-suite benchmark pts/<test/suite> where

test is one of

$ phoronix-test-suite list-available-tests

and suite is one of

$ phoronix-test-suite list-available-suites

It includes the 2.6.31.14.23 kernel which is working fine version, perhaps I could provide a new image with the new version.

NOTE: if you do an upgrade, make sure you do not upgrade udev. The reason is that debian udev packages includes a check for versions earlier than 2.6.32 and since the demo image uses 2.6.31 it will fail to start -it works great as we have backported the necessary fixes.

Have fun!

Author:  malcolm [ Mon Jul 25, 2011 3:58 pm ]
Post subject: 

That's really impressive Konstantinos and works really well.
I have done some desktop speed comparison tests and it's about 10% quicker than Ubuntu Maverick and 40% quicker than armel Debian Squeeze on my personal tests using a Smartbook.

Please keep up the good work on this.

Author:  robyinno [ Wed Jul 27, 2011 2:04 am ]
Post subject:  Re: Debian/armhf Bootable SD card image for EfikaMX!

Thanks!!!

I will test it today!


Quote:
Here it is:

http://www.powerdeveloper.org/assets/ef ... 716.img.xz

It offers both GNOME (2.3x not 3.0 yet), KDE 4.6 (and awesome for those who dislike full GUI environments) plus many more packages.

Root password is 'armhf', and user password is 'demo', but feel free to change those if you like.

It also includes phoronix-test-suite for those who would like to run their own benchmarks, google is your friend if you want to see how to use that -but for a quick pointer you can do:

$ phoronix-test-suite benchmark pts/<test/suite> where

test is one of

$ phoronix-test-suite list-available-tests

and suite is one of

$ phoronix-test-suite list-available-suites

It includes the 2.6.31.14.23 kernel which is working fine version, perhaps I could provide a new image with the new version.

NOTE: if you do an upgrade, make sure you do not upgrade udev. The reason is that debian udev packages includes a check for versions earlier than 2.6.32 and since the demo image uses 2.6.31 it will fail to start -it works great as we have backported the necessary fixes.

Have fun!

Author:  freak132 [ Thu Jul 28, 2011 8:08 am ]
Post subject: 

Thanks, it runs great on my relatively cheap class 10 SD card. I was almost ready to embark on the emdebian journey myself when you released this.

The only quirk I've found thus far is that kde4's widget-add interface wont respond to the mouse except as a whole panel.

Also, could I recommend that the next image release contains the network-manager-kde package?

Author:  markos [ Thu Jul 28, 2011 1:10 pm ]
Post subject: 

Quote:
Thanks, it runs great on my relatively cheap class 10 SD card. I was almost ready to embark on the emdebian journey myself when you released this.

The only quirk I've found thus far is that kde4's widget-add interface wont respond to the mouse except as a whole panel.

Also, could I recommend that the next image release contains the network-manager-kde package?
Yes, it appears we found a bug in kde plasma for armhf, I've already notified the maintainers and they confirmed it :)

Regarding networkmanager-kde, it just compiled properly so next image will include it, plus the newer kernel and the X.org imxng driver. :)

Author:  magpie. [ Thu Jul 28, 2011 4:22 pm ]
Post subject: 

Very, very nice.

I quite like the "awesome" environment. Just what the doctor ordered.

Is it possible to install this to the internal SSD? If so, how should I go about it?

Author:  robyinno [ Fri Jul 29, 2011 2:31 am ]
Post subject:  when booting eject microsd and neeeded minimun 4GB SD card

I have tested that if you have a microsd inserted the debian on SD doesn't start, so please eject microsd if you have one inserted.

Another important thing is to have a SD of at least 4GB for put the debian image on it.

Author:  magpie. [ Tue Aug 02, 2011 7:41 pm ]
Post subject: 

Well, I managed to get this installed to the internal SSD, however...udev refuses to cooperate with the kernel, of course. I was already aware of the updated udev refusing to cooperate under kernel 2.6.31, but is there a way during debootstrap to force the last known working version of udev?

If not, then I guess I'm stuck with armel for now. :(

Author:  markos [ Wed Aug 03, 2011 12:53 am ]
Post subject: 

Quote:
Well, I managed to get this installed to the internal SSD, however...udev refuses to cooperate with the kernel, of course. I was already aware of the updated udev refusing to cooperate under kernel 2.6.31, but is there a way during debootstrap to force the last known working version of udev?

If not, then I guess I'm stuck with armel for now. :(
In the file /etc/init.d/udev, check the following function:
Code:
supported_kernel() {
case "$(uname -r)" in
2.[012345].*|2.6.[0-9]|2.6.[0-9][!0-9]*) return 1 ;;
2.6.[12][0-9]|2.6.[12][0-9][!0-9]*) return 1 ;;
2.6.30|2.6.30[!0-9]*) return 1 ;;
esac
return 0
}
just comment the last line so that it looks like:
Code:
supported_kernel() {
case "$(uname -r)" in
2.[012345].*|2.6.[0-9]|2.6.[0-9][!0-9]*) return 1 ;;
2.6.[12][0-9]|2.6.[12][0-9][!0-9]*) return 1 ;;
# 2.6.30|2.6.30[!0-9]*) return 1 ;;
esac
return 0
}

Author:  magpie. [ Thu Aug 04, 2011 6:04 pm ]
Post subject: 

Noticed on the last attempt that the iMX kernel in the repository is now 2.6.39 (I think)... but I haven't gotten this to boot. Just a white flash on startup, then total darkness on the screen.

The closest-to-working solution (where it booted, but udev would throw a fit) was reached before by doing the usual debootstrap stuff, and then copying over the boot partition from the live SD image. Ugly solution, (and I really wish I knew how to generate uBoot images the proper way), but I'll try doing it over again on an SD card and post the results, if any.

Thank you markos!

Author:  jpa256 [ Sat Aug 13, 2011 2:50 pm ]
Post subject: 

EGL and OpenGL ES don't appear to be working. I'm using Debian ARMHF + GNOME

Author:  markos [ Thu Aug 18, 2011 12:56 pm ]
Post subject: 

Quote:
EGL and OpenGL ES don't appear to be working. I'm using Debian ARMHF + GNOME
And it won't be working unless we can get armhf binary drivers from Freescale, 3D drivers on ARM is a complicated story.

Author:  ppcman [ Thu Aug 18, 2011 4:46 pm ]
Post subject: 

Quote:
Quote:
EGL and OpenGL ES don't appear to be working. I'm using Debian ARMHF + GNOME
And it won't be working unless we can get armhf binary drivers from Freescale, 3D drivers on ARM is a complicated story.
Freescale is working with us to get the get the binary parts of the GPU drivers re-compiled for ARMhf. It's not a complex task, but their team is relatively small and is pre-occupied with the mx6 debug. Btw, the mx6 silicon is looking good and the initial benchmarks are very exciting. :)

Author:  ericb [ Thu Aug 18, 2011 11:55 pm ]
Post subject: 

Hi,

The armhf port works well on my smartbook too.

Simply insert an SD Card and boot, is awesome, and incredibly easy.

Of course, I had to omptimize a bit, and if this can help, the most simple is to

1) use a big card ( 16GB e.g., prefer Sandisk)
2) dd the image
3) resize the original partition using Gparted
4) create a swap partition (say 1GB)


Ok, the F1 ... F11 are yet painfull ( Xmodpmap does not work with the current layout), but I'll have a deeper look.

Congratulations to the EFIKA Team, and to Konstantinos Margaritis who did a fantastic work !



P.S. : to add my 2 cts, I did a Debian port of OOo4Kids, but OOoLight should be available soon (see Debian armhf port at : http://eric.bachard.org/news/ )

Author:  markos [ Sat Aug 20, 2011 2:47 am ]
Post subject: 

Quote:
P.S. : to add my 2 cts, I did a Debian port of OOo4Kids, but OOoLight should be available soon (see Debian armhf port at : http://eric.bachard.org/news/ )
Just installed ooo4kids for armhf on my smartbook, works great! Until OOo/LO is properly built on armhf, I will at least have no excuse anymore that I don't have an office suite for armhf!!

Thanks a lot!

Page 1 of 4 All times are UTC-06:00
Powered by phpBB® Forum Software © phpBB Group
http://www.phpbb.com/