Changes between Version 10 and Version 11 of Docs/Prog/Manual/Foundation/ApplicationModeStartup


Ignore:
Timestamp:
08/28/12 07:43:59 (12 years ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/Foundation/ApplicationModeStartup

    v10 v11  
    6464ln -s /usr/sbin/www/html/fonts/big825.fnt /etc/big825.fnt
    6565ln -s /usr/sbin/www/html/fonts/btn825.fnt /etc/btn825.fnt
    66 #mount -t jffs2 /dev/mtdblock1 /mnt/nand
    67         echo "Application Menu..." > /dev/carddsp
    68         sh /usr/sbin/diag/appmenu.sh &
    69         mount -t jffs2 /dev/mtdblock1 /mnt/nand &
    70         # DW Check for Cardinal 825 set to start web server - added -W command to ifconfig to check NOR web server setting
    71         ifconfig -W
    72         if [ "$?" = "1" ]; then
    73                 echo "Starting the boa webserver: "
    74                 boa $BOA_ARGS
    75         fi
    76         ifconfig -T
    77         if [ "$?" = "2" ]; then
    78                 echo "Starting the weight server: "
    79                 /usr/sbin/diag/wtsvr &
    80         fi
    81         ifconfig -L
    82         if [ "$?" = "4" ]; then
    83                 telnetd
    84         fi
    85     fi
    86 
     66echo "Application Menu..." > /dev/carddsp
     67sh /usr/sbin/diag/appmenu.sh &
     68mount -t jffs2 /dev/mtdblock1 /mnt/nand &
     69# DW Check for Cardinal 825 set to start web server - added -W command to ifconfig to check NOR web server setting
     70ifconfig -W
     71if [ "$?" = "1" ]; then
     72        echo "Starting the boa webserver: "
     73        boa $BOA_ARGS
     74fi
     75ifconfig -T
     76if [ "$?" = "2" ]; then
     77        echo "Starting the weight server: "
     78        /usr/sbin/diag/wtsvr &
     79fi
     80ifconfig -L
     81if [ "$?" = "4" ]; then
     82       telnetd
     83fi
    8784}}}
    8885