Lines Matching refs:FILE

44 	FILE=`sed -n "/^+| 20[0-9][0-9]-/p" ${DIFF_DOC_ALL} | tr -d " " | awk -F "|" '{ print $3 }'`
146 if ! echo ${FILE} | grep -Eq '\.bin|\.elf|\.img' ; then
147 echo "ERROR: ${DOC}: '${FILE}' missing the file format suffix"
150 if ! echo ${FILE} | grep -q { ; then
151 if ! git log ${ARG_COMMIT} -1 --name-only | grep -q ${FILE}; then
152 echo "ERROR: ${DOC}: '${FILE}' is not updated in this patch"
158 if [ "${TITLE}" != "${FILE}" ]; then
159 echo "ERROR: ${DOC}: Title '${TITLE}' is not match with '${FILE}'"
172 if ! echo ${FILE} | grep -q { ; then
173 if echo ${FILE} | grep -Eq 'spl_|tpl_|bl31_|bl32_|tee_' ; then
174 FILE_PATH=`find -name ${FILE}`
176 echo "ERROR: ${DOC}: No ${FILE}"
180 echo "ERROR: ${DOC}: ${FILE} is not build from '${CMT}'"
308 for FILE in `ls ./RKBOOT/*MINIALL*.ini`
310 if [ "${FILE}" = "./RKBOOT/RK302AMINIALL.ini" -o \
311 "${FILE}" = "./RKBOOT/RK30BMINIALL.ini" -o \
312 "${FILE}" = "./RKBOOT/RK30MINIALL.ini" -o \
313 "${FILE}" = "./RKBOOT/RK310BMINIALL.ini" ]; then
317 if grep -q '^PATH=img/' ${FILE}; then
321 echo "Pack loader: ${FILE}"
322 ./tools/boot_merger ${FILE}
331 for FILE in `ls ./RKTRUST/*TOS*.ini`
333 if ! test -s ${FILE}; then
335 elif ! grep -q 'TOS' ${FILE}; then
337 elif grep -q '^PATH=img/' ${FILE}; then
341 echo "Pack trust: ${FILE}"
343 TOS=`sed -n "/TOS=/s/TOS=//p" ${FILE}|tr -d '\r'`
344 TOS_TA=`sed -n "/TOSTA=/s/TOSTA=//p" ${FILE}|tr -d '\r'`
365 for FILE in `ls ./RKTRUST/*TRUST*.ini`
367 if grep -q '^PATH=img/' ${FILE}; then
371 echo "Pack trust: ${FILE}"
372 ./tools/trust_merger ${FILE}
380 …for FILE in `find -name '*spl*.bin' -o -name '*tpl*.bin' -o -name '*usbplug*.bin' -o -name '*bl31*…
381 echo "Checking clean: ${FILE}"
382 if strings ${FILE} | grep '\-dirty ' ; then
383 echo "ERROR: ${FILE} is dirty"
391 for FILE in `find -name '*bl31*.elf'`; do
392 echo "Checking strip: ${FILE}"
393 INFO=`file ${FILE}`
395 echo "ERROR: ${FILE} is not stripped"