**** BEGIN LOGGING AT Fri Apr 16 03:00:02 2010 Apr 16 03:05:15 {Nico}: mod_iax isn't in the 1.0.6 tarball Apr 16 03:07:09 <{Nico}> cshore: in 1.0.4, some tarball were dowloaded from the FS site during the build Apr 16 03:07:25 <{Nico}> i have to give it a try Apr 16 03:08:25 {Nico}: hmmm...ok Apr 16 03:08:42 {Nico}: the sounds and such are downloaded during build Apr 16 03:09:06 {Nico}: and the packages FS relies on (it doesn't use system libraries) Apr 16 03:09:21 {Nico}: it statically links what it needs Apr 16 03:09:28 <{Nico}> i know Apr 16 03:09:56 <{Nico}> iirr, there were also some codecs that were downloaded Apr 16 03:10:05 <{Nico}> probably for licensing reasons Apr 16 03:10:13 {Nico}, oh, okay, I didn't realize that Apr 16 03:10:24 {Nico}, I didn't change that either way in the package Apr 16 03:11:44 {Nico}: I just checked the changelog: mod_iax has moved to unsupported Apr 16 03:12:22 <{Nico}> ok, then it's dropped Apr 16 03:13:03 <{Nico}> cshore: are you already using freeswitch ? Apr 16 03:13:41 {Nico}: I haven't actually fired it up yet, but my boss has been testing what I've built and it seems to work Apr 16 03:14:09 {Nico}: except I've started it...I mean I haven't actually attached phones and made calls Apr 16 03:15:02 {Nico}: but I'm new to FS Apr 16 03:16:56 <{Nico}> your boss is using openwrt ? Apr 16 03:20:46 yep Apr 16 03:22:39 <{Nico}> nice Apr 16 03:22:47 yeah Apr 16 03:23:51 his laptop is a Mac but he put Ubuntu as dual boot because of build issues Apr 16 03:24:56 he's technically savvy but he's not an engineer, but marketing Apr 16 03:51:49 <{Nico}> a last commit, and i'll go to sleep Apr 16 03:52:51 nico * r20901 /trunk/package/kernel/modules/sound.mk: package/kernel: add dependency on kmod-input-core to kmod-sound-core (closes: #7140) Apr 16 03:55:53 nico * r20902 /branches/backfire/package/kernel/modules/sound.mk: [backfire] backport r20901 Apr 16 03:58:41 nico * r20903 /branches/backfire/package/kernel/modules/netsupport.mk: [backfire] backport r20893 Apr 16 04:40:56 build #50 of octeon is complete: Failure [failed compile_6] Build details are at http://tksite.gotdns.org:8010/builders/octeon/builds/50 Apr 16 05:18:12 good morning Apr 16 05:18:31 do you have a troll attack: https://lists.openwrt.org/pipermail/openwrt-tickets/2010-April/024985.html ? Apr 16 06:06:49 anyone know how the config_get stuff works? Apr 16 06:07:09 in what sense? Apr 16 06:07:24 well, I just tried my last patch, and it doesn't do what it should. Apr 16 06:07:29 ah Apr 16 06:07:52 it's package/base-files/files/etc/init.d/rcS Apr 16 06:08:04 if you have done config_load system Apr 16 06:08:18 I source /etc/functions.sh ... I call config_load system (as you say)... Apr 16 06:08:39 then config_get variable "config_section_name" option_name Apr 16 06:08:45 then I call: config_get_bool foreground system foreground 0 Apr 16 06:09:05 build #49 of ep93xx is complete: Failure [failed compile_6] Build details are at http://tksite.gotdns.org:8010/builders/ep93xx/builds/49 Apr 16 06:09:35 ah, I bet you are thinking system because it is the type of section, but what config_get wants is the name of the section Apr 16 06:09:38 yup... do all that... but if I put: \t option foreground \t 1 in the "config system" section, foreground always comes back as "0". Apr 16 06:09:55 config system blah Apr 16 06:10:03 is config type system and name blah Apr 16 06:10:04 you lost me. Apr 16 06:10:20 where Apr 16 06:10:37 config_get foreground system foreground is wrong Apr 16 06:10:48 config_get foreground blah foreground is right Apr 16 06:10:49 ah... so what should it be? Apr 16 06:10:58 blah? really? Apr 16 06:11:01 but the section has to be aname section Apr 16 06:11:10 where blah is the name of the section Apr 16 06:11:31 but there *is* a "system" section in /etc/config/system. Apr 16 06:11:35 if the section has no name, you can't use that Apr 16 06:11:56 not, there is a system *type* section, not a section named system Apr 16 06:12:10 that would be config system system Apr 16 06:12:29 what you want is config_foreach Apr 16 06:12:46 config_foreach system? Apr 16 06:12:56 let me remember Apr 16 06:13:01 can you show me in a pastebin? Apr 16 06:13:24 config_foreach iterates through each section of type X executing a function Apr 16 06:15:27 ok, so config_load system Apr 16 06:17:17 well in that case system is actuall /etc/config/system Apr 16 06:17:32 the problem is that there are two things named system to confuse you Apr 16 06:17:50 config_foreach config_get_swap swap "$ssbd_device" Apr 16 06:18:03 config_get_swap is a function I made Apr 16 06:18:13 you noticed that, did you? :-) Apr 16 06:18:25 swap is a Apr 16 06:18:25 config swap Apr 16 06:18:25 option blah Apr 16 06:18:45 and "$ssbd_device" is and optional additional parameter to the function Apr 16 06:19:20 the function is called with $1 = config section name (so config_get foreground $1 foreground would work) Apr 16 06:20:08 if there is more than one config system Apr 16 06:20:08 section, then the function will be executed for each of them Apr 16 06:20:28 ok, so if I were to look at an existing /etc/init.d/xyzzy script to emulate, that would be which? Apr 16 06:20:48 config system Apr 16 06:20:48 option blah Apr 16 06:20:48 is an anonymous section that gets a assigned a name like cfg002s, when you look at it Apr 16 06:21:09 /lib/functions/block.sh Apr 16 06:21:31 oh, no one does exactly what you're doing Apr 16 06:22:09 nvm Apr 16 06:22:18 look at /etc/init.d/boot Apr 16 06:22:37 that's where the system stuff is used currently Apr 16 06:22:44 it does exactly what I said Apr 16 06:25:46 ok. Apr 16 06:32:03 sending out a patch... Apr 16 06:36:48 got it figured it... the patch was fairly straightforward. Apr 16 07:17:01 build #46 of mpc52xx is complete: Failure [failed compile_4] Build details are at http://tksite.gotdns.org:8010/builders/mpc52xx/builds/46 Apr 16 07:37:34 build #46 of gemini is complete: Failure [failed compile_6] Build details are at http://tksite.gotdns.org:8010/builders/gemini/builds/46 Apr 16 07:45:56 gmorning Apr 16 08:48:22 nico * r20904 /trunk/package/busybox/ (4 files in 2 dirs): package/busybox: add 3 upstream fixes, bump release number Apr 16 09:02:41 build #47 of cobalt is complete: Failure [failed compile_6] Build details are at http://tksite.gotdns.org:8010/builders/cobalt/builds/47 Apr 16 09:15:06 nico * r20905 /trunk/package/kernel/modules/other.mk: package/kernel: remove references to old TARGET_olpc now that it has been merged with TARGET_x86 Apr 16 09:54:29 nico * r20906 /trunk/package/compcache/ (Config.in Makefile): package/compcache: move configuration in submenu Apr 16 09:56:21 nico * r20907 /trunk/package/mmc_over_gpio/Makefile: package/mmc_over_gpio: more configuration in submenu Apr 16 10:03:10 nico * r20908 /trunk/package/udev/ (Config.in Makefile udev-config.in): package/udev: move configuration in submenu, rename udev-config.in to Config.in for consistency Apr 16 10:03:55 nico * r20909 /trunk/package/libpcap/ (Config.in Makefile): package/libpcap: move configuration to submenu Apr 16 10:31:14 nico * r20910 /trunk/package/mac80211/ (6 files): package/mac80211: move all configuration items in submenus, merge Config.in* into the main Makefile Apr 16 10:34:23 nico * r20911 /trunk/package/madwifi/ (Config.in Makefile): package/madwifi: move configuration in submenu Apr 16 10:42:11 nico * r20912 /trunk/package/busybox/ (Config.in Makefile target-config.in): package/busybox: rename 'target-config.in' to 'Config.in' for coherency, move submenu to it and source main busybox Config.in from there Apr 16 10:44:13 nico * r20913 /trunk/package/kernel/modules/other.mk: package/kernel: add dependencies on kmod-crc16 and kmod-rfkill to kmod-bluetooth (closes: #7063) Apr 16 10:48:12 nico * r20914 /trunk/package/ar7-atm/ (Config.in Makefile): package/ar7-atm: move configuration in submenu Apr 16 10:50:47 nico * r20915 /trunk/package/openssl/ (Config.in Makefile): package/openssl: move configuration in submenu Apr 16 11:00:18 what are the uci schemas at /lib/uci/schema/default/ used for? Apr 16 11:01:31 webif Apr 16 11:01:33 validation Apr 16 11:01:37 s/webif/luci/ Apr 16 11:03:08 webif validation? also luci validation? isnt it handled in luci by the CBI models? Apr 16 11:03:52 nico * r20916 /trunk/package/kexec-tools/ (Config.in Makefile kexec-config.in): package/kexec-tools: move configuration in submenu, rename 'kexec-config.in' in 'Config.in' for coherency Apr 16 11:03:56 kind of Apr 16 11:04:17 it provides additional validation possibilities Apr 16 11:04:35 and once was meant to be a meta langauge to describe cbi models Apr 16 11:04:54 mb__: ping Apr 16 11:05:04 but it turned out to be too complex and to resource hungry, therfore I'll drop it soon Apr 16 11:05:09 KanjiMonster: pong, but very limited time :) Apr 16 11:05:34 ok Apr 16 11:05:40 I'll make it short ;) Apr 16 11:06:16 mb__: I looked at hte no sprom patches, and found out through printk's that my common core on the card is rev 13, but the bit for sprom isn't set Apr 16 11:06:44 although I am not sure if this bit has this meaning on rev 11+, or only on rev 31+ Apr 16 11:06:48 KanjiMonster: Yeah well. There certainly are cards that do not have an sprom. Apr 16 11:07:04 (the code only checks this bit on rev 31+) Apr 16 11:07:20 nico * r20917 /trunk/package/ifx-vmmc/ (Config.in Makefile): package/ifx-vmmc: move configuration in submenu Apr 16 11:07:21 Then it's only meaningful on 31+ Apr 16 11:07:53 nico * r20918 /trunk/package/uboot-ifxmips/ (Config.in Makefile): package/uboot-ifxmips: move configuration in submenu Apr 16 11:08:21 nico * r20919 /trunk/package/uboot-lantiq/ (Config.in Makefile): package/uboot-lantiq: move configuration in submenu Apr 16 11:08:56 nico * r20920 /trunk/package/ifx-tapi/ (Config.in Makefile): package/ifx-tapi: move configuration in submenu Apr 16 11:09:17 xMff: my question was because I saw it used, but not anymore at the LUCI docs. Thanks Apr 16 11:09:25 nico * r20921 /trunk/package/ifx-tapidemo/ (Config.in Makefile): yckage/ifx-tapidemo: move configuration in submenu Apr 16 11:10:40 nico * r20922 /trunk/package/ifxmips-dsl-api/ (Config.in Makefile): package/ifxmips-dsl-api: move configuration in submenu Apr 16 11:10:57 <{Nico}> Apr 16 11:11:46 mb__: I wouldn't wonder if it hasn't, since its the card from the wl-500gp; the ssb on the soc could be providing it Apr 16 11:12:09 {Nico}: ;) Apr 16 11:17:19 mb__: do you have a suggestion where I should go with my "problem"? Apr 16 11:18:08 Well, there's only two possibilities: Either there is an SPROM or there is not, KanjiMonster Apr 16 11:18:52 KanjiMonster: And if there is one, use it. And if there is not, use larry's udev stuff to workaround the stuff Apr 16 11:19:40 I have to run now, cu later Apr 16 11:34:25 jow * r20923 /trunk/ (4 files in 4 dirs): Apr 16 11:34:25 [malta] Apr 16 11:34:25 - enable PCI Apr 16 11:34:25 - add kmod-pcnet32 to default packages Apr 16 11:34:25 - make kmod-pcnet32 available for malta target Apr 16 13:55:54 build #46 of etrax is complete: Failure [failed compile_6] Build details are at http://tksite.gotdns.org:8010/builders/etrax/builds/46 Apr 16 14:22:22 after adding a new package under feeds/packages/* what do I nees to do to get it to appear under menuconfig? Apr 16 14:22:42 nothing Apr 16 14:23:00 if it does not appear then either the dependencies are not fulfilled or it has syntax errors Apr 16 14:23:06 ... in the Makefile Apr 16 14:23:32 right, what is for feeds install -a for? Apr 16 14:23:56 (disregard one "for" at choice) Apr 16 14:24:06 for packages not in package/ Apr 16 14:28:18 I think I had syntax errors AND the package was under feeds/ Apr 16 14:51:24 when in package it appears, but how can I have it in feeds/ to prepare a patch? Apr 16 15:05:34 acoul * r20924 /trunk/target/linux/brcm47xx/ (3 files in 3 dirs): brcm47xx: fix ide drive assignment (closes #7061) Apr 16 16:05:06 jow * r20925 /packages/net/multiwan/ (11 files in 7 dirs): [packages] add multiwan, a simple to use multi wan configuration agent Apr 16 16:21:19 nico * r20926 /branches/backfire/package/kernel/modules/other.mk: [backfire] backport r20905 Apr 16 16:25:00 nico * r20927 /branches/backfire/package/kernel/modules/other.mk: [backfire] backport r20913 Apr 16 17:33:59 [florian]: ping? Apr 16 17:34:51 20841 introduced a bug... the patch I sent out last night should fix it. Apr 16 17:35:13 any committers around? Apr 16 18:08:12 <[florian]> philipp64: pong, will commit Apr 16 18:14:15 florian * r20928 /trunk/package/base-files/files/etc/init.d/rcS: Apr 16 18:14:15 Fix bug in foregrounding in /etc/init.d/rcS Apr 16 18:14:15 Not using the config_xxx functions correctly. Amended. Apr 16 18:14:15 Signed-off-by: Philip Prindeville Apr 16 18:39:58 juhosg * r20929 /trunk/target/linux/ppc40x/patches/ (004-magicbox.patch 005-openrb.patch): Apr 16 18:39:58 ppc40x: move perwe fixup into a separate function Apr 16 18:39:58 Cc: backfire@openwrt.org Apr 16 18:40:05 juhosg * r20930 /trunk/target/linux/ppc40x/patches/ (4 files): Apr 16 18:40:05 ppc40x: add more EBC_BXCR defines Apr 16 18:40:05 Cc: backfire@openwrt.org Apr 16 18:40:09 juhosg * r20931 /trunk/target/linux/ppc40x/patches/ (2 files): Apr 16 18:40:09 ppc40x: make isp116x-hcd driver usable on the OpenRB board Apr 16 18:40:09 Cc: backfire@openwrt.org Apr 16 18:40:12 juhosg * r20932 /trunk/target/linux/ppc40x/patches/005-openrb.patch: Apr 16 18:40:12 ppc40x: add isp116x-hcd to the device tree for the OpenRB board Apr 16 18:40:12 Cc: backfire@openwrt.org Apr 16 18:40:14 juhosg * r20933 /trunk/target/linux/ppc40x/config-default: Apr 16 18:40:14 ppc40x: enable USB support Apr 16 18:40:14 Cc: backfire@openwrt.org Apr 16 18:40:17 juhosg * r20934 /trunk/package/kernel/modules/usb.mk: Apr 16 18:40:17 package/modules: package isp116x-hcd driver Apr 16 18:40:17 Cc: backfire@openwrt.org Apr 16 18:49:20 [florian]: thanks. Apr 16 19:09:07 jow * r20935 /trunk/package/dnsmasq/ (Makefile files/dnsmasq.init): [package] dnsmasq: don't append search domain to custom host entries Apr 16 19:09:41 jow * r20936 /branches/backfire/package/dnsmasq/ (Makefile files/dnsmasq.init): [backfire] merge r20935 Apr 16 19:32:29 juhosg * r20937 /trunk/target/linux/atheros/ (3 files in 3 dirs): atheros: nuke clocksoure init patch Apr 16 19:32:35 juhosg * r20938 /trunk/package/swconfig/src/swlib.c: Apr 16 19:32:35 swconfig: Fix switch name. Apr 16 19:32:35 This patch fixes a small typo in swconfig's client side that caused Apr 16 19:32:35 it to print the interface name instead of the switch's device name Apr 16 19:32:35 on the help page. Apr 16 19:32:35 Signed-off-by: Jonas Gorski Apr 16 19:32:43 juhosg * r20939 /trunk/ (5 files in 3 dirs): (log message trimmed) Apr 16 19:32:43 swconfig: Add cpu port index to help output. Apr 16 19:32:43 Let swconfig provide the cpu port index in its help page. This is Apr 16 19:32:43 needed as e.g. Atheros switches have their cpu port at port 0, not Apr 16 19:32:43 port 5. Apr 16 19:32:43 This could allow e.g. luci to get a rough overview of the layout of Apr 16 19:32:44 the switch. Apr 16 20:21:35 build #45 of goldfish is complete: Failure [failed compile_6] Build details are at http://tksite.gotdns.org:8010/builders/goldfish/builds/45 Apr 16 20:23:37 nbd * r20940 /trunk/target/linux/gemini/patches/110-disable_hw_chksum_and_sg.patch: gemini: either scatter/gather dma or hw checksum breaks ethernet, comment out the define that enables both Apr 16 20:29:28 juhosg * r20941 /branches/backfire/target/linux/ppc40x/patches/ (004-magicbox.patch 005-openrb.patch): backfire: ppc40x: move perwe fixup into a separate function (backport of r20929) Apr 16 20:29:35 juhosg * r20942 /branches/backfire/target/linux/ppc40x/patches/ (4 files): backfire: ppc40x: add more EBC_BXCR defines (backport of r20930) Apr 16 20:29:41 juhosg * r20943 /branches/backfire/target/linux/ppc40x/patches/ (2 files): backfire: ppc40x: make isp116x-hcd driver usable on the OpenRB board (backport of r20931) Apr 16 20:29:47 juhosg * r20944 /branches/backfire/target/linux/ppc40x/patches/005-openrb.patch: backfire: ppc40x: add isp116x-hcd to the device tree for the OpenRB board (backport of r20932) Apr 16 20:29:52 juhosg * r20945 /branches/backfire/target/linux/ppc40x/config-default: backfire: ppc40x: enable USB support (backport of r20933) Apr 16 20:29:57 juhosg * r20946 /branches/backfire/package/kernel/modules/usb.mk: backfire: package/modules: package isp116x-hcd driver (backport of r20934) Apr 16 20:30:03 juhosg * r20947 /branches/backfire/package/swconfig/src/swlib.c: Apr 16 20:30:04 backfire: swconfig: Fix switch name. (backport of r20938) Apr 16 20:30:04 This patch fixes a small typo in swconfig's client side that caused Apr 16 20:30:04 it to print the interface name instead of the switch's device name Apr 16 20:30:04 on the help page. Apr 16 20:30:04 Signed-off-by: Jonas Gorski Apr 16 20:30:09 juhosg * r20948 /branches/backfire/ (5 files in 3 dirs): (log message trimmed) Apr 16 20:30:09 backfire: swconfig: Add cpu port index to help output. (backport of 20939) Apr 16 20:30:09 Let swconfig provide the cpu port index in its help page. This is Apr 16 20:30:09 needed as e.g. Atheros switches have their cpu port at port 0, not Apr 16 20:30:10 port 5. Apr 16 20:30:10 This could allow e.g. luci to get a rough overview of the layout of Apr 16 20:30:11 the switch. Apr 16 20:43:12 build #45 of ifxmips is complete: Failure [failed compile_6] Build details are at http://tksite.gotdns.org:8010/builders/ifxmips/builds/45 Apr 16 20:54:22 <[florian]> philipp64: yw Apr 16 21:03:38 nbd * r20949 /trunk/target/linux/gemini/ (3 files in 3 dirs): gemini: add support for wiligear wbd-222 (patch by Darius Augulis) Apr 16 21:55:40 nbd * r20950 /trunk/package/mac80211/patches/530-minstrel_ht.patch: mac80211: fix a minstrel_ht off-by-one bug (patch by Christian Lamparter) Apr 16 21:58:10 [florian]: you aren't still around by any chance, are you? Apr 16 22:04:46 build #43 of adm5120 is complete: Failure [failed compile_6] Build details are at http://tksite.gotdns.org:8010/builders/adm5120/builds/43 Apr 16 22:17:56 <[florian]> rtz2: I am, but not for long Apr 16 22:18:38 [florian]: are you aware of any problems with dsl on the ar7 with backfire? Apr 16 22:18:52 [florian]: is it confirmed to work? Apr 16 22:19:00 <[florian]> rtz2: it does work yes Apr 16 22:19:16 it doesn't for me :/ Apr 16 22:19:26 <[florian]> rtz2: what kind of issues do you have? Apr 16 22:19:56 US Connection Rate: 0 DS Connection Rate: 0 in /proc/avalanche/avsar_modem_stats Apr 16 22:20:15 [florian]: i can give you the complete file, but pretty much everything is 0 Apr 16 22:20:16 <[florian]> do you go up to showtime? Apr 16 22:20:22 <[florian]> rtz2: does it sync? Apr 16 22:20:25 what kind of device? Apr 16 22:20:33 [florian]: how can I find out? Apr 16 22:20:42 <[florian]> rtz2: it should tell you in the log iirc Apr 16 22:20:42 nbd: some no-name oem zyxel Apr 16 22:20:53 got the firmware for the right annex type? Apr 16 22:21:13 nbd: synergy21 s21617b Apr 16 22:21:26 nbd: maybe that's the problem Apr 16 22:21:34 which firmware do you have installed? Apr 16 22:21:41 nbd: I used the default image from the website Apr 16 22:21:48 should show up in opkg list_installed Apr 16 22:22:20 [florian]: the carrier sysfs attribute shows 1 Apr 16 22:23:48 nbd: I have a but I need b, right? Apr 16 22:24:07 yes Apr 16 22:24:12 germany uses b Apr 16 22:49:29 nbd: thanks Apr 16 22:49:33 nbd: it works now Apr 16 22:49:38 great Apr 16 22:49:45 nbd: but I have to say, this is a really evil pitfall Apr 16 22:50:16 we don't have a good way of detecting the annex type Apr 16 22:50:21 so this is hard to fix Apr 16 22:50:58 nbd: how big is the actual difference between the kmods? Apr 16 22:51:25 kmod's the same, firmware is different Apr 16 22:51:26 imgo Apr 16 22:51:27 imho Apr 16 22:51:53 nbd: can it be turned into a config option? Apr 16 22:52:13 nbd: or is there some serious problem with that? Apr 16 22:52:32 could be handled through symlinks, but needs a symlink update and module reload on config change Apr 16 22:53:40 nbd: looks like I have to build from source anyway to get broadcom wifi support Apr 16 22:54:04 broadcom wifi support? Apr 16 22:54:07 nbd: so I will take a look at it, maybe I get a really good id Apr 16 22:54:16 your board has pci? Apr 16 22:54:23 nbd: mini-pci, yes Apr 16 22:54:31 does it come with a broadcom card? Apr 16 22:55:05 nbd: nope, it's a ti card, but I kinda like stable wireless with wpa ... Apr 16 22:55:15 i'm pretty sure your board does not have pci Apr 16 22:55:26 it has a minipci slot, sure Apr 16 22:55:28 yup, it only looks like mini-pci Apr 16 22:55:29 but it doesn't have pci Apr 16 22:55:47 ar7 only uses a few pins of the minipci slot for a proprietary bus Apr 16 22:55:56 and the minipci card supports both minipci and the proprietary stuff Apr 16 22:56:22 ahh crap Apr 16 22:57:03 yes :p Apr 16 22:57:23 looks like i'm stuck with the acx crap Apr 16 22:57:42 baaaaaaaaaahhhhhh Apr 16 22:58:23 and this looked like such a good idea ... Apr 16 23:00:13 anybody has some recent informations about the mac80211 acx driver? Apr 16 23:03:04 last time I tried it on my ti wlan 1350 it crashed Apr 16 23:03:19 but that was two years ago. I saw some activity on the acx-ml recently Apr 16 23:03:47 loswillios: I also thought so Apr 16 23:04:02 loswillios: I will ask florian tomorrow, he should have an idea Apr 16 23:07:21 rtz2: acx-mac80211 in openwrt should be a git-checkout, so you'd just need to bump the PKG_REV Apr 16 23:07:27 to get the latest Apr 17 02:34:23 build #43 of iop32x is complete: Failure [failed compile_6] Build details are at http://tksite.gotdns.org:8010/builders/iop32x/builds/43 **** ENDING LOGGING AT Sat Apr 17 02:59:56 2010