Hi.
I am having some troubles uploading files to my robot.
The script does not execute on my robot (3.3.4.310), nor when being ran on my simulator by running “sh upload_files.sh”. When executed on the simulator, I get the log message “no mountpoint supplied” given by the start of the program below. When being ran directly on the robot via ssh with the same command (“sh upload_files.sh”), I cannot find any log messages.
"LOGGER="/usr/bin/logger"
TAG="-t '$(basename $0)'"
if [ "$1" = "" ] ; then
$LOGGER -p user.info $TAG "$0: no mountpoint supplied, exiting."
exit 1 ; fi
MOUNTPOINT="$1""
In the simulator, the log messages are presented in /var/log/syslog. I cannot seem to find the location of this log on the physical robot.
My questions are:
- Is there some bugs in the magic files?
- Where is the log destination on the robot? It would be useful to know, since I need to make some edits to my magic files.
Best regards,
Lars