Hello,
a few people have expressed interest in trying out the 3.16.1 (latest stable) kernel on a standard (Excito Debian squeeze) B3.
So, I have fired up crossdev once again, and built one for you. You can find it here (on GitHub). Full instructions (and warnings!) are provided on the GitHub page. BTW, as for the Gentoo live-USB image for B3, no U-boot flashing is necessary to boot the supplied kernel. A module set is also provided.
Early tests show that most things still seem to work (Excito web interface etc.)... but YMMV.
Have fun and let me know how you get on ^-^
sakaki
New user's registration have been closed due to high spamming and low trafic on this forum. Please contact forum admins directly if you need an account. Thanks !
Kernel 3.16.1 for Debian Squeeze B3 released
Re: Kernel 3.16.1 for Debian Squeeze B3 released
A little more detail on LEDs etc...
On a 'stock' B3, to change the LED to green, per these instructions you would execute:
Whereas in the 3.16.1 kernel, you would need instead to use:
Or, more properly:
You can see the kirkwood-b3 device tree file here, from which the new paths can easily be inferred.
Of course, it's not all bad: because the LED is now a standard kernel device, some fun stuff like triggers becomes available to you. For example, you could write:
As a lot of the Excito software is scripted, it should in theory be possible to patch it to work under 3.16.1. For example, /etc/init.d/led_on etc. would be easy to change. The rear button appears to be controlled by /sbin/bubba-buttond, which is compiled, so that might be a little trickier to replace...
On a 'stock' B3, to change the LED to green, per these instructions you would execute:
Code: Select all
stock_b3 # echo 2 > /sys/bus/platform/devices/bubbatwo/color
Code: Select all
3.16.1_b3 # echo -n 1 > /sys/class/leds/bubba3\:green\:programming/brightness
Code: Select all
3.16.1_b3 # cat /sys/class/leds/bubba3\:green\:programming/max_brightness > \
/sys/class/leds/bubba3\:green\:programming/brightness
Of course, it's not all bad: because the LED is now a standard kernel device, some fun stuff like triggers becomes available to you. For example, you could write:
Code: Select all
3.16.1_b3 # echo -n "heartbeat" > /sys/class/leds/bubba3\:green\:programming/trigger