[PATCH][Preface] More OpenWrt -> LEDE renames

2016-05-05 Thread lede
blems and/or going to openwrt sites/lists for help with non-stock and potentially getting rough or at least short treatment as a result). I've probably overdone it, and some things, like replacing openwrt-linux with lede-linux as GCC OS might cause unnecessarily complications; my goal wa

[LEDE-DEV] [PATCH] More OpenWrt -> LEDE renames

2016-05-06 Thread lede
From: Daniel Dickinson Branding: Rename openwrt to lede where appropriate (although probably some unnecessary changes were made due to not looking all that closely and doing a relatively mindless (but not automatic) search and replace). Probably this commit is incomplete and also has some

[LEDE-DEV] [PATCH 3/4] [RFC] fstools: block.c: Use instead of defining mount flags ourselves

2016-05-18 Thread lede
, ~MS_SYNCHRONOUS }, -- 1.9.1 ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

[LEDE-DEV] [PATCH 2/4] [RFC] fstools: block.c: Add support for checking vfat filesystems

2016-05-18 Thread lede
From: Daniel Dickinson vfat is a common filesystem which users may want to mount on an OpenWrt/LEDE device, so support peforming filesystem checks before mount for vfat. Signed-off-by: Daniel Dickinson --- block.c | 12 +--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git

[LEDE-DEV] [PATCH 1/4] [RFC] fstools: block.c: Make static string a const char * instead char *

2016-05-18 Thread lede
usr/sbin/e2fsck"; /* UBIFS does not need stuff like fsck */ if (!strncmp(pr->id->name, "ubifs", 5)) -- 1.9.1 ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

[LEDE-DEV] [PATCH 4/4] [RFC] fstools: block.c: Add ability to mount with ACL and XATTR support

2016-05-18 Thread lede
From: Daniel Dickinson Some users will want to use OpenWrt/LEDE devices as NAS devices and have full POSIX ACL and user_xattr support (along with other possible use cases), therefore add support to mount with POSIX ACLs and/or user XATTR support. Signed-off-by: Daniel Dickinson --- block.c

[LEDE-DEV] [PATCH 0/4] [RFC] fstools: block.c: Various enhancements

2016-05-18 Thread lede
: Add support for checking vfat filesystems [PATCH 3/4] [RFC] fstools: block.c: Use instead of defining mount flags [PATCH 4/4] [RFC] fstools: block.c: Add ability to mount with ACL and XATTR support ___ Lede-dev mailing list Lede-dev@lists.infradead.org

[LEDE-DEV] [RFC] uhttpd: [PATCH 1/2] modules: Add proxy module

2016-05-18 Thread lede
; va_end(arg2); - ustream_printf(cl->us, "%X\r\n", len); + ustream_printf(us, "%X\r\n", len); if (len < sizeof(buf)) - ustream_write(cl->us, buf, len, true); + ustream_write(us, buf, len, true); else - ustream_vprintf(cl->us, format, arg); - ustream_printf(cl->us, "\r\n", len); + ustream_vprintf(us, format, arg); + ustream_printf(us, "\r\n", len); } -void uh_chunk_printf(struct client *cl, const char *format, ...) +void uh_ustream_chunk_printf(struct client *cl, struct ustream *us, const char *format, ...) { va_list arg; va_start(arg, format); - uh_chunk_vprintf(cl, format, arg); + uh_ustream_chunk_vprintf(cl, us, format, arg); va_end(arg); } -void uh_chunk_eof(struct client *cl) +static void ustream_chunk_eof(struct client *cl, struct ustream *us) { if (!uh_use_chunked(cl)) return; @@ -94,7 +94,31 @@ void uh_chunk_eof(struct client *cl) if (cl->state == CLIENT_STATE_CLEANUP) return; - ustream_printf(cl->us, "0\r\n\r\n"); + ustream_printf(us, "0\r\n\r\n"); +} + +void uh_chunk_write(struct client *cl, const void *data, int len) +{ + uh_ustream_chunk_write(cl, cl->us, data, len); +} + +void uh_chunk_vprintf(struct client *cl, const char *format, va_list arg) +{ + uh_ustream_chunk_vprintf(cl, cl->us, format, arg); +} + +void uh_chunk_printf(struct client *cl, const char *format, ...) +{ + va_list arg; + + va_start(arg, format); + uh_ustream_chunk_printf(cl, cl->us, format, arg); + va_end(arg); +} + +void uh_chunk_eof(struct client *cl) +{ + ustream_chunk_eof(cl, cl->us); } /* blen is the size of buf; slen is the length of src. The input-string need -- 1.9.1 ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

[LEDE-DEV] [RFC] uhttpd: [PATCH 2/2] handlers: Add more sophisticated prefix/path matching heuristic

2016-05-18 Thread lede
uest)(struct client *cl, char *url, struct path_info *pi); }; -- 1.9.1 ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

[LEDE-DEV] [PATCH 2/4] v2: block.c: Add support for checking vfat filesystems

2016-05-18 Thread lede
From: Daniel Dickinson v2: Fix mixup of dosfsck checking ext* and e2fsck checking vfat. vfat is a common filesystem which users may want to mount on an OpenWrt/LEDE device, so support peforming filesystem checks before mount for vfat. Signed-off-by: Daniel Dickinson --- block.c | 12

[LEDE-DEV] [PATCH 0/2] fstools: block.c: Add support for checking vfat

2016-05-22 Thread lede
[PATCH 1/2] block.c: Make static string a const char * instead char * [PATCH 2/2] block.c: Add support for checking vfat filesystems ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

[LEDE-DEV] [PATCH 2/2] block.c: Add support for checking vfat filesystems

2016-05-22 Thread lede
From: Daniel Dickinson vfat is a common filesystem which users may want to mount on an OpenWrt/LEDE device, so support peforming filesystem checks before mount for vfat. Signed-off-by: Daniel Dickinson --- block.c | 16 +++- 1 file changed, 11 insertions(+), 5 deletions(-) diff

[LEDE-DEV] [PATCH 1/2] block.c: Make static string a const char * instead char *

2016-05-22 Thread lede
usr/sbin/e2fsck"; /* UBIFS does not need stuff like fsck */ if (!strncmp(pr->id->name, "ubifs", 5)) -- 1.9.1 ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

[LEDE-DEV] [PATCH 2/2] block.c: Add ability to mount with ACL and XATTR support

2016-05-22 Thread lede
From: Daniel Dickinson Some users will want to use OpenWrt/LEDE devices as NAS devices and have full POSIX ACL and user_xattr support (along with other possible use cases), therefore add support to mount with POSIX ACLs and/or user XATTR support. Signed-off-by: Daniel Dickinson --- block.c

[LEDE-DEV] [PATCH 1/2] block.c: Use instead of defining mount flags ourselves

2016-05-22 Thread lede
, ~MS_SYNCHRONOUS }, -- 1.9.1 ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

[LEDE-DEV] [PATCH 0/2] fstools: block.c: Add ACL & XATTR support

2016-05-22 Thread lede
Tested on ar71xx (Netgear WNDR3800) on ext4 with the right kernel support. [PATCH 1/2] block.c: Use instead of defining mount flags [PATCH 2/2] block.c: Add ability to mount with ACL and XATTR support ___ Lede-dev mailing list Lede-dev

[LEDE-DEV] [PATCH] Add support for TP-Link WR802N v1

2016-10-21 Thread julius+lede
P-LINK TL-WR841N/ND v1.5 diff --git a/target/linux/ar71xx/mikrotik/config-default b/target/linux/ar71xx/mikrotik/config-default index 65bed3f..e17b166 100644 --- a/target/linux/ar71xx/mikrotik/config-default +++ b/target/linux/ar71xx/mikrotik/config-default @@ -98,6 +98,7 @@ CONFIG_ATH79_MACH_RBSXTLITE=y # CONFIG_ATH79_MACH_TL_WR720N_V3 is not set # CONFIG_ATH79_MACH_TL_WR741ND is not set # CONFIG_ATH79_MACH_TL_WR741ND_V4 is not set +# CONFIG_ATH79_MACH_TL_WR802N_V1 is not set # CONFIG_ATH79_MACH_TL_WR841N_V1 is not set # CONFIG_ATH79_MACH_TL_WR841N_V8 is not set # CONFIG_ATH79_MACH_TL_WR841N_V9 is not set -- 2.9.3 ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

Re: [LEDE-DEV] [AD] support me hacking on OpenWrt/LEDE

2017-04-03 Thread lede-proj...@bepo.de
(and freifunk) a couple of years (and try use LEDE now), so it was a good style for us to payback the active community. And IMHO better then collecting cash via patreon's "Klingelbeutel". Our office is in Hamburg, but we want open a small office in Leipzig this year (asap). Is th

Re: [LEDE-DEV] [AD] support me hacking on OpenWrt/LEDE

2017-04-03 Thread lede-proj...@bepo.de
Hi Daniel, as I already says: I think it was good way to payback the active community. So we talking about the possibility for you to continue your work on lede-project.org, but as an employer in our company. I have a the moment not enough time to a detailed answer your mail, but I can understand

Re: [LEDE-DEV] [AD] support me hacking on OpenWrt/LEDE

2017-04-04 Thread lede-proj...@bepo.de
that you talk directly rather than through the mailing list? ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

[LEDE-DEV] [PATCH] Add missing packages for WeVO 11AC NAS

2017-05-06 Thread perillamint via Lede-dev
ES := kmod-mt7603 kmod-usb3 kmod-usb-ledtrig-usbport wpad-mini + DEVICE_PACKAGES := \ + kmod-mt7603 kmod-mt76x2 kmod-usb3 kmod-usb-ledtrig-usbport kmod-mt76 \ + wpad-mini endef TARGET_DEVICES += 11acnas -- 2.1.4 --- End Message --- __

[LEDE-DEV] Fwd: [OpenWrt-Devel] GSoC 2018 announced

2017-10-01 Thread tapper via Lede-dev
ps://blog.andi95.de/> PGP:0xB7E04818 ___ openwrt-devel mailing list openwrt-de...@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel --- End Message --- ___ Lede-dev

Re: [LEDE-DEV] Busybox weirdness

2017-11-02 Thread tv.debian--- via Lede-dev
42, Philip Prindeville wrote: On Nov 1, 2017, at 8:36 PM, Philip Prindeville wrote: Can someone else please try to reproduce this? I’m using busybox’s wget on x86_64 hardware, and when I do a “wget” of 2 http: URI’s, it mangles the second URI’s derived filename: root@lede:/tmp/x# c Downloa

Re: [LEDE-DEV] new RBM33G board

2017-12-28 Thread perillamint via Lede-dev
nterested about porting LEDE on it. It looks like typical MT7621A board which has PCIe slot instead of MT7603 & MT7612. ... or something much similar to Firefly FireWRT (https://wikidevi.com/wiki/Firefly_FireWRT unfortunately, discontinued due to its manufacturing cost) I successfully p

[LEDE-DEV] Packet forwarding during boot

2017-02-19 Thread david--- via Lede-dev
board with 2 ethernet ports. I connect the WAN port to another router and the LAN port to my laptop. During boot, my laptop gets an IP address from the parent router, because it seems that kernel is forwarding packets when lede has not started up completely. When boot finished I should renew m

[LEDE-DEV] dnsmasq sometimes fails to start on 17.01.0

2017-03-22 Thread Gui Iribarren via Lede-dev
esterday many times with the same router, which increases my confusion) any pointer is much appreciated :) ps: using lede Reboot (17.01-SNAPSHOT, r3285-111cf1b) built using SDK, so binaries are exactly the same as upstream (thanks Daniel Golle for t

[LEDE-DEV] stack trace: warning at .../sta_info.c:451 in LEDE 17.01.0

2017-03-22 Thread Gui Iribarren via Lede-dev
ngs i come across while using LEDE 17.01.0 on a TL-WR842ND a strange crash in wifi: http://pastebin.com/THLMDT6C WARNING: CPU: 0 PID: 22264 at compat-wireless-2016-10-08/net/mac80211/sta_info.c:451 0x80e84f90 [mac80211@80e8+0x5f540]() does that ring a bell for anyone? or is just a harmle

Re: [LEDE-DEV] dnsmasq sometimes fails to start on 17.01.0

2017-03-23 Thread Gui Iribarren via Lede-dev
tart" forcing a config change (new dns > black list) and followed by the delayed procd trigger. ok, but even in this case, at least one of the two processes should be able to start it up, and not die both :P > > - Eric --- End Message --- ___

Re: [LEDE-DEV] dnsmasq sometimes fails to start on 17.01.0

2017-03-23 Thread Gui Iribarren via Lede-dev
This one I also have no clue about. It didn't even make it to the "realstart" > part. So checking further what happened in between was causing that should be > helpful > > Wed Mar 22 18:26:10 2017 user.notice root: guidebug dnsmasq init > Wed

Re: [LEDE-DEV] stack trace: warning at .../sta_info.c:451 in LEDE 17.01.0

2017-03-23 Thread Gui Iribarren via Lede-dev
5:13, Koen Vandeputte wrote: > > > On 2017-03-23 02:30, Gui Iribarren via Lede-dev wrote: >> The sender domain has a DMARC Reject/Quarantine policy which disallows >> sending mailing list messages using the original "From" header. >> >> To mitigate this problem, t

Re: [LEDE-DEV] Release 17.01.0 binary packages have changed and SDK inconsistency

2017-03-28 Thread Gui Iribarren via Lede-dev
niel Golle wrote: > Hi Pau, > > On Tue, Mar 28, 2017 at 09:28:22PM +0200, Pau wrote: >> Hi. >> >> I am using the SDK and IB from LEDE 17.01.0 release (mips_24kc). I've >> been using it successfully the last days until now. I did not change >> anything but I

Re: [LEDE-DEV] dnsmasq sometimes fails to start on 17.01.0

2017-03-29 Thread Gui Iribarren via Lede-dev
q realstart >> cfg02411c wait 20 >> Wed Mar 22 18:26:08 2017 user.notice root: guidebug dnsmasq realstart >> cfg02411c wait 18 >> >> This one I also have no clue about. It didn't even make it to the >> "realstart" >> part. So checking further what happened in between was causing that should >> be >> helpful >> >> Wed Mar 22 18:26:10 2017 user.notice root: guidebug dnsmasq init >> Wed Mar 22 18:26:10 2017 user.notice root: guidebug dnsmasq reload >> Wed Mar 22 18:26:10 2017 user.notice root: guidebug dnsmasq startsrv , >> > --- End Message --- ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

Re: [LEDE-DEV] Using stable wireless/kernel but trunk userspace/kernel

2017-04-05 Thread Christian Lamparter via Lede-dev
XZ_DEC_ARM=y CONFIG_XZ_DEC_BCJ=y --- End Message --- ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

Re: [LEDE-DEV] ARM64 platform updates

2017-04-11 Thread Christian Lamparter via Lede-dev
4 target, why not also do the same to armvirt? After all, both are mostly virtual targets and from what I can tell, it's just ARMv8 vs ARMv7 (or maybe can these be folded into one?) Regards, Christian --- End Message --- _______ Lede-dev mailing lis

Re: [LEDE-DEV] [PATCH 2/2] ipq806x: Add support for ipq40xx subtarget

2017-04-14 Thread Christian Lamparter via Lede-dev
hcd xhci-hcd.0.auto: Cannot set link state. [ 31.357151] usb usb2-port1: cannot disable (err = -32) Can you please check the usb port functionality on your board too? - the board fails to reboot / restart. The WPJ428 LEDE-Image will just freeze. The FB4040 and RT-AC58U doesn't have no i

Re: [LEDE-DEV] [PATCH 2/2] ipq806x: Add support for ipq40xx subtarget

2017-04-19 Thread Christian Lamparter via Lede-dev
AM devices like the Asus RT-AC58U. > > + local-mac-address = [00 00 00 00 00 00]; > > +- vlan_tag = <1 0x1f>; > > ++ qcom,phy-mdio-addr = <4>; > > ++ qcom,poll-requ

Re: [LEDE-DEV] [PATCH] ipq806x: Add nand boot support for ipq40xx AP-DK04.1-C1

2017-05-06 Thread Christian Lamparter via Lede-dev
and IPQ806x AP148 Board: > a. NAND boot > b. ubi sysupgrade > > Signed-off-by: Ram Chandra Jangir Thanks for posting this. Chris Blake is currently in the process of adding the Cisco Meraki MR33. <https://github.com/riptidewave93/LEDE-MR33> The MR33 uses the IPQ4029 and has j

Re: [LEDE-DEV] openwrt and lede - remerge proposal

2017-05-08 Thread A. Benz via Lede-dev
dent young-timers knows XMMS? Once upon a time this was a household name (FOSS folks houses). Now I reckon those who use it as a primary player do it for nostalgia. Likewise, OpenWRT while more recognizable than LEDE, is not worth as much as people here paint it, and will only remain relevant

Re: [LEDE-DEV] [PATCH] ipq806x: Add nand boot support for ipq40xx AP-DK04.1-C1

2017-05-11 Thread Christian Lamparter via Lede-dev
d out. Regards, Christian --- End Message --- _______ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

Re: [LEDE-DEV] [PATCH] ipq806x: Add nand boot support for ipq40xx AP-DK04.1-C1

2017-05-13 Thread Christian Lamparter via Lede-dev
ze: 2048, OOB size: 64 [1.018135] 11 ofpart partitions found on MTD device qcom_nand.0 [1.025449] Creating 11 MTD partitions on "qcom_nand.0": so, it's working now. Regards, Christian --- End Message --- ___ Lede-dev mailing list

Re: [LEDE-DEV] [PATCH 2/3] ramips-mt7621: add GPIO-config for Ubiquiti-EdgeRouterX(-SFP)

2017-05-14 Thread Martin Blumenstingl via Lede-dev
gt; [ 1.68] invalid GPIO -22 > [ 1.69] Modules linked in: > [ 1.69] CPU: 3 PID: 1 Comm: swapper/0 Not tainted 4.4.61 #0 > > seems not to find the i2c-pca and it's gpios, as these modules are not > compile into the kernel. > [ 10.46] kmodloader: loading kern

Re: [LEDE-DEV] [PATCH] kernel: update kernel 4.9 to 4.9.28

2017-05-16 Thread A. Benz via Lede-dev
The sender domain has a DMARC Reject/Quarantine policy which disallows sending mailing list messages using the original "From" header. To mitigate this problem, the original message has been wrapped automatically by the mailing list software.--- Begin Message --- Hi, Compile and run tested on ip

Re: [LEDE-DEV] [PATCH v2] ipq806x: Add support for ipq40xx AP-DK01.1-C1 and AP-DK04.1-C1

2017-05-23 Thread Christian Lamparter via Lede-dev
ac1 for LAN group, > existing ipq806x boards are also following the same, and we would like to > continue with the same convention. I do not see any reason to deviate this > in ipq40xx based boards. > > I agree that ac58u nbg6617 and fritz4040 needs some changes, and Christian

[LEDE-DEV] [PATCH] base-files: nand: use CI_KERNPART whenever the kernel volume is needed

2017-05-30 Thread Christian Lamparter via Lede-dev
amp; { - local kern_ubivol="$(nand_find_volume $ubidev kernel)" + local kern_ubivol="$(nand_find_volume $ubidev $CI_KERNPART)" tar xf $tar_file sysupgrade-$board_name/kernel -O | \ ubiupdatevol /dev/$kern_ubivol -s $kernel_length - } -- 2.11.0 --- End Message --- ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

[LEDE-DEV] prosody package missing on i386 for lede-17.01

2017-06-05 Thread Florian Eckert via Lede-dev
y does the package prosody is missing for the following x86 targets? packages-17.01/i386_geode packages-17.01/i386_i486/ packages-17.01/i386_pentium packages-17.01/i386_pentium4 --- End Message --- ___ Lede-dev mailing list Lede-dev@lists.infradea

[LEDE-DEV] [PATCH] apm821xx: MR24: fix ethernet phy detection on the MR24

2017-06-07 Thread Christian Lamparter via Lede-dev
y() is +unable to detect the AR8035 PHY. As a result, the emac driver +bails out early and the user left with no ethernet. + +In order to stay compatible with existing configurations, the driver +tries the current reset approach at first. Only if the first attempt +timed out, it does perform one mor

[LEDE-DEV] amips/rt288x 17.01.2 missing

2017-06-14 Thread Tim Freedom via Lede-dev
rt288x is completely missing from the 17.01.2 download pages (ie. https://downloads.lede-project.org/releases/17.01.2/targets/ramips) it was there for 17.01.1 BTW. Could someone please investigate the reason it's missing and remedy it. The device page (https://lede-project.org/toh/hw

[LEDE-DEV] MV88E6060 switch

2017-07-18 Thread Nerijus Baliūnas via Lede-dev
mv88e6060 1902 0 I would like to have working ethernet on WRT300N. Or is it possible without mv88e6060? I found in some Chinese forum that people got it working, but no info how it was done. Regards, Nerijus --- End Message --- ___ Lede-d

Re: [LEDE-DEV] [OpenWrt-Devel] MV88E6060 switch

2017-07-19 Thread Nerijus Baliūnas via Lede-dev
his driver is quite useless on their own. It requires some assistance to properly detects switch IC either from arch code via platform device data or via DTS. Try to use OpenWRT/LEDE specific driver, which is used by ath25 and ar7 platforms by enabling CONFIG_MVSWITCH_PHY option in the kernel.

Re: [LEDE-DEV] [OpenWrt-Devel] MV88E6060 switch

2017-07-20 Thread Nerijus Baliūnas via Lede-dev
to use mv88e6060.ko which should use CONFIG_MVSWITCH_PHY or is CONFIG_MVSWITCH_PHY alone enough? This driver uses VLAN tags to determine which port the frame should be sent from. Try to create couple of VLAN sub-interfaces on eth0 with ID 1 and 2 and work with them. I'll try. And BTW d

Re: [LEDE-DEV] [OpenWrt-Devel] MV88E6060 switch

2017-07-21 Thread Nerijus Baliūnas via Lede-dev
AN tags to determine which port the frame should be sent from. Try to create couple of VLAN sub-interfaces on eth0 with ID 1 and 2 and work with them. I'll try. Yes, use the latest version of LEDE, please, to avoid facing with long-forgotten bugs. Tried the latest LEDE. Now I see

Re: [LEDE-DEV] [OpenWrt-Devel] MV88E6060 switch

2017-07-23 Thread Nerijus Baliūnas via Lede-dev
8, Nerijus Baliūnas via Lede-dev rašė: How do I configure vlan? Here I changed eth0 to eth0.1: config interface 'lan' option type 'bridge' option ifname 'eth0.1' option proto 'static' option ipaddr '192.168.1.1' opt

Re: [LEDE-DEV] [OpenWrt-Devel] MV88E6060 switch

2017-07-23 Thread Nerijus Baliūnas via Lede-dev
. How do I add it? I added swconfig to target/linux/ixp4xx/Makefile: DEFAULT_PACKAGES += ixp4xx-microcode fconfig swconfig but still no swconfig in generated lede-ixp4xx-generic-squashfs.img. Thanks, Nerijus --- End Message --- ___ Lede-dev mailing

Re: [LEDE-DEV] [OpenWrt-Devel] MV88E6060 switch

2017-07-24 Thread Nerijus Baliunas via Lede-dev
ed in order to > get the switch working? Because by default it is not installed. > > > Yes, it is necessary with this switch driver to have swconfig installed, > otherwise nothing would push CLEAN configurations to the mv88e6060 switch. I added swconfig, but still no network with the above config. Could you please give some hints if the above switch config is correct? Regards, Nerijus --- End Message --- ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

Re: [LEDE-DEV] [OpenWrt-Devel] MV88E6060 switch

2017-07-27 Thread Nerijus Baliunas via Lede-dev
7 21:31:01 +0300 Sergey Ryazanov wrote: > > Tried the latest LEDE. Now I see in the boot log: > > [6.507617] NPE-B: firmware's license can be found in > > /usr/share/doc/LICENSE.IPL > > [6.515168] NPE-B: firmware functionality 0x2, revision 0x2:1 > > [

Re: [LEDE-DEV] [OpenWrt-Devel] MV88E6060 switch

2017-07-27 Thread Nerijus Baliunas via Lede-dev
: MII read [3] -> 0x0 [1.003068] libphy: IXP4xx MII Bus: probed [1.010033] eth0: MII PHY 32 on NPE-B [1.014186] IXP4xx MII Bus #1: MII read [1] -> 0x7849 [ 1.014288] IXP4xx MII Bus #1: MII read [0] -> 0x1000 [1.014393] IXP4xx MII Bus #1: MII write [0] <- 0x1000, err = 0 [1.016811] eth1: MII PHY 1 on NPE-C Regards, Nerijus --- End Message --- ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

[LEDE-DEV] [PATCH] dnsmasq: backport upstream fix for segfault

2017-08-24 Thread Ash Benz via Lede-dev
+along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +-#include + #include "dnsmasq.h" + + #ifdef HAVE_SCRIPT -- 2.14.1 --- End Message --- _______ Lede-dev mailing list Lede-dev@lists.infradead.org http://l

[LEDE-DEV] Advertising Opportunities

2017-08-29 Thread Annie Mai via Lede-dev
rcepted, corrupted, lost, destroyed, arrive late, incomplete or contain viruses. The sender, therefore, does not accept liability for any errors or omissions in the contents of the message. --- End Message --- _______ Lede-dev mailing list Lede-dev

Re: [LEDE-DEV] [PATCHv2 3/4] kernel/4.4: add generic spi-nand framework

2017-09-03 Thread Christian Lamparter via Lede-dev
. I had some success with it on the RT-AC58U. All I needed there was to add a custom definition for the Winbond W25N01GV chip [0] and enable CONFIG_MTD_SPINAND_MT29F=y CONFIG_MTD_SPINAND_ONDIEECC=y Maybe you too can get away with something similar to this? Until linux-mtd _finally_ knows what they w

Re: [LEDE-DEV] [PATCH] ar71xx: Add GRO support to ag71xx

2017-09-03 Thread Christian Lamparter via Lede-dev
195 Mbps = 0.3949 ~ 40% Regards, Christian --- End Message --- _______ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

Re: [LEDE-DEV] [PATCHv2 3/4] kernel/4.4: add generic spi-nand framework

2017-09-05 Thread Christian Lamparter via Lede-dev
arget/linux/pistachio/patches-4.4/0001-mtd-nand-Introduce-SPI-NAND-framework.patch commit message: "5. mtd: spi-nand: Support common SPI NAND devices This commit uses the recently introduced SPI NAND framework to support Micron MT29F and Gigadevice GD5F serial NAND devices. These two fam

Re: [LEDE-DEV] [OpenWrt-Devel] MV88E6060 switch

2017-09-08 Thread Nerijus Baliunas via Lede-dev
read [3] -> 0x602 > [0.998319] IXP4xx MII Bus #29: MII read [2] -> 0x0 > [0.998420] IXP4xx MII Bus #29: MII read [3] -> 0x602 > [1.21] IXP4xx MII Bus #30: MII read [2] -> 0x0 > [1.000120] IXP4xx MII Bus #30: MII read [3] -> 0x0 > [1.001588] IXP4xx MII Bus #31: MII read [2] -> 0x0 > [1.001687] IXP4xx MII Bus #31: MII read [3] -> 0x0 > [1.003068] libphy: IXP4xx MII Bus: probed > [1.010033] eth0: MII PHY 32 on NPE-B > [1.014186] IXP4xx MII Bus #1: MII read [1] -> 0x7849 > [1.014288] IXP4xx MII Bus #1: MII read [0] -> 0x1000 > [1.014393] IXP4xx MII Bus #1: MII write [0] <- 0x1000, err = 0 > [1.016811] eth1: MII PHY 1 on NPE-C --- End Message --- ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

Re: [LEDE-DEV] [PATCH 4/4] ramips/RT5350F-OLINUXINO(-EVB) dts: enable ttyS1

2017-09-16 Thread Martin Blumenstingl via Lede-dev
] 1c00.uartlite: ttyS1 at MMIO 0x1c00 (irq = 20, > base_baud = 2500000) is a Palmchip BK-3103 > [0.680207] spi spi0.0: force spi mode3 > > With swapped items in rt5350.dtsi > [0.564356] gpio-export gpio_export: 3 gpio(s

Re: [LEDE-DEV] [PATCH 1/3] Remove ttl==255 restriction for queries

2017-09-28 Thread Christian Lamparter via Lede-dev
; >} > > > > -if (ttl != 255) > > -return; > > - > >if (debug > 1) { > >char buf[256]; > > > > @@ -310,9 +307,6 @@ read_socket6(struct uloop_fd *u, unsigned int events) > >} > > } > >

Re: [LEDE-DEV] [OpenWrt-Devel] MV88E6060 switch

2017-09-29 Thread Nerijus Baliunas via Lede-dev
cat */*/phy_id 0x8201 0x088e6060 0x01410c87 0x01410c87 0x01410c87 0x01410c87 0x0000 0x 0x 0x0602 0x0602 0x0602 0x0602 0x00000602 0x0602 0x 0x Regards, Nerijus --- End Message --- ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

Re: [LEDE-DEV] [OpenWrt-Devel] MV88E6060 switch

2017-10-08 Thread Nerijus Baliunas via Lede-dev
ned because PHY ID for eth0 is > hardcoded inside WRT300Nv2 setup code. > > To check whether your board can act without dedicated driver for 88E6060: > * revert any earlier modifications to LEDE if you do any > * disable any drivers for 88E6060 (e.g. disable both > CONFIG_NET_DS

Re: [LEDE-DEV] [OpenWrt-Devel] MV88E6060 switch

2017-10-08 Thread Nerijus Baliunas via Lede-dev
0 RX bytes:92 (92.0 B) TX bytes:1551 (1.5 KiB) Ping still does not answer. Regards, Nerijus --- End Message --- ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

Re: [LEDE-DEV] [OpenWrt-Devel] MV88E6060 switch

2017-10-08 Thread Nerijus Baliunas via Lede-dev
de Press the [1], [2], [3] or [4] key and hit [enter] to select the debug level [ 10.310754] mount_root: jffs2 not ready yet, using temporary tmpfs overlay [ 10.359891] urandom-seed: Seed file not found (/etc/urandom.seed) [ 10.492841] eth0: link down Regards, Nerijus --- End Message --

Re: [LEDE-DEV] [OpenWrt-Devel] MV88E6060 switch

2017-10-11 Thread Nerijus Baliunas via Lede-dev
ed:0 overruns:0 carrier:0 collisions:0 txqueuelen:100 RX bytes:0 (0.0 B) TX bytes:1551 (1.5 KiB) Ping to neither 192.168.1.1 nor 192.168.0.10 does not answer. Regards, Nerijus --- End Message --- ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

Re: [LEDE-DEV] [OpenWrt-Devel] MV88E6060 switch

2017-10-11 Thread Nerijus Baliunas via Lede-dev
p again. Regards, Nerijus --- End Message --- ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

Re: [LEDE-DEV] [OpenWrt-Devel] MV88E6060 switch

2017-10-11 Thread Nerijus Baliunas via Lede-dev
urandom.seed [ 10.553168] eth0: link down --- End Message --- ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

Re: [LEDE-DEV] [OpenWrt-Devel] MV88E6060 switch

2017-10-11 Thread Nerijus Baliunas via Lede-dev
gt; Check, please, memory information and list of loaded kernel modules: > # cat /proc/meminfo > # lsmod root@LEDE:/# free total used free sharedbuffers cached Mem: 12232 11352880 40632 2420 -/+ buffers/ca

Re: [LEDE-DEV] [OpenWrt-Devel] MV88E6060 switch

2017-10-11 Thread Nerijus Baliunas via Lede-dev
7 23:28:00 +0300 Sergey Ryazanov wrote: > > root@LEDE:/# cat /proc/meminfo > > MemTotal: 12232 kB > > MemFree: 996 kB > > Looks like this ^^^ is the cause of the "ifconfig up" failure. Your > board really have not free RAM. > > As a qui

Re: [LEDE-DEV] [OpenWrt-Devel] MV88E6060 switch

2017-10-11 Thread Nerijus Baliunas via Lede-dev
kB # ifconfig eth0 down # cat /proc/meminfo MemTotal: 12232 kB MemFree:2136 kB --- End Message --- ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

Re: [LEDE-DEV] [OpenWrt-Devel] MV88E6060 switch

2017-10-11 Thread Nerijus Baliunas via Lede-dev
Nerijus --- End Message --- _______ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

Re: [LEDE-DEV] [OpenWrt-Devel] MV88E6060 switch

2017-10-14 Thread Nerijus Baliunas via Lede-dev
y will be ready. Thank you. Another question about wifi - there is no /etc/config/wireless file, and even if I create it and reboot the device, wifi is not working and there is no wlan0 interface. ath5k module is loaded. Regards, Nerijus --- End Message --- ____

[LEDE-DEV] WRT300N v2 AR5416 (was:MV88E6060 switch)

2017-10-15 Thread Nerijus Baliunas via Lede-dev
576 kB Regards, Nerijus --- End Message --- _______ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

Re: [LEDE-DEV] Serial data getting lost - bug or a feature?

2017-10-20 Thread Jay Carlson via Lede-dev
Yún uses packets. Jay --- End Message --- ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

[LEDE-DEV] WhiteBox Wireless Router Supplier

2017-11-03 Thread Alan Gregory via Lede-dev
(White Box/Lede 100% Compatible) wireless router supplier. If anyone has any recommendation. Must have: Dual Band (2.4/5.8Ac) At least 4 gigabit ports. 2 or more external antennas. Case: ISP providing wireless for customers,bulk order. --- E

Re: [LEDE-DEV] [RFC] toolchain: fix GCC version check causing failure on Debian Testing with gcc-7

2017-11-26 Thread Martin Blumenstingl via Lede-dev
;, \ > + g++ -dumpversion | grep -E > '(4\.[8-9]|5\.[0-9]|6\.[0-9]|^7|7\.[0-9])', \ > g++48 --version | grep g++, \ > g++49 --version | grep g++, \ > g++5 --version | grep g++, \ > g++6 --version | grep g++, \ >

Re: [LEDE-DEV] [PATCH] jshn: add functionality to read big JSON

2017-12-12 Thread Christian Beier via Lede-dev
7;w': return jshn_format(no_newline, indent); case 'n': diff --git a/sh/jshn.sh b/sh/jshn.sh index bf76edb..0a146e1 100644 --- a/sh/jshn.sh +++ b/sh/jshn.sh @@ -174,6 +174,10 @@ json_load() { eval "`jshn -r "$1"`" } +json_load_file() { + eval &q

[LEDE-DEV] mtdsplit differences between ar71xx linux 4.4 and 4.9?

2018-01-07 Thread Christian Beier via Lede-dev
ot;emr3k:". Anyone any hints on what I might be missing? Could it be that the way to generate a sysupgrade image has changed? Here's what I'm using for emr3000 (and what works with 4.4): https://github.com/bk138/source/blob/emr3000-wip/target/linux/ar71xx/image/senao.mk Thanks in advance, Christian --- End Message --- ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

[LEDE-DEV] How to enable the zImage and squashfs files, rather than packaged as 'bin' for sys upgrade

2018-02-19 Thread John Clark via Lede-dev
b 19 18:04 openwrt-toolchain-mpc85xx-p1020_gcc-5.5.0_musl.Linux-x86_64.tar.bz2 -rw-r--r-- 1 jeclark2006 jeclark2006 1108 Feb 19 18:04 sha256sums John Clark. --- End Message --- ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.inf

Re: [LEDE-DEV] [OpenWrt-Devel] [PATCH v1 1/1] openssh: disable passwords for openssh server

2018-02-28 Thread Sami Olmari via Lede-dev
r expanding .config and _more_ local customizations applied as > local customizations :) > > Cheers, > Karl Palsson > > > ___ > openwrt-devel mailing list > openwrt-de...@lists.openwrt.org > https://lists.openwrt.org/cgi

Re: [LEDE-DEV] New nagging message in Flash Operations page

2018-03-24 Thread Florian Eckert via Lede-dev
is is not what you want! --- End Message --- _______ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

Re: [LEDE-DEV] Duplicates in bind subpackages?

2018-03-25 Thread Noah Meyerhans via Lede-dev
8 at 02:24:57PM -0600, Philip Prindeville wrote: > Collected errors: > * check_data_file_clashes: Package bind-check wants to install file > /home/philipp/lede/build_dir/target-x86_64_musl/root-x86/usr/sbin/named-checkconf > But that file is already provided by

Re: [LEDE-DEV] ath10k firmware crashes in mesh mode on QCA9880

2016-12-13 Thread Benjamin Morgan via Lede-dev
Number of Spatial Streams seen in mesh beacons and in mesh data packet? Thanks, Ashok --- End Message --- _______ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

Re: [LEDE-DEV] ath10k firmware crashes in mesh mode on QCA9880

2016-12-13 Thread Alexis Green via Lede-dev
0211AC=y, sends mesh peering messages and creates peers without AC support, causing firmware to get confused. After recompiling supplicant with the correct flag, no more crashes were observed in casual testing. I submitted a pull request to LEDE to, hopefully, fix it in upstream. Best regards,

Re: [LEDE-DEV] ath10k firmware crashes in mesh mode on QCA9880

2016-12-13 Thread Alexis Green via Lede-dev
re 11n only capable nodes in > an 11s mesh? > > > > -adrian --- End Message --- _______ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

Re: [LEDE-DEV] QCA Dakota support

2016-12-19 Thread Christian Lamparter via Lede-dev
k that's the support for the RT-AC58U is now mostly complete. I haven't heard any complains and there seem to be people using it. Regards, Christian --- End Message --- ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

Re: [LEDE-DEV] [PATCH] mediatek: enable support for vfpv4 and neon

2016-12-19 Thread Christian Lamparter via Lede-dev
ee up some resources. > > > > Cc: John Crispin > > Signed-off-by: Christian Lamparter > > sorry took me ages to build/boot an image. merged into my staging tree > just now Looks like this was silently dropped? Doesn't the CPU like NEON/VFPV4 or was the p

Re: [LEDE-DEV] Release planning

2016-12-22 Thread Christian Lamparter via Lede-dev
use 1.1.16 which unfortunately has the downside that it's not getting updated automatically. [0] <https://github.com/chunkeey/LEDE-IPQ40XX/commit/4c487165ff074e2f3fe7116140d1d9cded95b018> Regards, Christian --- End Message --- ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

Re: [LEDE-DEV] Help needed: IP175D + RT3662 issues on a "new" device

2016-12-24 Thread Martin Blumenstingl via Lede-dev
at 5:17 PM, antonio rossi wrote: > Hi everybody, > > i'll try to make this as short as possible despite the large amount of > information needed to describe the issue: > > i am working on adding support to LEDE/OpenWRT for DIR-815 A1, it's a > RT3662+RT3092 device with

Re: [LEDE-DEV] [PATCH RFC 1/2] openvpn: update to 2.4_rc2

2016-12-25 Thread Martin Blumenstingl via Lede-dev
y only AES-GCM) > * ECDH key exchange for control channel > * LZ4 compression support it seems that there's a small compatibility problem for "older VPN servers" with OpenVPN 2.4 and mbedTLS: TLS-DHE-* ciphers don't seem to be supported anymore. I'm not sure if that's

Re: [LEDE-DEV] Help needed: IP175D + RT3662 issues on a "new" device

2016-12-25 Thread Christian Lamparter via Lede-dev
nt of > >> information needed to describe the issue: > >> > >> i am working on adding support to LEDE/OpenWRT for DIR-815 A1, it's a > >> RT3662+RT3092 device with an infamous IP175D switch IC. > >> i managed to get everything working properly, save for

Re: [LEDE-DEV] [PATCH] kernel: make fix extending dtb cmd with bootloader

2016-12-25 Thread Martin Blumenstingl via Lede-dev
index.php?do=details&task_id=350 [1] https://git.lede-project.org/?p=source.git;a=commitdiff;h=6b94234a6598b855573a6516494de8e7d755e944 --- End Message --- ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

Re: [LEDE-DEV] [OpenWrt-Devel] Any interest in adding runit to OpenWRT?

2016-12-25 Thread Denys Vlasenko via Lede-dev
te all daemons en mass to be run under runit. >> We can try it with, say, ntpd first. If it goes well, we'd use it >> for more and more things. If it goes badly, we drom it. >> >> Thoughts? > > Here's the thing: OpenWrt/LEDE is starting services via procd. > This is a

Re: [LEDE-DEV] [PATCH] kernel: make fix extending dtb cmd with bootloader

2016-12-27 Thread Martin Blumenstingl via Lede-dev
n't want bootloader's init arg")? >> - reverting my patch and enabling CONFIG_MIPS_CMDLINE_DTB_EXTEND would >> fix #2 and #3 while #1 is broken again >> - not reverting my patch, enabling CONFIG_MIPS_CMDLINE_DTB_EXTEND and >> adding a "black- o

Re: [LEDE-DEV] Help needed: IP175D + RT3662 issues on a "new" device

2016-12-30 Thread Christian Lamparter via Lede-dev
xisting soc_mt7620 code). The RT3883/3662 just lacks the internal switch otherwise it looks to be the same. Regards, Christian --- End Message --- ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

[LEDE-DEV] [PATCH] musl: update musl to 1.1.16 and switch to download from git

2017-01-02 Thread Christian Lamparter via Lede-dev
The sender domain has a DMARC Reject/Quarantine policy which disallows sending mailing list messages using the original "From" header. To mitigate this problem, the original message has been wrapped automatically by the mailing list software.--- Begin Message --- This patch updates musl to 1.1.16

  1   2   >