**** BEGIN LOGGING AT Fri Aug 09 02:59:59 2013 Aug 09 09:01:48 what does 'cb' stand for in 'uloop_fd_handler cb' in uloop.h in libubox? /me assumes mumble-buffer? Aug 09 09:02:14 callback Aug 09 09:02:18 ? Aug 09 09:03:06 ah, that would make sense, thank you! Aug 09 09:19:30 Hi guys. I search for an USB Jtag adapter for a VR9 based device (i haven't bricked it but i want one before i try to flash the bootloader). I don't know which Jtag adapter i can use. Maybe you can give me a hint for what i can search Aug 09 09:23:18 middey: bdi3000, but it's quite expensive toy 2.5k euro Aug 09 09:25:14 luka thats to expensive for me. I saw many cheap interfaces about 30 US $ . Will they work also ? I just want to reflash my router if it bricks Aug 09 09:26:04 what device do you have? Aug 09 09:27:34 easybox 904 lte and a old netgear DG834GBv3. But when it just works for the easybox 904 it will be ok too Aug 09 09:27:56 i have ordered one 904 Aug 09 09:28:13 i dont know if it has nand flash in it Aug 09 09:28:33 and if you want to flash daniels uboot it does not have support for booting from nand Aug 09 09:28:51 the bootlog says nand Aug 09 09:29:17 well, that is not supported yet Aug 09 09:29:40 the people from gl-violations helped me to get the sourcecode for it and it include the uboot i would just like to patch out the passwort check Aug 09 09:30:23 ok Aug 09 09:30:59 what version have you ordered the lte or the dsl ? Aug 09 09:34:18 luka do you know if the GPL Code must include the driver for ethernet and wireless lan ? Aug 09 09:35:03 i have ordered the lte 904 board Aug 09 09:35:24 i'm not the right person to ask regarding the gpl code Aug 09 09:35:59 ok, if you want i can upload a modified image which enables telnet and the serial console for it Aug 09 09:36:30 uboot or kernel? Aug 09 09:36:49 kernel+squashfs flashable via tftp Aug 09 09:37:11 i'd prefer to get the gpl sources Aug 09 09:39:22 would be a mega.co.nz link ok or should i search for the driect download link ? Aug 09 09:46:48 aha, /me may be on to something Aug 09 09:48:33 print ctx->sock (from follow_log) (failing) => {cb = 0x7702ebb8 , fd = 0, eof = true, error = true, registered = false, flags = 0 '\000'} Aug 09 09:49:10 (restarted/succeeding) => {cb = 0x7769ebb8 , fd = 0, eof = false, error = false, registered = true, flags = 9 '\t'} Aug 09 09:49:34 different! Aug 09 09:52:33 russell--: what are you working on? Aug 09 09:52:48 trying to figure out why remote syslog isn't working Aug 09 09:58:43 only three places eof set to true Aug 09 10:04:34 <[florian]> zajec__: hey! Aug 09 10:11:41 russell--: so the problem is the udp transmission in logread, right? Aug 09 10:12:51 i don't think so, i think it is something to do with ubus Aug 09 10:13:03 ah, so the logread process isn't even getting messages from ubus? Aug 09 10:13:04 logread never gets the message to send Aug 09 10:13:08 ok Aug 09 10:13:11 i think so Aug 09 10:13:18 did you try with the updates i committed? Aug 09 10:13:29 r37740 Aug 09 10:13:47 i'm running r37742 Aug 09 10:13:49 ok Aug 09 10:14:08 does ubusd die and get restarted some time during the boot? Aug 09 10:14:18 not sure Aug 09 10:14:31 would that show up on the console? Aug 09 10:15:26 if so, i don't see it Aug 09 10:19:06 if (events[n].flags & EV_ERROR) { u->error = true; Aug 09 10:19:30 in uloop_fetch_events() Aug 09 10:20:26 [florian]: hello :) Aug 09 10:24:10 [florian]: i wasn't considering performance wheh implementing that RX path Aug 09 10:24:14 [florian]: now i do ;) Aug 09 10:24:24 [florian]: thanks for your tip, i'll try that Aug 09 10:24:36 [florian]: i'm just a big aftraid of handling allocation failure... :/ Aug 09 10:27:04 <[florian]> zajec__: if that happens, well you just need to deal with it like some software failure Aug 09 10:27:27 <[florian]> zajec__: one other thing that I just noticed is that initially you allocate SKBs for your DMA Rx ring with netdev_alloc_skb Aug 09 10:27:57 [florian]: it's hard to handle that... we don't have a consistent ring of buffers, we probably have to stop the DMA, free all rings, report the error... :| Aug 09 10:28:05 that's right Aug 09 10:28:10 is that wrong too? ;) Aug 09 10:28:30 <[florian]> zajec__: no that looks fine, since it should provide properly aligned packets Aug 09 10:28:32 i got that from b44 probably Aug 09 10:28:34 copy_skb = netdev_alloc_skb(bp->dev, len + 2); Aug 09 10:28:48 what is ubus_reconnect() supposed to do? Aug 09 10:30:39 <[florian]> zajec__: really what I think is killing your performance might be the allocation + copy of large frames Aug 09 10:32:31 [florian]: i hope so :) Aug 09 10:32:38 [florian]: what about about TX? Aug 09 10:32:43 [florian]: we don't do that for TX Aug 09 10:32:49 and TX is also slow Aug 09 10:33:42 well, we still use RX for that (ACKs from TCP/IP), but there shouldn't be many of them, right? Aug 09 10:34:15 <[florian]> depends what is your workload Aug 09 10:34:29 <[florian]> I have not had a look at TX yet, let me get a look Aug 09 10:35:14 <[florian]> TX looks nice to me Aug 09 10:35:36 ok.. so let'shope it's also RX path that causes problems for TX :) Aug 09 10:36:06 <[florian]> for TX one thing to look at is to make sure that you reclaim your TX buffers fast enough for the networking stack to be able to push more Aug 09 10:36:51 <[florian]> but it seems to me like this is the case Aug 09 10:45:21 Can anyone here help me on how to change the embedded e-mail address when submitting patches through git? Right now, when I try to execute git commit to submit new patches for FreeSWITCH package, it shows "Author: Debian " and that is incorrect. Aug 09 10:52:49 mazilo: http://git-scm.com/book/en/Getting-Started-First-Time-Git-Setup - see "Your Identity" Aug 09 10:53:17 KanjiMonster: Thanks and I will check that out. Aug 09 10:53:54 how does ubusd get started? Aug 09 10:54:19 russell--: by procd afair Aug 09 10:55:45 yeah Aug 09 10:59:54 anyway, carnage, /me sleeps Aug 09 11:08:16 build #313 of rb532 is complete: Failure [failed shell_12] Build details are at http://buildbot.openwrt.org:8010/builders/rb532/builds/313 Aug 09 11:10:49 build #313 of ppc44x is complete: Failure [failed shell_12] Build details are at http://buildbot.openwrt.org:8010/builders/ppc44x/builds/313 Aug 09 11:11:56 mazilo: ask The_Lizard if he uses some cheaper JTAG on lantiq Aug 09 11:12:45 luka: OK. Thanks. Aug 09 11:48:27 luka: I just did a 'git push'. Can you please check if that is the correct procedure? Aug 09 11:54:35 Author: Mazilo Aug 09 11:54:52 is that your real mail? Aug 09 11:54:56 luka: Yes. Aug 09 11:55:19 luka: For now, I am using that e-mail address. When I get my e-mail server up, I will change that. Aug 09 11:56:04 you should also fix your name so it's clearly distingushable what is your first and last name Aug 09 11:57:21 luka: I prefer to use Mazilo, instead of Mazi Lo. But, if that matters, I will change so that future updates will reflect to "Mazi Lo" instead of "Mazilo". Aug 09 11:58:23 if your real name is Mazi Lo then please use that Aug 09 11:58:42 luka: OK. Thank you for your helps. Aug 09 11:58:49 np Aug 09 12:02:28 strasidlo: I just update FS package. Can you please give it a try to see if the update will fix the issue you encountered with mod-spandsp? Aug 09 12:03:22 I am going to give it a try. Aug 09 12:03:27 strasidlo: I would also like to know if you can perform a test on recording an incoming test to see if both audio channels are OK. Aug 09 12:03:55 strasidlo: In my case, ONLY one channel is OK while the other channel is white noise. Aug 09 12:04:45 strasidlo: To activate the recording on an incoming call, just press *2 while on the incoming call. You can deactivate the recording by pressing anther *2 or just hang up. Aug 09 12:05:48 mazilo: I will try that. Not sure if I can manage to do the tests today. Aug 09 12:06:00 strasidlo: Take your time. Aug 09 12:06:39 strasidlo: The recorded file should be in /var/lib/freeswitch/recordings directory if not /usr/share/freeswitch/recordings directory. Aug 09 12:07:00 strasidlo: Be back in an hr. Aug 09 12:09:10 build #327 of uml is complete: Failure [failed compile_5] Build details are at http://buildbot.openwrt.org:8010/builders/uml/builds/327 Aug 09 12:30:52 build #346 of orion is complete: Failure [failed compile_8] Build details are at http://buildbot.openwrt.org:8010/builders/orion/builds/346 Aug 09 12:58:33 build #297 of sibyte is complete: Failure [failed shell_12] Build details are at http://buildbot.openwrt.org:8010/builders/sibyte/builds/297 Aug 09 14:14:29 mazilo: something with an JTAG adapter? Aug 09 14:14:43 I use a cheap ass altera clone (bought from ebay) Aug 09 14:16:08 http://www.ebay.nl/itm/altera-Mini-Usb-Blaster-Cable-For-CPLD-FPGA-NIOS-JTAG-Altera-Programmer-/200943750380?pt=LH_DefaultDomain_0&hash=item2ec92e4cec Aug 09 14:16:23 The_Lizard: Thank you. I really wanted to get an all-in-one JTAG + serial console cable for an ARM device, i.e. Seagate Dockstar, etc. Aug 09 14:16:49 works with openOCD, I have patched it because by default it uses bit-banging... Aug 09 14:17:16 and the reset stuff isn't set up properly... I could give you my sources... Aug 09 14:17:39 according to the license I can't supply you with the binary, as FTDI doesn't allow it... Aug 09 14:18:56 The_Lizard: What I don't know if this J-link Jlink V8 ARM Emulator (http://www.aliexpress.com/item/FREE-SHIPPING-J-link-Jlink-V8-ARM-Emulator-supports-ARM7-ARM9-ARM11-Cortex-M3-core-ADS/762594070.html) will work. Aug 09 14:19:56 The_Lizard: That Alter Programmer looks good. Aug 09 14:22:08 works with OpenOCD? Aug 09 14:22:25 The_Lizard: I have no idea. But, I can get the Alter from http://www.aliexpress.com/item/Free-Shipping-Best-Price-USB-Blaster-ALTERA-CPLD-FPGA-download-cable-in-stock/806527241.html. Aug 09 14:22:43 looks like it is the same... Aug 09 14:23:49 I have bought 3 of them, as 2 colleagues wanted one as well... Aug 09 14:24:20 The_Lizard: Is the FTDI source freely available for download? Aug 09 14:25:02 It's not source code, but the license states that you are not allowed to distribute binaries that are linked against the ftdi libraries... Aug 09 14:25:21 that is why OpenOCD doesn't ship with libFTDI support Aug 09 14:25:30 but has an Open source alternative inside it... Aug 09 14:25:47 The_Lizard: IC. Aug 09 14:26:42 libftdi is lgpl 2.1 Aug 09 14:28:10 I meant the ftd2xx library ;) Aug 09 14:28:27 The_Lizard: If I bought that mini USB Blaster (http://www.aliexpress.com/item/Free-Shipping-Best-Price-USB-Blaster-ALTERA-CPLD-FPGA-download-cable-in-stock/806527241.html) which I believe is the same Altera Programmer you have, I will contact you for the software. Aug 09 14:28:41 thats OK Aug 09 14:30:22 The_Lizard: Thank you. Aug 09 16:02:15 the Comtrend VR-3025un (http://wiki.openwrt.org/toh/comtrend/vr3025un) has a minipci with a bcm43222 with id 0x4351 that is not included in b43_pci_bridge.c Is better send a patch or commenting it here is enough? Aug 09 16:03:00 the wifi card is an Ayecom wl5214 Aug 09 18:21:20 When I exited from 'make menuconfig', my console showed some error messages dumped by 'make menuconfig' as shown here (http://pastebin.com/2kxJ0zKG). See line #16 and #26. Line #45 and #61 show the corresponding lines from tmp/.config-package.in, respectively. Aug 09 19:52:55 build #307 of avr32 is complete: Failure [failed compile_5] Build details are at http://buildbot.openwrt.org:8010/builders/avr32/builds/307 Aug 09 20:16:46 obsy r37744 packages/net/transmission/Makefile * [packages] transmission: update to 2.82 Aug 09 20:17:47 Can anybody close a ticket because it is duplicated? https://dev.openwrt.org/ticket/13607 Aug 09 20:45:32 florian r37745 trunk/target/linux/mcs814x/config-default * mcs814x: enable POSIX file locking Aug 09 20:52:05 [florian]: sorry, didn't realized that the same message was repeated so much time Aug 09 20:52:32 <[florian]> Pteridium: it's ok, don't worry Aug 09 20:52:46 <[florian]> Pteridium: have not had a chance yet to understand what is happening for some people and not for me though Aug 09 20:54:20 yes, but i don't want to disturb nobody Aug 09 20:55:48 at least the errors help to learn how to do the things :-/ Aug 09 20:57:15 mistakes* Aug 10 02:24:49 build #295 of kirkwood is complete: Failure [failed compile_9] Build details are at http://buildbot.openwrt.org:8010/builders/kirkwood/builds/295 **** ENDING LOGGING AT Sat Aug 10 02:59:58 2013