Re: [OpenWrt-Devel] [LEDE-DEV] latency on PPPoA ADSL Annex A on using Lantiq

2016-08-11 Thread joerg jungermann
Hi,

I have an instance on a W8970/ADSL/Annex B running from build around th
24th of March.
That time I build from GIT. I cannot name the git hash but

# cat /etc/openwrt_version
r49081

I tested remotely that it suffers from the same regression.
Routed traffic is fine, but local terminated traffic is jumpy and sometimes
slow.

The refered 6c9b1a278e484a9c7c5ff36f91da90f725776d00 is far later.

$ git log
commit 6c9b1a278e484a9c7c5ff36f91da90f725776d00
[...]
Date:   Sun Jun 14 17:47:16 2015 +
[...]

After a clean clone from github, I wonder were are the commits
8333a6d0bab913285770449f5100597b691b544f
and 45b52d458168adc31b15248380419c17d0586c63?

$ git clone "https://github.com/openwrt/openwrt.git; owrt
$ cd owrt/
$ git checkput master

$ git log 45b52d458168adc31b15248380419c17d0586c63
fatal: bad object 45b52d458168adc31b15248380419c17d0586c63
$ git log 8333a6d0bab913285770449f5100597b691b544f
fatal: bad object 8333a6d0bab913285770449f5100597b691b544f

I am happy to help testing, but I am somewhat limited accessing that remote
machine.

Best regards


Am Thursday, den 11 August hub Daniel Niasoff folgendes in die Tasten:

> Thanks all for your help, will try and pinpoint which revision introduced the 
> issue
> 
> -Original Message-
> From: openwrt-devel [mailto:openwrt-devel-boun...@lists.openwrt.org] On 
> Behalf Of John Crispin
> Sent: 11 August 2016 10:28
> To: Mathias Kresin <d...@kresin.me>; OpenWrt Development List 
> <openwrt-devel@lists.openwrt.org>; lede-...@lists.infradead.org
> Subject: Re: [OpenWrt-Devel] [LEDE-DEV] latency on PPPoA ADSL Annex A on 
> using Lantiq
> 
> 
> 
> On 11/08/2016 08:19, John Crispin wrote:
> > 
> > 
> > On 11/08/2016 00:39, Mathias Kresin wrote:
> >> Am 11.08.2016 um 00:15 schrieb John Crispin:
> >>> try reverting 8333a6d0bab913285770449f5100597b691b544f aswell please
> >>
> >> Had this commit in mind as well. According to Daniels initial mail to 
> >> openwrt-devel, he is using a TP-LINK TD-W8980 (xrx200) and the 
> >> kmod-ltq-adsl isn't build for xrx200.
> >>
> >> I suppose that this commit is a red herring.
> >>
> >> Mathias
> >>
> > 
> > i think this report is about a xrx200 in adsl fallback mode
> 
> another candidate would be 45b52d458168adc31b15248380419c17d0586c63
> 
> 
> > 
> >> ___
> >> Lede-dev mailing list
> >> lede-...@lists.infradead.org
> >> http://lists.infradead.org/mailman/listinfo/lede-dev
> > ___
> > openwrt-devel mailing list
> > openwrt-devel@lists.openwrt.org
> > https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel
> > 
> ___
> openwrt-devel mailing list
> openwrt-devel@lists.openwrt.org
> https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel
> ___
> openwrt-devel mailing list
> openwrt-devel@lists.openwrt.org
> https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

-- 
Joerg Jungermann
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] [PATCH] remove .git files from images

2016-04-12 Thread joerg jungermann
If you have your ./files/ directory stored in a git repository,
the .git will be included into images using precious space.
This patch removes .git directories before packing images.

Signed-off-by: Joerg Jungermann <j...@borkum.net>

diff --git a/package/Makefile b/package/Makefile
index c97e2c1..e0bd75b 100644
--- a/package/Makefile
+++ b/package/Makefile
@@ -123,6 +123,7 @@ $(curdir)/install: $(TMP_DIR)/.build 
$(curdir)/system/opkg/host/install
$(if $(SOURCE_DATE_EPOCH),sed -i "s/Installed-Time: .*/Installed-Time: 
$(SOURCE_DATE_EPOCH)/" $(TARGET_DIR)/usr/lib/opkg/status)
@-find $(TARGET_DIR) -name CVS   | $(XARGS) rm -rf
@-find $(TARGET_DIR) -name .svn  | $(XARGS) rm -rf
+   @-find $(TARGET_DIR) -name .git  | $(XARGS) rm -rf
@-find $(TARGET_DIR) -name '.#*' | $(XARGS) rm -f
rm -f $(TARGET_DIR)/usr/lib/opkg/info/*.postinst*
rm -f $(TARGET_DIR)/usr/lib/opkg/info/*.prerm*

-- 
Joerg Jungermann
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] Lantiq 3.10 (BB) was lantiq v3.18

2015-02-26 Thread Joerg Jungermann
Hi,

I have here multiple TD-W8970 with Annex A and Annex B.

 m25p80@0 {
 #address-cells = 1;
 #size-cells = 1;
 compatible = s25fl129p0;
 reg = 0 0;
 linux,modalias = m25p80, mx25l3205d;
 spi-max-frequency = 100;

I increased spi-max-frequency = 5000.
According to the datasheets I found that is maximum frequency.

With my 3 models (2x A, 1x B) these settings work with BB (kernel 3.10) well.
I have not yet tested 3.18.
I benchmarked boot up times from spi-flash with my build.
I could lower bootup times (from uboot to init-completed) from 2m01s to 1m18s.

I suggest backporting this increase of the spi freq to BB.

best regards



Am 26.02.2015 um 02:57 schrieb Daniel Gimpelevich:
 On Sun, 15 Feb 2015 05:21:34 +, Daniel Gimpelevich wrote:
 On Sat, 14 Feb 2015 19:55:03 +0100, John Crispin wrote:
 ok, i think the spi clock is just really slow


 try increasing it to 10 or 20 mhz. running the flash at 1 Mhz explains
 why it takes a week to boot and do anything useful. even with the bus
 being bitbanged it should be possible to go beyond 1mhz

 1) I'm not sure what tests to run to see what frequency is safe.
 2) That's the flash, though. I don't think it explains why the DSL
 interface in particular takes forever and a day to acknowledge anything.
 Does it?
 
 OK, adding an extra zero to spi-max-frequency leaves me with no Internet
 after boot. The nas0 interface is created but not brought up. Also,
 /etc/init.d/dsl_control STILL takes about twenty minutes to execute. Here
 is the output of logread:
 
 Wed Feb 25 16:33:51 2015 kern.info kernel: [   28.50] IFXUSB: ifxusb_hcd: 
 version 3.2 B110801
 Wed Feb 25 16:33:51 2015 kern.info kernel: [   29.004000] IFXUSB: USB core #0 
 soft-reset
 Wed Feb 25 16:33:51 2015 kern.info kernel: [   29.208000] IFXUSB: USB core #0 
 soft-reset
 Wed Feb 25 16:33:51 2015 kern.info kernel: [   29.208000] ifxusb_hcd 
 ifxusb_hcd: IFX USB Controller
 Wed Feb 25 16:33:51 2015 kern.info kernel: [   29.212000] ifxusb_hcd 
 ifxusb_hcd: new USB bus registered, assigned bus number 1
 Wed Feb 25 16:33:51 2015 kern.info kernel: [   29.22] ifxusb_hcd 
 ifxusb_hcd: irq 62, io mem 0xbe101000
 Wed Feb 25 16:33:51 2015 kern.info kernel: [   29.228000] IFXUSB: Init: Power 
 Port (0)
 Wed Feb 25 16:33:51 2015 kern.info kernel: [   29.236000] hub 1-0:1.0: USB 
 hub found
 Wed Feb 25 16:33:51 2015 kern.info kernel: [   29.236000] hub 1-0:1.0: 1 port 
 detected
 Wed Feb 25 16:33:51 2015 kern.notice kernel: [   30.916000] random: mktemp 
 urandom read with 121 bits of entropy available
 Wed Feb 25 16:33:51 2015 kern.notice kernel: [   32.852000] random: 
 nonblocking pool is initialized
 Wed Feb 25 16:33:51 2015 kern.notice kernel: [   40.812000] jffs2: notice: 
 (286) jffs2_build_xattr_subsystem: complete building xattr subsystem, 0 of 
 xdatum (0 unchecked, 0 orphan) and 0 of xref (0 dead, 0 orphan) found.
 Wed Feb 25 16:33:51 2015 user.info kernel: [   40.832000] block: attempting 
 to load /tmp/jffs_cfg/upper/etc/config/fstab
 Wed Feb 25 16:33:51 2015 user.info kernel: [   40.912000] block: extroot: not 
 configured
 Wed Feb 25 16:33:51 2015 kern.notice kernel: [   42.54] jffs2: notice: 
 (283) jffs2_build_xattr_subsystem: complete building xattr subsystem, 0 of 
 xdatum (0 unchecked, 0 orphan) and 0 of xref (0 dead, 0 orphan) found.
 Wed Feb 25 16:33:51 2015 user.info kernel: [   47.672000] block: attempting 
 to load /tmp/jffs_cfg/upper/etc/config/fstab
 Wed Feb 25 16:33:51 2015 user.info kernel: [   47.72] block: extroot: not 
 configured
 Wed Feb 25 16:33:51 2015 kern.info kernel: [   53.648000] NET: Registered 
 protocol family 10
 Wed Feb 25 16:33:51 2015 kern.info kernel: [   53.672000] zram: Created 1 
 device(s) ...
 Wed Feb 25 16:33:51 2015 kern.info kernel: [   53.68] NET: Registered 
 protocol family 8
 Wed Feb 25 16:33:51 2015 kern.info kernel: [   53.684000] NET: Registered 
 protocol family 20
 Wed Feb 25 16:33:51 2015 kern.info kernel: [   53.70] tun: Universal 
 TUN/TAP device driver, 1.6
 Wed Feb 25 16:33:51 2015 kern.info kernel: [   53.704000] tun: (C) 1999-2004 
 Max Krasnyansky m...@qualcomm.com
 Wed Feb 25 16:33:51 2015 kern.info kernel: [   53.724000] sit: IPv6 over IPv4 
 tunneling driver
 Wed Feb 25 16:33:51 2015 kern.info kernel: [   53.744000] PPP generic driver 
 version 2.4.2
 Wed Feb 25 16:33:51 2015 kern.info kernel: [   53.764000] ip6_tables: (C) 
 2000-2006 Netfilter Core Team
 Wed Feb 25 16:33:51 2015 kern.info kernel: [   53.796000] nf_conntrack 
 version 0.5.0 (945 buckets, 3780 max)
 Wed Feb 25 16:33:51 2015 kern.info kernel: [   53.896000] IFX MEI Version 
 5.00.00
 Wed Feb 25 16:33:51 2015 kern.warn kernel: [   53.924000] Infineon CPE API 
 Driver version: DSL CPE API V3.24.4.4
 Wed Feb 25 16:33:51 2015 kern.info kernel: [   54.084000] u32 classifier
 Wed Feb 25 

Re: [OpenWrt-Devel] [PATCH] openssl: version bump

2014-06-05 Thread joerg jungermann
  today appeared another serious vulnerability in openssl. More info is
  here http://ccsinjection.lepidum.co.jp. Users are advised to update to
  openssl 1.0.1h.
 Thank you for your patch, it was committed in r41026 and 41027.
Will there be a backport to AA 12.09?

best regards
-- 
Joerg Jungermann
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] lantiq TD W8970 issues

2014-04-24 Thread joerg jungermann
Hi,

I am observing some issues by reading kernel messages and the git commit
log:

1. Kexec is not working.
kexec-mips.c looks for at least some lines in /proc/iomem for example
System RAM. This entry is missing at least on the TD-W8970.
Would it work with that entry is more missing? How is the memory layout on
the lantiq platform? According to dmesg it is as following:
[0.00] Determined physical RAM map:
[0.00]  memory: 0400 @  (usable)

2. The switch is not exported using swconfig list, but commits
693ea9a3791856a5ea0f971f7265779292c1035e and
6e7f8fb634792e35781fe8a1ae121e8d5a5cfa4c say it might work.
Any hints are appretiated.

3. Flash and the wireless ath9k seem to be connected via SPI.
Is seems to use gpio-spi. The ath9k does not have an eeprom, is this
correct?

[0.204000] ath9k,eeprom ath9k_eep.8: failed to find mtd device

[9.48] spi_gpio spi.7: master is unqueued, this is deprecated
[9.488000] m25p80 spi32766.0: found s25fl064k, expected en25q64
[9.492000] m25p80 spi32766.0: s25fl064k (8192 Kbytes)

[   10.828000] ath9k,eeprom ath9k_eep.8: using random mac
[   10.832000] ath9k,eeprom ath9k_eep.8: using led pin 0.
[   10.836000] ath9k,eeprom ath9k_eep.8: loaded ath9k eeprom

GPIO-SPI makes wireless and booting slow.

Is there anyway to help or to test?

best regards
-- 
Joerg Jungermann
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] lantiq TD W8970 issues

2014-04-24 Thread joerg jungermann
Am Thursday, den 24 April hub John Crispin folgendes in die Tasten:

 
 
 On 24/04/2014 22:05, joerg jungermann wrote:
  Hi,
  
  I am observing some issues by reading kernel messages and the git
  commit log:
  
  1. Kexec is not working. kexec-mips.c looks for at least some lines
  in /proc/iomem for example System RAM. This entry is missing at
  least on the TD-W8970. Would it work with that entry is more
  missing? How is the memory layout on the lantiq platform? According
  to dmesg it is as following: [0.00] Determined physical RAM
  map: [0.00]  memory: 0400 @  (usable)
 sorry no idea
I guess if the System RAM entry would appear in /proc/iomem, more testing woul 
be possible.

  2. The switch is not exported using swconfig list, but commits 
  693ea9a3791856a5ea0f971f7265779292c1035e and 
  6e7f8fb634792e35781fe8a1ae121e8d5a5cfa4c say it might work. Any
  hints are appretiated.
  
 
 
 the lantiq,switch; property is missing in the dts file
According to the current HEAD:
target/linux/lantiq/dts/TDW8970.dts
[...]
eth@E108000 {
  #address-cells = 1;
  #size-cells = 0;
  compatible = lantiq,xrx200-net;
  reg =  0xE108000 0x3000 /* switch */
0xE10B100 0x70 /* mdio */
0xE10B1D8 0x30 /* mii */
0xE10B308 0x30 /* pmac */
  ;
  interrupt-parent = icu0;
  interrupts = 73 72;
  lantiq,switch;
[...]
There is a a lantiq,switch line.

I did a clean compile, no success.

 
  3. Flash and the wireless ath9k seem to be connected via SPI. Is
  seems to use gpio-spi. The ath9k does not have an eeprom, is this 
  correct?
  
  [0.204000] ath9k,eeprom ath9k_eep.8: failed to find mtd device
  
  [9.48] spi_gpio spi.7: master is unqueued, this is
  deprecated [9.488000] m25p80 spi32766.0: found s25fl064k,
  expected en25q64 [9.492000] m25p80 spi32766.0: s25fl064k (8192
  Kbytes)
  
  [   10.828000] ath9k,eeprom ath9k_eep.8: using random mac [
  10.832000] ath9k,eeprom ath9k_eep.8: using led pin 0. [
  10.836000] ath9k,eeprom ath9k_eep.8: loaded ath9k eeprom
  
  GPIO-SPI makes wireless and booting slow.
  
  Is there anyway to help or to test?
 
 write a working spi driver for xrx200 :) there is one inside the owrt
 tree, however the vr9 has a bug where rx irqs stall if i recall
 properly. ugw has a hack to work around this but i never had time to
 look into this.
UGW?

-- 
Joerg Jungermann
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] Asterisk Chan CAPI

2009-07-02 Thread Joerg Jungermann
Hi,

I am using OpenWrt on some brcm47xx (Asus WL 500 GP) nativly and with some 
chroot magic
involved on AVM Fritzboxes 7170 and 7570. On the AVM Hardware I am using
the original Kernel by AVM to have ISDN/VOIP/POTS/ATM/ADSL/VDSL features.

I like to use Asterisk, so I build a set of patches to compile libcapi
(CAPI = Common ISDN API).
and asterisk-chan-capi for OpenWRT. The packages can be downloaded from
[1], I don't post these patches here, because of their size when unpacked.
(3-4 MiB)
Simply extract it to packages directory or link them in. 

The first archive is isdnutils.tar.bz2. It contains the package libcapi with
remote-CAPI patches. The Remote-CAPI patches allow to import the CAPI from an 
other server witch a rcapid server,
use if certain hardware has no ISDN hardware e.g. the brcm47xx boxes. In
[2] you can see how to import a remote CAPI.
Also contained in this archive are the packages rcapid, to export a CAPI,
capiinfo, to display the capabilites of the installed ISDD hardware and 
capifax to send G3 faxes.

The second archive chan_capi.tar.bz2 contains a package named chan_capi
[3]. It allows asterist 1.4 to use the ISDN controllers as devices for outgoing 
or
incoming calls.

The packages compile cleanly against Kamikaze 8.09.1/mips/mipsel/i386
r16499/mipsel. Testet with VoIP are all 8.09.1/mipsel. For the other
combinations I compiled, I just tested capiinfo to see if I can import and
export local or remote hardware.

I like to see these packages in openwrt package feed, so others can benefit
,too. Is there anything i can do to help this happen?

cya

PS: about a year ago I already posted these patches. I have visited at the 
linuxtag fair your 
stand and talked to the people there concerning these patches. They said i
should re-send it to this mailling list, maybe it has just be overseen.

[1] http://0x2f.org/files/openwrt-ipkg-capi-asterisk/
[2] http://www.ip-phone-forum.de/showthread.php?t=94625
[3] http://www.melware.org/ChanCapi
-- 
Joerg Jungermann

 Rechnerbetrieb Mathematik | IT Security - Netzwerke, Linux
 Universitaet-Paderborn|Embedded Devices, Typo3
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] pppd compile breaks

2008-12-13 Thread joerg jungermann
Hi!

I have certain issues compiling pppd in a fresh svn checkout from
kamikaze 8.09rc1 and current svn r13619.

Here are steps to reproduce it (CWD is openwrt-tree):
# rm -rf build_dir/*/ppp-*

# make package/ppp/compile V=99
make[5]: Leaving directory 
`/.hostpart/user/joju/src/kamikaze-8.09-wl500gp/build_dir/mipsel/ppp-2.4.3/pppd/plugins/pppoatm'
make[5]: Entering directory 
`/.hostpart/user/joju/src/kamikaze-8.09-wl500gp/build_dir/mipsel/ppp-2.4.3/pppd/plugins/radius'
mipsel-linux-uclibc-gcc -I. -I../.. -I../../../include -Os -pipe -mips32 
-mtune=mips32 -funit-at-a-time -fhonour-copts -fPIC 
-DRC_LOG_FACILITY=LOG_DAEMON -DCHAPMS=1 -DMPPE=1 -DMAXOCTETS=1   -c -o radius.o 
radius.c
In file included from radius.c:32:
../../chap_ms.h:70: warning: '__packed__' attribute ignored
../../chap_ms.h:81: warning: '__packed__' attribute ignored
mipsel-linux-uclibc-gcc -I. -I../.. -I../../../include -Os -pipe -mips32 
-mtune=mips32 -funit-at-a-time -fhonour-copts -fPIC 
-DRC_LOG_FACILITY=LOG_DAEMON -DCHAPMS=1 -DMPPE=1 -DMAXOCTETS=1   -c -o avpair.o 
avpair.c
mipsel-linux-uclibc-gcc -I. -I../.. -I../../../include -Os -pipe -mips32 
-mtune=mips32 -funit-at-a-time -fhonour-copts -fPIC 
-DRC_LOG_FACILITY=LOG_DAEMON -DCHAPMS=1 -DMPPE=1 -DMAXOCTETS=1   -c -o 
buildreq.o buildreq.c
mipsel-linux-uclibc-gcc -I. -I../.. -I../../../include -Os -pipe -mips32 
-mtune=mips32 -funit-at-a-time -fhonour-copts -fPIC 
-DRC_LOG_FACILITY=LOG_DAEMON -DCHAPMS=1 -DMPPE=1 -DMAXOCTETS=1   -c -o config.o 
config.c
mipsel-linux-uclibc-gcc -I. -I../.. -I../../../include -Os -pipe -mips32 
-mtune=mips32 -funit-at-a-time -fhonour-copts -fPIC 
-DRC_LOG_FACILITY=LOG_DAEMON -DCHAPMS=1 -DMPPE=1 -DMAXOCTETS=1   -c -o dict.o 
dict.c
mipsel-linux-uclibc-gcc -I. -I../.. -I../../../include -Os -pipe -mips32 
-mtune=mips32 -funit-at-a-time -fhonour-copts -fPIC 
-DRC_LOG_FACILITY=LOG_DAEMON -DCHAPMS=1 -DMPPE=1 -DMAXOCTETS=1   -c -o 
ip_util.o ip_util.c
mipsel-linux-uclibc-gcc -I. -I../.. -I../../../include -Os -pipe -mips32 
-mtune=mips32 -funit-at-a-time -fhonour-copts -fPIC 
-DRC_LOG_FACILITY=LOG_DAEMON -DCHAPMS=1 -DMPPE=1 -DMAXOCTETS=1   -c -o 
clientid.o clientid.c
mipsel-linux-uclibc-gcc -I. -I../.. -I../../../include -Os -pipe -mips32 
-mtune=mips32 -funit-at-a-time -fhonour-copts -fPIC 
-DRC_LOG_FACILITY=LOG_DAEMON -DCHAPMS=1 -DMPPE=1 -DMAXOCTETS=1   -c -o 
sendserver.o sendserver.c
sendserver.c: In function 'rc_random_vector':
sendserver.c:493: error: '_PATH_DEV_URANDOM' undeclared (first use in this 
function)
sendserver.c:493: error: (Each undeclared identifier is reported only once
sendserver.c:493: error: for each function it appears in.)
make[5]: *** [sendserver.o] Error 1
make[5]: Leaving directory 
`/.hostpart/user/joju/src/kamikaze-8.09-wl500gp/build_dir/mipsel/ppp-2.4.3/pppd/plugins/radius'
make[4]: *** [all] Error 2
make[4]: Leaving directory 
`/.hostpart/user/joju/src/kamikaze-8.09-wl500gp/build_dir/mipsel/ppp-2.4.3/pppd/plugins'
make[3]: *** [all] Error 2
make[3]: Leaving directory 
`/.hostpart/user/joju/src/kamikaze-8.09-wl500gp/build_dir/mipsel/ppp-2.4.3'
make[2]: *** 
[/.hostpart/user/joju/src/kamikaze-8.09-wl500gp/build_dir/mipsel/ppp-2.4.3/.built]
 Error 2
make[2]: Leaving directory 
`/.hostpart/user/joju/src/kamikaze-8.09-wl500gp/package/ppp'
make[1]: *** [package/ppp/compile] Error 2
make[1]: Leaving directory `/.hostpart/user/joju/src/kamikaze-8.09-wl500gp'
make: *** [package/ppp/compile] Error 2

From the source you can see, that in 
ppp-2.4.3/pppd/plugins/radius/sendserver.c,
that there is a problem in the C-include search path.

A quick fix is to adapt the failing line to the current C-include path.
The patch attached fixes it in that way.

cya

-- 
Joerg Jungermann

 Rechnerbetrieb Mathematik | IT Security - Netzwerke, Linux
 Universitaet-Paderborn|Embedded Devices, Typo3
Index: package/ppp/patches/211-radius-sendserver-fix.patch
===
--- package/ppp/patches/211-radius-sendserver-fix.patch	(revision 0)
+++ package/ppp/patches/211-radius-sendserver-fix.patch	(revision 0)
@@ -0,0 +1,11 @@
+--- ppp-2.4.3.orig/pppd/plugins/radius/sendserver.c	2004-11-14 08:26:26.0 +0100
 ppp-2.4.3/pppd/plugins/radius/sendserver.c	2008-12-13 13:47:31.148710712 +0100
+@@ -16,7 +16,7 @@
+ 
+ #include includes.h
+ #include radiusclient.h
+-#include pathnames.h
++#include pathnames.h
+ 
+ static void rc_random_vector (unsigned char *);
+ static int rc_check_reply (AUTH_HDR *, int, char *, unsigned char *, unsigned char);
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
http://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] What is the correct way of submit packages

2008-06-01 Thread joerg jungermann
Hi !

I'd like to ask how is the correct way to submit new packages for the
feeds repository.

I do this because i've sent some patches via this mailing list, and they
are not added yet. I received no comments. Its about the isdnutils and
asterisk14_chan_capi patches.

I can only guess why this so, i think because of some troubles in
building these packages or some formal failures.

But I don't know if know one tells.

bye
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
http://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] [PATCH] iw update

2008-05-14 Thread joerg jungermann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi !

I wanted to have the multiple wlan devices on my bcm47xx Asus Wl500gP
v1. The mac80211 stack supports it, but the iw utility in svn trunk does
not.

So here is the patch to update the iw utility.

This line for example now adds a new virtual wifi interface to wmaster0,
the physical interface
# iw dev wmaster0 interface add foo type monitor


Index: Makefile
===
- --- Makefile(revision 11136)
+++ Makefile(working copy)
@@ -9,8 +9,8 @@
 include $(TOPDIR)/rules.mk

 PKG_NAME:=iw
- -PKG_REV:=11b24c28b802bae2abda8f46d457df60fa602594
- -PKG_VERSION:=20071130_$(PKG_REV)
+PKG_REV:=4d3a72da3f21761bf4f2866a6a3400d4ecf67365
+PKG_VERSION:=20080414_$(PKG_REV)
 PKG_RELEASE:=1

 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz




- --
Joerg Jungermann
- 
 Rechnerbetrieb Mathematik  | Zustaendig fuer:
 Universitaet-Paderborn  - Fakultaet 5  |   Linux, Web
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFIKuYrsta551Pt/1URAjMhAJ91/xrJzUeELqRVx4isPOBqMeSTaQCePIYv
L0c027k/ql0SEAZ1SCeQ6AY=
=/PE4
-END PGP SIGNATURE-
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
http://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] [PATCH] privoxy boost 3.0.8

2008-05-14 Thread joerg jungermann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi

This patch boost privoxy to version 3.0.8, to support transparent
(intercepting) proxiing of HTTP/80 connections.

cya

Index: privoxy/Makefile
===
- --- privoxy/Makefile(revision 11136)
+++ privoxy/Makefile(working copy)
@@ -9,7 +9,7 @@
 include $(TOPDIR)/rules.mk

 PKG_NAME:=privoxy
- -PKG_VERSION:=3.0.6
+PKG_VERSION:=3.0.8
 PKG_RELEASE:=3

 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-stable-src.tar.gz

- --
Joerg Jungermann
- 
 Rechnerbetrieb Mathematik  | Zustaendig fuer:
 Universitaet-Paderborn  - Fakultaet 5  |   Linux, Web
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFIKudqsta551Pt/1URAh2TAJ0UGz7lDI4RsoXvT2Ui6X2iNemaPgCgl+LO
aFm4ofyBFkUEp+Oj7vWB+tY=
=2EJA
-END PGP SIGNATURE-
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
http://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel