IRC log of #maemo for Monday, 2014-10-13

Sicelo1hi00:00
*** stryngs has joined #maemo00:01
stryngsQuestion for ya'll.  I recently built binutils natively, and under /usr it created armv7l-unknown-linux-gnueabi00:02
stryngsIs the system type for the n900 armv7l?00:03
Siceloof course .. `uname -m`00:04
stryngsThank you Sicelo =)00:05
stryngsI did not know that00:05
*** erlehmann has quit IRC00:08
*** erlehmann has joined #maemo00:08
*** ALoGeNo has quit IRC00:09
*** stryngs has quit IRC00:13
*** Pali has quit IRC00:15
*** bef0rd has joined #maemo00:18
*** Sicelo900v6 has joined #maemo00:23
*** Sicelo900v6 has quit IRC00:25
*** iamtheoneiam has joined #maemo00:26
*** iamtheoneiam has joined #maemo00:26
*** iamtheoneiam is now known as Sicelo900v600:26
*** stryngs has joined #maemo00:28
stryngs*** BFD does not support target armv7l-unknown-none.00:28
stryngs*** Look in bfd/config.bfd for supported targets.00:28
* stryngs sighs00:29
stryngsSicelo: any ideas?00:29
bencohbleh, bfd :/00:30
stryngswell the weird part is when i ./configure without doing --build=armv7l it does let make happen properly.  Then it creates a directory under /usr called armv7l-unknown-linux-gnueabi00:31
stryngsunder that directory is a bin/ with several executables as well00:32
stryngsi'm trying to get it to where everything builds under bin/00:32
stryngsAny ideas?00:32
stryngsI'm not much a wiz on this stuff, I kind of peck and make stuff happen00:33
*** Oksana has joined #maemo00:33
*** LauRoman has quit IRC00:39
*** florian has quit IRC00:43
stryngsrah rah shish the community bah.  Oh well, At least I got the uname -m answer =)00:53
*** ZogG_laptop has quit IRC00:56
*** SmilyOrg has joined #maemo01:09
*** Smily has quit IRC01:12
bencohstryngs: I have no idea what you're trying to do ... building a cross binutils ?01:15
bencohor a native one ?01:15
bencohyou shouldnt specify --build/--host for a native build01:15
bencohand I still dont get why you want/need a newer binutils, btw01:16
stryngsbencoh, I require the most up to date gcc/cpp/g++01:18
stryngsThe pre-compiled deb ready one is 4.601:18
stryngsOf course in updating to 4.6, it required me to upgrade binutils to binutils2.2201:18
stryngsWhenever you compile something even as simple as Hello world, there is an error01:18
stryngsSo, to me that is unacceptable.  In turn I've decided to build binutils 2.2401:19
stryngsI did figure it out though =)01:19
stryngsCurrently make installing01:19
stryngsHeh, and even with figuring out the --build part01:20
stryngsNokia-N900:~/binutils-2.24# ls /root/binutils-deb/usr/01:20
stryngsarmv7l-unknown-linux-gnueabi  bin                           include                       lib                           share01:20
stryngsNokia-N900:~/binutils-2.24# ls /root/binutils-deb/usr/armv7l-unknown-linux-gnueabi/bin/01:20
stryngsar       as       ld       ld.bfd   nm       objcopy  objdump  ranlib   strip01:20
stryngsNokia-N900:~/binutils-2.24# ls /root/binutils-deb/usr/bin01:20
stryngsaddr2line  ar         as         c++filt    elfedit    gprof      ld         ld.bfd     nm         objcopy    objdump    ranlib     readelf    size       strings01:20
stryngsIt still creates a seperate set of binaries01:20
stryngsson of a gun01:20
stryngsmaybe it's target flag i need to use01:20
stryngsbencoh: In building this, I want everything under /usr/bin01:21
stryngsnot /usr/bin and /usr/armv7l-unknown-linux-gnueabi/bin01:21
stryngsSo, now we try --target flag =)01:22
stryngsAgain I'm not much of a developer, mostly hunt and peck+ see what happens01:22
stryngsI've never had a Makefile create seperate sets of /bins so I'm very lost +001:23
jon_y--target is for code generators01:24
jon_ymeans what platform the package will generate code for01:24
stryngsSo what can I do to make binutils build the binaries under /usr/bin?01:24
jon_ynot relevant for most code01:25
jon_y--prefix?01:25
stryngsBecause never before have I seen make install drop stuff under two sets of /bins01:25
stryngs--prefix=/usr01:25
jon_y/usr/armv7l-unknown-linux-gnueabi/bin is for internal use01:25
jon_yyou don't need to care what goes on there01:25
stryngswhat do you mean?01:25
stryngsCan I not remove it then?01:26
jon_yno01:26
stryngscan i put it in a subdir?01:26
jon_ymeans don't be anal about it, just leave it there01:26
stryngsvs /usr01:26
jon_ydon't move it after install either01:26
stryngsi know that, but the thing is the install doesnt work jon_y01:26
jon_yhow does it not work?01:26
stryngsand placing the binaries under that dir in /usr/bin overwriting /usr/bin binaries does work01:27
jon_yhow does it failing?01:27
stryngssysroot issue i think01:27
stryngsone sec01:27
stryngslet me install it01:27
stryngsand ill show u01:27
stryngsi use DESTDIR to avoid / overwriting01:27
stryngsThank you for your help =)01:28
jon_ywhy do you use DESTDIR01:28
jon_ythat is equivalent to moving it01:28
stryngsbecause I create my own debs jon_y01:28
stryngsi.e01:28
jon_yand you expect it to work?01:28
stryngs./configure --prefix=/usr && make && make install DESTDIR=/root/deb01:28
stryngscd /root/deb && mkdir DEBIAN01:29
stryngscd DEBIAN01:29
stryngstouch control01:29
stryngs"create desired control file"01:29
stryngscd ~!01:29
stryngscd !~01:29
stryngscd ~01:29
stryngsdpkg-deb -b deb .01:29
stryngspoof01:29
stryngs.deb created01:29
stryngsso yes, it does work jon_y01:29
jon_yso what was the problem?01:29
stryngsone sec, let me pkg up01:29
stryngsill paste output01:29
stryngsThank u for the help =)01:29
stryngsOne moment, takes a minute, have to remove symlinks and such =)01:31
* stryngs twitches01:31
stryngsNokia-N900:~# g++ a.c01:33
stryngs/usr/bin/ld: this linker was not configured to use sysroots01:33
stryngscollect2: ld returned 1 exit status01:33
stryngsjon_y: There ya go01:33
stryngsjon_y: Per config.log it was configured via: ./configure --prefix=/usr01:34
jon_ythe message was clear, you forgot to use --with-sysroot01:34
jon_ycheck with gcc -v to find out what the correct value is01:34
* stryngs isn't much of a builder01:35
stryngsOk, but will this not affect future makefiles jon_y ?01:35
stryngsAs well, the binutils2.22 .deb from the repos doesnt have the armv7l-unknown-linux-gnueabi/bin dir01:35
jon_yI don't know about your makefiles, but it is what binutils is complaining about01:35
stryngsSo what did they do to build binutils2.22 to where everything is under /usr/bin01:35
jon_yalso, you seem to be setting up a cross compiler01:36
stryngsI'm building this natievly on the n900 with binutils from gnu.org01:36
jon_ybecause the sysroot is where stuff like libc and headers will go01:36
jon_ythis is useful for cross compiling where those stuff won't clobber the system headers/libs01:37
jon_ywhat you want to do for native gcc/binutils is to build just with --prefix01:37
stryngsOk jon_y: So what can I do to create a build, much like that you find via: apt-get install binutils2.22 from the repos01:37
stryngsI did jon_y: ./configure --prefix=/usr01:37
jon_yyes, but gcc needs to be done likewise too01:37
jon_yright now you installed a cross compiler gcc that won't work unless sysroot is set01:38
jon_yand that in itself is messed up01:38
*** LauRoman has joined #maemo01:39
jon_ybasically, gcc and binutils need to be consistent around the --with-sysroot option01:39
bencohstryngs: then again, you dont need --host/--target/--build01:39
stryngscurl http://termbin.com/txt901:39
jon_yfor native, don't touch it01:39
stryngsbut bencoh, it's not building properly01:40
bencohit still has nothing to do with it01:40
jon_ystryngs: do what bencoh says01:40
jon_yno --host/--target/--build if you want native01:40
stryngsjon_y: I did01:40
jon_yalso, for goodness sake, don't build in-tree01:40
jon_yit is not tested01:41
bencoh(btw, I ran a native binutils build on osx today, so I *know* you dont need those ;p)01:41
stryngsin-tree?01:41
jon_y./configure <-- this won't work01:41
bencohrun configure from another directory01:41
jon_ybuild it outside the source dir01:41
stryngsoh, that's in tree?01:42
stryngsi.e.01:42
bencohwell, it kinda works for binutils alone, it wont if you want a full toolchain01:42
stryngstar zxf source.tar.gz01:42
stryngscd source01:42
stryngs./confgiure01:42
stryngsvs-01:42
jon_yyes, that is in-tree01:42
stryngstar zxf source.tar.gz01:42
stryngssource/configure01:42
stryngsThat's proper jon_y ?01:42
jon_yno, use cd build01:42
stryngsah01:42
stryngscmake style01:42
jon_ycd build; ../source/configure01:43
stryngsI apologize for my newbieness sounding on this =)01:43
stryngsI do know what I'm doing with linux, just never had a build go crazy like this01:43
stryngsnever seen a secondary set of /bin the way binutils has been doing, so i'm like wtf01:43
jon_yyou want to try Linux From Scratch to understand the relationship better01:43
bencoh+101:43
*** bef0rd has quit IRC01:44
bencohand I believe there is some doc from GNU gcc around as well01:44
stryngshaha, no and thanks jon_y.  I don't have that kind of free time on my hand01:44
stryngsBut i will try the non-tree build right now01:44
stryngsI wonder why this issue has never came up before, I've always built in-tree01:44
jon_ybencoh: even for binutils, in-tree build is iffy01:44
jon_ybasically, the entire cygnus tree01:45
stryngsAnd also, bencoh and jon_y THANK you for your help.  People are so damn silent in #maemo it's agravating sometimes.01:45
bencohhttps://gcc.gnu.org/install/build.html01:45
jon_yyeah, take note of the possible gcc configure arguments too01:45
stryngsOh i've use arguments sometimes before, but again, this issue never came up, so i felt completly lost, and googling didn't really help in this case01:46
bencohstryngs: people are silent about this because it doesnt have much to do with maemo itself, and it's the kind of stuff sane people dont want to mess with :-)01:46
stryngsbencoh: You think people would appreciate native development on the n900 in this channel though, even if it is "insane"01:46
bencohoh, I wasnt referring to native dev ... but's not completely sane as well ^^01:47
bencohthat's*01:47
stryngsYeah, but is this channel not for all things n900?01:47
bencohjon_y: yup, iffy but "works"01:47
jon_y#gcc might be a better channel to ask01:48
stryngsyeah but most peoples linux filesystem isn't "optimized" =/01:48
stryngsSpecifically, when i tell people the native system layout, they are like "WTF was nokia thinking"01:48
bencohbut I'd rather go through the whole doc and try building before barging in #gcc :))01:49
jon_yoh about that layout01:49
stryngsAlright, we are trying a non in-tree build jon_y01:49
stryngsI'm excited to see what happens01:49
jon_yuse --prefix=/opt/my_gcc01:49
stryngsNot this guy =), I don't use pymaemo opt nonsense01:50
jon_yso it goes into the big disk area01:50
stryngsI have a special build for my n90001:50
jon_yno seriously01:50
stryngsim serious01:50
jon_yroot disk is very low on space01:50
stryngsi do rbinds to /home01:50
stryngsI know it is01:50
stryngs256mb01:50
stryngsit sucks01:50
stryngsmy /root has 9gb to play with01:50
stryngsusr does01:50
stryngsetc..01:50
*** wicket64 has joined #maemo01:50
bencohhmm, btw ...01:51
bencohyou do know you could have fetched sources for gcc package in sb, and copy/build it for a newer gcc, right ?01:51
stryngscurl http://termbin.com/dova01:51
stryngsthats my layout jon_y =)01:51
stryngsIt's a unique perspective on making the n900 more "normal"01:52
jon_ywell, /opt /root whatever01:52
jon_yjust be sure to set your PATH correctly01:53
stryngsoh yeah01:53
stryngsI love my n900, probably more than ya'll =)01:53
jon_yI have not changed my n900 either01:53
*** arvut has quit IRC01:54
stryngsYou use the straight stock build for the filesystem?01:54
jon_ythere has not been any phones that is close to being a worthy successor01:54
stryngsAgreed01:54
stryngsAs a phone, personally I think it sucks01:54
jon_yyes, I just dump it top /opt01:54
stryngsI use it as an ultra laptop01:54
stryngsu drop all under / on /opt?01:55
stryngsAs in u have a better layout than me?01:55
jon_yno, my custom stuff goes under /opt/mystuff01:55
jon_yits that simple01:55
jon_yit has the space, no need to muck around01:55
*** zama has quit IRC01:56
stryngsyou prolly build stuff within SB though eh?01:56
jon_yI don't use Scratch Box01:56
*** zama has joined #maemo01:56
stryngsMe either!.....  So how do you build stuff?01:57
stryngsDo you create your own debs?01:57
stryngsI was never able to get the dpkg-dev stuff working properly on the n90001:58
stryngsSo I gave up, and learned to create a hacked version of a deb for the n90001:58
stryngsBut, of course it requires building natively, which can take some time to do =)01:58
stryngsBut, it's also why you see me deal with DESTDIR01:58
stryngsNifty trick though01:58
jon_yno, I just build and install directly into /opt/mystuff01:59
jon_yno debs involved01:59
stryngsAh, but what if u reflash?01:59
stryngsHow do you save your work?01:59
stryngsSo u dont have to recompile, waste time, etc..01:59
jon_yback it up first?01:59
jon_yits not that hard, tar it up, save to SD card01:59
stryngsI guess that's one way to do it =)01:59
stryngsI just prefer the ease of being able to dpkg -i my debs02:00
bencohSicelo: btw http://talk.maemo.org/showthread.php?t=88248&page=16 (looks like it's still working)02:00
stryngsjon_y: Have you built openssl version I for your n900?02:00
jon_yno not really, but yes, I am aware of what happened02:01
jon_ythen again, I don't really connect to the internet with it02:01
stryngsAh, was hopin maybe you had.  I failed to build it02:02
stryngsKept failing out, couldnt figure the errors out, so gave up02:02
stryngswelp, it's "making" so here hoping your in-tree idea was the trick02:02
stryngsEvidently that is a highly googleable term02:02
stryngsLots of "dont do that" advice floating around02:03
* jon_y needs to head out to work02:03
jon_yso, later02:03
stryngsThanks for the help =)02:03
* stryngs waves02:03
stryngsSon of a gun, it still builds it02:22
*** jonwil has joined #maemo02:36
*** RedM has joined #maemo02:53
*** RedW has quit IRC02:53
*** nox- has quit IRC03:09
*** vakkov has joined #maemo03:12
*** LauRoman has quit IRC03:13
*** Kabouik_ has quit IRC03:17
stryngsbencoh:03:27
stryngs          -DDEFAULT_EMULATION='"armelf_linux_eabi"' \03:27
stryngs          -DBINDIR='"/usr/bin"' -DTOOLBINDIR='"/usr/armv7l-unknown-linux-gnueabi/bin"' \03:27
stryngs          -DTARGET='"armv7l-unknown-linux-gnueabi"' -DTARGET_SYSTEM_ROOT=\"\" \03:27
stryngsI think I see the issue now.03:27
*** M4rtinK has quit IRC03:42
*** aloril has quit IRC05:06
*** FlameReaper-PC has joined #maemo05:15
*** aloril has joined #maemo05:18
*** wicket64 has quit IRC05:24
*** FlameReaper-PC has quit IRC05:29
*** FlameReaper-PC has joined #maemo05:31
*** FlameReaper-PC has quit IRC05:33
*** FlameReaper-PC has joined #maemo05:34
*** maybeHere has quit IRC05:34
*** maybeHere has joined #maemo05:35
*** wicket64 has joined #maemo05:39
*** FReaper-PC has joined #maemo05:39
*** FlameReaper-PC has quit IRC05:42
*** FR-PC has joined #maemo05:47
*** FReaper-PC has quit IRC05:48
*** lxp has joined #maemo06:02
*** lxp1 has quit IRC06:04
*** FR-PC has quit IRC06:04
*** FR-PC has joined #maemo06:04
*** bef0rd has joined #maemo06:26
*** bef0rd has joined #maemo06:26
Sicelo900v623:53 < stryngs> rah rah shish the community bah.  Oh well, At least I got the uname -m answer =)07:06
Sicelo900v6i have a RL as well, and i believe so does everyone else07:06
*** woodong50 has joined #maemo07:12
Sicelo900v6bencoh: thanks :) will have a go07:12
*** Sicelo900v6 has quit IRC07:22
*** erlehmann has quit IRC07:31
*** hello123 has quit IRC07:54
*** wicket64 has quit IRC08:19
*** vakkov has quit IRC08:35
*** hhfjjejf has joined #maemo08:55
*** dhbiker has joined #maemo09:02
*** stryngs has quit IRC09:08
*** vakkov has joined #maemo09:11
*** LauRoman has joined #maemo09:16
*** hhfjjejf has left #maemo09:16
*** stryngs has joined #maemo09:22
*** TTilus has quit IRC09:38
*** cuda has quit IRC09:53
*** MrPingu has joined #maemo10:04
*** MrPingu has quit IRC10:05
*** TTilus has joined #maemo10:11
*** cuda has joined #maemo10:12
*** Pali has joined #maemo10:13
*** jmlich has joined #maemo10:18
*** TTilus has quit IRC10:24
*** TTilus has joined #maemo10:24
*** Kabouik has joined #maemo10:27
*** Kabouik has quit IRC10:34
*** Kabouik has joined #maemo10:54
*** geaaru has joined #maemo10:55
*** dhbiker has quit IRC11:03
*** FR-PC has quit IRC11:07
*** MikaT has quit IRC11:14
*** `0660 has quit IRC11:18
chem|stSicelo: can you request your namechange while logged in to tmo with the contact us form please (I did not check if your accounts on garage and tmo are linked, if not you might want to do that first so the other guys know that it is really you)11:21
*** MikaT has joined #maemo11:21
Sicelochem|st: they are linked11:23
chem|stSicelo: ah I see, you posted in tmo11:23
Sicelo:)11:23
Siceloshould i still fill in the form?11:24
chem|stno is ok then, I just like to have a "verified" way to check identities first11:25
Sicelothanks a lot11:25
*** AD-N770 has joined #maemo11:26
chem|stchanged on tmo11:26
Sicelowow. \m/11:28
chem|stSome stuff might still show with your old names but links should work, I won't recover that as it takes like a whole week to recover databases11:28
chem|stSicelo: for garage I do not even know if it is possible - forge might be a bitch on that11:30
Sicelook. if it works, great. if not, i can still keep my old one :)11:31
*** MikaT has quit IRC11:39
*** FR-PC has joined #maemo11:41
*** N-Mi has joined #maemo11:43
*** MikaT has joined #maemo11:47
*** FlameReaper-PC has joined #maemo11:54
*** FR-PC has quit IRC11:56
*** `0660 has joined #maemo11:57
*** ArkanoiD_ has quit IRC12:04
*** FReaper-PC has joined #maemo12:08
*** FlameReaper-PC has quit IRC12:11
*** LauRoman has quit IRC12:13
*** MikaT has quit IRC12:14
*** thedead1440 has joined #maemo12:26
*** Arkenoi has joined #maemo12:32
*** FR-PC has joined #maemo12:37
*** MikaT has joined #maemo12:40
*** FReaper-PC has quit IRC12:41
*** FlameReaper-PC has joined #maemo13:00
*** FR-PC has quit IRC13:00
*** SmilyOrg is now known as Smily13:12
*** bluelupo has joined #maemo13:16
*** eMHa_ has quit IRC13:40
*** eMHa_ has joined #maemo13:49
*** freemangordon_ has left #maemo14:06
*** freemangordon has left #maemo14:10
*** freemangordon_ has joined #maemo14:17
*** Smily has quit IRC14:23
*** Smily has joined #maemo14:24
*** freemangordon_ has quit IRC14:31
*** freemangordon_ has joined #maemo14:42
*** woodong50 has joined #maemo14:58
*** darkschneider has quit IRC15:01
*** darkschneider has joined #maemo15:02
*** vakkov has quit IRC15:08
*** erlehmann has joined #maemo15:08
*** FlameReaper-PC has quit IRC15:20
*** Mek has quit IRC15:21
*** merlin1991 has quit IRC15:21
*** Mek has joined #maemo15:21
*** merlin_1991 has joined #maemo15:21
*** heroux_ has quit IRC15:22
*** kov has quit IRC15:22
*** ssvb has quit IRC15:23
*** heroux has quit IRC15:23
*** netkat has quit IRC15:23
*** till- has quit IRC15:23
*** kylanpaj has quit IRC15:23
*** heroux has joined #maemo15:23
*** heroux_ has joined #maemo15:23
*** Scorcere1 has quit IRC15:24
*** kylanpaj has joined #maemo15:24
*** Natch has quit IRC15:24
*** Scorcerer has joined #maemo15:24
*** ssvb has joined #maemo15:25
*** till- has joined #maemo15:25
*** Natch has joined #maemo15:27
*** netkat has joined #maemo15:27
*** merlin_1991 is now known as merlin199115:38
*** merlin1991 has quit IRC15:47
*** merlin1991 has joined #maemo15:47
*** kov has joined #maemo15:49
*** kov has left #maemo15:49
*** vakkov has joined #maemo15:59
merlin1991Sicelo: ping16:00
Vajbhey. I have few stupid questions. Is those so called perfect setups on wiki still valid or is there more perfect one? Should i install all upgrades from extras-testing or r they still promoting them to extras? Im using cssu-stable if that matters.16:03
merlin1991well some things get promoted16:08
merlin1991but not much is happeneing16:08
Sicelomerlin1991: pong16:11
merlin1991about the rename thing, I can look into renaming your garage account, but talk must be done by someone else16:12
Sicelochem|st already handled tmo side. thanks :)16:13
merlin1991ah yeah, and no idea who has enough wiki rights todo that bit16:13
merlin1991and uhm any reason why your professional webpage points to jw.com?16:15
Sicelolet me see? but yeah, i am one of them, and i'm working at one of their branches. should at least be jw.org however16:20
Siceloyes, jw.org16:24
*** erstazi has quit IRC16:24
Vajbso kinda yes and no answer :)16:27
merlin1991okay I changed your garage username16:27
merlin1991but I wonder where the maemo.org user is stored16:27
*** erstazi_ has joined #maemo16:29
*** lizardo has joined #maemo16:32
*** florian has joined #maemo16:33
Sicelobtw, after ./configure, make, and make install, how can i get an application scp'd to my device? what i'm asking is how do i collect all the related files into one tarball?16:46
Siceloi'm not worried about deb packaging yet16:46
*** e2718 has joined #maemo16:48
bencohDESTDIR=/moo/foo/bar16:48
bencohshould work with polite autotools stuff16:48
freemangordon_Sicelo: make sure to install it in a directory you can collect it later16:48
freemangordon_like make install DESTDIR=$DESTDIR or such16:49
Siceloah . thanks16:49
Sicelomakes sense16:49
Veggenthere's also a program called checkinstall, that supposedly keeps track on what make install does.16:49
Veggenbut I think installing to your own directory is preferable.16:50
VeggenI hate having files lying around that doesn't "belong" to something, that ownership is what you get from packagae managers or separte directory.16:51
Sicelotrying to build fuelpad here16:52
*** jonwil has quit IRC16:53
vakkovtrying to get linaro gcc 4.7.217:07
vakkovbut: W: GPG error: http://maemo.merlin1991.at fremantle Release: Couldn't access keyring: 'No such file or directory'17:07
vakkovW: GPG error: http://repository.maemo.org fremantle Release: Couldn't access keyring: 'No such file or directory'17:07
merlin1991vakkov: those are warnings, so you can continue17:09
*** louisdk has joined #maemo17:11
vakkovhttp://pastebin.com/dAiv4YGw17:13
freemangordon_vakkov: disable NEON accel in pibpixman17:15
freemangordon_there is some ENV var17:15
freemangordon_*libpixman17:16
freemangordon_vakkov: try "export PIXMAN_DISABLE=neon"17:18
* Sicelo is happy.. at least something builds nicely in SB 17:18
Sicelothanks for the help17:18
freemangordon_vakkov: oh, maybe it is not "neon", but "arm-neon"17:19
freemangordon_http://lists.freedesktop.org/archives/pixman/2012-February/001790.html17:19
vakkovwhere is libsdl-gles1.2-117:43
*** anYc has quit IRC17:48
bencohqemu: uncaught target signal 11 (Segmentation fault) - core dumped how pretty17:49
bencohwhat are you doing with qemu on n900 btw ?17:49
Sicelobencoh: SB is deprecated :p17:54
Sicelojust fooling around, haha17:54
bencoh:D17:54
*** konelix__ has joined #maemo17:57
*** e2718 has quit IRC18:02
*** vakkov has quit IRC18:05
chem|stmerlin1991: garage should distribute the userdb to midgard iirc, or is this only "new users"18:22
*** woodong50 has quit IRC18:41
*** vakkov has joined #maemo18:47
*** vakkov has quit IRC18:55
*** mkaindl has joined #maemo19:00
*** _2_Kara has joined #maemo19:06
*** jmlich has quit IRC19:10
*** _2_Kara has left #maemo19:12
*** vakkov has joined #maemo19:19
*** Kabouik has quit IRC19:29
*** eijk has joined #maemo19:43
*** arcean has joined #maemo19:44
*** stryngs has quit IRC19:46
*** cuda has quit IRC19:49
*** Kabouik has joined #maemo19:50
*** vakkov has quit IRC19:56
*** AD-N770 has quit IRC19:59
*** mavhc has quit IRC20:00
*** mavhc has joined #maemo20:01
*** mavhc has quit IRC20:04
*** mavhc has joined #maemo20:06
*** cuda has joined #maemo20:10
*** anYc has joined #maemo20:19
*** anYc has quit IRC20:23
*** shentey has joined #maemo20:24
*** vakkov has joined #maemo20:32
*** SpeedEvil has quit IRC20:37
*** SpeedEvil has joined #maemo20:37
*** FlameReaper-PC has joined #maemo20:38
*** anYc has joined #maemo20:40
*** anYc has quit IRC20:45
*** arcean has quit IRC20:50
*** geaaru has quit IRC21:00
*** cuda has quit IRC21:04
*** deepy has quit IRC21:09
*** deepy has joined #maemo21:10
*** deepy is now known as Guest1605221:11
warfarechem|st: midgard authenticates agains garagedb.21:11
*** M4rtinK has joined #maemo21:17
*** arcean has joined #maemo21:17
*** Guest16052 has quit IRC21:24
*** Guest16052 has joined #maemo21:24
*** Guest16052 is now known as deepy21:24
*** cuda has joined #maemo21:26
*** FlameReaper-PC has quit IRC21:27
*** SiceloWC has joined #maemo21:28
*** SiceloWC has joined #maemo21:29
*** M4rtinK has quit IRC21:36
chem|stwarfare: wasn't there something with delayed update of user registration? and thanks for clearing that up.21:37
SiceloWCin my understanding, when building, one mostly works on X86 target in SB. then you switch over to armel target and cross-compile. my question is: while in X86, you will have run ./configure, make, & make install, and afterwards the working directory has a lot of files relating to the x86 build. when switching over to armel target, do i re-run those 3 commands, or make & make install only?21:41
SiceloWCfor building fuelpad, i noticed that re-running all 3 commands was not sufficient. SB kept complaining about object files. Only worked after i removed all the other files. Did I do something wrong, and how to do this right?21:42
*** lizardo has quit IRC21:43
*** eMHa_ has quit IRC21:44
*** M4rtinK has joined #maemo21:50
*** bluelupo has quit IRC22:02
*** trx has quit IRC22:09
*** bluelupo has joined #maemo22:09
*** M4rtinK has quit IRC22:15
*** freemangordon has joined #maemo22:15
*** SiceloWC has quit IRC22:16
*** LauRoman has joined #maemo22:47
*** lizardo has joined #maemo22:49
*** dhbiker has joined #maemo22:52
*** LauRoman|Alt has joined #maemo22:54
Ras_OlderI'm feeling tired and really lazy - as usual. I just got a sms to my phone and I can't get my lazy ass up for that.. Yeah yeah I know. Is there a way to read that sms from the terminal if I SSH to my phone? *yawn*23:01
*** bluelupo has quit IRC23:04
*** bef0rd has quit IRC23:08
*** vakkov has quit IRC23:09
Ras_Olderehm nevermind here it is -> http://talk.maemo.org/showpost.php?p=1038760&postcount=223:09
*** arcean has quit IRC23:20
*** M4rtinK has joined #maemo23:25
Sicelo~ask23:27
infobotQuestions in the channel should be specific, informative, complete, concise, and on-topic.  Don't ask if you can ask a question first.  Don't ask if a person is there; just ask what you intended to ask them.  Better questions more frequently yield better answers.  We are all here voluntarily or against our will.23:27
*** erlehmann has quit IRC23:33
*** erlehmann has joined #maemo23:34
*** dhbiker has quit IRC23:39
merlin1991chem|st: only new users23:56

Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!