AVS Integration Notes The original AVS files have .o extension. That does not work well with DTA build and release structure. When integrating new files from CFE or original AVS source perform following steps: - copy new object files in to this directory - rename .o files to .pof files, overwriting original files - test that AVS is working correctly - check in new .pof files You can use following bash command for bulk renaming: for f in *.o; do echo $f `basename $f .o`.pof ; done