I was wondering if the tests in the following lines in 'usr/bin/tce-setup' (in TC 2.9rc5) are correct:
93: [ -n "$TCEDIR"/"$TARGETLIST" ] && for FILE in ....
101: [ -n "$TCEDIR"/"$TARGETLIST" ] && for FILE in ....
The '-n string' test will probably always be true, whilst I guess what is meant to be tested is with '-e file' the existance of the "onboot.lst" file. So, I believe it should be:
93: [ -e "$TCEDIR"/"$TARGETLIST" ] && for FILE in ....
101: [ -e "$TCEDIR"/"$TARGETLIST" ] && for FILE in ....