**** BEGIN LOGGING AT Fri Apr 01 02:59:58 2011 Apr 01 10:04:35 blogic * r26389 /packages/net/privoxy/Makefile: Apr 01 10:04:35 [privoxy] Apr 01 10:04:35 Update privoxy to 3.0.17. This is a maintenance release. Apr 01 10:04:35 Signed-off-by: Ian Leonard Apr 01 10:59:53 blogic * r26390 /trunk/package/dropbear/ (Makefile patches/120-openwrt_options.patch): (log message trimmed) Apr 01 10:59:53 [dropbear] Apr 01 10:59:53 r25831 reduced the size of the dropbear executable by, among other things, Apr 01 10:59:53 disabling support for keyboard-interactive authentication. The default Apr 01 10:59:53 sshd configuration on Mac OS X only permits keyboard-interactive and Apr 01 10:59:54 public-key authentication, so unless a public key is set up, the default Apr 01 10:59:55 OpenWrt ssh client is now unable to connect to Mac OS X hosts. This patch Apr 01 11:11:57 blogic * r26391 /trunk/scripts/env: Apr 01 11:11:57 [scripts/env] Apr 01 11:11:57 path expansion was broken due to a badly quoted * Apr 01 11:11:57 Signed-of-by: Benjamin Cama Apr 01 11:39:59 datenmaulwurf? new nick? ;) Apr 01 12:43:56 KanjiMonster: server got down where my irssi-client was running in... - now mirko is "already used" - grmpf.. Apr 01 12:44:58 bug in freenode i guess - it's registered.. however just as an alias Apr 01 12:45:18 so you can't kill whover is using it? Apr 01 12:45:33 *whoever Apr 01 12:45:53 KanjiMonster: nope Apr 01 12:46:35 <_trine> if its your nick and you have the passwd you can ghost the nick and get it back Apr 01 12:47:05 _trine: ghost it? how do i do that? Apr 01 12:47:33 <_trine> /ns ghost nick passwd Apr 01 12:48:42 _trine: "You may not ghost yourself." Apr 01 12:49:14 <_trine> yes but you were trying to ghost the other nick you own were you not Apr 01 12:49:41 identify nick pass Apr 01 12:49:49 blogic: nope ;) Apr 01 12:49:52 <_trine> doing ghost will kick the other person off Apr 01 12:49:52 hmm Apr 01 12:49:58 datenmaulwurf is my nick, mirko is an registered alias Apr 01 15:27:19 <_trine> sudo dol Apr 01 20:27:19 KanjiMonster: ping Apr 01 20:27:28 philipp64|laptop: pong Apr 01 20:29:24 seeing http://pastebin.com/ftp8rihG Apr 01 20:29:31 which do I need to turn on? Apr 01 20:29:43 KERNEL_XZ? Apr 01 20:30:16 I thought all of that was now in target/linux/generic/config-2.6.38 .... Apr 01 20:31:38 philipp64|laptop: ugh, I don't know, I didn't get this prompt on bcm63xx Apr 01 20:32:09 I'll try 5... would be nice if x86/generic was one of the automated build targets for sanity. Apr 01 20:32:29 sorry, 4, not 5. Apr 01 20:39:12 KanjiMonster: ok, after selecting that, my build still fails: http://pastebin.com/cP4a4pCN Apr 01 20:46:54 hmmm.... paste.openwrt.org seems to be down. Apr 01 21:00:25 philipp64|laptop: I don't see anything failing there Apr 02 00:37:20 KanjiMonster: back... sorry, not seeing anything where? Which paste? Apr 02 00:38:12 nbd: ping Apr 02 00:39:12 philipp64|laptop: already dead, but it was just a bunch of "skipping package xyz - not selected" Apr 02 00:40:13 I'm looking at target/linux/x86/geos/target.mk but it occurs to me that when target.mk is read, KERNEL_PATCHVER hasn't yet been set... Apr 02 00:40:45 KanjiMonster: should those packages be automatically selected? Apr 02 00:42:54 philipp64|laptop: without knowing the config I can't tell, and this has nothing to do with squashfs and xz ;) Apr 02 00:45:14 ok, I'm confused... those dependencies didn't show up until I applied your patches and changed versions to 2.6.38. Apr 02 00:49:46 xMff: ping Apr 02 00:51:35 any makefile-machinery gurus around? Apr 02 00:51:49 philipp64|laptop: pong Apr 02 00:51:57 nbd * r26392 /trunk/target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx_main.c: ar71xx: frequent ethernet mac resets upset the MDIO bus on ar7240, so do not run them on every device open, only on tx timeouts Apr 02 00:52:02 nbd * r26393 /trunk/target/linux/ar71xx/files/drivers/net/ag71xx/ (ag71xx.h ag71xx_ar7240.c ag71xx_mdio.c): ar71xx: only allow internal access to the ar7240 switch, export the MDIO bus behind the switch instead Apr 02 00:52:08 nbd * r26394 /trunk/target/linux/ar71xx/files/arch/mips/ar71xx/ (4 files): ar71xx: enable access to the WAN port PHY on a few devices, adds WAN link detection Apr 02 00:52:50 nbd: question for you... with the patch that I made to target/linux/x86/geos/target.mk, I just realized that LINUX_VERSION is defined when that file is sourced, but KERNEL_PATCHVER hasn't yet been set... Apr 02 00:53:31 that's a problem... because $(KERNEL_PATCHVER) will always be (empty) when this file is evaluated. Apr 02 00:53:37 philipp64|laptop: you could fix it by using lazy-eval Apr 02 00:53:53 := ? Apr 02 00:53:59 no, that's immediate eval Apr 02 00:54:03 = is lazy Apr 02 00:55:37 but the problem isn't GEOS_GPIO= ... it's that it's bracketed with ifeq / endif Apr 02 00:56:11 i know Apr 02 00:56:18 that's why you need to get rid of the ifeq/endif Apr 02 00:56:28 ok... how? Apr 02 00:56:34 by using $(if ...) Apr 02 00:56:41 ah... ok. Apr 02 00:56:53 remember that CompareKernelPatchVer is either 1 or 0 Apr 02 00:56:57 so you need findstring as well Apr 02 00:57:13 or filter Apr 02 00:57:21 or whatever other string matching function you prefer Apr 02 01:00:04 ok... why don't we just define KERNEL_PATCHVER before LINUX_VERSION as a lazy evaluation? Apr 02 01:00:57 phillpp64: with lazy evaulation it just had to be define before it's used, not before LINUX_VERSION (unless LINUX_VERSION uses it?) Apr 02 01:01:30 philipp64: it won't be evaluated until it's time to use it Apr 02 01:04:34 right... and I believe it hasn Apr 02 01:04:48 hasn't even been defined by the time that we read the target.mk file. Apr 02 01:06:30 yup, $(PLATFORM_SUBDIR)/target.mk gets included before include/kernel-version.mk ... Apr 02 01:07:56 so could we include include/kernel-version.mk earlier? Apr 02 01:10:19 nbd: so you are using the mdio bus to access the switch registers to access the mdio registers? ;) Apr 02 01:14:35 nbd * r26395 /trunk/package/mac80211/patches/ (2 files): ath9k: fix adhoc beacon issues (#9163) Apr 02 01:15:34 nbd * r26396 /branches/backfire/package/mac80211/patches/ (2 files): ath9k: fix adhoc beacon issues (#9163, backport of r26395) Apr 02 01:17:49 nbd: so we can't do something like http://fpaste.org/LEwE/ ? Apr 02 01:17:54 KanjiMonster: i used the ag71xx_mdio_mii_{read,write} functions directly to ensure that no recursion can happen ;) Apr 02 01:18:29 philipp64|laptop: no, that looks quite wrong Apr 02 01:18:45 kernel-version.mk sets the patchver and stuff like that based on the target makefile info Apr 02 01:29:22 got_milk: ping Apr 02 01:31:17 got_milk: when you have time, here's a patch for you to test: http://nbd.name/580-minstrel_aggr_delay.patch Apr 02 01:31:37 maybe it'll help with the intel latency issues Apr 02 01:42:35 nbd: like this? http://patchwork.midlink.org/patch/831/ Apr 02 01:44:33 yep Apr 02 01:45:34 * nbd needs sleep now Apr 02 02:01:37 cshore: can you commit that please? Apr 02 02:07:01 cshore * r26397 /trunk/target/linux/x86/geos/target.mk: Apr 02 02:07:01 We $(PLATFORM_SUBDIR)/target.mk gets included, include/kernel-version.mk hasn't yet been included... therefore KERNEL_PATCHVER hasn't yet been defined. Apr 02 02:07:01 Ergo, we need to use a deferred definition of GEOS_GPIO (and can't use ifeq/endif). Apr 02 02:07:01 Signed-off-by: Philip Prindeville cshore: thank you! Apr 02 02:13:30 np. Let me know if there's any problems asap, please. Apr 02 02:17:43 will do. Apr 02 02:20:52 KanjiMonster: hopefully I'll manage to build 2.6.38.2 for my geos with squashfs4 support... Apr 02 02:29:11 nbd * r26398 /trunk/package/ppp/patches/400-simplify_kernel_checks.patch: ppp: fix fallout from the size reduction patch (thx, frogonwheels) **** ENDING LOGGING AT Sat Apr 02 02:59:58 2011