From c8e5702127e507e82e6f68a4b8c546803accea9d Mon Sep 17 00:00:00 2001 From: Koen Kooi Date: Thu, 30 Jun 2005 08:19:37 +0000 Subject: import clean BK tree at cset 1.3670 --- packages/wlags-modules/.mtn2git_empty | 0 packages/wlags-modules/files/.mtn2git_empty | 0 packages/wlags-modules/files/bugs.patch | 76 ++++ packages/wlags-modules/files/fixes.patch | 110 +++++ packages/wlags-modules/files/includes.patch | 450 +++++++++++++++++++++ packages/wlags-modules/files/kernel-pcmcia.patch | 90 +++++ packages/wlags-modules/files/wlags_h1.conf | 6 + packages/wlags-modules/files/wlags_h2.conf | 6 + .../kernel-module-wlags49-h1-cs_718.bb | 7 + .../kernel-module-wlags49-h2-cs_718.bb | 7 + 10 files changed, 752 insertions(+) create mode 100644 packages/wlags-modules/.mtn2git_empty create mode 100644 packages/wlags-modules/files/.mtn2git_empty (limited to 'packages/wlags-modules') diff --git a/packages/wlags-modules/.mtn2git_empty b/packages/wlags-modules/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 diff --git a/packages/wlags-modules/files/.mtn2git_empty b/packages/wlags-modules/files/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 diff --git a/packages/wlags-modules/files/bugs.patch b/packages/wlags-modules/files/bugs.patch index e69de29bb2..12fcceaa05 100644 --- a/packages/wlags-modules/files/bugs.patch +++ b/packages/wlags-modules/files/bugs.patch @@ -0,0 +1,76 @@ +This are some fixes for real bugs that I had with the driver in my +environment. + +# +# Patch managed by http://www.holgerschurig.de/patcher.html +# + +--- wlags/wl_wext.c~bugs ++++ wlags/wl_wext.c +@@ -3811,9 +3811,11 @@ + /* NOTE: Format of MAC address (using colons to seperate bytes) may cause + a problem in future versions of the supplicant, if they ever + actually parse these parameters */ ++#if DBG + sprintf( msg, "MLME-MICHAELMICFAILURE.indication(keyid=%d %scast addr=" + "%s)", key_idx, addr1[0] & 0x01 ? "broad" : "uni", + DbgHwAddr( addr2 )); ++#endif + wrqu.data.length = strlen( msg ); + wireless_send_event( dev, IWEVCUSTOM, &wrqu, msg ); + #endif /* WIRELESS_EXT > 14 */ +--- wlags/mmd.c~bugs ++++ wlags/mmd.c +@@ -233,7 +233,17 @@ + i = 0; + } + #endif // HCF_ASSERT +- return i > 3 && supp->len == sizeof(CFG_SUP_RANGE_STRCT)/sizeof(hcf_16) - 1 ? +- (CFG_RANGE_SPEC_STRCT*)actq : NULL; /* 8 */ ++/* ++ * Originally there was this code here: ++ * ++ * return i > 3 && supp->len == sizeof(CFG_SUP_RANGE_STRCT)/sizeof(hcf_16) - 1 ? ++ * (CFG_RANGE_SPEC_STRCT*)actq : NULL; ++ * ++ * Unfortunately, the sizeof() boogy was not working correctly on the Intel PXA2550 cpu. ++ * sizeof(CFG_SUP_RANGE_STRCT)==16 there. So I had to uncomment this. ++ * Holger Schurig ++ */ ++ ++ return i > 3 ? (CFG_RANGE_SPEC_STRCT*)actq : NULL; /* 8 */ + } // mmd_check_comp + +--- wlags/dhf.c~bugs ++++ wlags/dhf.c +@@ -554,7 +554,6 @@ + { + plugrecord *plugrecordp = fw->pdaplug; + int rc = HCF_SUCCESS; +-int plugrc = HCF_SUCCESS; + CFG_PROG_STRCT *ltvp; + hcf_32 code; // Code to plug + hcf_16 *pdap; // pointer to matching code found in pda +@@ -565,7 +564,22 @@ + while( ( rc == HCF_SUCCESS ) && ( code = plugrecordp->code ) != 0 ) { + pdap = apply_plug_rules(&cfg_prod_data[2], (hcf_16)(code & CODEMASK) ); + if ( pdap ) { ++#if 0 ++/* ++ * For plug record code=0x00000150, I get ++ * ++ * (CNV_LITTLE_TO_INT(*pdap) - 1) * 2 == 4 ++ * and ++ * plugrecordp->len == 2 ++ * ++ * Therefore the download failed. Therefore, I disable this check. ++ * Holger Schurig, hs4233@mail.mn-solutions.de ++ */ ++ + if ( (CNV_LITTLE_TO_INT(*pdap) - 1) * 2 != plugrecordp->len ) { ++#else ++ if (0) { ++#endif + //!! Be aware of the difference with primary plug records: + //!! as opposed to plug_pri_records '!=' rather than '>' + //!! production data plug records must fit exactly at their location diff --git a/packages/wlags-modules/files/fixes.patch b/packages/wlags-modules/files/fixes.patch index e69de29bb2..32036f8e58 100644 --- a/packages/wlags-modules/files/fixes.patch +++ b/packages/wlags-modules/files/fixes.patch @@ -0,0 +1,110 @@ +This are misc fixes to warnings. + +Somehow I have the feeling that Agere never used -Wall or is still using +ancient compilers (e.g. gcc-2.95.x) so that they don't see those warnings. + +# +# Patch managed by http://www.holgerschurig.de/patcher.html +# + +--- wlags/wl_main.c~fixes ++++ wlags/wl_main.c +@@ -81,6 +81,7 @@ + ******************************************************************************/ + #include "wl_version.h" + ++#include + #include + #include + #include +@@ -1122,7 +1123,6 @@ + VALID_PARAM( PARM_PM_ENABLED <= WVLAN_PM_STATE_STANDARD ); + VALID_PARAM( !PARM_CREATE_IBSS || strchr( "NnYy", PARM_CREATE_IBSS[0] ) != NULL ); + VALID_PARAM( !PARM_RX_MULTICAST || strchr( "NnYy", PARM_RX_MULTICAST[0] ) != NULL ); +- VALID_PARAM(( PARM_MAX_SLEEP <= PARM_MAX_MAX_PM_SLEEP )); + VALID_PARAM(( PARM_AUTHENTICATION <= PARM_MAX_AUTHENTICATION )); + VALID_PARAM(( PARM_OWN_ATIM_WINDOW <= PARM_MAX_OWN_ATIM_WINDOW )); + VALID_PARAM(( PARM_PM_HOLDOVER_DURATION <= PARM_MAX_PM_HOLDOVER_DURATION )); +@@ -1513,6 +1513,7 @@ + WL_WDS_NETDEV_REGISTER( lp ); + + ++#ifdef USE_OLD_PARMS + /* Reset the DownloadFirmware variable in the private struct. If the + config file is not used, this will not matter; if it is used, it + will be reparsed in wl_open(). This is done because logic in wl_open +@@ -1520,6 +1521,7 @@ + the file here; however, this parsing is needed to register WDS ports + in AP mode, if they are configured */ + lp->DownloadFirmware = download_firmware; ++#endif + + + #ifdef USE_RTS +@@ -1539,10 +1541,12 @@ + DBG_TRACE( DbgInfo, "%s: Wireless, io_addr %#03lx, irq %d, ""mac_address ", + dev->name, dev->base_addr, dev->irq ); + ++#if 0 + for( i = 0; i < ETH_ALEN; i++ ) + { + printk( "%02X%c", dev->dev_addr[i], (( i < ( ETH_ALEN-1 )) ? ':' : '\n' )); + } ++#endif + + + DBG_LEAVE( DbgInfo ); +@@ -4078,6 +4082,7 @@ + + break; + ++#if DBG + case CFG_LINK_STAT: + DBG_TRACE( DbgInfo, "CFG_LINK_STAT\n" ); + +@@ -4254,6 +4259,7 @@ + default: + DBG_TRACE( DbgInfo, "CFG_TALLIES\n" ); + break; ++#endif + } + + +--- wlags/hcf.c~fixes ++++ wlags/hcf.c +@@ -181,11 +181,14 @@ + + COMP_ROLE_SUPL, + COMP_ID_DUI, +- { DUI_COMPAT_VAR, ++ { ++ { ++ DUI_COMPAT_VAR, + DUI_COMPAT_BOT, + DUI_COMPAT_TOP ++ } + } +-} ; ++}; + + struct CFG_RANGE3_STRCT BASED cfg_drv_act_ranges_pri = { + sizeof(cfg_drv_act_ranges_pri)/sizeof(hcf_16) - 1, //length of RID +@@ -3603,7 +3606,7 @@ + + if ( (ifbp->IFB_CardStat & (CARD_STAT_INCOMP_PRI|CARD_STAT_INCOMP_FW) ) == 0 && /* 20*/ + ( (CFG_RID_CFG_MIN <= ltvp->typ && ltvp->typ <= CFG_RID_CFG_MAX ) || +- (0xFFE0 <= ltvp->typ && ltvp->typ <= 0xFFFF ) )) { ++ (0xFFE0 <= ltvp->typ) )) { + + #if HCF_ASSERT + if ( ltvp->typ != CFG_DEFAULT_KEYS && ltvp->typ != CFG_ADD_TKIP_DEFAULT_KEY && \ +--- wlags/wl_enc.c~fixes ++++ wlags/wl_enc.c +@@ -78,6 +78,7 @@ + /******************************************************************************* + * include files + ******************************************************************************/ ++#include + #include "wl_version.h" + + #include "debug.h" diff --git a/packages/wlags-modules/files/includes.patch b/packages/wlags-modules/files/includes.patch index e69de29bb2..16a5645531 100644 --- a/packages/wlags-modules/files/includes.patch +++ b/packages/wlags-modules/files/includes.patch @@ -0,0 +1,450 @@ +I keep all files in a flat directory. This patch changes the #include lines +accordingly. + +# +# Patch managed by http://www.holgerschurig.de/patcher.html +# + +--- wlags/wl_main.c~includes ++++ wlags/wl_main.c +@@ -79,7 +79,7 @@ + /******************************************************************************* + * include files + ******************************************************************************/ +-#include ++#include "wl_version.h" + + #include + #include +@@ -104,29 +104,29 @@ + #include + #include + +-#include ++#include "debug.h" + +-#include +-#include +-#include ++#include "hcf.h" ++#include "dhf.h" ++#include "hcfdef.h" + +-#include +-#include +-#include +-#include +-#include +-#include ++#include "wl_if.h" ++#include "wl_internal.h" ++#include "wl_util.h" ++#include "wl_main.h" ++#include "wl_netdev.h" ++#include "wl_wext.h" + + #ifdef USE_PROFILE +-#include ++#include "wl_profile.h" + #endif /* USE_PROFILE */ + + #ifdef BUS_PCMCIA +-#include ++#include "wl_cs.h" + #endif /* BUS_PCMCIA */ + + #ifdef BUS_PCI +-#include ++#include "wl_pci.h" + #endif /* BUS_PCI */ + + +--- wlags/wl_cs.c~includes ++++ wlags/wl_cs.c +@@ -79,7 +79,7 @@ + /******************************************************************************* + * include files + ******************************************************************************/ +-#include ++#include "wl_version.h" + + #include + #include +@@ -108,18 +108,18 @@ + #include + #include + #include +-#include ++#include "debug.h" + +-#include +-#include +-#include ++#include "hcf.h" ++#include "dhf.h" ++#include "hcfdef.h" + +-#include +-#include +-#include +-#include +-#include +-#include ++#include "wl_if.h" ++#include "wl_internal.h" ++#include "wl_util.h" ++#include "wl_main.h" ++#include "wl_netdev.h" ++#include "wl_cs.h" + + + +--- wlags/wl_enc.c~includes ++++ wlags/wl_enc.c +@@ -78,12 +78,12 @@ + /******************************************************************************* + * include files + ******************************************************************************/ +-#include ++#include "wl_version.h" + +-#include +-#include ++#include "debug.h" ++#include "hcf.h" + +-#include ++#include "wl_enc.h" + + + +--- wlags/wl_netdev.c~includes ++++ wlags/wl_netdev.c +@@ -79,7 +79,7 @@ + /******************************************************************************* + * include files + ******************************************************************************/ +-#include ++#include "wl_version.h" + + #include + #include +@@ -104,30 +104,30 @@ + #include + #include + +-#include ++#include "debug.h" + +-#include +-#include +-#include ++#include "hcf.h" ++#include "dhf.h" ++#include "hcfdef.h" + +-#include +-#include +-#include +-#include +-#include +-#include +-#include ++#include "wl_if.h" ++#include "wl_internal.h" ++#include "wl_util.h" ++#include "wl_priv.h" ++#include "wl_main.h" ++#include "wl_netdev.h" ++#include "wl_wext.h" + + #ifdef USE_PROFILE +-#include ++#include "wl_profile.h" + #endif /* USE_PROFILE */ + + #ifdef BUS_PCMCIA +-#include ++#include "wl_cs.h" + #endif /* BUS_PCMCIA */ + + #ifdef BUS_PCI +-#include ++#include "wl_pci.h" + #endif /* BUS_PCI */ + + +--- wlags/wl_priv.c~includes ++++ wlags/wl_priv.c +@@ -78,24 +78,24 @@ + /******************************************************************************* + * include files + ******************************************************************************/ +-#include ++#include "wl_version.h" + + #include + #include + #include + #include + +-#include +-#include +-#include ++#include "debug.h" ++#include "hcf.h" ++#include "hcfdef.h" + +-#include +-#include +-#include +-#include +-#include +-#include +-#include ++#include "wl_if.h" ++#include "wl_internal.h" ++#include "wl_enc.h" ++#include "wl_main.h" ++#include "wl_priv.h" ++#include "wl_util.h" ++#include "wl_netdev.h" + + + +--- wlags/wl_profile.c~includes ++++ wlags/wl_profile.c +@@ -95,23 +95,23 @@ + /******************************************************************************* + * include files + ******************************************************************************/ +-#include ++#include "wl_version.h" + + #include + #include + #include + #include + +-#include +-#include +-#include ++#include "debug.h" ++#include "hcf.h" ++#include "hcfdef.h" + +-#include +-#include +-#include +-#include +-#include +-#include ++#include "wl_if.h" ++#include "wl_internal.h" ++#include "wl_util.h" ++#include "wl_enc.h" ++#include "wl_main.h" ++#include "wl_profile.h" + + + +--- wlags/wl_util.c~includes ++++ wlags/wl_util.c +@@ -78,7 +78,7 @@ + /******************************************************************************* + * include files + ******************************************************************************/ +-#include ++#include "wl_version.h" + + #include + #include +@@ -99,13 +99,13 @@ + #include + #include + +-#include +-#include +-#include ++#include "debug.h" ++#include "hcf.h" ++#include "hcfdef.h" + +-#include +-#include +-#include ++#include "wl_if.h" ++#include "wl_internal.h" ++#include "wl_util.h" + + + +--- wlags/wl_wext.c~includes ++++ wlags/wl_wext.c +@@ -74,22 +74,22 @@ + /******************************************************************************* + * include files + ******************************************************************************/ +-#include ++#include "wl_version.h" + + #include + #include + #include + #include + +-#include +-#include +-#include ++#include "debug.h" ++#include "hcf.h" ++#include "hcfdef.h" + +-#include +-#include +-#include +-#include +-#include ++#include "wl_if.h" ++#include "wl_internal.h" ++#include "wl_util.h" ++#include "wl_main.h" ++#include "wl_wext.h" + + + +@@ -212,7 +212,7 @@ + break; + + +- case SIOCSIWSPY: // Set the spy list ++ case SIOCSIWSPY: // Set the spy list + + DBG_TRACE( DbgInfo, "IOCTL: SIOCGIWNAME\n" ); + ret = wireless_set_spy_addrs( wrq, lp ); +@@ -220,7 +220,7 @@ + break; + + +- case SIOCGIWSPY: // Get the spy list ++ case SIOCGIWSPY: // Get the spy list + + DBG_TRACE( DbgInfo, "IOCTL: SIOCSIWSPY\n" ); + ret = wireless_get_spy_addrs( wrq, lp ); +@@ -239,6 +239,7 @@ + + + #if (HCF_TYPE) & HCF_TYPE_STA ++ + case SIOCGIWAP: // Get the MAC Address of current AP + + DBG_TRACE( DbgInfo, "IOCTL: SIOCGIWAP\n" ); +@@ -248,7 +249,6 @@ + + #endif //HCF_STA + +- + case SIOCGIWAPLIST: + + /* NOTE: SIOCGIWAPLIST has been deprecated by SIOCSIWSCAN/SIOCGIWSCAN. +@@ -267,7 +267,7 @@ + break; + + +- case SIOCSIWSENS: // Set the desired AP density ++ case SIOCSIWSENS: // Set the desired AP density + + DBG_TRACE( DbgInfo, "IOCTL: SIOCSIWSENS\n" ); + ret = wireless_set_sensitivity( wrq, lp ); +@@ -275,7 +275,7 @@ + break; + + +- case SIOCGIWSENS: // Get the current AP density ++ case SIOCGIWSENS: // Get the current AP density + + DBG_TRACE( DbgInfo, "IOCTL: SIOCGIWSENS\n" ); + wireless_get_sensitivity( wrq, lp ); +@@ -287,7 +287,7 @@ + + #if WIRELESS_EXT > 5 + +- case SIOCSIWESSID: // Set the desired network name (ESSID) ++ case SIOCSIWESSID: // Set the desired network name (ESSID) + + DBG_TRACE( DbgInfo, "IOCTL: SIOCSIWESSID\n" ); + ret = wireless_set_essid( wrq, lp ); +@@ -295,7 +295,7 @@ + break; + + +- case SIOCGIWESSID: // Get the current network name (ESSID) ++ case SIOCGIWESSID: // Get the current network name (ESSID) + + DBG_TRACE(DbgInfo, "IOCTL: SIOCGIWESSID\n"); + ret = wireless_get_essid( wrq, lp ); +@@ -307,7 +307,7 @@ + + #if WIRELESS_EXT > 7 + +- case SIOCSIWNICKN: // Set desired station nickname ++ case SIOCSIWNICKN: // Set desired station nickname + + DBG_TRACE( DbgInfo, "IOCTL: SIOCSIWNICKN\n" ); + ret = wireless_set_nickname( wrq, lp ); +@@ -315,7 +315,7 @@ + break; + + +- case SIOCGIWNICKN: // Get current station nickname ++ case SIOCGIWNICKN: // Get current station nickname + + DBG_TRACE( DbgInfo, "IOCTL: SIOCGIWNICKN\n" ); + ret = wireless_get_nickname( wrq, lp ); +@@ -323,7 +323,7 @@ + break; + + +- case SIOCSIWRTS: // Set the desired RTS threshold ++ case SIOCSIWRTS: // Set the desired RTS threshold + + DBG_TRACE( DbgInfo, "IOCTL: SIOCSIWRTS\n" ); + ret = wireless_set_rts_threshold( wrq, lp ); +@@ -331,7 +331,7 @@ + break; + + +- case SIOCGIWRTS: // Get the current RTS threshold ++ case SIOCGIWRTS: // Get the current RTS threshold + + DBG_TRACE( DbgInfo, "IOCTL: SIOCGIWRTS\n" ); + wireless_get_rts_threshold( wrq, lp ); +@@ -382,7 +382,7 @@ + break; + + +- case SIOCGIWENCODE: // Get the encryption keys ++ case SIOCGIWENCODE: // Get the encryption keys + + DBG_TRACE( DbgInfo, "IOCTL: SIOCGIWENCODE\n" ); + ret = wireless_get_encode( wrq, lp ); +@@ -503,7 +503,7 @@ + + #endif // WIRELESS_EXT > 11 + +- case SIOCGIWPRIV: // Get private ioctl interface info ++ case SIOCGIWPRIV: // Get private ioctl interface info + + DBG_TRACE(DbgInfo, "IOCTL: SIOCGIWPRIV NOT SUPPORTED!!!\n"); + ret = -EOPNOTSUPP; +--- wlags/hcfcfg.h~includes ++++ wlags/hcfcfg.h +@@ -764,7 +764,7 @@ + + #include + #include +-#include ++#include "wl_version.h" + + /* The following macro ensures that no symbols are exported, minimizing the chance of a symbol + collision in the kernel */ diff --git a/packages/wlags-modules/files/kernel-pcmcia.patch b/packages/wlags-modules/files/kernel-pcmcia.patch index e69de29bb2..2a27344461 100644 --- a/packages/wlags-modules/files/kernel-pcmcia.patch +++ b/packages/wlags-modules/files/kernel-pcmcia.patch @@ -0,0 +1,90 @@ +Compiling against PCMCIA-CS is obsolete since more than one year. +Especially in Linux Kernel trees for embedded devices, the +kernel-based PCMCIA are working, whereas pcmcia-cs has usual problems. + +This patch creates the necessary infrastructure to run the wlags +driver with kernel-pcmcia. + +# +# Patch managed by http://www.holgerschurig.de/patcher.html +# + +--- wlags/wl_version.h~kernel-pcmcia ++++ wlags/wl_version.h +@@ -161,23 +161,29 @@ + the status of wireless extension support. Otherwise, including wireless + extension support will be switched on/off by the USE_WEXT condition */ + #if defined BUS_PCMCIA +-#include +-#include ++//#include ++//#include + #elif defined BUS_PCI + #if USE_WEXT + #define HAS_WIRELESS_EXTENSIONS + #endif // USE_WEXT ++#endif // BUS_XXX + + + /* These are #defines you get "for free" with PCMCIA that I needed to add for + PCI to build */ ++#ifndef NEW_MULTICAST + #define NEW_MULTICAST ++#endif ++#ifndef ALLOC_SKB + #define ALLOC_SKB(len) dev_alloc_skb(len+2) ++#endif ++#ifndef GET_PACKET + #define GET_PACKET(dev, skb, count)\ + skb_reserve((skb), 2); \ + BLOCK_INPUT(skb_put((skb), (count)), (count)); \ + (skb)->protocol = eth_type_trans((skb), (dev)) +-#endif // BUS_XXX ++#endif + + + +--- wlags/wl_internal.h~kernel-pcmcia ++++ wlags/wl_internal.h +@@ -85,8 +85,8 @@ + * include files + ******************************************************************************/ + #ifdef BUS_PCMCIA +-#include +-#include ++//#include ++//#include + #include + #include + #include +--- wlags/wl_netdev.c~kernel-pcmcia ++++ wlags/wl_netdev.c +@@ -1447,7 +1447,7 @@ + dev->set_multicast_list = &wl_multicast; + + #ifdef BUS_PCMCIA +- init_dev_name( dev, ( (struct wl_private *)dev->priv)->node ); ++//HS init_dev_name( dev, ( (struct wl_private *)dev->priv)->node ); + #endif // BUS_PCMCIA + + dev->init = &wl_init; +--- wlags/wl_cs.c~kernel-pcmcia ++++ wlags/wl_cs.c +@@ -497,7 +497,7 @@ + /* Perform device-specific removal */ + wl_remove( dev ); + +- link->release.expires = RUN_AT( HZ/20 ); ++ link->release.expires = jiffies + ( HZ/20 ); + add_timer( &( link->release )); + } + +@@ -786,7 +786,7 @@ + + if( link->state & DEV_STALE_CONFIG ) + { +- link->release.expires = RUN_AT( HZ/20 ); ++ link->release.expires = jiffies + ( HZ/20 ); + link->state |= DEV_RELEASE_PENDING; + + add_timer( &link->release ); diff --git a/packages/wlags-modules/files/wlags_h1.conf b/packages/wlags-modules/files/wlags_h1.conf index e69de29bb2..e5669e7f01 100644 --- a/packages/wlags-modules/files/wlags_h1.conf +++ b/packages/wlags-modules/files/wlags_h1.conf @@ -0,0 +1,6 @@ +device "wlags49_h1_cs" + class "network" module "wlags49_h1_cs" + +card "Agere Systems Hermes 1 based Wireless Adapter" + manfid 0x0156, 0x0002 + bind "wlags49_h1_cs" diff --git a/packages/wlags-modules/files/wlags_h2.conf b/packages/wlags-modules/files/wlags_h2.conf index e69de29bb2..24e461ceaf 100644 --- a/packages/wlags-modules/files/wlags_h2.conf +++ b/packages/wlags-modules/files/wlags_h2.conf @@ -0,0 +1,6 @@ +device "wlags49_h2_cs" + class "network" module "wlags49_h2_cs" + +card "Agere Systems Hermes 2 based Wireless Adapter" + manfid 0x0156, 0x0003 + bind "wlags49_h2_cs" diff --git a/packages/wlags-modules/kernel-module-wlags49-h1-cs_718.bb b/packages/wlags-modules/kernel-module-wlags49-h1-cs_718.bb index e69de29bb2..8fed0b30db 100644 --- a/packages/wlags-modules/kernel-module-wlags49-h1-cs_718.bb +++ b/packages/wlags-modules/kernel-module-wlags49-h1-cs_718.bb @@ -0,0 +1,7 @@ +COMPILE_HERMES = 1 +DESCRIPTION = "A driver from Agera (a card manufacturer) for wireless LAN cards based on Hermes ${COMPILE_HERMES} cards." +PR = "r1" + +inherit module + +include wlags-modules_${PV}.inc diff --git a/packages/wlags-modules/kernel-module-wlags49-h2-cs_718.bb b/packages/wlags-modules/kernel-module-wlags49-h2-cs_718.bb index e69de29bb2..e46894325d 100644 --- a/packages/wlags-modules/kernel-module-wlags49-h2-cs_718.bb +++ b/packages/wlags-modules/kernel-module-wlags49-h2-cs_718.bb @@ -0,0 +1,7 @@ +COMPILE_HERMES = 2 +DESCRIPTION = "A driver from Agera (a card manufacturer) for wireless LAN cards based on Hermes ${COMPILE_HERMES} cards." +PR = "r1" + +inherit module + +include wlags-modules_${PV}.inc -- cgit 1.2.3-korg