wanpipe-3.3.5.tgz

This commit is contained in:
Harald Welte 2021-12-29 18:19:39 +01:00
parent 78669f587a
commit ac4e74ee65
37 changed files with 170 additions and 16 deletions

View File

@ -8,6 +8,16 @@ Author: Nenad Corbic <ncorbic@sangoma.com>
Copyright (c) 1995-2008 Sangoma Technologies Inc.
------------------------------------------------------------------------------
* Wed Mar 27 2008 Nenad Corbic <ncorbic@sangoma.com> - Beta - 3.3.5
======================================================================
- Removed debugging out of firmware update utility
- Updated firmware bin files
- Updated firmware update script.
- No Functional Changes from 3.3.4
* Wed Mar 26 2008 Nenad Corbic <ncorbic@sangoma.com> - Beta - 3.3.4
======================================================================

2
Setup
View File

@ -6498,7 +6498,7 @@ KERNEL_UNAME=`uname -r`
PKG_NAME=wanpipe
DISTR_NAME="WANPIPE"
PROD=wanrouter
PROD_VER=3.3.4
PROD_VER=3.3.5
PROD_HOME=`pwd`
META_CONF=$PROD_HOME/$PROD.rc
WAN_INTR_DIR=$PROD_HOME/interfaces

View File

@ -1,5 +1,5 @@
Package: wanpipe
Version: 3.3.4-0
Version: 3.3.5-0
Section: networking
Priority: optional
Architecture: all

View File

@ -6,7 +6,7 @@
#define WANPIPE_COMPANY "Sangoma Technologies Inc"
/********** LINUX **********/
#define WANPIPE_VERSION "3.3.4"
#define WANPIPE_VERSION "3.3.5"
#define WANPIPE_SUB_VERSION "0"
#define WANPIPE_VERSION_BETA 1
#define WANPIPE_LITE_VERSION "1.1.1"

View File

@ -376,7 +376,7 @@ static int wan_aften_read_reg(sdla_t *card, wan_cmd_api_t *api_cmd, int idata)
api_cmd->offset,
(unsigned char*)&api_cmd->data[idata]);
}
#if defined(DEBUG_REG)
#if defined(WAN_DEBUG_REG)
DEBUG_EVENT("%s: Reading Off=0x%08X Len=%i Data=0x%02X\n",
card->devname,
api_cmd->offset,
@ -395,7 +395,7 @@ static int wan_aften_read_reg(sdla_t *card, wan_cmd_api_t *api_cmd, int idata)
api_cmd->offset,
(unsigned short*)&api_cmd->data[idata]);
}
#if defined(DEBUG_REG)
#if defined(WAN_DEBUG_REG)
DEBUG_EVENT("%s: Reading Off=0x%08X Len=%i Data=0x%04X\n",
card->devname,
api_cmd->offset,
@ -414,7 +414,7 @@ static int wan_aften_read_reg(sdla_t *card, wan_cmd_api_t *api_cmd, int idata)
api_cmd->offset,
(unsigned int*)&api_cmd->data[idata]);
}
#if defined(DEBUG_REG)
#if defined(WAN_DEBUG_REG)
DEBUG_EVENT("ADEBUG: %s: Reading Off=0x%08X Len=%i Data=0x%04X (idata=%d)\n",
card->devname,
api_cmd->offset,
@ -433,7 +433,7 @@ static int wan_aften_read_reg(sdla_t *card, wan_cmd_api_t *api_cmd, int idata)
(unsigned char*)vector, api_cmd.len);
#endif
#if defined(DEBUG_REG)
#if defined(WAN_DEBUG_REG)
DEBUG_EVENT("%s: Reading Off=0x%08X Len=%i\n",
card->devname,
api_cmd->offset,
@ -470,7 +470,7 @@ static int wan_aften_write_reg(sdla_t *card, wan_cmd_api_t *api_cmd)
card->hw,
api_cmd->offset,
*(unsigned char*)&api_cmd->data[0]);
#if defined(DEBUG_REG)
#if defined(WAN_DEBUG_REG)
DEBUG_EVENT("%s: Write Offset=0x%08X Data=0x%02X\n",
card->devname,api_cmd->offset,
*(unsigned char*)&api_cmd->data[0]);
@ -480,7 +480,7 @@ static int wan_aften_write_reg(sdla_t *card, wan_cmd_api_t *api_cmd)
card->hw,
api_cmd->offset,
*(unsigned short*)&api_cmd->data[0]);
#if defined(DEBUG_REG)
#if defined(WAN_DEBUG_REG)
DEBUG_EVENT("%s: Write Offset=0x%08X Data=0x%04X\n",
card->devname,api_cmd->offset,
*(unsigned short*)&api_cmd->data[0]);
@ -490,7 +490,7 @@ static int wan_aften_write_reg(sdla_t *card, wan_cmd_api_t *api_cmd)
card->hw,
api_cmd->offset,
*(unsigned int*)&api_cmd->data[0]);
#if defined(DEBUG_REG)
#if defined(WAN_DEBUG_REG)
DEBUG_EVENT("ADEBUG: %s: Write Offset=0x%08X Data=0x%08X\n",
card->devname,api_cmd->offset,
*(unsigned int*)&api_cmd->data[0]);

View File

@ -1,6 +1,6 @@
%define WANPIPE_VER wanpipe-modules
%define name %{WANPIPE_VER}
%define version 3.3.4
%define version 3.3.5
%define release 0
%define serial 1
%define MODULES_DIR /lib/modules
@ -51,6 +51,16 @@ echo "Wanpipe Modules located in %{MODULES_DIR}/%{KVERSION}"
%changelog
* Wed Mar 27 2008 Nenad Corbic <ncorbic@sangoma.com> - Beta - 3.3.5
======================================================================
- Removed debugging out of firmware update utility
- Updated firmware bin files
- Updated firmware update script.
- No Functional Changes from 3.3.4
* Wed Mar 26 2008 Nenad Corbic <ncorbic@sangoma.com> - Beta - 3.3.4
======================================================================

View File

@ -1,7 +1,7 @@
%define KERNEL_VERSION %{?kern_ver}
%define WANPIPE_VER wanpipe-util
%define name %{WANPIPE_VER}
%define version 3.3.4
%define version 3.3.5
%define release 0
%define serial 1
%define ETC_DIR /etc
@ -328,6 +328,16 @@ enable_smg_log;
%changelog
* Wed Mar 27 2008 Nenad Corbic <ncorbic@sangoma.com> - Beta - 3.3.5
======================================================================
- Removed debugging out of firmware update utility
- Updated firmware bin files
- Updated firmware update script.
- No Functional Changes from 3.3.4
* Wed Mar 26 2008 Nenad Corbic <ncorbic@sangoma.com> - Beta - 3.3.4
======================================================================

View File

@ -1,7 +1,7 @@
%define KERNEL_VERSION %{?kern_ver}
%define WANPIPE_VER wanpipe
%define name %{WANPIPE_VER}
%define version 3.3.4
%define version 3.3.5
%define release 0
%define serial 1
%define UTILS_DIR /usr/sbin
@ -255,6 +255,16 @@ install_init;
%changelog
* Wed Mar 27 2008 Nenad Corbic <ncorbic@sangoma.com> - Beta - 3.3.5
======================================================================
- Removed debugging out of firmware update utility
- Updated firmware bin files
- Updated firmware update script.
- No Functional Changes from 3.3.4
* Wed Mar 26 2008 Nenad Corbic <ncorbic@sangoma.com> - Beta - 3.3.4
======================================================================

View File

@ -2120,7 +2120,7 @@ init_global_params()
{
if [ $OSYSTEM = "Linux" ]; then
ROUTER_VERSION=3.3.4
ROUTER_VERSION=3.3.5
IFCONFIG_LIST=ifconfig
MODULE_STAT=lsmod
WAN_DRIVERS="wanpipe"

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -2,6 +2,32 @@ AFT A101dm Firmware Change Log
=============================
Release V34
-----------
Oct 09 2007
Type: Optional A101dm Firmware
Internal change to improve stability on some cards.
Changes: Firmware bug fix
This bug can cause your card to fail to start
Release V33
-----------
Sep 27 2007
Type: Recommended A101dm Firmware for echo cancel cards
Fixes issue with hardware echo canceller chip
security.
Supports DTMF detection without hardware echo
cancellation operation.
Changes: Firmware bug fix for echo canceller
This bug can shut down the driver.
Note: This bug only afected new Maxim AFT cards with HWEC.
DTMF detection only applies AFT cards with HWEC.
Release V31
-----------
Jul 10 2007

View File

@ -1,5 +1,20 @@
AFT A102dm Firmware Change Log
=============================
Release V33
-----------
Sep 27 2007
Type: Recommended A102dm Firmware for echo cancel cards
Fixes issue with hardware echo canceller chip
security.
Supports DTMF detection without hardware echo
cancellation operation.
Changes: Firmware bug fix for echo canceller
This bug can shut down the driver.
Note: This bug only afected new Maxim AFT cards with HWEC.
DTMF detection only applies AFT cards with HWEC.
Release V31

View File

@ -1,5 +1,14 @@
AFT A104d Firmware Change Log
=============================
Release V26
-----------
Sep 27 2007
Type: Recommended Firmware for PCI/PCI-Express Cards
Fixes chip security issue.
Changes: Firmware bug fix for PCI/PCI-Express Cards
This bug can shut down the driver.
Release V25
------------

View File

@ -1,5 +1,21 @@
AFT A104dm Firmware Change Log
=============================
Release V33
-----------
Sep 27 2007
Type: Recommended A104dm Firmware for echo cancel cards
Fixes issue with hardware echo canceller chip
security.
Supports DTMF detection without hardware echo
cancellation operation.
Changes: Firmware bug fix for echo canceller
This bug can shut down the driver.
Note: This bug only afected new Maxim AFT cards with HWEC.
DTMF detection only applies AFT cards with.
Release V31
-----------

View File

@ -1,6 +1,22 @@
AFT A108dm Firmware Change Log
===============================
Release V33
-----------
Sep 27 2007
Type: Recommended A108dm Firmware for echo cancel cards
Fixes issue with hardware echo canceller chip
security.
Supports DTMF detection without hardware echo
cancellation operation.
Changes: Firmware bug fix for echo canceller
This bug can shut down the driver.
Note: This bug only afected new Maxim AFT cards with HWEC.
DTMF detection only applies AFT cards with HWEC.
Release V31
-----------
Jul 10 2007

View File

@ -1,6 +1,21 @@
AFT A200 Firmware Change Log
============================
Release V11
-----------
Sep 27 2007
Type Recommended update for A200d cards
Fixes bug with echo canceller chip security.
Supports DTMF detection without hardware echo cancellation
operation.
Changes: Firmware bug fixes for A200d cards
Card fail to load due to echo canceller chip secutiry.
Note: This bug only affects A200 with HWEC
DTMF detecion support only applies to AFT card with
HWEC.
Release V10
-----------
Jun 10 2007

View File

@ -1,6 +1,21 @@
AFT A400 Firmware Change Log
=============================
Release V11
-----------
Sep 27 2007
Type Recommended update for A400d cards
Fixes bug with echo canceller chip security.
Supports DTMF detection without hardware echo cancellation
operation.
Changes: Firmware bug fixes for A400d cards
Card fail to load due to echo canceller chip secutiry.
Note: This bug only affects A400 with HWEC
DTMF detecion support only applies to AFT card with
HWEC.
Release V10
-----------
Jun 10 2007

View File

@ -2,8 +2,10 @@
cmd=$1;
eval "make clean > /dev/null"
eval "make > /dev/null"
if [ ! -e wan_aftup ]; then
eval "make clean > /dev/null"
eval "make > /dev/null"
fi
if [ -e /proc/net/wanrouter ]; then