ez-x5와 ez-pcmcia를 이용하여 무선통신을 하고 있습니다.
그런데, 무선공유기를 사용하여 ap에 접속하려 하는데, 무선공유기에서 거리가 조금만 떨어져도 nespot으로 붙어 버립니다.
물론, 부팅 후에 iwconfig eth1 essid iprobot 으로 (무선공유기 essid가 'iprobot') 설정해주면 되겠지만,
재부팅시 자동적으로 'iprobot'에 연결되는것을 원합니다

스크립트 파일에 'iwconfig eth1 essid iprobot' 이부분을 따로 넣어, 부팅시 바로 설정되게 하려 했지만,
그렇게하니 부팅 마지막 부분에서

iwconfig: error while loading shared libraries: libiw.so.25: cannot open shared object file: No such file or directory

이런 에러 메세지가 나오네요..

그리고, wireless.opts파일을 수정을 해봤는데요.. 정확히 어떤부분을 수정해야할지 몰라서...

======================================================
     51 # Pick up any Access Point, should work on most 802.11 cards
     52 essidany,*,*,*)
     53     INFO="Any ESSID"
     54     ESSID="iprobot"
     55     MODE="managed"
     56     ;;
     57
     58 # Here are a few examples with a few Wireless LANs supported...
     59 # The matching is done on the first 3 bytes of the MAC address
     60
     61 # Lucent Wavelan IEEE (+ Orinoco, RoamAbout and ELSA)
     62 # Note : wvlan_cs driver only, and version 1.0.4+ for encryption support
     63 *,*,*,00:60:1D:*|*,*,*,00:02:2D:*)
     64     INFO="Wavelan IEEE example (Lucent default settings)"
     65     ESSID="iprobot"
     66     MODE="Managed"
     67 #    RATE="auto"
     68     KEY="s:secu1"

이 부분이랑...
제일 마지막 부분에

    148 # Generic example (decribe all possible settings)
    149 *,*,*,*)
    150     INFO="Fill with your own settings..."
    151     # ESSID (extended network name) : My Network, any
    152     ESSID="iprobot"
    153     # NWID/Domain (cell identifier) : 89AB, 100, off
    154     NWID=""
    155     # Operation mode : Ad-Hoc, Managed, Master, Repeater, Secondary, auto
    156     MODE="Managed"
    157     # Frequency or channel : 1, 2, 3 (channel) ; 2.422G, 2.46G (frequency)
    158     FREQ="2.437G"
    159     CHANNEL="6"
    160     # Sensitivity (cell size + roaming speed) : 1, 2, 3 ; -70 (dBm)
    161     SENS="1/3"
    162     # Bit rate : auto, 1M, 11M
    163     RATE="11M"
    164     # Encryption key : 4567-89AB-CD, s:password
    165     KEY=""
    166     # RTS threshold : off, 500
    167     RTS="off"
    168     # Fragmentation threshold : off, 1000
    169     FRAG="off"
    170     # Other iwconfig parameters : power off, ap 01:23:45:67:89:AB
    171     IWCONFIG="ap 00:0D:0B:98:E5:69"
    172     # iwspy parameters : + 01:23:45:67:89:AB
    173     IWSPY=""
    174     # iwpriv parameters : set_port 2, set_histo 50 60
    175     IWPRIV=""
    176     ;;
    177 esac

    이부분이랑 수정을 해봤는데 여전히 잘 되지 않네요..
    윗 부분은 제대로 접속되었을때 iwconfig 하여 나온 정보를 참고하여 적은것이구요...
    
    참고로 무선랜 카드는 orinoco silver 입니다..
  
이제 프로젝트 마무리 단계인데 이부분이 참으로 오랫동안 풀리지 않고있네요..
부디 명쾌한 답변 부탁드립니다..^^