2011-03-21 04:23 C-Keen: Hi, is your nanonote work again? 2011-03-21 06:28 kyak xiangfu: building image following   http://en.qi-hardware.com/wiki/Building_Software_Image fails on gtkhtml 2011-03-21 06:28 checking for GTKHTML... configure: error: Package requirements (gtk+-2.0 >= 2.16.0 enchant gconf-2.0 iso-codes) were not met: 2011-03-21 06:29 No package 'enchant' found 2011-03-21 06:29 No package 'iso-codes' found 2011-03-21 06:30 n -s data/qi_lb60/files 00:24 2011-03-21 06:30 doesn't work, there is no "data" dir in openwrt-xburst 2011-03-21 06:30 kyak xiangfu: building image following http://en.qi-hardware.com/wiki/Building_Software_Image fails on gtkhtml 2011-03-21 06:30 checking for GTKHTML... configure: error: Package requirements (gtk+-2.0 >= 2.16.0 enchant gconf-2.0 iso-codes) were not met: 07:26 2011-03-21 06:30 No package 'enchant' found 07:26 2011-03-21 06:30 No package 'iso-codes' found 07:26 2011-03-21 06:32 tuxbrain: seems that you are not using the latest openwrt feeds 2011-03-21 06:32 i remember this error, it had been fixed 2011-03-21 06:34 tuxbrain: edit your feeds.conf and drop the trailing "@..." 2011-03-21 06:35 this way you will use the latest fedes rather then stick some specific svn revision 2011-03-21 06:36 you are using @25513 2011-03-21 06:36 and this bug was fixed in @25949 :) 2011-03-21 06:37 (don't forget to run make package/symlinks after that) 2011-03-21 06:38 kyak: hi, any outstanding issues with the migration to trunk? 2011-03-21 06:39 xMff: oh, hi! i've sent an e-mail to ML here: 2011-03-21 06:39 http://lists.en.qi-hardware.com/pipermail/discussion/2011-March/007603.html 2011-03-21 06:39 basically, it's not so bad at all 2011-03-21 06:39 most apps build and run fine 2011-03-21 06:41 ah the binutils and ncruses tickets 2011-03-21 06:41 I'll check them later today 2011-03-21 06:41 yep 2011-03-21 06:41 there is also 9047 ticket 2011-03-21 06:41 but it is related to backfire 2011-03-21 06:41 did you test the last patch in #9048 ? 2011-03-21 06:42 yeah, i was the anonymous proposer :) 2011-03-21 06:42 ah 2011-03-21 06:48 xiangfu then what should had to be changed in http://en.qi-hardware.com/wiki/Building_Software_Image? due I'm making a fresh git checkout 2011-03-21 06:49 kyak: I committed #9044 and #9048 2011-03-21 06:51 xMff: thanks! 2011-03-21 06:52 tuxbrain: we have move the  'data/'  folder to one package. 2011-03-21 06:52 tuxbrain: I will update the wiki page now. 2011-03-21 06:53 xMff: while you are here, i wanted to mention one more thing: 2011-03-21 06:53 $ ./staging_dir/target-mipsel_uClibc-0.9.32/usr/bin/perl -e "print join(' ', @INC)" 2011-03-21 06:53 /usr/local/lib/perl5/5.10.0/i686-linux /usr/local/lib/perl5/5.10.0 /usr/local/lib/perl5/site_perl/5.10.0/i686-linux /usr/local/lib/perl5/site_perl/5.10.0 . 2011-03-21 06:53 xMff: don't you think it's weird? 2011-03-21 06:53 kyak: I never actually built perl on openwrt yet but I think its config.pm must be patched 2011-03-21 06:53 it's causing compilation problems for packages that find perl in stagind_dir 2011-03-21 06:53 cause perl is not able to find it's own modules 2011-03-21 06:55 for exmaple, if i build plplot, then perl, it's OK. But if i build perl, then plplot, then plplot fails to build :) 2011-03-21 06:56 I see 2011-03-21 06:57 i tried to have a look, but there was no fast solution. Then i marked plplot as BROKEN :) 2011-03-21 06:57 I think the perl binary sources its @INC from config.pm 2011-03-21 06:58 yeah, and config.pm is generated at build time.. 2011-03-21 06:58 I think the generated one is not even used 2011-03-21 06:58 but the system wide one 2011-03-21 06:59 in feeds/packages/lang/perl/perlmod.mk, there is PERL_LIB := $(STAGING_DIR)/usr/lib/perl5/5.10. It is later passed to configure 2011-03-21 06:59 so it's really weird 2011-03-21 06:59 that it is missed at some point later 2011-03-21 06:59 tuxbrain: I will split them to two parts. 1. build release image. 2. build last git commit 2011-03-21 06:59 kyak: can you locate the config.pm in your staging_dir qand upload it? 2011-03-21 07:00 staging_dir/target-mipsel_uClibc-0.9.32/usr/lib/perl5/5.10/Config.pm is at http://dpaste.com/523410/ 2011-03-21 07:01 ok 2011-03-21 07:01 now please try this: 2011-03-21 07:01 PERL5LIB=staging_dir/target-mipsel_uClibc-0.9.32/usr/lib/perl5/5.10/ ./staging_dir/target-mipsel_uClibc-0.9.32/usr/bin/perl -e "print join(' ', @INC)" 2011-03-21 07:03 the stagind_dir is prepended to @INC 2011-03-21 07:03 (btw, this is the hack used by xiangfu to build plplot :) 2011-03-21 07:04 I think we should put a wrapper perl in staging_dir 2011-03-21 07:05 sounds goof 2011-03-21 07:05 *good 2011-03-21 07:05 you said it prepended @INC, so there still was /usr/local stuff in it? 2011-03-21 07:05 yep 2011-03-21 07:06 can you run strings on the binary and see if those paths are coded in? 2011-03-21 07:06 yep 2011-03-21 07:06 hardcoded :) 2011-03-21 07:07 ok 2011-03-21 07:07 so we have to trac that down 2011-03-21 07:07 +k 2011-03-21 07:09 have to go now.. see you later! 2011-03-21 07:09 bye 2011-03-21 07:28 http://en.qi-hardware.com/wiki/Building_Software_Image#Building_OpenWrt_base_on_release_files 2011-03-21 07:28 http://en.qi-hardware.com/wiki/Building_Software_Image#Building_OpenWrt_on_last_git_commmit 2011-03-21 07:28 tuxbrain: ^ 2011-03-21 07:43 thanks xianfu, I will test procedures once the build I runing right now (wich I guess is a mixture of both :P) finish :), I need a full toolchain with qt, if the mixture brings it to me I will be fine :) 2011-03-21 09:47 http://blog.webmproject.org/2011/03/introducing-anthill-first-vp8-hardware.html 2011-03-21 10:09 ah great news 2011-03-21 10:58 Jay7: Can you request the hardware HDL part? 2011-03-21 10:59 i mean RTL source code 2011-03-21 10:59 i'll do too 2011-03-21 10:59 It's not my project :) 2011-03-21 10:59 and wait for replly 2011-03-21 10:59 yes no mather 2011-03-21 10:59 ask/push ! 2011-03-21 10:59 http://www.webmproject.org/hardware/ 2011-03-21 10:59 ask/push !!! :-) 2011-03-21 13:39 Are you Mr. Stevens? 2011-03-21 13:39 Head of Catering 2011-03-21 13:41 not me 2011-03-21 13:42 B_Lizzard: the one with a business proposal involving a large money transfer ? :) 2011-03-21 13:43 Oh come on, classic Eddie Izzard 2011-03-21 13:43 Yes, I propose you transfer me all your money. 2011-03-21 13:43 B_Lizzard: I am not familiar with the gentleman's work. 2011-03-21 13:43 I have 200 euro in the bank 2011-03-21 13:44 B_Lizzard: let's find out by how much they let you overdraw our account ;-) 2011-03-21 13:44 http://www.youtube.com/watch?v=Sv5iEK-IEzw 2011-03-21 13:44 :D 2011-03-21 13:48 B_Lizzard: heh, cute :) 2011-03-21 13:53 :) 2011-03-21 15:09 damn it, I have not remove the /CONFIG_ALL=y option ... I'm building the whole repo , the good thing is that if successful builds I will ha a damn complete toolchain with all libs aviable on openwrt :P 2011-03-21 15:09 is building since 7:00AM now is 16:00 2011-03-21 15:33 tuxbrain: you can just abort, disable config_all and continue 2011-03-21 15:38 yeah I can but... I love to see my machine working :P, and I'm courious how much space the FULL toolchain will arrive. 2011-03-21 15:39 after if finish I will do a "just image build" and compare 2011-03-21 15:43 yes I need new glasses, xMff I can be a real PITA isn't it? any advance on avr tools ported to openwrt you experience any problem? 2011-03-21 18:45 lars_: 2.6.36 is the only vanilla kernel that runs on the nanonote? Do .37 and .38 work as is? 2011-03-21 18:48 .37 does 2011-03-21 18:48 .38 does not 2011-03-21 18:50 ok 2011-03-21 18:50 lars_: can you point me to some document that talks about 'the hardware has a problem that makes suspend-to-ram fail after some time suspended' 2011-03-21 18:51 not really, afaic it was only discussed here 2011-03-21 18:51 mh 2011-03-21 18:52 and what does it require to become 'sure' it is a hardware problem? 2011-03-21 18:53 a hw fix 2011-03-21 18:53 :) 2011-03-21 18:54 How have been the attempts to fix it, to decide 'it's a hardware problem'? 2011-03-21 18:54 i don't think so. 2011-03-21 18:55 we can work around it in sw, by wakeing it up with the rtc clock from time to time 2011-03-21 18:55 I was told here you (and some other people here) think it is a hardware problem 2011-03-21 18:55 What happens with that rtc clock? 2011-03-21 18:56 i assume, that it is a hardware problem, because it doesn't occur on other jz4740 based devices. 2011-03-21 18:57 the rtc clock would wake up the device 2011-03-21 18:57 isn't the rtc clock in the jz4740? 2011-03-21 19:00 hm? 2011-03-21 19:00 hm 2011-03-21 19:00 yes 2011-03-21 19:01 but you'd wake up the device before the problem occurs 2011-03-21 19:01 you mean a problem of the jz4740 in the nanonote, or a problem out of the jz4740? 2011-03-21 19:01 after two hours 2011-03-21 19:01 i guess it's a problem of the nanonote circuit 2011-03-21 19:01 but noone found out what problem still 2011-03-21 19:04 do we know if the work-around eliminates the problem reliably ? or are there unintended side-effects ? 2011-03-21 19:08 i'm not sure if anybody tested it yet extensivly 2011-03-21 19:13 What I tested was to suspend 2011-03-21 19:13 wait some hours, and try to wake it up 2011-03-21 19:13 and it was *off* 2011-03-21 19:13 I had to power it up as if it was off. 2011-03-21 19:13 Is this the behaviour you saw? 2011-03-21 19:17 it did not look hanged. I expected to find it hanged 2011-03-21 19:22 why? 2011-03-21 19:24 I've no idea. I imagined that :) 2011-03-21 19:24 here people simply said 'it does not work' 2011-03-21 21:16 old gps-receivers (1990) we're prety valuable for hacking 2011-03-21 21:17 http://gps.psas.pdx.edu/MpcForMG5001/ 2011-03-21 21:19 surelly the equivalent to a computer with ISA slots and GPIO board, vga board, processor board.. 2011-03-21 22:14 Hi all ! 2011-03-21 22:14 Is anyone available ? 2011-03-21 22:16 ... asked the sailor upon entering madam's parlour :) 2011-03-21 22:20 hi 2011-03-21 22:38 wpwrak: you are a poet :P 2011-03-21 22:39 LunaVorax_mini: seems yes, what happens? 2011-03-21 22:44 Hey 2011-03-21 22:44 Sorry I was afk 2011-03-21 22:44 Ok so 2011-03-21 22:44 I'm lost with the wiki so I'm going to ask my question here 2011-03-21 22:44 Is a Ben Nanonote 2 is in the works ? 2011-03-21 22:54 It depends how you see it 2011-03-21 22:54 There are ongoing side projects around 2011-03-21 22:54 Like avt2,but i dont know his status clearly 2011-03-21 23:00 kristianpaul, what ongoing project is the closest to the ben then ?