[parse_cfg] : Parsing config file /tmp/sw-description
ERROR parser/parser.c : parse_cfg : 977 : ..exiting
ERROR core/parser.c : parse : 164 : no parser available to parse sw-description!
ERROR core/stream_interface.c : extract_files : 165 : Compatible SW not found
Image invalid or corrupted. Not installing ...
[network_initializer] : Main thread sleep again !
Waiting for requests...
My current script works like this:if [ $currentbootpart = 2 ]thenecho "Starting update server for ALT" &> /dev/kmsg(/usr/bin/swupdate -N X.X.X-l 5 -k /etc/swupdate/swupdate-public.pem -w '-r /var/www/swupdate -p 9998' -e alt,revB -e alt,revA -p 'reboot') &> /dev/kmsg &elseecho "Starting update server for MAIN" &> /dev/kmsg(/usr/bin/swupdate -N X.X.X -l 5 -k /etc/swupdate/swupdate-public.pem -w '-r /var/www/swupdate -p 9998' -e main,revA -e main,revB -p 'reboot') &> /dev/kmsg &fiWhat I don't understand, is that while I already start ALT and MAIN separately, I need to create 2 branches in alt - one for revA, and one for revB. I do not see how to do this with -e if I cannot make 2 statements, as I need to declare 2 paths ( in this case: ALT,revB AND ALT,revA ). Would you have any recommendations for internal mechanisms I could use to do this?Looking forward to hearing from you,Helios