forked from thesofproject/soft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
36 lines (22 loc) · 820 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Sound Open Firmware Tools
=========================
This is a collection of open source tools used to develop open source audio
DSP firmwares for ALSA.
Building and Installing
=======================
./autogen.sh (only needed first time)
./configure
make
make install
rimage
======
rimage is used to convert ELF executable firmware files to the firmware file
formats used by the kernel drivers.
e.g.
rimage -i elf_file -o kernel_file -m machine
rimage can also convert kernel firmware formats to flat binaries formats to
assist in debugging :-
e.g. convert to flat binary, then ELF then dissasemble
rimage -i /lib/firmware/intel/reef-byt.ri -o image.bin -b -m byt
xtensa-byt-elf-objcopy -I binary -O elf32-xtensa-le -B xtensa image.bin image.bin.elf
xtensa-byt-elf-objdump -D image.bin.elf > image.dis.txt