[OpenWrt-Devel] About commit ar71xx and other related boot loader into u-boot

2011-12-13 Thread Macpaul Lin
them into current u-boot trunk. Hope this could be happened. I can do it, but the progress might be very slow even I'm one of the u-boot maintainer. Because I have other develop task on hand. Hope to hear your response. Thanks! -- Best regards, Macpaul Lin

[OpenWrt-Devel] [PATCH] udhcpc: fix default script when netmask is 255.255.255.255

2011-11-04 Thread Macpaul Lin
of 4G NIC. Signed-off-by: Macpaul Lin --- .../files/usr/share/udhcpc/default.script |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/package/base-files-network/files/usr/share/udhcpc/default.script b/package/base-files-network/files/usr/share/udhcpc/default.sc

[OpenWrt-Devel] [PATCH v4] libeap: add libeap support from wpa_supplicant with libeap_peer

2011-10-13 Thread Macpaul Lin
Add libeap support to wpa_supplicant with patch wpa_supplicant-0.7.3-generate-libeap-peer.patch. Library libeap is important to support wimax connection manager, user space wimax driver and connection manager is supported by libeap as well. Signed-off-by: Macpaul Lin --- Changes for v2

[OpenWrt-Devel] [PATCH] gctwimax: add gctwimax-0.0.2 support

2011-10-13 Thread Macpaul Lin
Add gctwimax-0.0.2 support. gctwimax is a user space wimax driver and connection manager. Signed-off-by: Macpaul Lin --- package/gctwimax/Config.in | 13 + package/gctwimax/Makefile| 62 ++ package/gctwimax/patches/0001

[OpenWrt-Devel] [PATCH v3] libeap: add libeap support from wpa_supplicant with libeap_peer

2011-10-12 Thread Macpaul Lin
other packages. Signed-off-by: Macpaul Lin --- package/libeap/Makefile| 79 + .../libeap/patches/100-libeap_peer_support.patch | 355 2 files changed, 434 insertions(+), 0 deletions(-) create mode 100644 package/libeap/Makefile create

[OpenWrt-Devel] [PATCH v2] libeap: add libeap support from wpa_supplicant with libeap_peer

2011-10-11 Thread Macpaul Lin
From: macpaul Add libeap support to wpa_supplicant with patch wpa_supplicant-0.7.3-generate-libeap-peer.patch. Library libeap is important to support wimax connection manager, user space wimax driver and connection manager is supported by libeap as well. Signed-off-by: macpaul --- package/lib

Re: [OpenWrt-Devel] [PATCH] add support of m25p80 with mx25lxxx support to kirkwood (add filename information)

2010-02-08 Thread Macpaul Lin
config-2.6.30 for better supporting with different kernels. 2010/2/8 Gabor Juhos : > Macpaul Lin írta: >> Description: >> >> 1. Suggestion: >> 1.a This patch add support of m25p80 with mx25lxxx support to kirkwood >> based platform. >> 1.b Because mx25lxxx s

[OpenWrt-Devel] [PATCH] Upgrade kirkwood kernel support from 2.6.30 to 2.6.32

2010-02-07 Thread Macpaul Lin
nfig-default Signed-off-by: Macpaul Lin --- # # Automatically generated make config: don't edit # Linux kernel version: 2.6.29 # Thu Jun 18 17:06:27 2009 # CONFIG_ARM=y CONFIG_SYS_SUPPORTS_APM_EMULATION=y CONFIG_GENERIC_GPIO=y CONFIG_GENERIC_TIME=y CONFIG_GENERIC_CLOCKEVENTS=y CONFIG_MMU=y # CO

[OpenWrt-Devel] [PATCH] add support of m25p80 with mx25lxxx support to kirkwood (add filename information)

2010-02-07 Thread Macpaul Lin
(for kirkwood) into /target/linux/generic-2.6/patches 2. Patch file placement: /trunk/target/linux/kirkwood/patches 3. Patch filename: 100-mtd_m25p80_add_mx25lxxx_support.patch Signed-off-by: Macpaul Lin --- Index: linux-2.6.32.7/drivers/mtd/devices/m25p80.c

[OpenWrt-Devel] [PATCH] add support of m25p80 with mx25lxxx support to kirkwood

2010-02-07 Thread Macpaul Lin
(for kirkwood) into /target/linux/generic-2.6/patches 2. Patch file placement: /trunk/target/linux/kirkwood/patches Signed-off-by: Macpaul Lin --- Index: linux-2.6.32.7/drivers/mtd/devices/m25p80.c === --- a/drivers/mtd/devices

[OpenWrt-Devel] [PATCH] generic-2.6: RTSP Netfilter fix for Kernel 2.6.26-2.6.32 - Sorry for resending the inline patch again by gmail

2010-01-27 Thread Macpaul Lin
timeout < 0) { + printk("nf_conntrack_rtsp: setup_timeout must be a positive integer\n"); + return -EBUSY; + } + + rtsp_expect_policy.max_expected = max_outstanding; + rtsp_expect_policy.timeout = setup_timeout; + + rtsp_buffer = kmalloc(65536, GFP_KERNEL); + if (!rtsp_buffer) + return -ENOMEM; + + /* If no port given, default to standard rtsp port */ + if (ports[0] == 0) { + ports[0] = RTSP_PORT; + } + + for (i = 0; (i < MAX_PORTS) && ports[i]; i++) { + hlpr = &rtsp_helpers[i]; + memset(hlpr, 0, sizeof(struct nf_conntrack_helper)); + hlpr->tuple.src.l3num = AF_INET; + hlpr->tuple.src.u.tcp.port = htons(ports[i]); + hlpr->tuple.dst.protonum = IPPROTO_TCP; + //hlpr->mask.src.u.tcp.port = 0x; + //hlpr->mask.dst.protonum = 0xFF; + hlpr->expect_policy = &rtsp_exp_policy; + hlpr->me = THIS_MODULE; + hlpr->help = help; + + tmpname = &rtsp_names[i][0]; + if (ports[i] == RTSP_PORT) { + sprintf(tmpname, "rtsp"); + } else { + sprintf(tmpname, "rtsp-%d", i); + } + hlpr->name = tmpname; + + DEBUGP("port #%d: %d\n", i, ports[i]); + + ret = nf_conntrack_helper_register(hlpr); + + if (ret) { + printk("nf_conntrack_rtsp: ERROR registering port %d\n", ports[i]); + fini(); + return -EBUSY; + } + num_ports++; + } + return 0; +} + +module_init(init); +module_exit(fini); + +EXPORT_SYMBOL(nf_nat_rtsp_hook_expectfn); + -- Best regards, Macpaul Lin ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/mailman/listinfo/openwrt-devel

[OpenWrt-Devel] [PATCH] kirkwood: add 88F6281_REV_A1 and timing support - Sorry for resending the inline text patch

2010-01-27 Thread Macpaul Lin
(rev == MV88F6281_REV_A0 || + rev == MV88F6281_REV_A1)) return 2; return 16667; -- Best regards, Macpaul Lin ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org h

[OpenWrt-Devel] [PATCH] kirkwood: add m25p80 support - Sorry for resending the inline text patch

2010-01-27 Thread Macpaul Lin
6405d", 0xc22017, 0, 64 * 1024, 128, }, + { "mx25l12805d", 0xc22018, 0, 64 * 1024, 256, }, + { "mx25l12855e", 0xc22618, 0, 64 * 1024, 256, }, + /* Spansion -- single (large) sector size only, at least * for the chips listed here (witho

[OpenWrt-Devel] [PATCH] generic-2.6: RTSP Netfilter fix for Kernel 2.6.26-2.6.32

2010-01-27 Thread Macpaul Lin
time Download  http://www.apple.com/quicktime/download/ I've tried it on kirkwood platform, and the patch works. :) -- Best regards, Macpaul Lin 190-netfilter_rtsp.patch Description: Binary data ___ openwrt-devel mailing list openwrt-devel@lists.openw

[OpenWrt-Devel] [PATCH] kirkwood: add 88F6281_REV_A1 and timing support

2010-01-27 Thread Macpaul Lin
This patch added 88F6281_REV_A1 definition and fixed the timing problem (which effects UART) when the board use 88F6281_REV_A1. -- Best regards, Macpaul Lin 006-6281_REV_01.patch Description: Binary data ___ openwrt-devel mailing list openwrt-devel

[OpenWrt-Devel] [PATCH] kirkwood: add m25p80 support

2010-01-27 Thread Macpaul Lin
This patch add flash support of m25p80 to kirkwood cpu. Which is using by the sheevaplug device I have. -- Best regards, Macpaul Lin 005-m25p80.patch Description: Binary data ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https

[OpenWrt-Devel] RTSP Netfilter fix for kernel 2.6.26-2.6.32

2010-01-03 Thread Macpaul Lin
opensource/server/streaming/index.html Apple Quicktime Download http://www.apple.com/quicktime/download/ I've tried it on kirkwood platform, and the patch works. :) -- Best regards, Macpaul Lin ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/mailman/listinfo/openwrt-devel