**** BEGIN LOGGING AT Tue Mar 12 02:59:58 2013 Mar 12 03:53:06 build #191 of rb532 is complete: Failure [failed shell_12] Build details are at http://buildbot.openwrt.org:8010/builders/rb532/builds/191 Mar 12 03:58:26 build #191 of ppc44x is complete: Failure [failed shell_12] Build details are at http://buildbot.openwrt.org:8010/builders/ppc44x/builds/191 Mar 12 04:55:33 build #163 of mcs814x is complete: Success [build successful] Build details are at http://buildbot.openwrt.org:8010/builders/mcs814x/builds/163 Mar 12 05:29:38 build #186 of xburst is complete: Failure [failed shell_12] Build details are at http://buildbot.openwrt.org:8010/builders/xburst/builds/186 Mar 12 05:31:05 build #181 of sibyte is complete: Failure [failed shell_12] Build details are at http://buildbot.openwrt.org:8010/builders/sibyte/builds/181 Mar 12 07:19:02 juhosg r35975 trunk/target/linux/mpc52xx/config-3.8 * mpc52xx: add support for 3.8 Mar 12 07:19:03 juhosg r35976 trunk/target/linux/mpc52xx/Makefile * mpc52xx: switch to 3.8 Mar 12 07:19:04 juhosg r35977 trunk/target/linux/mpc52xx/config-3.3 * mpc52xx: remove 3.3 support Mar 12 09:04:55 build #204 of ramips is complete: Success [build successful] Build details are at http://buildbot.openwrt.org:8010/builders/ramips/builds/204 Mar 12 09:10:10 build #163 of iop32x is complete: Failure [failed shell_12] Build details are at http://buildbot.openwrt.org:8010/builders/iop32x/builds/163 Mar 12 09:45:44 build #159 of gemini is complete: Failure [failed shell_12] Build details are at http://buildbot.openwrt.org:8010/builders/gemini/builds/159 Mar 12 10:17:51 hi Mar 12 10:29:17 I compiled previously libvirt, and now to check compatibilty with version 0.9.8 I'm trying to do it without success Mar 12 10:29:25 I've done it with the same Makefile: https://forum.openwrt.org/viewtopic.php?pid=191144#p191144 changing only PKG_VERSION and PKG_MD5SUM Mar 12 10:29:46 compilation log with errors: http://84.88.85.59/libvirterror098-2.txt Mar 12 11:00:05 conxuro: what is libssp? Mar 12 11:02:44 I think is related to stack Mar 12 11:02:49 http://aconole.brad-x.com/papers/exploits/ssp/intro Mar 12 11:03:24 does libvirt depend on libssp? Mar 12 11:04:22 libssp is part of the toolchain, apparently Mar 12 11:04:48 package/toolchain/Makefile:define Package/libssp Mar 12 11:05:10 https://lists.openwrt.org/pipermail/openwrt-devel/2013-February/018724.html Mar 12 11:05:40 different package, same problem, I'd say same solution Mar 12 11:07:56 uhm, I will try it Mar 12 11:08:27 but it's rare that it worked with the libvirt 1.0.2 and not with 0.9.8 Mar 12 11:08:43 blame fedora/redhat-ish code Mar 12 11:09:00 they tend to ignore anything else out there Mar 12 11:09:06 especially embedded :) Mar 12 11:17:14 [florian]: okay, works for me, too. seems to be a temporary error. Mar 12 11:19:45 <[florian]> wbx: ok, good to know Mar 12 11:19:46 conxuro: we already fixed this problem together Mar 12 11:20:01 conxuro: you need to get rid of -fstack-protector-all Mar 12 11:20:08 yes i now Mar 12 11:20:17 or override it by passing -fno-stack-protector Mar 12 11:20:21 but trying to compile 0.9.8 it shows this errors Mar 12 11:20:26 or pass some magic autonconf cache vars Mar 12 11:20:30 ok Mar 12 11:20:38 got a link to the 0.9.8 tarball? Mar 12 11:21:03 nvm, found it Mar 12 11:21:09 I've tried and the same Makefile works with the 1.0.2 but not with 0.9.8 Mar 12 11:21:20 here there are http://libvirt.org/sources/ Mar 12 11:22:39 CONFIGURE_VARS += gl_cv_warn__fstack_protector_all=no Mar 12 11:25:24 is it different from gl_cv_warn_c__fstack_protector_all=no (that is now in the CONFIGURE_VARS)? Mar 12 11:25:47 I change it or add it to: Mar 12 11:25:55 CONFIGURE_VARS += BLKID_LIBS="-lblkid -luuid" gl_cv_warn_c__fstack_protector_all=no Mar 12 11:26:19 yes it is Mar 12 11:26:39 if you want your makefile to work with various libviert versions then simply add all variables Mar 12 11:26:49 CONFIGURE_VARS += \ Mar 12 11:26:55 BLKID_LIBS="-lblkid -luuid" \ Mar 12 11:27:00 gl_cv_warn__fstack_protector_all=no \ Mar 12 11:27:04 gl_cv_warn_c__fstack_protector_all=no \ Mar 12 11:27:08 like this Mar 12 11:27:32 ok, its adding it Mar 12 11:27:37 the one with _c_ is used to 1.0.2, the one without _c_ is used for 0.9.8 Mar 12 11:28:13 so i have to comment the unneed line for each version Mar 12 11:29:48 no need to Mar 12 11:29:55 it does not harm if you just leave it there Mar 12 11:30:11 OK, I'll try it, many thanks! Mar 12 11:36:26 sorry i added: Mar 12 11:36:28 CONFIGURE_VARS += BLKID_LIBS="-lblkid -luuid" \ Mar 12 11:36:28 gl_cv_warn__fstack_protector_all=no \ Mar 12 11:36:28 gl_cv_warn_c__fstack_protector_all=no \ Mar 12 11:36:35 and got errors instantly Mar 12 11:36:39 http://84.88.85.59/libvirterror098-4.txt Mar 12 11:38:39 without adding this line I didn't get this "command not found" Mar 12 11:38:42 http://84.88.85.59/libvirterror098-2.txt Mar 12 11:43:32 conxuro: looks liek a makefile syntax error, make sure there are no spaces after the \ Mar 12 11:43:43 conxuro: and make sure there is at least one empty line after the last \ Mar 12 11:43:56 conxuro: alternatively put all on one line Mar 12 11:44:35 it has two lines after, but I've seen there's a space after one \ Mar 12 11:44:39 i'll try again Mar 12 12:18:39 unfortunately new errors (but different): http://84.88.85.59/libvirterror098-5.txt Mar 12 12:20:26 conxuro: try adding "-lm" to BLKID_LIBS="..." Mar 12 12:39:48 I added it (CONFIGURE_VARS += BLKID_LIBS="-lblkid -luuid -lm" \) and seems that it is compiled but not installed yet Mar 12 12:39:54 http://84.88.85.59/libvirterror098-6.txt Mar 12 12:41:55 no sorry, the package is created, but I don't know what about the final error and if it affects Mar 12 12:44:21 conxuro: this looks like a type in the "make" command that was originally executed Mar 12 12:44:24 *typo Mar 12 12:44:43 something like "make package/libvirt/{clean,compile} 1" Mar 12 12:45:38 make ... 1&> log.txt Mar 12 12:45:47 yeah the 1 is wrong Mar 12 12:46:04 or 1& rather Mar 12 12:46:11 you probably meant 1>log.txt Mar 12 12:46:17 or just >log.txt Mar 12 12:47:31 I mistook the redirect Mar 12 12:48:43 I wanted not stdout or stderr but both Mar 12 12:48:45 http://www.cyberciti.biz/faq/redirecting-stderr-to-stdout/ Mar 12 12:49:08 and should add & without 1 Mar 12 12:50:06 <_trine> http://dpaste.com/1020546/ Trunk is failing at this point, I have done a make clean and a make toolchain/clean Mar 12 12:54:44 _trine: delete stagin_dir/target-*/usr/lib/libxtables* Mar 12 12:54:45 now it compiles well without errors Mar 12 12:54:48 many thanks! Mar 12 12:55:06 <_trine> thanks KanjiMonster I'll give that a try Mar 12 13:28:43 juhosg r35978 trunk/target/linux/avr32/image/Makefile * avr32: built the firmware images from the lzma compressed uImage Mar 12 13:28:46 juhosg r35979 trunk/target/linux/ (5 files in 4 dirs) * avr32: create network config dynamically Mar 12 13:28:48 juhosg r35980 trunk/target/linux/avr32/base-files/etc/diag.sh * avr32: add diag support Mar 12 13:28:50 juhosg r35981 trunk/target/linux/avr32/patches-3.3/110-openwrt_flashmap.patch * avr32: add firmware partition Mar 12 13:28:54 juhosg r35982 trunk/target/linux/ avr32/base-files/lib/upgrade avr32/base-files/lib/upgrade/platform.sh avr32/base-files/lib * avr32: add sysupgrade support Mar 12 13:28:58 juhosg r35983 trunk/target/linux/ avr32/patches-3.8 avr32/patches-3.8/110-openwrt_flashmap.patch avr32/patches-3.8/100-dont-redefine-HZ.patch avr32/config-3.8 * avr32: add support for 3.8 Mar 12 13:28:59 juhosg r35984 trunk/target/linux/avr32/Makefile * avr32: switch to 3.8 Mar 12 13:29:00 juhosg r35985 trunk/target/linux/ avr32/patches-3.3 avr32/config-3.3 * avr32: remove 3.3 support Mar 12 13:36:49 bye all! Mar 12 13:36:55 bye bye Mar 12 13:52:47 blogic r35986 trunk/package/mac80211/files/lib/wifi/mac80211.sh * [mac80211] fixes mbssid on ralink hardware Mar 12 13:53:00 blogic r35987 trunk/target/linux/ar71xx/base-files/etc/diag.sh * [ar71xx] make sure errors get sent to /dev/null Mar 12 13:53:07 blogic r35988 trunk/target/linux/ramips/base-files/etc/diag.sh * [ramips] make sure errors get sent to /dev/null Mar 12 13:53:14 blogic r35989 trunk/target/linux/lantiq/image/DGN3500.dtsi * [lantiq] unbreak dgn3500 spi-gpio Mar 12 13:53:21 blogic r35990 trunk/target/linux/lantiq/ base-files/etc/uci-defaults/02_network xway/profiles/audiocodes.mk image/ACMP252.dts image/Makefile * [lantiq] add support for AudioCodes AC-252 Mar 12 13:53:28 blogic r35991 trunk/package/platform/lantiq/ltq-atm/src/ltq_atm.c * [lantiq] ltq-atm: update sock api Mar 12 13:53:35 blogic r35992 trunk/target/linux/lantiq/ patches-3.7/0305-no_xip_nor.patch image/ARV4510PW.dts * [lantiq] fixes NO_XIP on CFI0001 flash Mar 12 14:42:26 blogic: how's vdsl support doing on openwrt trunk? You ever going to send those boxes my way? :) Mar 12 14:42:40 And if you do, can you spare a vdsl box for rmk to play with too? Mar 12 14:43:02 <_rmk_> :) I'm about to return a Draytek modem... horrid thing. Mar 12 14:44:55 I have a Belgacom BBOX2 Mar 12 14:45:37 from what I know it's the same as Sagem F@st 3464 Mar 12 14:46:18 and I no longer need it, as it will not support IPv6 according to Belgacom Mar 12 14:46:31 <_rmk_> I'm looking for something that's capable of doing VDSL (basically so I can get to the dizzy heights of 12Mbps FTTC) Mar 12 15:20:33 _rmk_: i would ba an arm box though ;) Mar 12 15:20:39 _rmk_: i would ba an !arm box though ;) Mar 12 15:20:45 ... ruined that joke Mar 12 15:20:58 dwmw2: i have vdsl support patches sitting here Mar 12 15:21:06 <_rmk_> heh. you mean its a mips box? Mar 12 15:21:09 i need to find 2-3 days to finalize them Mar 12 15:21:11 yes Mar 12 15:21:23 i would need to check if i have a spare vdsl box Mar 12 15:21:31 i have several adsl units that will work in the uk Mar 12 15:21:36 but i am not sure about vdsl Mar 12 15:21:44 they are still quite expensive Mar 12 15:22:10 _rmk_: http://www.amazon.co.uk/AVM-FRITZ-Box-WLAN-3370/dp/B004PNUG8Y/ref=sr_1_1?ie=UTF8&qid=1363101717&sr=8-1 <--- been using this for testing Mar 12 15:22:33 <_rmk_> yea, this Draytek box was I think around 180 or so... but it's in theory packed with features, including voip stuff. Mar 12 15:22:40 yaya Mar 12 15:22:44 they all are Mar 12 15:22:46 ;) Mar 12 15:22:57 but fttc ? Mar 12 15:22:58 <_rmk_> its a shame that it picks every single packet off the LAN and IP routes it Mar 12 15:23:00 that is not vdsl Mar 12 15:23:06 haha Mar 12 15:23:16 that is a pretty cool feature Mar 12 15:23:23 <_rmk_> fttc in the uk is vdsl - it's vdsl from the road-side cabinet. Mar 12 15:23:32 ok Mar 12 15:23:38 <_rmk_> not when plugging it in alongside another modem kills all your TCP connections Mar 12 15:23:56 <_rmk_> because you end up getting TCP resets back via the misrouted TCP packets Mar 12 15:24:14 *magic* Mar 12 15:24:27 <_rmk_> it takes a special kind of firmware for that feature :) Mar 12 15:24:40 ok, i'll get te vdsl stuff added to trunk this week Mar 12 15:26:48 _rmk_: the magic -> http://pastebin.com/KBUCx5RM Mar 12 15:30:24 <_rmk_> Right, I'll grab that firmware file now in case they decide to move it :) Mar 12 15:32:25 ;) Mar 12 15:33:03 basically it includes the blob needed to make vdsl work Mar 12 17:38:45 build #148 of octeon is complete: Failure [failed shell_12] Build details are at http://buildbot.openwrt.org:8010/builders/octeon/builds/148 Mar 12 18:22:58 juhosg r35993 trunk/target/linux/ (19 files in 2 dirs) * gemini: add support for 3.8 Mar 12 18:23:00 juhosg r35994 trunk/target/linux/gemini/Makefile * gemini: switch to 3.8 Mar 12 18:23:01 juhosg r35995 trunk/target/linux/ gemini/config-3.3 gemini/patches-3.3 * gemini: remove 3.3 support Mar 12 22:35:40 hey guys, is anything that i can do to get past this nasty iptables trunk compile problem? http://pastebin.com/39U7kMXn Mar 12 22:42:52 dape_x61: yes, delete staging_dir/target-*/usr/lib/libxtables* - for some unknown reason it tries to link against the old libs if there are old versions present Mar 12 22:43:38 thanks, i already did make toolchain/clean so proceed with your advice too? Mar 12 23:43:53 <_trine> KanjiMonster, after deleting staging_dir/target-*/usr/lib/libxtables* it did compile ok Mar 13 01:07:21 is git://nbd.name/packages.git still a mirror of svn packages? gitweb seems up to date but git fetch gets me a stale tree Mar 13 01:08:26 was I using git fetch wrong? 'git fetch nbd master' Mar 13 01:08:33 when I did 'git fetch nbd' I got a fresh tree **** ENDING LOGGING AT Wed Mar 13 02:59:58 2013