Liam Girdwood | 8855ce5 | 2016-10-18 17:18:16 +0100 | [diff] [blame^] | 1 | # build all images for all targets. |
| 2 | pwd=`pwd` |
| 3 | |
| 4 | rm -fr src/arch/xtensa/*.ri |
Liam Girdwood | c0dfb4e | 2016-09-21 15:57:22 +0100 | [diff] [blame] | 5 | |
| 6 | # Build for Baytrail |
| 7 | make clean |
Liam Girdwood | 8855ce5 | 2016-10-18 17:18:16 +0100 | [diff] [blame^] | 8 | ./configure --with-arch=xtensa --with-platform=baytrail --with-root-dir=$pwd/../xtensa-root/xtensa-byt-elf --host=xtensa-byt-elf |
Liam Girdwood | c0dfb4e | 2016-09-21 15:57:22 +0100 | [diff] [blame] | 9 | make |
| 10 | make bin |
| 11 | |
| 12 | # Build for Cherrytrail |
| 13 | make clean |
Liam Girdwood | 8855ce5 | 2016-10-18 17:18:16 +0100 | [diff] [blame^] | 14 | ./configure --with-arch=xtensa --with-platform=cherrytrail --with-root-dir=$pwd/../xtensa-root/xtensa-byt-elf --host=xtensa-byt-elf |
Liam Girdwood | c0dfb4e | 2016-09-21 15:57:22 +0100 | [diff] [blame] | 15 | make |
| 16 | make bin |
| 17 | |
Liam Girdwood | 8855ce5 | 2016-10-18 17:18:16 +0100 | [diff] [blame^] | 18 | # list all the images |
| 19 | ls -l src/arch/xtensa/*.ri |