| #/bin/bash |
| |
| set -e |
| |
| export PATH=$PATH:/usr/local/gcc-3.4.5-glibc-2.3.6/arm-softfloat-linux-gnu/bin |
| |
| rm -f build_all.log |
| |
| conf_list='tsavo530 tsavo515 tsavo515_nor '\ |
| 'megamombasa515 megamombasa515_256M megamombasa515_sdc1 '\ |
| 'malindi ipots48-515 ipots48-800 udev515 udev800 nairobi supermombasa910 matisse '\ |
| 'asic packet-iad router' |
| |
| conf_list='asic packet-iad router ferouter' |
| |
| for conf in ${conf_list}; do |
| |
| make distclean >> build_all.log 2>&1 |
| |
| echo "building ${conf}" |
| make ${conf}_config >> build_all.log 2>&1 |
| make >> build_all.log 2>&1 |
| echo "done" |
| done; |