Spkmodem: Difference between revisions

From coreboot
Jump to navigation Jump to search
(Created page with "== Howto == Download grub's trunk: bzr branch http://bzr.savannah.gnu.org/r/grub/trunk/grub cd grub Compile the receiver code: cd util gcc -o spkmodem-recv spkmodem-recv.c...")
 
No edit summary
 
Line 1: Line 1:
== Howto ==
== Howto ==
=== Warnings ===
* Spkmodem will make your boot an order of magnitude slower, be warned
* On the Lenovo X60 the output stops after the EC is initalized => press the volume up button on your keyboard when that happens, it should restore the logs...
* Don't use gdb trough serial and spkmodem at the same time... you won't be able to connect to the target trough gdb and the computer will be stuck waiting for gdb.
=== Receiving ===
Download grub's trunk:
Download grub's trunk:
  bzr branch http://bzr.savannah.gnu.org/r/grub/trunk/grub
  bzr branch http://bzr.savannah.gnu.org/r/grub/trunk/grub
Line 10: Line 15:
Or like that for alsa:
Or like that for alsa:
  arecord -c 1 -r 48000 -Dplughw:0 -f S16_LE | ./spkmodem-recv
  arecord -c 1 -r 48000 -Dplughw:0 -f S16_LE | ./spkmodem-recv
=== Coreboot part ===
Configure coreboot like that:
make menuconfig
Go in console:
Console  --->
Select spkmodem
[*] spkmodem (console on speaker) console output

Latest revision as of 17:49, 5 June 2013

Howto

Warnings

  • Spkmodem will make your boot an order of magnitude slower, be warned
  • On the Lenovo X60 the output stops after the EC is initalized => press the volume up button on your keyboard when that happens, it should restore the logs...
  • Don't use gdb trough serial and spkmodem at the same time... you won't be able to connect to the target trough gdb and the computer will be stuck waiting for gdb.

Receiving

Download grub's trunk:

bzr branch http://bzr.savannah.gnu.org/r/grub/trunk/grub
cd grub

Compile the receiver code:

cd util
gcc -o spkmodem-recv spkmodem-recv.c

Run it like that if you have pulseaudio:

parecord --channels=1 --rate=48000 --format=s16le | ./spkmodem-recv

Or like that for alsa:

arecord -c 1 -r 48000 -Dplughw:0 -f S16_LE | ./spkmodem-recv

Coreboot part

Configure coreboot like that:

make menuconfig

Go in console:

Console  --->

Select spkmodem

[*] spkmodem (console on speaker) console output