**** BEGIN LOGGING AT Sat Jun 21 03:00:00 2014 Jun 21 04:19:25 I'm going to send my EnGenius ESR900 patch to the mailing list--any tips before I do it? Jun 21 04:27:40 cyrozap: you probably already know about this, but good to go once through this page: https://dev.openwrt.org/wiki/SubmittingPatches Jun 21 04:27:58 eigma: Yup, reading that now Jun 21 04:30:37 eigma: How do you generate the diff output with the number of files changed, etc? Jun 21 04:40:46 cyrozap: I believe git send-email does that automatically Jun 21 04:41:12 yes, just checked one of the patches I've sent using send-email Jun 21 04:51:23 <5EXAA8SU8> build #96 of pxa is complete: Failure [failed compile_5] Build details are at http://buildbot.openwrt.org:8010/builders/pxa/builds/96 Jun 21 04:51:35 you can preview that section using --stat (applies to git show, diff, log, probably others) Jun 21 05:43:57 nice patch :) Jun 21 05:54:27 haha, thanks Jun 21 05:57:28 "git imap-send" is a beautiful thing Jun 21 06:43:06 cryo : patch might get accepted - but Jun 21 06:44:05 i think previously many patches on ar71xx were sent in 3 sets - something along : 1) add kernel support 2) add userspace for ... 3) add+enable image building Jun 21 07:12:56 <5EXAA8SU8> build #572 of xburst is complete: Failure [failed compile_8] Build details are at http://buildbot.openwrt.org:8010/builders/xburst/builds/572 Jun 21 07:45:57 does anyone here know about this? http://www.wired.com/2014/06/eff-open-wireless-router/ Jun 21 07:51:51 <5EXAA8SU8> build #631 of ramips is complete: Failure [failed compile_8] Build details are at http://buildbot.openwrt.org:8010/builders/ramips/builds/631 Jun 21 08:01:23 <5EXAA8SU8> build #636 of lantiq is complete: Failure [failed shell_15] Build details are at http://buildbot.openwrt.org:8010/builders/lantiq/builds/636 Jun 21 08:06:39 russell--: thx for pointing out - http://www.hope.net/schedule.html#wirelessme seems to be where there is a mention of OpenWrt Jun 21 08:07:01 but the EFF OpenWireless project seems to be focused on activating guest networks Jun 21 08:13:08 and the "activist" pov may differ from other pov : maybe feeds.conf.default could add some exotic project feeds / guides like piratebox , cjdns , freifunk Jun 21 08:26:22 * russell-- is slightly disturbed that as a "signatory" to the openwireless.org movement (one of the first from several years ago), personaltelco.net (the group i'm part of) had not heard about it and hadn't had an opportunity to participate. Jun 21 08:28:00 yeah, the openwireless is about guest networks, not mesh Jun 21 08:29:06 * russell-- presumes openwireless.org's thing is using openwrt (because anything else would be insane ;-) Jun 21 08:29:48 the fact that they won't talk about it yet implies to me that it isn't real yet Jun 21 08:31:16 open, to me, implies developed-in-the-open, not off in a silo somewhere Jun 21 08:40:34 <5EXAA8SU8> build #96 of adm8668 is complete: Failure [failed compile_5] Build details are at http://buildbot.openwrt.org:8010/builders/adm8668/builds/96 Jun 21 08:54:44 <5EXAA8SU8> build #495 of gemini is complete: Failure [failed compile_8] Build details are at http://buildbot.openwrt.org:8010/builders/gemini/builds/495 Jun 21 08:56:13 <5EXAA8SU8> build #190 of mvebu is complete: Failure [failed compile_8] Build details are at http://buildbot.openwrt.org:8010/builders/mvebu/builds/190 Jun 21 09:53:29 hi, ive tried in #openwrt, but i guess this more fits here.could anyone hint me about SPROM in bcm63xx? if i understand it right, its OTP in SoC? Jun 21 10:01:58 kaloz r41293 trunk/target/linux/generic/files/drivers/leds/ledtrig-netdev.c * [ledtrig-netdev]: coding style cleanups, drop old kernel support Jun 21 10:06:11 dimer: dunno - there is a fallback default in board_bcm963xx.c and 801-ssb_export_fallback_sprom.patch in openwrt so it might not matter whats in it anyway Jun 21 10:08:57 not sure about the code in drivers/ssb/sprom.c - dont have that broadcom arch knowledge Jun 21 10:09:39 plntyk, thats another question - fallback is hardcode in board_ file? Jun 21 10:10:11 because i have a 448 byte bcm43225_map.bin file, which , i think is exactly external sprom, or something Jun 21 10:11:34 im trying to add support for bcm6328 dsl modem, and the only issue i have left is sprom... http://pastie.org/9310898 Jun 21 10:12:10 i had to hardcode MAC address init in b43, otherwise wlan0 wouldnt come up Jun 21 10:25:16 dimer: there's no OTP on bcm63xx for wifi; it's everything in standard flash. adding proper sprom support is a bit complicated, as brcmsmac requires a v8 sprom, and the current fallback code only uses v2 or so (also the original order by broadcom is from filesystem? else from _map.bin included in driver; load sprom fixups from nvram and patch it => parse it) Jun 21 10:25:19 the patch name is "801-ssb_export_fallback_sprom" but your message states bcma ... maybe thats related ? you have to ask zajec (he is on the forums) or hauke ( http://lxr.free-electrons.com/source/drivers/bcma/sprom.c mentions him Jun 21 10:29:09 KanjiMonster, thanks for explanation Jun 21 10:29:27 plntyk, ye. ive been wondering the same...fallback is all about ssb Jun 21 10:32:38 KanjiMonster: dimer: for brcm47xx arm I mad it possible to provide sprom through device tree, see this: https://dev.openwrt.org/browser/trunk/target/linux/bcm53xx/patches-3.14/123-bcma-get-sprom-from-devicetree.patch and this: https://dev.openwrt.org/browser/trunk/target/linux/bcm53xx/patches-3.14/112-bcm53xx-sprom-add-sprom-driver.patch Jun 21 10:33:49 Hauke: that one won't work for bcm63xx, as bcm63xx has no key-value-pair type nvram but a fixed sized one Jun 21 10:33:59 ok Jun 21 10:34:04 so you would have to pass the sprom as a full binary array Jun 21 10:34:37 but you could use that to attach a different parser Jun 21 10:34:43 true Jun 21 10:35:41 bcm63xx isn't DT yet, though Jun 21 10:37:16 so you suggest to load map.bin files and pass them as fallback? Jun 21 10:38:24 dimer: I suggest postponing it to after bcm63xx gained DT support ;p Jun 21 10:38:35 the whole sprom handling on bcm63xx needs a rewrite Jun 21 10:39:30 well, i have a fully working board, which wasnt supported by current trunk, so i had a feeling to finish it and send patches.. Jun 21 10:41:18 google finds rfc mailin list discussions from 2012 for brcm63xx DT Jun 21 10:43:16 any quick knowledge if there is a "soonish" transition on ar71xx? Jun 21 12:26:19 In 'define Package//install' section, is there a way to call 'chgrp' to change the installed file with a specific group? Jun 21 13:28:34 do I have to use netifd to get openwrt running these days? Jun 21 13:28:53 netifd-2014-06-18/system-linux.c:1786:21: error: 'IFLA_IPTUN_LINK' undeclared (first use in this function) nla_put_u32(nlm, IFLA_IPTUN_LINK, link); Jun 21 13:35:29 looks like IFLA_IPTUN_LINK is only for 3.1x kernels Jun 21 13:37:04 so netifd does not work for kernel version less than 3.8.x Jun 21 13:39:58 I should be able to disable ipip6 to get this going, but it's hard coded in system-linux.c? Jun 21 13:40:13 can I somehow use netifd with kernel ,say 3.7.x? Jun 21 13:41:02 or if I disable netifd will the config system break? Jun 21 14:03:54 if CONFIG_NET_IPIP is disabled then netifd should have a way to turn off those IFLA_IPTUN_*, isn't it Jun 21 14:10:43 alright this new stuff is added last month, switch to an older netifd to get going now Jun 21 14:14:17 <5EXAA8SU8> build #97 of mpc83xx is complete: Failure [failed compile_8] Build details are at http://buildbot.openwrt.org:8010/builders/mpc83xx/builds/97 Jun 21 17:21:58 A music messaging session has been requested. Please click the MM icon to accept. Jun 21 17:22:00 A music messaging session has been requested. Please click the MM icon to accept. Jun 21 17:22:00 A music messaging session has been requested. Please click the MM icon to accept. Jun 21 17:22:01 A music messaging session has been requested. Please click the MM icon to accept. Jun 21 17:22:01 A music messaging session has been requested. Please click the MM icon to accept. Jun 21 17:22:01 A music messaging session has been requested. Please click the MM icon to accept. Jun 21 17:22:02 A music messaging session has been requested. Please click the MM icon to accept. Jun 21 17:22:20 A music messaging session has been requested. Please click the MM icon to accept. Jun 21 17:40:11 <5EXAA8SU8> build #602 of rb532 is complete: Failure [failed shell_10] Build details are at http://buildbot.openwrt.org:8010/builders/rb532/builds/602 Jun 21 17:40:12 <5EXAA8SU8> build #602 of ppc44x is complete: Failure [failed shell_10] Build details are at http://buildbot.openwrt.org:8010/builders/ppc44x/builds/602 Jun 21 17:41:54 <5EXAA8SU8> build #571 of sibyte is complete: Failure [failed shell_10] Build details are at http://buildbot.openwrt.org:8010/builders/sibyte/builds/571 Jun 21 18:36:12 <5EXAA8SU8> build #582 of avr32 is complete: Failure [failed compile_5] Build details are at http://buildbot.openwrt.org:8010/builders/avr32/builds/582 Jun 21 18:38:15 <5EXAA8SU8> build #509 of iop32x is complete: Failure [failed shell_10] Build details are at http://buildbot.openwrt.org:8010/builders/iop32x/builds/509 Jun 21 18:39:50 <5EXAA8SU8> build #642 of cobalt is complete: Failure [failed compile_5] Build details are at http://buildbot.openwrt.org:8010/builders/cobalt/builds/642 Jun 21 18:45:24 what is up with the spam in this channel lately Jun 21 19:02:11 <5EXAA8SU8> build #648 of orion is complete: Failure [failed compile_5] Build details are at http://buildbot.openwrt.org:8010/builders/orion/builds/648 Jun 21 19:14:39 <5EXAA8SU8> build #613 of uml is complete: Failure [failed compile_5] Build details are at http://buildbot.openwrt.org:8010/builders/uml/builds/613 Jun 21 19:15:53 plntyk: I'm really hoping I haven't messed up TOO badly... Jun 21 19:25:09 jogo r41294 trunk/target/linux/ brcm63xx/patches-3.14/553-boards_probe_switch.patch brcm63xx/patches-3.10/553-boards_probe_switch.patch * brcm63xx: fix up borked patch Jun 21 19:25:18 jogo r41295 trunk/target/linux/ (22 files in 2 dirs) * brcm63xx: update variant detection patches and fix VARID shift Jun 21 19:25:28 jogo r41296 trunk/target/linux/ (75 files in 2 dirs) * brcm63xx: allow bcm963xx and livebox support at the same time Jun 21 19:25:55 danitool: please verify that I broke livebox in 3.14 ;) Jun 21 19:27:21 ok Jun 21 19:28:51 now both board types use the same register_devices(), so they can't get out of sync anymore Jun 21 19:32:34 it still needs a subtarget or something for the build bot for having working firmwares doesn't it? Jun 21 19:39:49 ok, I suppose I don't need to select anything in the kernel as done before these patches Jun 21 19:43:28 <5EXAA8SU8> build #537 of au1000 is complete: Failure [failed compile_5] Build details are at http://buildbot.openwrt.org:8010/builders/au1000/builds/537 Jun 21 19:50:20 danitool: the buildbot uses 3.10 - I intentionally only implemented it for 3.14, to not accidentially break the stable kernel Jun 21 20:53:36 <5EXAA8SU8> build #97 of x86_64 is complete: Success [build successful] Build details are at http://buildbot.openwrt.org:8010/builders/x86_64/builds/97 Jun 21 21:09:02 <5EXAA8SU8> build #497 of mcs814x is complete: Failure [failed shell compile_5] Build details are at http://buildbot.openwrt.org:8010/builders/mcs814x/builds/497 **** ENDING LOGGING AT Sun Jun 22 02:59:58 2014