OSEC

Neohapsis is currently accepting applications for employment. For more information, please visit our website www.neohapsis.com or email hr@neohapsis.com
 
From: acevirgilinwind.it
Date: Fri Mar 09 2001 - 12:56:03 CST

  • Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

    Hello to all,

    For start with success new cardmgr you need to modify prism2sta.c file in this way:

    Standard prism2sta.c file:
    -----------------------------------
    #if 0
    #if defined(WLAN_STA)
    static char *version = "prism2sta" DRIVER_SUFFIX ".o: " WLAN_RELEASE;
    static dev_info_t dev_info = "prism2sta" DRIVER_SUFFIX;
    #elif defined(WLAN_AP)
    static char *version = "prism2ap" DRIVER_SUFFIX ".o: " WLAN_RELEASE;
    static dev_info_t dev_info = "prism2ap" DRIVER_SUFFIX;
    /* #else , TODO: Fix .depend generation for multiple driver build */
    /* #error "Driver type (AP or STA) not defined!" */
    #endif
    #endif

    static char *version = "prism2" DRIVER_SUFFIX ".o: " WLAN_RELEASE;
    static dev_info_t dev_info = "prism2" DRIVER_SUFFIX;

    static dev_link_t *dev_list = NULL; /* head of instance list */

    NEW PRISM2STA.C FILE:
    -----------------------------------

    #if 1
    #if defined(WLAN_STA)
    static char *version = "prism2sta" DRIVER_SUFFIX ".o: " WLAN_RELEASE;
    static dev_info_t dev_info = "prism2sta" DRIVER_SUFFIX;
    #elif defined(WLAN_AP)
    static char *version = "prism2ap" DRIVER_SUFFIX ".o: " WLAN_RELEASE;
    static dev_info_t dev_info = "prism2ap" DRIVER_SUFFIX;
    /* #else , TODO: Fix .depend generation for multiple driver build */
    /* #error "Driver type (AP or STA) not defined!" */
    #endif
    #endif

    /*static char *version = "prism2" DRIVER_SUFFIX ".o: " WLAN_RELEASE;*/
    /*static dev_info_t dev_info = "prism2" DRIVER_SUFFIX;*/

    static dev_link_t *dev_list = NULL; /* head of instance list */

    -----------------------------------------------
    The Linux WLAN User's Mailing List
    For more information about this list see:
    http://www.absoval.com/linux-wlan/lists.html