uboot compiled c file list

!/bin/bash #su xinmin 2014 3-10  list the compiled c file in uboot. for ff in $(find -name "*.o" | sed -e 's/o$/c/'); do      if [ -f $ff ] ;      then         echo $ff     else         #echo "$ff is not exist"     fi done