/tmp/moxa/mxinstall000075500000000000000000000164531010013363600146520ustar00rootroot00000620000000#!/bin/sh : # Copyright (C) 2000 MOXA Technologies Co., Ltd. # All Rights Reserved. # # MOXA Serial I/O Device driver installation script # OS = "sco" "svr4.2" "svr4.5" # # Version History : # date author moment # 01/24/2000 jaron chou Ver=1.0 # 02/24/2001 jming Ver=1.1 ################################################################################ # define value and default value setting ################################################################################ TempDir="/tmp/moxa" DriverVer="1.7" ProductName="MOXA Smartio Family" YES=0 NO=1 OS="" Device="" EntryPwd=`pwd` tmp="" ################################################################################ # check_moxa_conflict() # to check C360 and C218/C320 conflict install just for SCO ################################################################################ check_moxa_conflict() { [ -d /etc/conf/pack.d/moxa ] && { [ -d /etc/conf/pack.d/mxc0 ] && { echo "\nInstallation fail !\n" echo "MOXA-C360 driver already exist !" echo "C360 driver and C218/C320 driver cannot be installed simultaneously." clean_tempfile exit 1 } } } ################################################################################ # clean_tempfile() # to clean the temp file and $TempDir ################################################################################ clean_tempfile() { cd $EntryPwd [ -d $TempDir ] && rm -rf $TempDir > /dev/null 2>&1 sync ; sync } ################################################################################ # interrupt_quit1() # to quit install by interrupt or quit ################################################################################ interrupt_quit1() { echo "\nInstallation aborted by INTERRUPT !" exit 1 } ################################################################################ # interrupt_quit2() # to quit install by interrupt or quit ################################################################################ interrupt_quit2() { echo "\nInstallation aborted by INTERRUPT !" clean_tempfile exit 1 } interrupt_nothing1() { exit 1 } interrupt_nothing2() { clean_tempfile exit 1 } ################################################################################ # print_usage() # to print the usage message ################################################################################ print_usage() { echo "\nCopyright (C) 2004 MOXA Technologies Co., Ltd." echo "All Rights Reserved." echo "\nMOXA Device driver installation script." echo "\nUsage: install [OS name]" echo "\n OS name {sco | uw21 | svr4.2_2 | uw7}" echo "" } ################################################################################ # tar_files() # tar the needed file to disk at $TempDir # And copy the Driver.o file ################################################################################ tar_files() { echo "\nTar files, please wait ...\c" [ -d $TempDir ] || mkdir $TempDir > /dev/null 2>&1 cd $TempDir [ "$Device" = "harddisk" ] || { tar xvf $Device $TempDir/$OS.tar.Z > /dev/null 2>&1 [ $? != 0 ] && { [ -d $TempDir ] && rm -rf $TempDir > /dev/null 2>&1 echo "\nDevice name error ! It cannot tar file !" exit 1 } } uncompress $TempDir/$OS.tar.Z > /dev/null 2>&1 tar xvf $TempDir/$OS.tar > /dev/null 2>&1 echo " O.K." } ################################################################################ # get_osname() # to input the OS name ################################################################################ get_osname() { flag=TRUE while [ "$flag" = TRUE ] do echo "\nPlease select following OS type" echo " 1. SCO UNIX 3.2v4, SCO OpenServer 5" echo " 2. UnixWare 2.1.x" echo " 3. SCO UnixWare 7" echo "Select : \c" read OS case $OS in [1]) OS="sco" flag=FALSE ;; [2]) OS="uw21" flag=FALSE ;; [3]) OS="uw7" flag=FALSE ;; *) echo "\nInvalid input ! Please retry." ;; esac echo "" done } ################################################################################ # get_devicename() # to input the floppy device name ################################################################################ get_devicename() { case $OS in "sco" | "uw21" | "svr4.2_2" | "uw7") flag=TRUE while [ "$flag" = TRUE ] do echo "\nPlease select following floppy device type" echo " 1. /dev/fd0135ds18 (A:1.44M)" echo " 2. /dev/fd096ds15 (A:1.2M)" echo " 3. /dev/fd1135ds18 (B:1.44M)" echo " 4. /dev/fd196ds15 (B:1.2M)" echo " 5. Hard Disk /tmp/moxa" echo "Select : \c" read Device case $Device in [1]) flag=FALSE Device="/dev/fd0135ds18" ;; [2]) flag=FALSE Device="/dev/fd096ds15" ;; [3]) flag=FALSE Device="/dev/fd1135ds18" ;; [4]) flag=FALSE Device="/dev/fd196ds15" ;; [5]) flag=FALSE Device="harddisk" ;; *) echo "\nInvalid input ! Please retry." ;; esac done ;; "solaris") flag=TRUE while [ "$flag" = TRUE ] do echo "\nPlease select follwing floppy device type" echo "1. /dev/fd0 (A floppy)" echo "2. /dev/fd1 (B floppy)" echo "3. Hard Disk /tmp/moxa" echo "Select : \c" read Device case $Device in [1]) flag=FALSE Device="/dev/fd0" ;; [2]) flag=FALSE Device="/dev/fd1" ;; [3]) flag=FALSE Device="harddisk" ;; *) echo "\nInvalid input ! Please retry." ;; esac done ;; esac } ################################################################################ # os_info() # to display the OS type message ################################################################################ os_info() { case $OS in "sco") echo "\nFor SCO UNIX System V/386 Release 3.2" check_moxa_conflict ;; esac } ################################################################################ # backup_os() # to backup the OS file ################################################################################ backup_os() { case $OS in "sco") [ -f /unix.moxa ] || cp /unix /unix.moxa > /dev/null 2>&1 ;; "uw21") echo "\nFor UNIX System V/386 Release 4.2" ;; "svr4.2_2") echo "\nFor UNIX System V/386 Release 4.2" ;; "uw7") echo "\nFor SCO Unixware 7.x" ;; esac } ################################################################################ # Main procedures ################################################################################ # # to read the shell program input argument and process it # trap interrupt_quit1 1 3 9 15 # trap signal trap interrupt_nothing1 2 # trap signal if [ "$#" -ge 3 ] then print_usage exit 1 fi echo " =============================================================================== Copyright (C) 2004 MOXA Technologies Co., Ltd. All Rights Reserved. $ProductName Device Driver Installation (Ver. $DriverVer) ===============================================================================" if [ "$1" = "sco" -o "$1" = "uw21" -o "$1" = "svr4.2_2" -o "$1" = "uw7" ] then OS=$1 else #get_osname OS="uw21" fi Device=harddisk #Device=$2 #[ "$Device" = "" ] && get_devicename # # start the install process # os_info backup_os trap interrupt_quit2 1 3 9 15 # trap signal trap interrupt_nothing2 2 # trap signal tar_files # copy file echo "Press any key to continue..." read tmp ./moxainst [ $? != 0 ] && { clean_tempfile # clear all temp file exit 0 } clean_tempfile # clear all temp file exit 0 " = "sco" -o "$1" = "uw21" -o "$1" = "svr4.2_2" -o "$1" = "uw7" ] then OS=$1 else #get_osname OS="uw21" fi Device=harddisk #Device=$2 #[ "$Device" = "" ] && get_devicename # # start the install process # os_inf/tmp/moxa/uw21.tar000064400000000000003000007640001010167074600140640ustar00rootsys00000620000000./moxainst000075500000000000003000002307641010167056100126600ustar00rootsys00000420001001ELF4.4 (4444ttd~/usr/lib/libc.so.1%(#"! '&$    %4 $l !(&k /d4D;ATHOdU~\tctlDps4{ԇ0A 9 T}$d40~d ćІT <__iobopenreadmalloc_cleanup_end_environfreeperrorlseek_etextatexitchdir_edatasignal__filbufsystemttynamecloseexitwritestrcmpstrcpy_lib_version_mcountstrlen__fpstart_GLOBAL_OFFSET_TABLE_geteuidsscanfstrncpysprintfprintf_DYNAMICstrncmpioctl_initgetenvtoupper/usr/lib/libc.so.14}} }}}}!}}} }}} }}}$}}}}}}}} }&}#}}}'~ 5}%}%}h%}h%}h%}h%}h %}h(%}h0%}h8p%}h@`%}hHP%}hP@%}hX0%}h` %}hh%}hp%}hx%}h%}h%}h%}h%}h%}h%}h%}hp%}h`%}hP%}h@%}h0%~h jjRt h~t h,AEku TkRU RP PjÐe=eth@CYhCYjY hCY= uhCYjpYj j8j jbEj,jSjuhj j5doYP5dVj,jSj j#5dDYP5dVj,jS3?)EihCYhCYdthDYh8DYd dhhDYU=dt3=.U\v)e Uv]jj}j%j(Ra舵hxD*YhDYhDYjj:5eYU_3h̊WG|QEhk蔯YPOuQY3hPWG|_U W똋%3hPWG|E` _UWՍv7@%@ ,jjQvRp pQhpp ppTYjjOjjD`G%G ,w w&Qj ww wwYjWfjjNjj_G%G ,j,j%PG%G ,jPYhlhDV VjWf VY^_UWV  U+ t = u5hqYt dUЋzjjF!uhDEP EPeYhEEPEPJYuhPEEP EP,Yhp!YMfUT{>u]V>Y+E}}Eu3 E E FG;|[^_UPWVS빐f3;f} f}  Ƈ(ffG|3Ƈ Ƈ,ƇLG |_UW딋EEEjhpEE|CEE"EEEHEPhSu EuY}t D D}u<= u3jj7Ihr蠨Yhr蕨YLڪU (vqH@3  FH;|36Ɔ tdtXtLt@ t4 t( t tkƆ 3EJ;,L;}jt}jt}j t}jts}jt_}jtK}jt:}jtn)}j t]Y w$4A< t7<  @ffu }z GH;} =@<u uff<u u fu F^_U WV33V W%_^3xƇƇzƇqƇhƇ_ƇVƇMƇ DƇ ;Ƈ 2Ƈ )Ƈ Ƈ} w$\AƇ GR Ehh9xY QC "te^, tNhhwY 2 $F~t t= t=t=Ut}Ojj4h8r]YhdrRYhrGYhr<Yhs1YG3t.eh4sYytYt ntNu߃ytYu=eu d=etLytYuBjj4ChXs蚣Yhs菣Yhs脣YhtyYG辥VW %_^3 G|uCY53fff} G|3[^_UWVSH31;t "tts tg t[ tO tCt7} };t 9 tyiĀ;t\ƀ;tAt*f} fuf}ftf}f} G3_UW:E=@~i@W%Y4ii`EiU􋄐E3'< t}jU;fuGH;|΃=@t =EUU 9fuuYi i ii i4i3Ƈ4 G(|Ef4 eh|Eh4 4i@44i@ 4i@ESi3?< u4i ii8t iPti GH;|E3< }jU;fE4iiU4iiUM 8iL4iiUD 4iiUD4iiUDŽ(j(٧Y4iiMD 3 CF'|E GH;E[^_UWVS-i`EiU=@33u< uj}j;fuYLPJP4hEEPEP4iit4iiD8FGH;|hilY[^_U`WVS2sEEi`iEE hxE@PВEju hxE@P讒Ejuh xE@P茒EjuDžPhxMYE} jjY9TPuёTPY33P=T{u=U{uDžP,PuB=T{u3GCGTT;} =T}uDDžP3PuH=T{u9GCGTP;} =T}uƄPDžP3PuE=T{u9GCGT;} =T}uƄDžP3BPu9=T{u/GCGT;} =T}uƄ G;PPhLGEPffffPPhTGPP~ffffPPh\GPBffffPPhdGPffffh x迏YE} j܎YTPuCTP Y334=T{u)GCGTT;} =T}uDG;|ȍPPPPhlGEPAff ff"ff$ff&h0xYE} jYTPudTP-Y334=T{u)GCGTT;} =T}uDG;|ȍPPPPhGEPb()*+hDx YE} j&YTPE@P蒼TPTYPPPPPPPPhGTP(TPE@PTPY PPPPPPPPhGTP7(TPE@P詌TPrY,P(P$P PPPPPhGTP(TPE@P8TPYLPHPDP@PEfE fu&}ueEE"}ufEF}ugEGhEHE,E#EEE w$A3ENjk lPGPPk  44jGPPhIEP EPAYk lPGPEPk  44jGPEPhxYt7WyY}tu}tu}yuWyYEPjWx ҃uF|3fu fuw%u w$|B3AGPdPhQEPREPEPhQEP9EP%yYG;|FpjvY[^_UdWVS$hx5uY}hx^tY37dPhQEP EPvYtW`xYuF|3fu fu%u w$B3_GPdPhQEP7EPEPwE EEPEPEPhQEPEPwYG;|FOjIuY[^_UtWVSh$RlYhHRaYU#j jKnhx pYh yoYytYt ntNuyt Yh\yoYhtRHP<HPݾYhRHPHP輾Yt-hyyoYhynoYhycoYqWhR耾YhyAoYhz4oYhHz)oYdt hzoYhz oYOq_UWEEuhREPL EPrY}untY} jsYEPjWt  jlsYj_sYhz,rY}hWuYEPtY}}u j'sY?hRu+u)EPhSEP蒽 EP~uYjrY_U|WShjh SmE)h0h́u輽 3;} Ǵ uG3 }hĆlG;} ́:uK~hl tChƄlGEEE;} Ǵ:u;} Ǵ:u;} Ǵ:uG;} ́ uhǴ 0#(;uVY[^_U WVS,] 35Pj/pY} E EE3uGPFPEPh0SEP謻EPY֍k D GPFPEPhe^_UWVE}G;h~ hEE+ljE3kiTML C|hj5YEtWuYhjFY3EEO|3Gh;OuG|3G;huGh;} hNjki jTD EElM;=AG3= t` v; t4='=UU =B =V}u,jYEE[^_U WVS+iETSiYk3kiT j kiT jLkiTD3piTkjj@P%iYiTkD3iTkD8 G;u3.;5h|)lPhSktN FG|^_UWV뻐6    |jRPjjj%Ðjj j j RÃ,j:PD$P߮hSD$Pu    jD$PvuhSj踭hSPD$PphSD$$P葮twhTD$P{tajhTD$P賮 tIhTD$PMt3hT\hLTR4J4}h4v,Ã 8A, 8Ãt&D$PhTR苭D$D$D$ PhTQk,ÃD$PhTRKD$D$D$ PhTQ+,ÃD$PhTR fd$fd$D$ D$D$PhTQ٬,ÐD$PhTR軬fL$fL$fL$ fL$fL$D$ D$D$PhTQw,ÃW 4}h4_;8@8ސWV4}h4迬FHNu.}h4蒬F@FtW^_;KPÐPW|$ ,u _Ð 4}h438BB8 @u9ktkj j ;kj j_Ãk;;W|$Vt$jh/k}F¹ ƋG01kƙ0Lj2k04kǙ05kR辪 ^_Ít&;;D$Pй+PD$+P=Ð;ÃWVt$ S\$5 |ƹ 0G#kƹ G0G!kƇ km|HGGƀ!kƇ k[ |KGËй 0 kÙG0!kƇ!kmGWh!kR蠩 [^_Ðù G0!kƇ!kmGƍt&S 0ffAfAfA|jhkR [;3ɡW3V3SU$$3D$x$$;$D$t$3=$t$tu$$u DŽ$t܅tEtj j j$P$RWD$P Q33$tG3ҽӁT G3\D$xFPT$x3ҊӋ\$t f$;tAtj j jS$Q$P;WD$PR}t j j][^$D$|$ _ ĄÃT$L$ RQD$T$ PR;WV5S3ۋ\$ Ӌ=f|Cj L$逈L$jSjD$PP蕦j j85[=^_ÐjD$PRe ׁT$ L$RQ3D$ PE Ðjhk3ɡL$  k ы fQ ;T$ L$RQ3D$ P ÐÃÃTW|$hV3SUGT$lD$cL$hRl$tQI3;~W33ҊD$cW;t1t-t j,%Pj,j%D$VP%3GFGTCG;݈D$c|tWD$xt#D$cuD4N< u~ D4N< uFD$ct j,%Pj,j%D$VP][^_T;t&jhkR衤jjjOjj ;;WT$VL$S4UD$D$3ۋ|$0+l$,+GED$N~'D$4T$(PL$(VUPQ|ƠC;|ًD$T$PRD$ PD$$+P][^_Ã W|$Vt$S }Ul$(+ET$,\$0;3;~sCF}CAC;C}FCqCCCCCCC;CDqCDqCDqCDqCDqCDqCDqC|;}CqCFC;DqC|BD$,;t][^_ ÃW|$V3SUT$ D$$+L$+G@l$,D$~+EjUD$T$(PL$(2PQF;|][^_;W|$Vt$S3Ul$+T$+GF~DL$PQVh| KC;|][^_;TW|$dVt$`SU+l$tG~؋GT$<@GPT$Vj,j%SG0LD$O0T$ @ D+T$4ET2D*W0;|O0GL$8T`PW0GPD$$t2O0T$8jj,j%PLD$,QPtD$$@t3O0T$8jj,j%PDPD$0R1;O0T$8jj,jPDPD$0RL$8G0ADL$8;YD$T$8;tQSVR< C|;~'F+K@FXD$(@PjNQ Ve][^_;;k|R;;Wk<|WkJk_;W|$D$ ЉGOGGWO ;~+OO_Ð,3WL$$Vt$8SUL$,3L$(L$$N$;t$ ^$4׋ tRD$ @4TRbD$,;~l$,D$ @4LQbD$(;~/l$();D$ @4DPZbD$0;~l$0G;nt$ D$,T$(L$0D;~D$0F PbT$4;~D$0l$$\$0D>$tPaE;~؃|F\$0l$$uO+Ù+FD$$tF8T$$FD FV8DPT$4FDPFPVRD$HP_D$

/dev/null/tmp/moxa/c168cp Driver.o /etc/conf/pack.d/c168 > /dev/nullcp ../moxaadm /etc/conf/pack.d/c168 > /dev/null/tmp/moxa/c168clearrm /tmp/err > /dev/null 2>&1rm /tmp/er1 > /dev/null 2>&1MOXA Smartio Family Installation Utility (Ver. %s)%s device driver is not installed !For this function to be executable it is required that %s driver is installed first./dev/c168 Cannot Find Any %s Boards !!! I/O Addr=%8X, BusNo=%d, DevNo=%d%13X %3d %4d/%-4d Not Found Not Found Not Found %s%s %13X ---------- The board number %d I/O address is error !Board %d I/O address is not set!%s -a -k c168 > /tmp/err 2>/tmp/er1cp ../moxaadm /etc/conf/pack.d/c168 > /dev/null/etc/conf/bin/idmknod > /dev/null 2>&1%s -d c168 > /dev/null 2>&1%i%*c%i%*c%i%*c%i%d%*c%d%*c%d%*c%d%d%*c%d%d%*c%d%d%*c%d%d%*c%d%d%*c%d%*c%d%*c%d%d%*c%d%*c%d%*c%d%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%dgrep -v 'tty[efghEFGH]' /etc/inittab > file.tmpecho 'm%c1%d:23:%s:/etc/getty tty%c1%d %s' >> file.tmpecho 'm%c1%d:23:%s:/etc/getty tty%c1%d %s' >> file.tmpcp file.tmp /etc/inittab > /dev/nullgrep 'tty[efghEFGH]' /etc/inittab > file.tmpgrep -v 'tty[efghEFGH]' /etc/conf/init.d/kernel > file.tmp1cat file.tmp >> file.tmp1cp file.tmp1 /etc/conf/init.d/kernel > /dev/null 2>&1rm -f file.tmp file.tmp1 > /dev/null 2>&1Masterc168 Ip iSHcf c168 0 0 0 256 -1 c168|Y|N|Communications Cards|bob手机在线登陆 Smartio Family |||bob手机在线登陆 Smartio Family| |PCI|0x13931680|bob手机在线登陆 C168H/PCI| |PCI|0x13931040|bob手机在线登陆 C104H/PCI| |PCI|0x13931020|bob手机在线登陆 CP102| |PCI|0x13931041|bob手机在线登陆 CP104U| |PCI|0x13931681|bob手机在线登陆 CP168U| |PCI|0x13931321|bob手机在线登陆 CP132U| |PCI|0x13931340|bob手机在线登陆 CP134U| |PCI|0x13931042|bob手机在线登陆 CP104JU| |PCI|0x13931180|bob手机在线登陆 CP118U| |PCI|0x13931021|bob手机在线登陆 CP102UL| |PCI|0x13931022|bob手机在线登陆 CP102U| #define MaxCard 4 #define MaxPort 32 #define ON 1 #define OFF 0 #define C168_BOARD 1 #define C104_BOARD 2 #define CI104J_BOARD 6 #define C168PCI_BOARD 7 #define C104PCI_BOARD 8 #define CP102_BOARD 9 #define CP104U_BOARD 13 #define CP168U_BOARD 14 #define CP132U_BOARD 15 #define CP134U_BOARD 16 #define CP104JU_BOARD 17 #define CP118U_BOARD 18 #define CP102UL_BOARD 19 #define CP102U_BOARD 20 unsigned short c168_baseAddr[MaxCard] = {0x%X, 0x%X, 0x%X, 0x%X}; int c168_irq[MaxCard] = {%d, %d, %d, %d}; char c168_RTSCTSflow[MaxPort] = { %s };%s, typedef struct c168_pci_devinfo { unsigned short BusNum; unsigned short DevNum; }C168_PCI_DevInfo; C168_PCI_DevInfo c168_PciInfo[MaxCard] = {{%d,%d},{%d,%d},{%d,%d},{%d,%d}}; unsigned short c168_boardType[MaxCard]={%d,%d,%d,%d}; unsigned char c168_HighBaudrate[MaxCard]={%d,%d,%d,%d}; unsigned char c168_RxFifo[MaxPort] = { %d };%d, unsigned char c168_TxFifo[MaxPort] = { %d };%d, Node%s/c168c168 c168 c 255 c168 tty%c1%d c %d c168 tty%c1%d c %d %s -d c168 > /dev/null 2>&1System%s/c168c168 Y 255 7 1 0 0 0 0 0 -1 c168 Y 255 7 1 0 0 0 0 0 c168 Y 255 7 4 %d 0 0 0 0 -1 c168 Y 255 7 1 %d 0 0 0 0 -1 %s c168 > /dev/null 2>&1tty%c??tty%c1%d%s:t_devname=%s:chkent: tty%c??tty%c1%d%s:v_devs=/dev/%s,/dev/%s:v_type=terminal:chkent: rm -f /dev/c168 > /dev/null 2>&1rm -f /dev/tty[eEfFgGhH]* > /dev/null 2>&1/etc/conf/bin/idbuild > /tmp/log.moxa 2>&1/etc/conf/bin/idrebuild > /tmp/log.moxa 2>&1rm -f /tmp/log.moxa/etc/conf/mdevice.d/%sc168 %s -1 0 ldterm ttcompat /etc/ttydefstty%c%d%dtty%c%d%dtty%c%d?tty%c%d?%11s %c %13s%11s%11s -------- ----------- --------- --------- %12s/dev/consoleERROR open tty errorTERMansivt100AT386scoansi Support terminal types: ansi, vt100 and AT386 Press ENTER to continue anyway or DEL to exit...Working buffer not enough [ Message ]kkkEnter:Select Esc:Exitl4lLl123456789abcdefgefgh\ldlpl|lllllllllmm m,m8mDmPm\mhmtmmmmmmmmmmmmnnn(n4n@nLnXndnpn|nnnnnnnnnnno oo$o18o2Lo3`o4to5o6o7o8o9o01o11p21p31   e(p4p@pLpXpdppp|ppp gp   ppqqq,qPqqqqqqqqqqqrXuzz2 \i z{{ {{{,{@{T{l{{{{{{ {{{{{{|@|||| }. }0}cxmmxxxxxxxxx;yyHDEF  BPQTUd(*"b&`$fAAPUTEQDD"33??System checking and initializingPlease wait/tmp/moxaSIGNAL: any key to continue, DEL to abort program.1.7/etc/conf/cf.d/init.base/etc/conf/init.d/kernel/etc/inittabmoxaadmmoxaload/dev/c168The OS does not support !NONEC168 ISA SeriesC104 ISA SeriesC102 ISACI-132 CI-134 CI-104J SeriesC168 PCI SeriesC104 PCI SeriesCP-102 CP-104J CP-132 CP-134 CP-104U CP-168U CP-132U CP-134U CP-104JUCP-118U CP-102ULCP-102U ttya11/A11ttya12/A12ttya13/A13ttya14/A14ttya15/A15ttya16/A16ttya17/A17ttya18/A18ttya21/A21ttya22/A22ttya23/A23ttya24/A24ttya25/A25ttya26/A26ttya27/A27ttya28/A28ttya31/A31ttya32/A32ttya33/A33ttya34/A34ttya35/A35ttya36/A36ttya37/A37ttya38/A38ttya41/A41ttya42/A42ttya43/A43ttya44/A44ttya45/A45ttya46/A46ttya47/A47ttya48/A48 None C168 ISA Series C104 ISA Series C168 PCI Series C104 PCI Series CI-104J Series CP-102 Series CP-104U Series CP-168U Series CP-104JU Series CP-118U Series CP-102UL Series CP-102U Series 2 3 4 5 7 10 11 12 15 --------- /etc/conf/pack.d/c168/Driver.oPress any key to continue... Board No. Board Type I/O Address Interrupt Bus/Dev No. Smartio Family Basic ConfigurationPgDn :getty Setting Esc:Exit Enter:Confirm Input Value Tab:Change ItemPCI Boards SelectingEnter: Select Esc: Exit12345678Open /dev/c168 failure!Press any key to continue. !!!Fail to get PCI Information!!! Since it is the first time installation and the OS cannot auto search PCI Information. Please leave the settings blank and complete the installation. Then try to configure board again after it rebootSave configuration changes? (Y/N) It is recommanded/needed that log in as a root to execute moxaadm. Changes maked here cannot be saved because the right is not enough. Please login as a root again to set bob手机在线登陆 Smartio Family Boards. PCI Boards SelectingEnter : Select Esc: Exit ----------- --------- The board #1 I/O address conflicts with the board #2 !The board #1 IRQ must be not equal to the board #2 !The board #1 IRQ must be not equal to the board #2 !Save configuration changes? (Y/N)/etc/conf/pack.d/c168/space.cMOXA Smartio Family configuration is changed or set.Modifying the system file. Please wait ...Copying driver files and configuring system. Please wait ...Idinstall error ! Abort install MOXA Smartio Family device driver.Please press any key to continue.c168Press any key to continue !Remove MOXA Smartio Family and modify system file ...c168Idinstall error ! Abort removal MOXA Smartio Family device driver.Please press any key to continue.MOXA Smartio Family device driver is removed.Please reinstall, if necessary.Removal MOXA Smartio Family completed. Press any key to continue !MaxCardunsigned shortirqOOOOc168_PciInfoc168_boardTypec168_HighBaudratec168_RxFifoc168_TxFifo/etc/auth/system/ttysOpen file /etc/auth/system/ttys error !/etc/auth/system/devassignOpen file /etc/auth/system/devassign error !Do you want to rebuild the system NOW? Select Yes forrebuild the system NOW or No for next system reboot.(y/n)Rebuilding kernel. Please wait ...Rebuild kernel failed !!Please check the error message at /tmp/log.moxaPress any key to continueRebuilding kernel completed.The UNIX Operation Sysyem kernel will rebuild to include yourconfiguration changes during the next system reboot.Please remember to manually reboot your system later. Press any key to continue./etc/ap/chan.apOFFON /etc/conf/bin/idinstallOFFONoffrespawn/etc/conf/node.d/etc/conf/pack.d/etc/conf/sdevice.d/etc/conf/bin/idresadd/etc/conf/drvmap.d/c168/etc/inittab96002400NPmk Board No. Device Name non-MODEM MODEM getty Setting PgUp/PgDn :More Ports Enter :SelectF1 :Help Message Esc :Exit The getty setting definition label is defined at the file '/etc/ttydefs'. Please check this file for more detailed settings such as initial-flags and next label, etc. [ getty label definition ] getty label PgDn/PgUp for More set Cannot malloc memory ! Not Enough Memory !~ *:JZjzʇڇ *:JZjz( І ,A$ ; }.interp.hash.dynsym.dynstr.rel.bss.rel.plt.init.plt.text.fini.rodata.rodata1.data.data1.got.dynamic.bss.symtab.strtab.shstrtab.comment@(#)sgs-head:common/head/signal.h 1.5.6.6@(#)kern-i386:proc/signal.h 1.34$Header: $@(#)kern-i386:util/types.h 1.13$Header: $@(#)kern:fs/select.h 1.11$Header: $@(#)sgs-head:i386/head/string.h 1.7.4.11@(#)kern:proc/procset.h 1.13$Header: $@(#)kern:io/stropts.h 1.16$Header: $@(#)kern-i386at:io/conf.h 1.29$Header: $@(#)kern:svc/secsys.h 1.6$Header: $@(#)kern-i386:io/stropts_f.h 1.2$Header: $@(#)kern:util/sysmacros.h 1.18$Header: $@(#)kern-i386:util/param.h 1.40$Header: $@(#)kern-i386at:util/param_p.h 1.11$Header: $@(#)kern-i386:util/sysmacros_f.h 1.11$Header: $@(#)kern-i386:mem/immu.h 1.21$Header: $@(#)kern-i386at:io/ansi/at_ansi.h 1.7$Header: $@(#)kern-i386at:io/kd/kd.h 1.29$Header: $@(#)kern-i386at:io/ws/vt.h 1.8$Header: $@(#)sgs-head:common/head/termio.h 1.3.3.1@(#)kern:io/termio.h 1.7$Header: $@(#)kern:io/termios.h 1.10$Header: $@(#)kern:io/ttydev.h 1.4$Header: $@(#)sgs-head:common/head/unistd.h 1.48@(#)kern:proc/unistd.h 1.16$Header: $@(#)sgs-head:i386/head/stdlib.h 1.39.1.3@(#)sgs-head:i386/head/stdio.h 2.34.7.21@(#)sgs-head:common/head/fcntl.h 1.6.5.4@(#)kern:fs/fcntl.h 1.8$Header: $acomp: (CCS) 3.0 11/11/96 (e10)as: (CCS) 3.0 11/11/96 (e10)@(#)kern-i386:util/types.h 1.13$Header: $@(#)kern:fs/select.h 1.11$Header: $@(#)sgs-head:i386/head/string.h 1.7.4.11@(#)kern-i386at:io/ansi/at_ansi.h 1.7$Header: $@(#)kern-i386at:io/kd/kd.h 1.29$Header: $@(#)kern-i386at:io/ws/vt.h 1.8$Header: $@(#)sgs-head:common/head/termio.h 1.3.3.1@(#)kern:io/termio.h 1.7$Header: $@(#)kern:io/termios.h 1.10$Header: $@(#)kern:io/ttydev.h 1.4$Header: $@(#)sgs-head:common/head/unistd.h 1.48@(#)kern:proc/unistd.h 1.16$Header: $@(#)sgs-head:i386/head/stdlib.h 1.39.1.3@(#)sgs-head:i386/head/stdio.h 2.34.7.21@(#)sgs-head:common/head/fcntl.h 1.6.5.4@(#)kern:fs/fcntl.h 1.8$Header: $@(#)kern:io/stropts.h 1.16$Header: $@(#)kern-i386at:io/conf.h 1.29$Header: $@(#)kern:svc/secsys.h 1.6$Header: $@(#)kern-i386:io/stropts_f.h 1.2$Header: $acomp: (CCS) 3.0 11/11/96 (e10)as: (CCS) 3.0 11/11/96 (e10)@(#)kern-i386:util/types.h 1.13$Header: $@(#)kern:fs/select.h 1.11$Header: $@(#)sgs-head:i386/head/string.h 1.7.4.11@(#)kern-i386at:io/ansi/at_ansi.h 1.7$Header: $@(#)kern-i386at:io/kd/kd.h 1.29$Header: $@(#)kern-i386at:io/ws/vt.h 1.8$Header: $@(#)sgs-head:common/head/termio.h 1.3.3.1@(#)kern:io/termio.h 1.7$Header: $@(#)kern:io/termios.h 1.10$Header: $@(#)kern:io/ttydev.h 1.4$Header: $@(#)sgs-head:common/head/unistd.h 1.48@(#)kern:proc/unistd.h 1.16$Header: $@(#)sgs-head:i386/head/stdlib.h 1.39.1.3@(#)sgs-head:i386/head/stdio.h 2.34.7.21@(#)sgs-head:common/head/fcntl.h 1.6.5.4@(#)kern:fs/fcntl.h 1.8$Header: $@(#)kern:io/stropts.h 1.16$Header: $@(#)kern-i386at:io/conf.h 1.29$Header: $@(#)kern:svc/secsys.h 1.6$Header: $@(#)kern-i386:io/stropts_f.h 1.2$Header: $acomp: (CCS) 3.0 11/11/96 (e10)as: (CCS) 3.0 11/11/96 (e10)@(#)kern-i386:util/types.h 1.13$Header: $@(#)kern:fs/select.h 1.11$Header: $@(#)sgs-head:i386/head/string.h 1.7.4.11@(#)kern-i386at:io/ansi/at_ansi.h 1.7$Header: $@(#)kern-i386at:io/kd/kd.h 1.29$Header: $@(#)kern-i386at:io/ws/vt.h 1.8$Header: $@(#)sgs-head:common/head/termio.h 1.3.3.1@(#)kern:io/termio.h 1.7$Header: $@(#)kern:io/termios.h 1.10$Header: $@(#)kern:io/ttydev.h 1.4$Header: $@(#)sgs-head:common/head/unistd.h 1.48@(#)kern:proc/unistd.h 1.16$Header: $@(#)sgs-head:i386/head/stdlib.h 1.39.1.3@(#)sgs-head:i386/head/stdio.h 2.34.7.21@(#)sgs-head:common/head/fcntl.h 1.6.5.4@(#)kern:fs/fcntl.h 1.8$Header: $@(#)kern:io/stropts.h 1.16$Header: $@(#)kern-i386at:io/conf.h 1.29$Header: $@(#)kern:svc/secsys.h 1.6$Header: $@(#)kern-i386:io/stropts_f.h 1.2$Header: $@(#)kern:svc/errno.h 1.13$Header: $acomp: (CCS) 3.0 11/11/96 (e10)as: (CCS) 3.0 11/11/96 (e10)@(#)sgs-head:common/head/signal.h 1.5.6.6@(#)kern-i386:proc/signal.h 1.34$Header: $@(#)kern-i386:util/types.h 1.13$Header: $@(#)kern:fs/select.h 1.11$Header: $@(#)sgs-head:i386/head/string.h 1.7.4.11@(#)kern:proc/procset.h 1.13$Header: $@(#)kern-i386at:io/ansi/at_ansi.h 1.7$Header: $@(#)kern-i386at:io/kd/kd.h 1.29$Header: $@(#)kern-i386at:io/ws/vt.h 1.8$Header: $@(#)sgs-head:common/head/termio.h 1.3.3.1@(#)kern:io/termio.h 1.7$Header: $@(#)kern:io/termios.h 1.10$Header: $@(#)kern:io/ttydev.h 1.4$Header: $@(#)sgs-head:common/head/unistd.h 1.48@(#)kern:proc/unistd.h 1.16$Header: $@(#)sgs-head:i386/head/stdlib.h 1.39.1.3@(#)sgs-head:i386/head/stdio.h 2.34.7.21@(#)sgs-head:common/head/fcntl.h 1.6.5.4@(#)kern:fs/fcntl.h 1.8$Header: $@(#)kern:io/stropts.h 1.16$Header: $@(#)kern-i386at:io/conf.h 1.29$Header: $@(#)kern:svc/secsys.h 1.6$Header: $@(#)kern-i386:io/stropts_f.h 1.2$Header: $acomp: (CCS) 3.0 11/11/96 (e10)as: (CCS) 3.0 11/11/96 (e10)@(#)kern-i386:util/types.h 1.13$Header: $@(#)kern:fs/select.h 1.11$Header: $@(#)sgs-head:i386/head/string.h 1.7.4.11@(#)kern-i386at:io/ansi/at_ansi.h 1.7$Header: $@(#)kern-i386at:io/kd/kd.h 1.29$Header: $@(#)kern-i386at:io/ws/vt.h 1.8$Header: $@(#)sgs-head:common/head/termio.h 1.3.3.1@(#)kern:io/termio.h 1.7$Header: $@(#)kern:io/termios.h 1.10$Header: $@(#)kern:io/ttydev.h 1.4$Header: $@(#)sgs-head:common/head/unistd.h 1.48@(#)kern:proc/unistd.h 1.16$Header: $@(#)sgs-head:i386/head/stdlib.h 1.39.1.3@(#)sgs-head:i386/head/stdio.h 2.34.7.21@(#)sgs-head:common/head/fcntl.h 1.6.5.4@(#)kern:fs/fcntl.h 1.8$Header: $@(#)kern:io/stropts.h 1.16$Header: $@(#)kern-i386at:io/conf.h 1.29$Header: $@(#)kern:svc/secsys.h 1.6$Header: $@(#)kern-i386:io/stropts_f.h 1.2$Header: $acomp: (CCS) 3.0 11/11/96 (e10)as: (CCS) 3.0 11/11/96 (e10)@(#)kern-i386:util/types.h 1.13$Header: $@(#)kern:fs/select.h 1.11$Header: $@(#)sgs-head:i386/head/string.h 1.7.4.11@(#)kern-i386at:io/ansi/at_ansi.h 1.7$Header: $@(#)kern-i386at:io/kd/kd.h 1.29$Header: $@(#)kern-i386at:io/ws/vt.h 1.8$Header: $@(#)sgs-head:common/head/termio.h 1.3.3.1@(#)kern:io/termio.h 1.7$Header: $@(#)kern:io/termios.h 1.10$Header: $@(#)kern:io/ttydev.h 1.4$Header: $@(#)sgs-head:common/head/unistd.h 1.48@(#)kern:proc/unistd.h 1.16$Header: $@(#)sgs-head:i386/head/stdlib.h 1.39.1.3@(#)sgs-head:i386/head/stdio.h 2.34.7.21@(#)sgs-head:common/head/fcntl.h 1.6.5.4@(#)kern:fs/fcntl.h 1.8$Header: $@(#)kern:io/stropts.h 1.16$Header: $@(#)kern-i386at:io/conf.h 1.29$Header: $@(#)kern:svc/secsys.h 1.6$Header: $@(#)kern-i386:io/stropts_f.h 1.2$Header: $acomp: (CCS) 3.0 11/11/96 (e10)as: (CCS) 3.0 11/11/96 (e10)@(#)kern-i386:util/types.h 1.13$Header: $@(#)kern:fs/select.h 1.11$Header: $@(#)sgs-head:i386/head/string.h 1.7.4.11@(#)kern-i386at:io/ansi/at_ansi.h 1.7$Header: $@(#)kern-i386at:io/kd/kd.h 1.29$Header: $@(#)kern-i386at:io/ws/vt.h 1.8$Header: $@(#)sgs-head:common/head/termio.h 1.3.3.1@(#)kern:io/termio.h 1.7$Header: $@(#)kern:io/termios.h 1.10$Header: $@(#)kern:io/ttydev.h 1.4$Header: $@(#)sgs-head:common/head/unistd.h 1.48@(#)kern:proc/unistd.h 1.16$Header: $@(#)sgs-head:i386/head/stdlib.h 1.39.1.3@(#)sgs-head:i386/head/stdio.h 2.34.7.21@(#)sgs-head:common/head/fcntl.h 1.6.5.4@(#)kern:fs/fcntl.h 1.8$Header: $@(#)kern:io/stropts.h 1.16$Header: $@(#)kern-i386at:io/conf.h 1.29$Header: $@(#)kern:svc/secsys.h 1.6$Header: $@(#)kern-i386:io/stropts_f.h 1.2$Header: $acomp: (CCS) 3.0 11/11/96 (e10)as: (CCS) 3.0 11/11/96 (e10)@(#)kern-i386:util/types.h 1.13$Header: $@(#)kern:fs/select.h 1.11$Header: $@(#)sgs-head:i386/head/string.h 1.7.4.11@(#)kern-i386at:io/ansi/at_ansi.h 1.7$Header: $@(#)kern-i386at:io/kd/kd.h 1.29$Header: $@(#)kern-i386at:io/ws/vt.h 1.8$Header: $@(#)sgs-head:common/head/termio.h 1.3.3.1@(#)kern:io/termio.h 1.7$Header: $@(#)kern:io/termios.h 1.10$Header: $@(#)kern:io/ttydev.h 1.4$Header: $@(#)sgs-head:common/head/unistd.h 1.48@(#)kern:proc/unistd.h 1.16$Header: $@(#)sgs-head:i386/head/stdlib.h 1.39.1.3@(#)sgs-head:i386/head/stdio.h 2.34.7.21@(#)sgs-head:common/head/fcntl.h 1.6.5.4@(#)kern:fs/fcntl.h 1.8$Header: $@(#)kern:io/stropts.h 1.16$Header: $@(#)kern-i386at:io/conf.h 1.29$Header: $@(#)kern:svc/secsys.h 1.6$Header: $@(#)kern-i386:io/stropts_f.h 1.2$Header: $acomp: (CCS) 3.0 11/11/96 (e10)as: (CCS) 3.0 11/11/96 (e10)@(#)kern-i386:util/types.h 1.13$Header: $@(#)kern:fs/select.h 1.11$Header: $@(#)sgs-head:i386/head/string.h 1.7.4.11@(#)kern-i386at:io/ansi/at_ansi.h 1.7$Header: $@(#)kern-i386at:io/kd/kd.h 1.29$Header: $@(#)kern-i386at:io/ws/vt.h 1.8$Header: $@(#)sgs-head:common/head/termio.h 1.3.3.1@(#)kern:io/termio.h 1.7$Header: $@(#)kern:io/termios.h 1.10$Header: $@(#)kern:io/ttydev.h 1.4$Header: $@(#)sgs-head:common/head/unistd.h 1.48@(#)kern:proc/unistd.h 1.16$Header: $@(#)sgs-head:i386/head/stdlib.h 1.39.1.3@(#)sgs-head:i386/head/stdio.h 2.34.7.21@(#)sgs-head:common/head/fcntl.h 1.6.5.4@(#)kern:fs/fcntl.h 1.8$Header: $@(#)kern:io/stropts.h 1.16$Header: $@(#)kern-i386at:io/conf.h 1.29$Header: $@(#)kern:svc/secsys.h 1.6$Header: $@(#)kern-i386:io/stropts_f.h 1.2$Header: $acomp: (CCS) 3.0 11/11/96 (e10)as: (CCS) 3.0 11/11/96 (e10)@(#)kern-i386:util/types.h 1.13$Header: $@(#)kern:fs/select.h 1.11$Header: $@(#)sgs-head:i386/head/string.h 1.7.4.11@(#)kern-i386at:io/ansi/at_ansi.h 1.7$Header: $@(#)kern-i386at:io/kd/kd.h 1.29$Header: $@(#)kern-i386at:io/ws/vt.h 1.8$Header: $@(#)sgs-head:common/head/termio.h 1.3.3.1@(#)kern:io/termio.h 1.7$Header: $@(#)kern:io/termios.h 1.10$Header: $@(#)kern:io/ttydev.h 1.4$Header: $@(#)sgs-head:common/head/unistd.h 1.48@(#)kern:proc/unistd.h 1.16$Header: $@(#)sgs-head:i386/head/stdlib.h 1.39.1.3@(#)sgs-head:i386/head/stdio.h 2.34.7.21@(#)sgs-head:common/head/fcntl.h 1.6.5.4@(#)kern:fs/fcntl.h 1.8$Header: $acomp: (CCS) 3.0 11/11/96 (e10)optim: (CCS) 3.0 11/11/96 (e10)as: (CCS) 3.0 11/11/96 (e10)@(#)kern-i386:util/types.h 1.13$Header: $@(#)kern:fs/select.h 1.11$Header: $@(#)sgs-head:i386/head/string.h 1.7.4.11@(#)kern-i386at:io/ansi/at_ansi.h 1.7$Header: $@(#)kern-i386at:io/kd/kd.h 1.29$Header: $@(#)kern-i386at:io/ws/vt.h 1.8$Header: $@(#)sgs-head:common/head/termio.h 1.3.3.1@(#)kern:io/termio.h 1.7$Header: $@(#)kern:io/termios.h 1.10$Header: $@(#)kern:io/ttydev.h 1.4$Header: $@(#)sgs-head:common/head/unistd.h 1.48@(#)kern:proc/unistd.h 1.16$Header: $@(#)sgs-head:i386/head/stdlib.h 1.39.1.3@(#)sgs-head:i386/head/stdio.h 2.34.7.21@(#)sgs-head:common/head/fcntl.h 1.6.5.4@(#)kern:fs/fcntl.h 1.8$Header: $acomp: (CCS) 3.0 11/11/96 (e10)optim: (CCS) 3.0 11/11/96 (e10)as: (CCS) 3.0 11/11/96 (e10)@(#)kern-i386:util/types.h 1.13$Header: $@(#)kern:fs/select.h 1.11$Header: $@(#)sgs-head:i386/head/string.h 1.7.4.11@(#)kern-i386at:io/ansi/at_ansi.h 1.7$Header: $@(#)kern-i386at:io/kd/kd.h 1.29$Header: $@(#)kern-i386at:io/ws/vt.h 1.8$Header: $@(#)sgs-head:common/head/termio.h 1.3.3.1@(#)kern:io/termio.h 1.7$Header: $@(#)kern:io/termios.h 1.10$Header: $@(#)kern:io/ttydev.h 1.4$Header: $@(#)sgs-head:common/head/unistd.h 1.48@(#)kern:proc/unistd.h 1.16$Header: $@(#)sgs-head:i386/head/stdlib.h 1.39.1.3@(#)sgs-head:i386/head/stdio.h 2.34.7.21@(#)sgs-head:common/head/fcntl.h 1.6.5.4@(#)kern:fs/fcntl.h 1.8$Header: $acomp: (CCS) 3.0 11/11/96 (e10)optim: (CCS) 3.0 11/11/96 (e10)as: (CCS) 3.0 11/11/96 (e10)@(#)kern-i386:util/types.h 1.13$Header: $@(#)kern:fs/select.h 1.11$Header: $@(#)sgs-head:i386/head/string.h 1.7.4.11@(#)kern-i386at:io/ansi/at_ansi.h 1.7$Header: $@(#)kern-i386at:io/kd/kd.h 1.29$Header: $@(#)kern-i386at:io/ws/vt.h 1.8$Header: $@(#)sgs-head:common/head/termio.h 1.3.3.1@(#)kern:io/termio.h 1.7$Header: $@(#)kern:io/termios.h 1.10$Header: $@(#)kern:io/ttydev.h 1.4$Header: $@(#)sgs-head:common/head/unistd.h 1.48@(#)kern:proc/unistd.h 1.16$Header: $@(#)sgs-head:i386/head/stdlib.h 1.39.1.3@(#)sgs-head:i386/head/stdio.h 2.34.7.21@(#)sgs-head:common/head/fcntl.h 1.6.5.4@(#)kern:fs/fcntl.h 1.8$Header: $acomp: (CCS) 3.0 11/11/96 (e10)optim: (CCS) 3.0 11/11/96 (e10)as: (CCS) 3.0 11/11/96 (e10)@(#)kern-i386:util/types.h 1.13$Header: $@(#)kern:fs/select.h 1.11$Header: $@(#)sgs-head:i386/head/string.h 1.7.4.11@(#)kern-i386at:io/ansi/at_ansi.h 1.7$Header: $@(#)kern-i386at:io/kd/kd.h 1.29$Header: $@(#)kern-i386at:io/ws/vt.h 1.8$Header: $@(#)sgs-head:common/head/termio.h 1.3.3.1@(#)kern:io/termio.h 1.7$Header: $@(#)kern:io/termios.h 1.10$Header: $@(#)kern:io/ttydev.h 1.4$Header: $@(#)sgs-head:common/head/unistd.h 1.48@(#)kern:proc/unistd.h 1.16$Header: $@(#)sgs-head:i386/head/stdlib.h 1.39.1.3@(#)sgs-head:i386/head/stdio.h 2.34.7.21@(#)sgs-head:common/head/fcntl.h 1.6.5.4@(#)kern:fs/fcntl.h 1.8$Header: $acomp: (CCS) 3.0 11/11/96 (e10)optim: (CCS) 3.0 11/11/96 (e10)as: (CCS) 3.0 11/11/96 (e10)@(#)kern-i386:util/types.h 1.13$Header: $@(#)kern:fs/select.h 1.11$Header: $@(#)sgs-head:i386/head/string.h 1.7.4.11@(#)kern-i386at:io/ansi/at_ansi.h 1.7$Header: $@(#)kern-i386at:io/kd/kd.h 1.29$Header: $@(#)kern-i386at:io/ws/vt.h 1.8$Header: $@(#)sgs-head:common/head/termio.h 1.3.3.1@(#)kern:io/termio.h 1.7$Header: $@(#)kern:io/termios.h 1.10$Header: $@(#)kern:io/ttydev.h 1.4$Header: $@(#)sgs-head:common/head/unistd.h 1.48@(#)kern:proc/unistd.h 1.16$Header: $@(#)sgs-head:i386/head/stdlib.h 1.39.1.3@(#)sgs-head:i386/head/stdio.h 2.34.7.21@(#)sgs-head:common/head/fcntl.h 1.6.5.4@(#)kern:fs/fcntl.h 1.8$Header: $acomp: (CCS) 3.0 11/11/96 (e10)optim: (CCS) 3.0 11/11/96 (e10)as: (CCS) 3.0 11/11/96 (e10)@(#)kern-i386:util/types.h 1.13$Header: $@(#)kern:fs/select.h 1.11$Header: $@(#)sgs-head:i386/head/string.h 1.7.4.11@(#)kern-i386at:io/ansi/at_ansi.h 1.7$Header: $@(#)kern-i386at:io/kd/kd.h 1.29$Header: $@(#)kern-i386at:io/ws/vt.h 1.8$Header: $@(#)sgs-head:common/head/termio.h 1.3.3.1@(#)kern:io/termio.h 1.7$Header: $@(#)kern:io/termios.h 1.10$Header: $@(#)kern:io/ttydev.h 1.4$Header: $@(#)sgs-head:common/head/unistd.h 1.48@(#)kern:proc/unistd.h 1.16$Header: $@(#)sgs-head:i386/head/stdlib.h 1.39.1.3@(#)sgs-head:i386/head/stdio.h 2.34.7.21@(#)sgs-head:common/head/fcntl.h 1.6.5.4@(#)kern:fs/fcntl.h 1.8$Header: $acomp: (CCS) 3.0 11/11/96 (e10)as: (CCS) 3.0 11/11/96 (e10)@(#)kern-i386:util/types.h 1.13$Header: $@(#)kern:fs/select.h 1.11$Header: $@(#)sgs-head:i386/head/string.h 1.7.4.11@(#)kern-i386at:io/ansi/at_ansi.h 1.7$Header: $@(#)kern-i386at:io/kd/kd.h 1.29$Header: $@(#)kern-i386at:io/ws/vt.h 1.8$Header: $@(#)sgs-head:common/head/termio.h 1.3.3.1@(#)kern:io/termio.h 1.7$Header: $@(#)kern:io/termios.h 1.10$Header: $@(#)kern:io/ttydev.h 1.4$Header: $@(#)sgs-head:common/head/unistd.h 1.48@(#)kern:proc/unistd.h 1.16$Header: $@(#)sgs-head:i386/head/stdlib.h 1.39.1.3@(#)sgs-head:i386/head/stdio.h 2.34.7.21@(#)sgs-head:common/head/fcntl.h 1.6.5.4@(#)kern:fs/fcntl.h 1.8$Header: $acomp: (CCS) 3.0 11/11/96 (e10)as: (CCS) 3.0 11/11/96 (e10)@(#)kern-i386:util/types.h 1.13$Header: $@(#)kern:fs/select.h 1.11$Header: $@(#)sgs-head:i386/head/string.h 1.7.4.11@(#)kern-i386at:io/ansi/at_ansi.h 1.7$Header: $@(#)kern-i386at:io/kd/kd.h 1.29$Header: $@(#)kern-i386at:io/ws/vt.h 1.8$Header: $@(#)sgs-head:common/head/termio.h 1.3.3.1@(#)kern:io/termio.h 1.7$Header: $@(#)kern:io/termios.h 1.10$Header: $@(#)kern:io/ttydev.h 1.4$Header: $@(#)sgs-head:common/head/unistd.h 1.48@(#)kern:proc/unistd.h 1.16$Header: $@(#)sgs-head:i386/head/stdlib.h 1.39.1.3@(#)sgs-head:i386/head/stdio.h 2.34.7.21@(#)sgs-head:common/head/fcntl.h 1.6.5.4@(#)kern:fs/fcntl.h 1.8$Header: $acomp: (CCS) 3.0 11/11/96 (e10)as: (CCS) 3.0 11/11/96 (e10)@(#)sgs-head:common/head/unistd.h 1.48@(#)kern-i386:util/types.h 1.13$Header: $@(#)kern:fs/select.h 1.11$Header: $@(#)sgs-head:i386/head/string.h 1.7.4.11@(#)kern:proc/unistd.h 1.16$Header: $@(#)sgs-head:common/head/fcntl.h 1.6.5.4@(#)kern:fs/fcntl.h 1.8$Header: $acomp: (CCS) 3.0 11/11/96 (e10)as: (CCS) 3.0 11/11/96 (e10)acomp: (CCS) 3.0 11/11/96 (e10)as: (CCS) 3.0 11/11/96 (e10)@(#)libc-i386:gen/sh_data.c 1.3acomp: (CCS) 3.0 11/11/96 (e10)optim: (CCS) 3.0 11/11/96 (e10)i386as: (CCS) 3.0 11/11/96 (e10) ld : (CCS) 3.0 11/11/96 (e10)Ԁ < $$; ( 1І7Ԇ<iB,A,H0A0P@C@hYd_kf}k~t~(?І./moxaadm000075500000000000003000003556601010167056000124460ustar00rootsys00000420001001ELF44 (4444  0!0tDe/usr/lib/libc.so.1%*%$# )( &  ! "'8 Xȇl( !L&h+ 4d9@F0M8T[bxkhprzXH(  H8؈؇dx0Ȉ$+<__iobopenreadmalloc_cleanup_endtime_environfreeperrorlseek_etextatexit_edatasignal__filbufsystemttynamecloseexitwritestrcmperrno_pollstrcpy_lib_version_mcountstrlen__fpstart_GLOBAL_OFFSET_TABLE_geteuidsscanfstrncpysprintfprintf_DYNAMICstrncmpioctl_initgetenvtoupper/usr/lib/libc.so.18 #" &   ( %!)5%%h%h%h%h%h %h(%h0%h8p%h@`%hHP%hP@%hX0%h` %hh%hp%hx%h%h%h%h%h%h%h%hp%h`%hP% h@%h0%h %hjjR(t h(thEu TRU RP PjÐo3hY=uhYjYIu;hh$hTYhl}YhrYjJYj j8j j4Ejj%ju(j j5>YP5)jjj j#5YP5jj‘nI*EthίYNi>\U0ngh葯YP=Pt9jj6+hYh8wYhplYXvohjj7 h6Y{G蔱ƃ/012Htt=tHtp=tFI^_UWVvgjj=~nj%j(hYhYhYjj<jYU딋3hWG|NE=~ hY hYs.u"Y=~EjEP5 Sn3hWG|_U WY%3hWkG|u _UWՍvБ@%Б@ ,jjΎ規Бp Бp豎hБpБp БpБp脖jjOjjtG%G ,w wVj ww ww@jWEjjNjjG%G ,jP}Yh$h(Vz VjW֣ VuY^_UWVU+t =u5ܵYt IUЋzjjFmuh`EP EPYhEPEPYuhEP EPxYhmYUT{>u]VY+E}}Eu3 E E FG;|[^_UPWVS빐f3;f}f}DƇLf4f6G|3ƇƇPƇpG |_UW딋EEEjh܎E|CEE"EEE`EPhSu EuY}t \ \}u<=u3jj7hYh,Yk&U (vq`X3 8F`;|36Ɔ<ԑtdԑtXԑtLԑt@ԑ t4ԑ t(ԑ tԑ tԑkƆ3E4b;,6d;}t}t} t}ts}t_}tK}t:}tn)} t]Yԑ w$<8t7<<8 Xffu}G`;} =X<<uuf4f6<<uu fuF^_U WV33VW%_^3xƇԑƇԑzƇԑqƇԑhƇԑ_ƇԑVƇԑMƇԑ DƇԑ ;Ƈԑ 2Ƈԑ )Ƈԑ Ƈԑ}Dw$ȉԑƇGR EheY QC "te^, tNhY 2 $rt t= t=t=Ut}Ojj4RhHYhtYhYhYh}Y3.Eju> hE@PEju hE@PEjuhE@PEjuDžPh YE} jY9TPuTPzY33P=T{u=U{uDžP,PuB=T{u3GCGTT;} =T}uDDžP3PuH=T{u9GCGTP;} =T}uƄPDžP3PuE=T{u9GCGT;} =T}uƄDžP3BPu9=T{u/GCGT;} =T}uƄ G;PPhEPff4ff6PPhPPnff8ff:PPhȐP2ff<ff>PPhАPff@ffBh0 YE} j(YTPuTPY334=T{u)GCGTT;} =T}uDG;|ȍPPPPhؐEP1ffDffFffHffJh@,YE} jIYTPuTP Y334=T{u)GCGTT;} =T}uDG;|ȍPPPPhEPRLMNOhTUYE} jrYTPE@PTP4YPPPPPPPPhTP(TPE@PfTPY PPPPPPPPh(TP'(TPE@PTPRY,P(P$P PPPPPhPTP(TPE@PTPYLPHPDP@PEfEDfu&}ueEE"}ufEF}ugEGhEHE,E#EEEDw$3ENjk PGPPk  4lGPPhpEP EPYk PGPEPk 4lGPEPhEP< EPYG;}HE}hYhYh8Yht}YhrYhȓgY[^_UpWVSLvYIuNhhh EhEPEP1YPEPuS uYUX럐FI6hh5U h EP"EPYPEPW hTEPEPYPEPW hpEPEPtYPEPW hEPEPKYPEPWo hEP~EP"YPEPWF hؔEPUEPYPEPW hEP,EPYPEPW hEPEPYPEPW h8EPEP~YPEPW hXEPEPUYPEPWy hxEPEP,YPEPWP hEP_EPYPEPW' hEP6EPYPEPW WUY_UTW=hh5 hؕEPEP{YPEPS hEPEPRYPEPSv hEPEP)YPEPSM hEP\EPYPEPS$ h$EP3EPYPEPS h<EP EPYPEPS hTEPEPYPEPS hpEPEP\YPEPS hEPEP3YPEPSW hEPfEP YPEPS. hEP=EPYPEPS hܖEPEPYPEPS hEPEPYPEPS hEPEPfYPEPS h0EPEP=YPEPSa hLEPpEPYPEPS8 hhEPGEPYPEPS hEPEPYPEPS PPPPhEPEPyYPEPS 55 55hEPEP8YPEPS\ hEPkEPYPEPS3 3h4EP;EPYPEPS 3wu0u+ƍ84dh8EP )ƍ84dh@EP EPeYPEPS G|hHEPEP6YPEPSZ F$hLEP_EPYPEPS' hpEP6EPYPEPS hEP EPYPEPS hEPEPYPEPS BP@P>P<P:P8P6P4PhEP{(EPYPEPSC JPHPFPDPh EP2EPYPEPS OPNPMPLPhDEPEPYPEPS hEPEPdYPEPS 3hEPEP4YPEPSX 3ku*u%ƍ8PPhEPG #ƍ8PPhEP" EPYPEPS G|hEPEPYPEPS F0hęEPEPdYPEPS 3hEPEP4YPEPSX 3ku*u%ƍ8pPhEPG #ƍ8pPhEP" EPYPEPS G|hEPEPYPEPS F0SY[^_UTWVShEPIt5thEP hhEP hEPXEPYPEPS 3 fuDfuu EeEE&u EfEFu EgEGEhEHE)E EuDw$d3ƍPGPEPh,EPEP6YPEPSZ ƍ8PGPEPh@EPOEPYPEPS G;}uFSZY[^_U\WVSWIt15菴Yt!5hTEP EPVYhpEPIt5|hxEP hhEP 3fDftG|uJIthEPIhEP6EPYPEPV 3}f}Dfumu .PhEP .PhܚEP }D w$EPUYPEPVy GzVYIt15Yt!5hEPX EPY[^_UTWVS93hlɳY}hY3g5PhEP EP芵Yt7WY}tu}tu}yuW׶YEPjWֵ ҃uF|3fuDfuw%uDw$3AGP5Ph EPBEPEPh,EP)EPqYG;|FpjγY[^_UdWVS$h聲Y}h誱Y375PhHEP貿 EPBYtW謵YuF|3fuDfu%uDw$43_GP5PhPEP'EPEPgE EEPEPEPh\EPEP8YG;|FOj蘄Y[^_UtWVSh_2VJ6Y2+裍t׃ t= t=t=Pt=Utt迼PhȮYytYt ntNu߃ytYu=Pu Hj=PtLytYuBjj4hlYh,aYhdVYhKYN萭VW%_^u+Y3^_UWV3f]DfuvL4;tkÍ3IP8;tCpX;t*8tFG|Cq3[^_UWVSV2EPVY3iT  iT ȶLiTD iTD3piT@PfYiTD3iTD8 G;<|iTD8C|F,3!DŽHDŽhF|E[^_UWVSv3sDW1PԑԑuBhh ǀDŽLf<}ԑt`ԑtTԑtHԑt<ԑ t0ԑ t$ԑ tԑ t ԑuh.h"}Ph ǀDŽLLGǀThض菓YiTG|hضeY_UW#33"f}DfuLLG|_UWċ@]3Ef]Dfu%3f}DftG|uߋÍƙ5$ԑ44PpPPPh]D4XYE^EmCf}DftߋǍO}CCf}DftߋǍG|E=t=Ut=Vt}[^_UWVSEEkXCuK54?YEhSuI 3kX?YG;|HEJ~N3kXYG;|I}F3kXYG;|(9#Et=t=Ut=Vt[^_UWVS#j jK>h蕤Yh<芤YHytYt ntNuyt YhxVYh HPlHPYh8HPKHP̴Yt-hYhYhYyG4Whh萴YhͣYh$Yhd贛YHt h衣Yh薣Y Gۥ_UWEEuh|EP| EPY}uY} jYEPjW^  jYjYh踦Y}hWYEP蛨Y}}u j賧Y?huKu)EPhEP³ EP YjvY_U|WSصjh蝳E)h0hxuܳ 3;} Gx uG3 }صCxG;} x:uK~ص tCصƄGEEE;} Gx:u;} Gx:u;} Gx:uG;} x uصGx 0#(;u膲Y[^_U WVS,] 35軤Y} E EE3uGPFPEPhȜEPܱEPY֍k D GPFPEPhԜEP袱EPY֍k DG|FPEPhEPfjk`PEP FPEPhEP6jk`PEP EFE9EjͤY[^_U\WVSuEt =u E=u E3W|}|S} EpPu߃}} E0Pʰu}G;=ص|}3ۃ}}E3!k \k Uk D k DG;} |[^_UWVS vu胤YE|zEPuE33Ju|=ou3 |=ru|*l8D=t 3۾CluG;}|;}tu33[^_U\WVS]EEujuEPuSE1EEPju 3@EEP葤Y3T=88t EG;|}t F;5ص|}t}t E kU 4 E kU tE@Euu$EF[^_U`WVSIIt=t5TYIt費 hYU믐h̹wYUv5)該Y聈UT3ۋE)E |)Ex)x} =t iTD Eu|)kU 4 YE|)kU t YE}}EPhiTUt u|)kU M |)kU MLBƃ == 2==P=U=V[^_UWVS ƣ)PSƣY3iT  iT LiTD iTD3iTDPiT@P%YiTD3iTD8 G;<|iTD8CsF[^_UPWVSv[3)P)RP) P)RP)4Pht諪 4h d苪 x)J9~ǀx)J9~ǀ|)k Ph DŽ|)k DPh 覩 DŽLG=x)}x);]=x)=x)h$tJh0d1DŽDŽLh@hL ߨGuh̹Y_UWvU`EEF<uN53YEh$Vu= 346YG;|:v^_UWVhL'rYUv5)YɂUz3E )E)E)E)E)E)50x =t=Ut=VttNj^_UWV|?)SY|3|iT $ |iT 8L|iTD |iTD3piT|@PdYiT|D3iT|D8 G;<|iT|D8C|F,31|DŽ|DŽt|DŽdC|`[^_UPWVS3M3|D):8G||D8)P)RP) P)RP3|d:8G ||d8|)2|)2JL|)2|i`T )I9L ~|i`TD '|i`TD |i `TD F=)});=)}m5)`hX|t薤hd|d}|DŽ|DŽL|DŽF|hL2Y^_UWVva3A)|8)|LB8)|8G=)});|_UW뙐@h舕YytYt ntNu߃ntNu H_UPW빐E}G;ص~ صEE+ljE3diTML C|h4 mYEtWuYh4}Y3EEO|3Gص;OuG|3G;صuGص;} صNjdi HTD EElr=AG3= t` v; t4='=UU =B =V}u蔙Yf|E[^_U WVS+ETSYd3diT , diT 0LdiTD3piTd((@P荘YiTdD3iTdD8 G;<(|iTdD8C|F?HE[^_UPWVS>u3.;5ص|)PhpdtZ FG|^_UWV뻐BEEj Y}hY,EhiY3AԽ@ԽVPjj,j%4{YP45ԽEF|DžhDžlpd׹3ddS}thPzYE8 8 phPjjpP8@PEiнT| u3uE6E-E$,EDw$Ћ2}~O~ EH;}Gu3EH;uS5,t uiнT| E=, },p=,~ ,WqEjY}JEjsY}#Eth,Y+,;,}YEPm+@-P= N=7=HH=Uu=VC댃}uYw[^_UWVS&nUEL SWYĽ3iT  iT LiTD iTD3piThh@P蹓YiTD3iTD8 G;TGE|EDjEP芐؅}m jEPr؅}&VhEP: EPYUEPhTSD f#EH,fEtfEt ,,,0f#E,,,fE@t ,,EEEEEEEPhSS裏 E,E,E,,,,EEEE,EPhSS: EEEE,EPhSS SY3[^_UxWVS h,hT58Ɏ =uh,AYC:DC `hAY(Ch@Yǃtt݃tuzC5hԞ蓍Y_UWChܞuY7#Бp БpB"j БpБp БpБp*jjOjj1G"G /w w!j ww ww)5jW7 j,j%!_UW;F=}-5hhEPEP~Y 3UTNh,hT58 =~+jhT5ӌ 5ՌYU뭍v=t hYUvS3,}>Hjj98~585FDžDž ׹38 8   PjjPVuN8 8⅔ 8}h8ۋY<<Eà uaJEED EED EEED 8EED +EED EED w$ EE\uEP5k ÃY^ ⅔t0jdEP5Ê E~uEP58 I5[^_UWVSv3 JHJHh$i|YIPhEP贉 EPD~Y|&PhEP葉 EPhЉG5uj1}Y [_UPWS7jhT58= EPhT58& fefMttfefEEEfeEPhT58ӈ Utv =~jhT5蛈 jhwujhT5c EPhT5L  tt =t@f}fefMttfefefEEEEPhT5誇 _UW  ,  ,  -  -  -  -  -EhDAY'JF u uu~YKt4=~+jhT5φ 5цY3_UPW8EjhE}tkEP芆kEPlEPYGD,GDN*GDO GDEtփtۃtGD,(GD51GD6'GD7GD8w$ČGD,GD1GD2ttGDEPhh,u=_UlWvF|EV|Yt3ti  ti $LtiD tiDtiDŽj|YtiD 3tiD8 G|tiD8FGtǀltǀH\tǀ$tǀ$tǀ$tǀXE^_UPWVEhh@tp調 tJttttt`t<}ttǀXtǀhD6HYU%3t@8 uƈG|Ƈt@ttttt`t<^_UWVSh,h蘂t -;t -;t}-;td-;tK-;t2-;t-;tU$mh4Y=6KZAh3Y/6*h3YO6ǃttсuT6_UW덐3@0f-G(|-hj3Y6hu6Y:t u:u h$3YlpVj(hf-{ h3YJ}=5[} 5lY 5= t=4^_UWVTvuUE33Ƈ- G(|XE3EE u0|9ӍDЋga|fӍDMA|FӍDɋ3,u!|@EEֈ-3 u!G(ctEEֈ-E[^_UWVSvF33Ƈ- G(|XE3EE u F-G(|[^_UPWVS뱍v5X3 FG(|5X33Yu>-PhEPx EFEF[$}EH;|,FC-FC(|G;}|[^_UWVSoEh8N.YEE E33EE u F-G(|Ɔ-jh-9x'h-hȟEPw EPiYEW#xY$2s= o=Q}B2}u[^_UXWVSv33ۿdEJ}pDžDžjjOjj@%@ ,j j,js jh- wEjjuw Ejjuxw jjT h-hJvP'Yu܍Ph |Pv|P vY@Ejj |Ph,u98~ 8EEE썅\׹3׹3u/hPuD$PhTQ}n,Ð8D$PhTR_nfL$fL$fL$ fL$fL$D$> 8D$D$PhTQn,ÃW 8}h8`n_;<@<ސWV8}h8#nFHNu.}h8mF@FtW^_;KPÐPW|$ ,u _Ð 8}h8m3<BB< @u9tj j ;j j_Ã;;W|$Vt$jh}F¹ >ƋG0ƙ0Lj0Ǚ0 8Rk ^_Ít&>;;D$Pй+PD$+P=Ð;ÃWVt$ S\$5> >|ƹ 0Gƹ G0GƇm|HGGƀƇ[ |KGËй 0ÙG0ƇmGWh8Rj [^_Ðù G0ƇmGƍt&S.> 0ffAfAfA|jh>8R/j [;3ɡ>W3V3SU$>$>.3D$x$$;$D$t$3=$t$tu$$u DŽ$t܅tEtj j j$P$RWD$P 8Q1i33$tG3ҽӁT G3\D$xFPT$x3ҊӋ\$t f$;tAtj j jS$Q$P;WD$P8Rht j j][^$>D$|>$ >_ >ĄÃT$L$ RQD$T$ PR;W>V5>S3ۋ\$ Ӌ=>f.|Cj L$逈L$jSjD$P8Pgj j85>[=>^_ÐjD$P8Ryg ׁT$ L$RQ3D$ PE Ðjh3ɡ>>L$   ы 8f.Q> g ;T$ L$RQ3D$ P ÐÃÃTW|$hV3SUGT$lD$cL$hRl$tQI3;~W33ҊD$cW;t1t-t j,%Pj,j%D$VP%3GFGTCG;݈D$c|tWD$xt#D$cuD4N< u~ D4N< uFD$ct j,%Pj,j%D$VP][^_T;t&jh8RejjjOjj ;;>WT$VL$S4UD$>D$>3ۋ|$0+l$,+GED$N.~'D$4T$(PL$(VUPQ|ƠC;|ًD$T$PRD$ PD$$+P][^_à W|$Vt$S }Ul$(+.ET$,\$0;3;~sCF}CAC;C}FCqCCCCCCC;CDqCDqCDqCDqCDqCDqCDqC|;}CqCFC;DqC|BD$,;t][^_ ÃW|$V3SUT$ D$$+L$+G@l$,D$~+EjUD$T$(PL$(2PQF;|][^_;W|$Vt$S3Ul$+T$+GF~DL$PQVhKC;|][^_;TW|$dVt$`SU+l$tG~m>>>>>33ؑB8BpB|jjOjj*БÁ ;;WؑؑST$L$t G88uG%G ,O WD$ \$ GD$++BAO$3ɉGW(>G,>G0>G4OO[_Ã;W|$>W(W$P>;vhp[CjD[ >QGPW ROQGPG(>G$Ѓ>_ÐW|$>G(G$ +ȉ QGPW ROQGP!_ÁW|$S\$WL$ʋT$$G؍DPT$$DPQS G PWRD$4T$<GDPD$4W‹T$8;tQSVR| C|;~'F+K@FXD$(@PjNQ V*][^_;;`mR+;;W`$tPHE;~؃|F\$0l$$uO+Ù+FD$$tF8T$$FD FV8DPT$4FDPFPVRD$HPD$

l$0 3;~\$8LQF8D8PSJ G;|F(D$83F03F,dP4mdF$;|$F4D$F8D$ D$8t$~$pXD$l$D$(Mu D$ T$;}]MQFjj,ЋD$DL$D@4PRURQD$HD$,EPFjj,ЋD$`H4QRMQP8T$,UT$UURwFEMt9D$ T$;T$8D$0PjR nD$ L$;}]EPFjj,ЋD$DH,QRMQP D$HD$,UREjj,ЋD$`H,QRET$hPR8L$AL$;xt$F(D$,FYPO0D$PDPWRFWL$LBPBD$TPGT$XPGT$TPD$\GT$XPGT$TPGT$D@,GP jGP RHQD$lG0TR=YPO0D$pDPWR8D$<=At2| % ' }lGHG}G HG3O ;G 3ۉD$G0D$D$0;t(D$TtT$@G0DW0L*;ut* D$C;|WD$@O0t?8‰D$THL$ @ ;|D$ D$TT$ W G0T$@  ][^_HÃ][^_H;= eG0T$@ t WG0T$@u@j;=Ct=BtTT$0G0 R ɍʍD T$@AG0D;| G0D G0T$@ GG W;|G3O ;G 3ۉD$G0D$D$0;t(D$LtT$@G0DW0L*;ut* D$C;|=DuAT$0G0 R ɍʍD JqG0T$@L$@DW0HD U][^D$0_HÁWh<0nWRjG hI h_Ã0W|$8VSD$8UG G 3ۉD$G0D$$D$8G0DGD$D$$O0T$83D$4;4ED0 D$4D$;}H W0DL(W0DL(W0DL(W0DLD$;|D$4;}O0 DD ED$4;|W0O0T$8+W0T$8l8@ T$(DP9+t$4}D$4W0l$4T$8;}tD$(4D$ O0T$ L$40@ D+ъt>O0T$ @ D+T$4ET2D*W0;|O0GL$8T`PW0GPD$$t2O0T$8jj,j%PLD$,QP>tD$$@t3O0T$8jj,j%PDPD$0R1;O0T$8jj,jPDPD$0RL$8G0ADL$8;YD$T$OD$dQDPAD$lPGT$pPGT$lB P t-D$T})][^_`ËD$`VD$T][^_`Ã_D$TGT$PPGT$LPGT$сŀ;~Ή$ $, ;%$ H$, $ ;~ۋ$, ;Ջ$4 ̓$, ҋE#у;$4 Ջҋ#эME #эME #эME #;y$, ;}-Ջ$4 ̓E#$, ;|Ӌ$8 =t $, ;P`$ ;>сŀ;~Ή$ $, ;%$ P$, $ ;~ۋ$, ;Ջ$8 ̓$, ҋE#у;$8 Ջҋ#эME #эME #эME #;y$, ;}-Ջ$8 ̓E#$, ;|][^3_ ÐJM3|$$ $ $ ;$0 $$ $4 $ $8 $ $0 =tt $$ $4 =tt $ $8 =tt $ $ $ fGff@t$$ ˋ FfGft$ ˋ FfGft$ ˋ FfGft%fGf@t$$ uF$$ fGft#fGft$ uF$ M][^_ Ã][^_ ;|$U3 fO][ ^_ 5I]qϓƓؓȶѶѶѶȶѶȶѶѶѶȶѶȶȶѶSZZZSZSLZZZSZLSSZLLnuuununguuunugnnugg            BIIIBIB;IIIBI;BBI;;{{{r{r{{rr'1\(l(|(())))*))clear Can not identify O.S. ! Copyright (C) %s MOXA Technologies Co., Ltd. All Rights Reserved. The MOXA Smartio Family device driver cannot be found ! Please reinstall MOXA Smartio Family device driver. clearrm /tmp/err > /dev/null 2>&1rm /tmp/er1 > /dev/null 2>&1MOXA Smartio Family Administration Utility (Ver. %s)%s device driver is not installed !For this function to be executable it is required that %s driver is installed first./dev/c168 Cannot Find Any %s Boards !!! I/O Addr=%8X, BusNo=%d, DevNo=%d%13X %3d %4d/%-4d Not Found Not Found Not Found %s%s %13X ---------- The board number %d I/O address is error !Board %d I/O address is not set!%s -a -k c168 > /tmp/err 2>/tmp/er1cp ../moxaadm /etc/conf/pack.d/c168 > /dev/null/etc/conf/bin/idmknod > /dev/null 2>&1%s -d c168 > /dev/null 2>&1%i%*c%i%*c%i%*c%i%d%*c%d%*c%d%*c%d%d%*c%d%d%*c%d%d%*c%d%d%*c%d%d%*c%d%*c%d%*c%d%d%*c%d%*c%d%*c%d%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%d%*c%dgrep -v 'tty[efghEFGH]' /etc/inittab > file.tmpecho 'm%c1%d:23:%s:/etc/getty tty%c1%d %s' >> file.tmpecho 'm%c1%d:23:%s:/etc/getty tty%c1%d %s' >> file.tmpcp file.tmp /etc/inittab > /dev/nullgrep 'tty[efghEFGH]' /etc/inittab > file.tmpgrep -v 'tty[efghEFGH]' /etc/conf/init.d/kernel > file.tmp1cat file.tmp >> file.tmp1cp file.tmp1 /etc/conf/init.d/kernel > /dev/null 2>&1rm -f file.tmp file.tmp1 > /dev/null 2>&1Masterc168 Ip iSHcf c168 0 0 0 256 -1 c168|Y|N|Communications Cards|bob手机在线登陆 Smartio Family |||bob手机在线登陆 Smartio Family| |PCI|0x13931680|bob手机在线登陆 C168H/PCI| |PCI|0x13931040|bob手机在线登陆 C104H/PCI| |PCI|0x13931020|bob手机在线登陆 CP102| |PCI|0x13931041|bob手机在线登陆 CP104U| |PCI|0x13931681|bob手机在线登陆 CP168U| |PCI|0x13931321|bob手机在线登陆 CP132U| |PCI|0x13931340|bob手机在线登陆 CP134U| |PCI|0x13931042|bob手机在线登陆 CP104JU| |PCI|0x13931180|bob手机在线登陆 CP118U| |PCI|0x13931021|bob手机在线登陆 CP102UL| |PCI|0x13931022|bob手机在线登陆 CP102U| #define MaxCard 4 #define MaxPort 32 #define ON 1 #define OFF 0 #define C168_BOARD 1 #define C104_BOARD 2 #define CI104J_BOARD 6 #define C168PCI_BOARD 7 #define C104PCI_BOARD 8 #define CP102_BOARD 9 #define CP104U_BOARD 13 #define CP168U_BOARD 14 #define CP132U_BOARD 15 #define CP134U_BOARD 16 #define CP104JU_BOARD 17 #define CP118U_BOARD 18 #define CP102UL_BOARD 19 #define CP102U_BOARD 20 unsigned short c168_baseAddr[MaxCard] = {0x%X, 0x%X, 0x%X, 0x%X}; int c168_irq[MaxCard] = {%d, %d, %d, %d}; char c168_RTSCTSflow[MaxPort] = { %s };%s, typedef struct c168_pci_devinfo { unsigned short BusNum; unsigned short DevNum; }C168_PCI_DevInfo; C168_PCI_DevInfo c168_PciInfo[MaxCard] = {{%d,%d},{%d,%d},{%d,%d},{%d,%d}}; unsigned short c168_boardType[MaxCard]={%d,%d,%d,%d}; unsigned char c168_HighBaudrate[MaxCard]={%d,%d,%d,%d}; unsigned char c168_RxFifo[MaxPort] = { %d };%d, unsigned char c168_TxFifo[MaxPort] = { %d };%d, Node%s/c168c168 c168 c 255 c168 tty%c1%d c %d c168 tty%c1%d c %d %s -d c168 > /dev/null 2>&1System%s/c168c168 Y 255 7 1 0 0 0 0 0 -1 c168 Y 255 7 1 0 0 0 0 0 c168 Y 255 7 4 %d 0 0 0 0 -1 c168 Y 255 7 1 %d 0 0 0 0 -1 %s c168 > /dev/null 2>&1tty%c??tty%c1%d%s:t_devname=%s:chkent: tty%c??tty%c1%d%s:v_devs=/dev/%s,/dev/%s:v_type=terminal:chkent: rm -f /dev/c168 > /dev/null 2>&1rm -f /dev/tty[eEfFgGhH]* > /dev/null 2>&1%s Not Found %13X/etc/conf/bin/idbuild > /tmp/log.moxa 2>&1/etc/conf/bin/idrebuild > /tmp/log.moxa 2>&1rm -f /tmp/log.moxa/etc/conf/mdevice.d/%sc168 %s -1 0 ldterm ttcompat /etc/ttydefstty%c%d%dtty%c%d%dtty%c%d?tty%c%d?%11s %c %13s%11s%11s -------- ----------- --------- --------- ------ --------- %12s%10s -------- %10d%8d%8d%10d%8d%8d -------- ------ ------ -------- ------ ------ Board #%d Type: %sTime[%02d:%02d:%02d] %-30s Interval %d sec <+/-> %10s %9s %9s %9s %9s %9s %9s %9s %9d %9d /dev/ Device %s open failclearclear%s open error(errno = %d) !clear tty%c??/dev/tty%c11Device=%s, Set=%s%-15sSending default pattern.Sending user defined pattern. Press CTRL-X to stop. %s, Length=%d, Count=%s %d%d%02xFile %s does not exist !Sending file %s. Press CTRL-X to stop. %s, FileLength=%d, SendLength=%s %d%dReceived data monitor: /dev/consoleERROR open tty errorTERMansivt100AT386scoansi Support terminal types: ansi, vt100 and AT386 Press ENTER to continue anyway or DEL to exit...Working buffer not enough [ Message ]BA0PLThDER0Enter:Select Esc:Exit(D\123456789abcdefgefghlt$0<HT`lx ,8DP\ht(41H2\3p456789011121$31   ,8DP\ht Դ    ,<` h  (<d  4lL,d D|$\<tT4lL,d D|$\<tTa12   $(,4H\p  Hp @LXl148e- 12 3,485D6P7\8h9tabcdefg- de-  4.DT  dhlptx|)L 0@P `l 4Pl 0@xXp @XP f- 2Kn,X` %K8<@DHLPTX`hpx,     $( ,0 4<DL `cxmmxxxxxxxxx;yyHDEF  BPQTUd(*"b&`$fAAPUTEQDD"33?? Basic configuration Advanced configuration Port monitoring Terminal emulation Driver removal Exit MAIN MENUSystem checking and initializingPlease wait2004 *************************************************** Only root can remove the bob手机在线登陆 Smartio Family Boards *************************************************** Build Date7-23-2004Any key to send DEL key, DEL to abort program.SIGNAL: any key to continue, DEL to abort program.1.7/etc/conf/cf.d/init.base/etc/conf/init.d/kernel/etc/inittabmoxaadmmoxaload/dev/c168The OS does not support !NONEC168 ISA SeriesC104 ISA SeriesC102 ISACI-132 CI-134 CI-104J SeriesC168 PCI SeriesC104 PCI SeriesCP-102 CP-104J CP-132 CP-134 CP-104U CP-168U CP-132U CP-134U CP-104JUCP-118U CP-102ULCP-102U ttya11/A11ttya12/A12ttya13/A13ttya14/A14ttya15/A15ttya16/A16ttya17/A17ttya18/A18ttya21/A21ttya22/A22ttya23/A23ttya24/A24ttya25/A25ttya26/A26ttya27/A27ttya28/A28ttya31/A31ttya32/A32ttya33/A33ttya34/A34ttya35/A35ttya36/A36ttya37/A37ttya38/A38ttya41/A41ttya42/A42ttya43/A43ttya44/A44ttya45/A45ttya46/A46ttya47/A47ttya48/A48 None C168 ISA Series C104 ISA Series C168 PCI Series C104 PCI Series CI-104J Series CP-102 Series CP-104U Series CP-168U Series CP-104JU Series CP-118U Series CP-102UL Series CP-102U Series 2 3 4 5 7 10 11 12 15 --------- /etc/conf/pack.d/c168/Driver.oPress any key to continue... Board No. Board Type I/O Address Interrupt Bus/Dev No. Smartio Family Basic ConfigurationPgDn :getty Setting Esc:Exit Enter:Confirm Input Value Tab:Change ItemPCI Boards SelectingEnter: Select Esc: Exit12345678Open /dev/c168 failure!Press any key to continue. !!!Fail to get PCI Information!!! Since it is the first time installation and the OS cannot auto search PCI Information. Please leave the settings blank and complete the installation. Then try to configure board again after it rebootSave configuration changes? (Y/N) It is recommanded/needed that log in as a root to execute moxaadm. Changes maked here cannot be saved because the right is not enough. Please login as a root again to set bob手机在线登陆 Smartio Family Boards. PCI Boards SelectingEnter : Select Esc: Exit ----------- --------- The board #1 I/O address conflicts with the board #2 !The board #1 IRQ must be not equal to the board #2 !The board #1 IRQ must be not equal to the board #2 !Save configuration changes? (Y/N)/etc/conf/pack.d/c168/space.cMOXA Smartio Family configuration is changed or set.Modifying the system file. Please wait ...Copying driver files and configuring system. Please wait ...Idinstall error ! Abort install MOXA Smartio Family device driver.Please press any key to continue.c168Press any key to continue !Remove MOXA Smartio Family and modify system file ...c168Idinstall error ! Abort removal MOXA Smartio Family device driver.Please press any key to continue.MOXA Smartio Family device driver is removed.Please reinstall, if necessary.Removal MOXA Smartio Family completed. Press any key to continue !MaxCardunsigned shortirqOOOOc168_PciInfoc168_boardTypec168_HighBaudratec168_RxFifoc168_TxFifo/etc/auth/system/ttysOpen file /etc/auth/system/ttys error !/etc/auth/system/devassignOpen file /etc/auth/system/devassign error ! Board No. Board Type I/O Address Baudrate Mapping Smartio Family Advanced ConfigurationF1: Help PgDn: Port Feature Settings Esc: Exit Low Band High Band ------ # *** High Speed/Normal Speed *** ## This feature can be set by using the io-irq.exe ## program under DOS prompt. There are two different ## spectrum available,ie, High and Normal.The highest ## speed for Normal Spectrum(1.8432MHz) is 115.2K bps ## ,while 921.6K bps for High Spectrum (14.7456MHz). ## ## *** High Band/Low Band *** ## This feature can be set by using the moxaadm ## program under UNIX environment. There are also two ## different baudrate tables can be selected,ie, High ## Band and Low Band. The highest baudrate for High ## Band is 921.6K bps,while 38.4K bps for Low Band. ## ## Because of the limit of UNIX termio/termios ## definition, the highest baudrate label is B38400 ## (mapped to 38.4K bps).If users wish to use the ## baudrate higher than 38.4K bps for MOXA boards, ## this baudrate will be re-mapped to the lower one ## ## << PgUp/PgDown: More Info ESC: Exit >> ## as defined in the below table. ## ## For Example,if the Speed Spectrum is set to Normal ## Speed and baudrate-mapping table is set to High ## Band, the highest baudrate of this board is 115.2K ## bps. If users want to use this highest baudrate,it ## is a must to set the speed label to B75 in the ## c_flag of termio/termios. When the Speed Spectrum ## is set to High Speed and baudrate-mapping table is ## set to High Band, the highest baudrate of this ## board is 921.6K bps. If users want to use this ## highest baudrate, it is a must to set the speed ## label to B150 in the c_flag of termio/termios. If ## the baudrate-mapping table is set to Low Band, the ## baudrate label is just like the definition of the ## UNIX default. ## ## The baudrate-mapping table is listed as below : ## ## ## << PgUp/PgDown: More Info ESC: Exit >> #+--------+-----+------< Real Baud Rate (bps) >-------+|