IRC log of #maemo for Sunday, 2009-06-14

johnsqapt-cache search glibc00:00
RST38hConsidering that c++ is nothing more than an extension to c that adds member functions to structures (see cfront and friends)00:00
Luke-Jrkkrusty: to prove GNU's C++ compiler is the real problem, not te language00:00
JaffaRST38h: i.e. the engineering could've been simpler if trying to maintain C source compatibility weasn't necessary.00:00
RST38hJaffa: Not really :)00:00
Luke-JrRST38h: there's also function mangling00:00
RST38hJaffa: C compatibility is the best thing about C++. Pretty much any C++ specific feature added on top of that is a mess00:00
Luke-JrRST38h: and the stdlib00:00
RST38hJaffa: You can pretty much choose any feature00:00
RST38hJaffa: exceptions, templates, RTTI - all fucked up00:01
RST38hSTL hehe00:01
JaffaRST38h: Why do you need C compatibility? Use a C compiler if you want to compile C00:01
RST38hJaffa: A lot of people use C++ as a tidier version of C that allows for better code management00:01
JaffaRST38h: So, in other words, you think C++ is overengineered and overcomplicated. Which has resulted in it being shit.00:01
RST38hJaffa: C++ is perfect for that00:01
* kkrusty wonders if Luke-Jr could try realview's toolkit or some other00:01
RST38hJaffa: Only if you start using C++ specific features extensively, you mess things up (usually)00:02
derfLuke-Jr: The C++ language is undecidable. There's no reason to expect a C++ compiler to _ever_ be as fast as C.00:02
johnsqin the language shootout is the c++ version the fastest00:02
RST38hJaffa: BTW, Java ended up the same way, started "light", ended up as a tumor.00:03
jaskait was malignant from the start :)00:03
derfJava didn't get nearly as bad as C++.00:03
trofic++ in slightly stricter than C on type conversion. -Wc++-compat helps a lot in some cases00:03
RST38hderf: Oh it did really, just look at the runtime size00:03
Luke-Jrderf: C++ is mostly just C with additional syntax00:04
Luke-Jrderf: there is nothing inherently slower about it00:04
derfRST38h: Runtime library is a completely separate issue.00:04
RST38hderf: Luke is right00:04
jaskaand java is.. ickier, memory consumption and lack of stuff like operator overloading, unsigneds00:04
kkrustyLuke-Jr templates00:04
derfLuke-Jr: That "additional syntax" is part of what makes it undecidable.00:04
jaskaand the generics implementation is a kludge00:04
Luke-Jrkkrusty: templates are just syntax00:04
RST38hderf: What people perceive as C++ "slowness" really comes from using specific C++ features00:04
derfThere's no reason for the compiled _code_ to be slower.00:04
derfI'm talking about the compiler.00:04
RST38hderf: As long as you avoid these features you are ok00:04
derfLuke-Jr made comments about both.00:04
Luke-Jrderf: ok, templates excuse the compiler slowness a bit maybe00:05
RST38hderf: Compiler will be slower, especially if using templates00:05
derfRST38h: In practice, nobody avoids those features.00:05
RST38hderf: Not really, lots of people do00:05
kkrustyLuke-Jr theres a lot going on with templates in the backend00:05
RST38hderf: People in our group mostly do00:05
derfRST38h: You are by far the exception, not the rule.00:05
kkrustymangeling, demangeling, removing duplicates etc00:05
RST38hderf: Not really00:05
RST38hderf: Just realistic, and there are more realists than you think00:06
*** fab has quit IRC00:06
RST38hderf: Of course, if you get folks fresh out of the same UMD, and let them code without additional tutoring, you end up with a mess00:06
derfLuke-Jr: There's also the fact that all the "object oriented" crap means you need 50,000 inline functions for good performance, and the fact that these are all in the header files means anytime you change the API even slightly, you have to recompile everything.00:06
parigaudic++ with qt is quite clean00:06
RST38hderf: Or a bunch of Indians imported00:06
*** glyn has joined #maemo00:07
Luke-Jrderf: it doesn't mean that at all00:07
derfRST38h: What do you think most of industry is?00:07
Luke-Jrderf: and if you do the same things with C, you need to recompile everything too00:07
RST38hderf: I do not really care. The shittier most of industry is, the more contract work for me :)00:07
Luke-Jrthough I will admit, the "new" operator could be replaced with a method00:07
*** macmaN6789 has joined #maemo00:07
derfThere are a _lot_ more incompetent programmers than competent ones.00:07
trofiin any language00:07
*** glyn has quit IRC00:08
derfAnd I agree with you, except for the part where I have to maintain these people's code.00:08
RST38hderf: You usually get to rewrite it piece by little piece00:08
RST38hderf: If you feel sadistic, may insist on them fixing it, although it is kinda pointless00:08
derftrofi: Yes, but C++ _encourages_ poor programming practices. The obvious way to do things is usually horrible.00:08
trofiderf: i disagree :]00:08
RST38hderf: Fortunately, very few cases of that where I work00:09
RST38hderf <--- essentialy correct00:09
RST38hHow many students had to drop classes after getting lost in overloaded operators...ah...00:09
* RST38h sheds a crocodile tear00:09
RST38hanyways, sleep time00:10
derfMy TA once threatened to fail a project of mine because he didn't think I had done it.00:10
trofievery popular language has proglems with herds of incompetent people. no matter how strict it is00:10
RST38hderf: I never threatened, just failed.00:10
jophishjohnsq, I fixed the problem by manually making symlinks00:10
derfWe were supposed to impelement a disk cache in some data structure... I overloaded the member reference operators, etc., so none of the actual data structure code changed.00:10
trofithey Will do write if bool_var.toString().length() < 500:10
jophishprobably a bad idea though00:10
crashanddietrofi, C doesn't have any problems00:10
troficrashanddie: oh really?00:11
RST38hderf: as long as it worked, wouldn't be a problem, at least with me as a ta00:11
crashanddietrofi, yeah :P00:11
trofiso vhy do people use valgrind?00:11
derfI told him what an idiot he was, and he came back later insisting I had a memory leak.00:11
RST38hderf: never a good idea to call tas idiots00:11
derfSo I showed it running on several billion records in a few hundred K of RAM, and said, "Nuh uh."00:11
crashanddietrofi, because they can't keep track of their memory usage? :P00:11
derfRST38h: Well, I didn't use those exact words, of course.00:11
RST38hderf: Firstly, they usually aren't. Secondly, they have got a few dozen of you, and it may really get to them at the end of office hours00:11
derfI was polite. I'm not stupid.00:12
* RST38h once told a student that the problem was in his DNA. Student left enlightened.00:12
trofi:]00:12
derfBut this only goes to prove my point... code like that is unreadable and unmaintainable. Just by looking at the code you have no idea what is actually going on.00:12
derfIn order to figure it out you have to read some other code somewhere else that you may have no idea is there.00:13
RST38hderf: That is why overloading stuff is rarely a good idea00:13
RST38hderf: And we haven't even started on STL! =)00:13
derfI don't think anyone could successfully argue STL is a good idea.00:13
RST38hderf: Hell, we haven't even started on that "cute" iostreams library that looks soooo nice in examples00:13
RST38hAll those << and >>>00:14
RST38hUntil you have to print formatted output, to a string :)00:14
trofiand .imbue(locale)00:14
trofiRST38h: doesn't boost have printf alike writer?00:15
RST38hderf: The traditional argument for STL is "Somebody already implemented those data structrues so I do not have to"00:15
derfAnyway, personally I've found the minor limitations of using C are greatly worth the assurance that no one will use C++ features in my projects.00:15
RST38htrofi: One more mention of Boost and I throw up.00:15
RST38htrofi: There is standard stdio though, and it works every time for every use case, unlike the artifical C++ stuff00:16
trofiyep00:16
derfThe only sad thing about stdio is that there's no way to write new FILE * backends.00:16
johnsqabout compilers some thinking about tcc for armv6?00:16
trofibut it's unchecked00:16
derfBut that's a library issue.00:16
trofii have to use GCC' format attrs to ensure formats are san00:16
RST38hderf: implement your own STDIO functions and wrap.00:17
RST38hNo big deal, done in ZLib.00:17
RST38hDefinitely SLEEP now.00:17
*** simon_ has joined #maemo00:21
*** adeel has quit IRC00:22
*** florian has joined #maemo00:25
mavhcwe should all write in objective C00:27
*** filip42 has quit IRC00:27
nomismavhc: thats very subjective.00:29
mavhcsubjective C: int like, whatever;00:31
nomisheh :)00:32
*** greentux has quit IRC00:32
johnsqwe should speak about languages, the problem is that there are too less developers.00:34
kkrustyI would be happy to be a developer for maemo if someone promised to hound me if I didnt get work done00:35
kkrusty*maemo based projects00:35
mavhcget work done00:37
kkrustycan you write angry emails and tell me what to work on?00:39
kkrustywell if you say "get work done" I'll just start working harder at my real job :D.00:40
*** zehrique has quit IRC00:41
*** zehrique has joined #maemo00:41
*** simon_ has quit IRC00:42
mavhcstill need a good podcast downloader/player/deleter00:42
Stskeepsgpodder?00:43
kkrustycanola?00:43
*** sin18 has quit IRC00:44
kkrustyI always  have to convert videos with tablet-encode so canola and gpodder are useless to me00:44
mavhcfor video videocenter's ok00:45
mavhcI did use canola, but it won't run now, something corrupt, and it's bloated00:45
mavhcdoes gpodder have a player too?00:45
kkrustyI saw the first season of prison break on the tablet a while ago without tablet-encode. The fences really slowed down the video00:46
mavhccanola, but audio only, much less ram usage, and better keyboard control for skip fordward/back 5/30 seconds00:46
kkrustymavhc: same here.00:47
mavhcand don't include the pause/resume bug00:47
mavhcatm I use videocenter or browser to dl, media player to play, with the recent added playlist, and media player to delete, video center's set to play with mplayer, so audio has no UI00:50
kkrustyI download on my PC with miro, convert with tablet-encode and play with media player or mplayer00:53
*** adeel has joined #maemo00:53
*** kkrusty has left #maemo00:57
*** wazd_ has joined #maemo01:00
*** wazd has quit IRC01:00
*** wazd_ is now known as wazd01:00
*** bilboed has quit IRC01:05
*** roue has joined #maemo01:11
*** wazd has quit IRC01:12
*** Macer_ has joined #maemo01:18
*** gentooer has joined #maemo01:18
*** jophish has quit IRC01:19
gentooerI no longer need my n800 (getting an android phone soon!) and want to sell it on ebay, but I have installed a modified bootloader and a SD install.  what's the easiest way to reset everything to factory settings?01:20
johnsqgentooer: yes, install the flash file from nokia01:23
gentooerjohnsq, ok and that will get rid of the bootloader as well?01:23
johnsqyes, when set flashing initfs.01:24
gentooerok thanks01:24
johnsqI wouldn't sell it, there still many uses for it and you will not get much for it.01:26
gentooeri really like it, but I only use it for wifi internet when I travel, music, and sshing into my desktop. all of which can be done with android01:27
gentooeri've got 4gb and 8gb SD, two cases, charger, stylus.. i'd be happy with $100 for it01:28
johnsqgood luck and high price.01:29
*** Macer has quit IRC01:30
gentooerreally, that's high? first one that came up on ebay was already at $10501:30
johnsqno i mean, i wish you getting enough money.01:32
gentooeroh heh, thanks :)01:32
*** djcb has quit IRC01:35
*** KurtKraut has joined #maemo01:36
*** johnsq has quit IRC01:42
*** adeel has quit IRC01:45
*** adeel has joined #maemo01:48
*** L0cutus has quit IRC01:49
*** glima is now known as glima[AWAY]01:49
*** jnettlet has joined #maemo01:54
*** L0cutus has joined #maemo01:55
*** SHADOW_V has joined #maemo02:02
*** Macer_ is now known as Macer02:02
*** smackpotato1 has joined #maemo02:12
*** SHADOW_V1 has quit IRC02:18
*** zehrique has quit IRC02:22
*** adeel has quit IRC02:22
*** zehrique has joined #maemo02:22
*** elninja has quit IRC02:25
*** L0cutus has quit IRC02:41
*** florian has quit IRC02:42
*** ccooke has quit IRC02:44
*** Kt_ has quit IRC02:48
*** Kt_ has joined #maemo02:48
*** jgoss has quit IRC02:48
*** hellwolf has quit IRC02:55
*** smackpotato1 has quit IRC02:55
*** smackpotato has joined #maemo02:55
Luke-Jrwhat does ログイン名(大文字を使用してはいけません)* mean?02:58
*** fysa has joined #maemo02:59
Luke-Jrgentooer: I'd flash Mer and advertise it as a bonus ;)02:59
*** pnk has joined #maemo03:00
NomaLuke-Jr: google translated: Login name (do not use capital letters) * :p03:00
Luke-Jrah, good03:01
Luke-JrGoogle has an English copy03:01
Luke-Jrhttp://74.125.95.132/search?q=cache:LFH21dmJmfkJ:https://garage.maemo.org/account/register.php+https://garage.maemo.org/account/register.php&cd=1&hl=en&ct=clnk&gl=uk03:01
pnkhi guys, i have question to you, my file chooser's opening time is very long, how can i speed it up? (running on maemo sdk/gtk/hildon)03:02
Luke-JrOH YAY03:03
Luke-Jrregistering lets me change language to English03:03
*** ccooke has joined #maemo03:04
pnkguys somebody met this problem?03:04
*** ukki has left #maemo03:05
*** hellwolf-n810 has joined #maemo03:06
*** VDVsx has quit IRC03:08
*** jnettlet has quit IRC03:08
*** herz1 has joined #maemo03:10
*** s0me0ne_0utside has joined #maemo03:15
*** smackpotato1 has joined #maemo03:19
*** smackpotato has quit IRC03:19
*** smackpotato1 has left #maemo03:19
*** ttmrichter has joined #maemo03:19
*** AltC has joined #maemo03:20
*** romullo1 has joined #maemo03:24
*** romullo1 has quit IRC03:24
*** herzi has quit IRC03:25
*** romullo has quit IRC03:26
*** s0me0ne_0utside is now known as s0me0ne_0utside_03:26
*** s0me0ne_0utside_ is now known as s0m0ne0utsdeTher03:29
*** hannesw has quit IRC03:31
*** zehrique has quit IRC03:33
*** parigaudi has quit IRC03:37
*** gentooer has quit IRC03:39
*** romullo has joined #maemo03:41
*** sisto has joined #maemo03:45
*** doc|home has joined #maemo03:45
*** lcuk has quit IRC03:46
*** zehrique has joined #maemo03:48
*** adeel has joined #maemo03:50
*** brolin has quit IRC03:51
*** rapadura_man has joined #maemo04:02
*** Luke-Jr has quit IRC04:04
*** Luke-Jr has joined #Maemo04:04
*** radic__ has joined #maemo04:07
*** radic_ has quit IRC04:09
*** tulkastaldo has quit IRC04:09
*** doc|home has quit IRC04:12
bef0rdHola04:16
s0m0ne0utsdeTherHossa too04:23
*** man_in_shack has quit IRC04:37
*** pnk has quit IRC04:41
*** ScriptRipper_ has joined #maemo04:52
*** sisto1 has joined #maemo05:00
Macerwell05:02
Macerafter using nexenta and opensolaris.. nexenta kind of sucks :)05:02
*** torkiano_ has quit IRC05:02
Maceropensolaris makes  a much cleaner server05:03
*** ScriptRipper_ has quit IRC05:06
*** TheFatal has joined #maemo05:07
*** EdLin has joined #maemo05:07
*** ScriptRipper has quit IRC05:08
*** Guilherme has joined #maemo05:09
*** sisto has quit IRC05:19
*** b-man has joined #maemo05:24
*** b-man is now known as b-man1605:24
*** kkrusty has joined #maemo05:25
b-man16*cough*05:27
*** b-man16 is now known as FireFox`05:29
* FireFox` overloads his tablet while using gcc05:35
* kkrusty is done with a python script that does bt queries and then speaks its findings with flite05:36
kkrustys/bt/bluetooth/05:36
* FireFox` is building a LFS system on his tablet :)05:36
kkrustythis should be fun; going to work and hearing all the names of bluetooth devices05:38
kkrustythat I encounter on the way05:38
*** EdLin_ has joined #maemo05:38
kkrustyits also going to tell me when I last encountered a device, kind of a way to tell when I last met someone05:39
Luke-Jrkkrusty: how about the device's security level, type, etc?05:42
Luke-Jr"this guy you met exactly a week ago, and just met again, has an insecure phone"05:42
kkrustyLuke-Jr well that isnt done yet05:42
kkrustyLuke-Jr will depend on there being the desired functionality through python05:43
Luke-Jr05:43
*** glima[AWAY] is now known as glima05:45
*** croppa has quit IRC05:45
*** croppa has joined #maemo05:46
*** EdLin has quit IRC05:46
*** FireFox` is now known as b-man1605:47
kkrustyLuke-Jr consider it on my todo list though05:48
* kkrusty heads off to bed05:49
Luke-Jrkkrusty: waiiit05:49
*** kkrusty has left #maemo05:49
Luke-Jraww05:49
b-man16hm05:49
Luke-Jrb-man16: he has an earlier curfew than you!05:50
b-man16XD05:50
Luke-Jrb-man16: how goes the Gentoo?05:51
b-man16something came up this morning and i wasn't able to re install it :(05:51
Luke-Jrwhy re-install?!05:51
b-man16a  couple of days ago i removed it for webos hacking05:52
*** roue has quit IRC05:52
Luke-Jrx.x05:53
*** adeel has quit IRC05:53
Luke-Jrb-man16: need more SD cards?05:53
b-man16yeah xD05:53
Luke-JrI have more than I know what to do with XD05:53
* b-man16 only has a 4gb and 2gb card XD05:54
Luke-Jrwould be nice if I had a second slot on my N810 for removable05:54
* Luke-Jr has 8 GB, 4 GB, and 2 GB, he thinks05:54
b-man16heh05:54
* b-man16 is thinking about buying an 8gb05:55
b-man16i need it XD05:55
*** adeel has joined #maemo05:55
*** pcfe has joined #maemo05:56
CutMeOwnThroatis there some howto that lists the steps to crosscompile with scratchbox from 686-debian-lenny to maemo4.1?05:56
b-man16luke-jr: btw, did you see my new site? http://b-man.xceleo.org/05:57
Luke-Jrb-man.xceleo.org | Welcome05:57
Luke-JrThis slideshow requires Adobe Flash Player 9.0 (or higher). JavaScript must be enabled.05:57
Luke-Jr Enter05:57
b-man16hm05:57
b-man16you don't have flash? xD05:57
Luke-Jrof course not05:58
Luke-JrI hate that crap05:58
Luke-Jrplus, it's propreitary05:58
Luke-JrI'm perfectly happy with STANDARDS-COMPLIANT web05:58
Luke-Jrwhich apparently doesn't include your site05:58
b-man16heh05:58
*** EdLin_ is now known as EdLin05:59
b-man16i'm working on making it use jquery instead of flash ;)05:59
CutMeOwnThroatnice... dancing desktops... exactly the cpu-hog you want to forget somewhere in the background05:59
b-man16lol05:59
CutMeOwnThroatthe pages behind that have pretty good performance though06:00
CutMeOwnThroatthey print "null" in a couple of ms06:00
*** GAN800 has joined #maemo06:02
b-man16it's a work in progress ;)06:02
*** myosound has joined #maemo06:03
CutMeOwnThroatso you decided to make all the useless fancy stuff first and see if some content turns up lateron?06:03
Luke-Jrlol06:03
*** pcfe` has quit IRC06:03
*** pcfe is now known as pcfe`06:03
CutMeOwnThroatsorry if that sounded a bit unfriendly, but I got Views on this06:04
CutMeOwnThroatof course, with all the blogs and youtube videos around the word "content" gets a new meaning also06:05
CutMeOwnThroatmind to put "Last updated Feb 9 1856" on the bottom of the pages06:07
*** b-man has joined #maemo06:11
*** b-man is now known as FireFox1606:12
*** glima is now known as glima[AWAY]06:17
*** FireFox16 has quit IRC06:18
*** Fox has joined #maemo06:18
* Fox jumps on #anime06:21
*** |thunder has joined #maemo06:21
* CutMeOwnThroat sends 10 dogs after Fox 06:23
Foxlol06:23
* Fox runs into a hole06:23
*** b-man16 has quit IRC06:24
* CutMeOwnThroat watches as the dogs dig Fox out and tear him to pieces06:25
CutMeOwnThroatthey call it a sport, btw.06:26
* Fox figures out another route away from danger06:26
CutMeOwnThroatyou're already in pieces!06:26
* Fox is agenst sports that include harming animals06:28
* CutMeOwnThroat 's against animals that include harming sports06:29
CutMeOwnThroatactually I couldn't care less about sports06:29
Foxi just dont like the idea of killing animals as a sport06:30
Macerare there any folding@home irc #s?06:30
Luke-Jrevery time I see a bunny06:30
Luke-JrI think about cooking it up for supper06:30
Fox:P06:30
Luke-Jrjust ask my wife06:30
CutMeOwnThroatshe's a bunny?06:31
Foxrofl06:31
Luke-Jrno -.-06:31
Luke-JrI comment on the idea sometimes06:32
*** Sargun has quit IRC06:32
CutMeOwnThroatisn't that cruel if she's a bunny?06:33
Foxlol06:33
* Luke-Jr glares at Fox, aka b-man06:35
Foxdont call me an idiot then :p06:35
Luke-JrFox: don't use flash then06:35
Luke-JrFox: what are you?06:38
*** rapadura_man has left #maemo06:41
*** adeel has quit IRC06:44
*** jgoss has joined #maemo06:51
*** b-man has joined #maemo06:56
*** b-man is now known as Guest5445506:56
*** romullo has quit IRC06:56
*** Guest54455 is now known as Fox`06:57
*** Fox has quit IRC06:57
*** Fox` is now known as Fox06:58
*** myosound has quit IRC07:00
*** wazd has joined #maemo07:07
*** rapadura_man has joined #maemo07:10
RST38hwazd: time to go is NOW.07:10
*** wazd has quit IRC07:19
*** rapadura_man has quit IRC07:21
*** rapadura_man1 has joined #maemo07:21
*** t_s_o has quit IRC07:30
*** Fox is now known as FireFox`07:32
*** gentooer has joined #maemo07:37
*** rapadura_man has joined #maemo07:40
*** rapadura_man1 has quit IRC07:41
*** z4chh has quit IRC07:44
*** sisto1 has quit IRC08:01
*** rapadura_man has left #maemo08:04
*** rkirti has joined #maemo08:05
*** philipl has quit IRC08:06
*** philipl has joined #maemo08:08
*** rapadura_man has joined #maemo08:12
* GAN800 sighs at pig-headed silliness.08:13
GAN800I can see this FBReader insanity is going to be a difficult and time wasting fight.08:14
*** zehrique has quit IRC08:14
*** SHADOW_V1 has joined #maemo08:14
* GAN800 doesn't get why slightly easing the support for users who may number in the tens at the clear expense of the rest of your thousands of users is so important.08:15
*** Kt_ has quit IRC08:19
*** Kt- has joined #maemo08:19
*** wnka has joined #maemo08:25
*** wnka has left #maemo08:26
*** timeless_mbp has joined #maemo08:29
*** SHADOW_V has quit IRC08:31
*** adeel has joined #maemo08:32
*** gentooer has quit IRC08:35
*** wazd_n800 has joined #maemo08:47
wazd_n800morning maemo)08:48
rkirtiwazd_n800: morning08:50
*** Sargun has joined #maemo08:50
*** Zhilin_n800 has joined #maemo08:52
*** Zhilin_n800 is now known as wazd08:52
*** igagis has joined #maemo08:53
*** EdLin_ has joined #maemo08:54
*** adeel has quit IRC08:55
*** wazd_n800 has quit IRC08:59
*** adeel has joined #maemo09:00
*** adeel has quit IRC09:00
*** Jucato has quit IRC09:06
*** EdLin has quit IRC09:09
*** EdLin_ is now known as EdLin09:10
*** user_ has joined #maemo09:11
*** user_ is now known as labaudio09:12
labaudio!ny clue about rgb njoy format table???09:12
Macerthere is no plot to alice in wonderland09:17
*** FireFox` has quit IRC09:22
*** bef0rd has quit IRC09:24
*** adeel has joined #maemo09:25
StskeepsGAN800: worst part is that the scenario might be needed - people do not always have internet connections avail at all for tablets, but they do have usb storage access09:25
*** wazd has quit IRC09:28
*** wazd_n800 has joined #maemo09:30
*** greentux has joined #maemo09:31
*** wazd_n800 has quit IRC09:31
*** wazd_n800 has joined #maemo09:31
*** doc|home has joined #maemo09:34
*** KurtKraut has quit IRC09:36
*** Vulcanis has quit IRC09:52
*** macmaN6789 has quit IRC09:55
*** SHADOW_V has joined #maemo09:56
*** wazd_n800 has quit IRC09:58
*** Vulcanis has joined #maemo10:00
*** mmatth1 has joined #maemo10:01
*** mmatth has quit IRC10:02
*** rapadura_man has left #maemo10:04
*** adeel has quit IRC10:08
*** Vulcanis has quit IRC10:08
*** L0cutus has joined #maemo10:09
*** SHADOW_V1 has quit IRC10:10
*** Vulcanis has joined #maemo10:12
*** TheFatal has quit IRC10:20
*** kevinverma has joined #Maemo10:20
*** christefano has joined #maemo10:30
*** macmaN6789 has joined #maemo10:44
*** Kt- has quit IRC10:49
*** Kt_ has joined #maemo10:49
*** L0cutus has quit IRC10:51
*** hannesw has joined #maemo10:56
*** qwerty12 has joined #maemo11:00
*** kevinverma has quit IRC11:03
*** ds3 has quit IRC11:17
*** ds3 has joined #maemo11:18
*** frade_home has joined #maemo11:21
*** Jaffa has quit IRC11:27
*** Jaffa has joined #maemo11:27
*** lcuk has joined #maemo11:27
JaffaMorning, all11:27
*** filip42 has joined #maemo11:28
lcukmornin jaffa, chan \o11:28
*** lbt has joined #maemo11:29
*** jnettlet has joined #maemo11:29
*** SHADOW_V has quit IRC11:30
*** slonopotamus has joined #maemo11:30
*** ustunozgur has joined #maemo11:32
*** timeless_mbp has quit IRC11:35
*** andrei1089 has quit IRC11:36
*** timeless_mbp has joined #maemo11:36
*** andrei1089 has joined #maemo11:37
*** adeel has joined #maemo11:40
*** lopz has quit IRC11:46
*** stv0 has joined #maemo11:48
*** t0h has quit IRC11:50
*** t0h has joined #maemo11:53
*** adeel has quit IRC11:53
*** ZakkmN800 has joined #MAEMO11:58
*** ignacius has joined #maemo12:06
*** hannesw has quit IRC12:10
*** Jalen has joined #maemo12:13
*** ZakkmN800 has quit IRC12:15
*** bilboed has joined #maemo12:15
*** macmaN6789 has left #maemo12:20
*** macmaN6789 has joined #maemo12:24
*** Vulcanis has quit IRC12:24
*** Jalen64 has quit IRC12:28
*** christefano has quit IRC12:28
*** stv0 has left #maemo12:29
*** ZakkmN800 has joined #MAEMO12:30
*** ZakkmN800 has quit IRC12:31
*** ZakkmN800 has joined #MAEMO12:32
*** konttori__ has joined #maemo12:33
*** Jucato has joined #maemo12:46
*** hellwolf has joined #maemo12:50
*** pnk has joined #maemo12:53
pnkhi guys, i have problem with gtk and textview, i'm trying to display utf-8, but gets error :/  (my code&errors pastebin.com/d9b47d1f) Could anybody help me, please?12:55
*** ZakkmN800 has quit IRC13:06
*** hellwolf has quit IRC13:07
*** stiev3 has quit IRC13:10
*** eichi has joined #maemo13:13
*** ScriptRipper has joined #maemo13:15
*** pvanhoof has joined #maemo13:15
*** VDVsx has joined #maemo13:18
*** rkirti has quit IRC13:29
*** ScriptRipper_ has joined #maemo13:31
* lcuk stops pulling hair out13:31
*** rkirti has joined #maemo13:33
*** derf has quit IRC13:40
*** florian has joined #maemo13:41
*** ScriptRipper has quit IRC13:44
*** ScriptRipper_ is now known as ScriptRipper13:48
*** harbaum__ has joined #maemo13:48
*** s0m0ne0utsdeTher has quit IRC13:53
*** b0unc3 has quit IRC13:53
*** fab has joined #maemo13:59
*** qwerty12 has quit IRC14:03
*** udovdh has quit IRC14:04
*** qwerty12_N810 has joined #maemo14:05
*** L0cutus has joined #maemo14:08
*** hellwolf has joined #maemo14:10
*** lizone has joined #Maemo14:12
*** frade has joined #maemo14:15
*** thopiekar has joined #maemo14:20
*** hellwolf has quit IRC14:22
*** Myrtti has joined #maemo14:26
*** andrei1089 has quit IRC14:38
*** andrei1089 has joined #maemo14:38
*** matt_c has joined #maemo14:41
*** ustunozgur has quit IRC14:46
*** torkiano has joined #maemo14:51
*** matt_c has quit IRC14:58
*** hannesw has joined #maemo15:05
*** florian has quit IRC15:09
*** thopiekar has quit IRC15:10
*** thopiekar has joined #maemo15:11
*** harbaum__ has quit IRC15:32
*** lopz has joined #maemo15:41
lopzhi15:42
*** karatchov has joined #maemo15:43
*** z4chh has joined #maemo15:45
*** z4chh has quit IRC15:50
*** z4chh has joined #maemo15:52
*** rkirti is now known as rkirti|away15:52
*** panku has joined #maemo15:53
*** Sho_ has joined #maemo15:54
*** L0cutus has quit IRC15:56
*** karatchov has left #maemo15:56
*** udovdh has joined #maemo15:56
*** derf has joined #maemo16:01
*** pnk has quit IRC16:03
*** juergbi has joined #maemo16:04
*** bobpaul has joined #maemo16:07
bobpaulwhen the new browser first came out you could switch backends. mozilla is pretty heavy and really bogs down on some sites. Can one still change backends? is there a webkit backend?16:10
qwerty12_N810google webkit-eal16:11
qwerty12_N810or if you hate default browser entirely: google tear16:11
bobpaulthanks. eal sounds familiar. it's been a while ;)16:12
*** EdLin_ has joined #maemo16:13
*** bobpaul has quit IRC16:16
*** lizone has quit IRC16:17
*** EdLin has quit IRC16:17
*** udovdh has quit IRC16:20
*** bilboed-tp has joined #maemo16:24
n6pfkI have several full screen videos which were playing nicely on the N810 using mplayer.  Now the show as less than full screen with distorted colors.  Is there a way to restore the play back?16:25
*** hannesw has quit IRC16:36
*** hannesw_ has joined #maemo16:36
n6pfkOk I changed the -vo to x11 and it now plays nice.16:38
*** thopiekar has quit IRC16:42
*** lizone has joined #Maemo16:43
*** Raho has joined #maemo16:44
*** EdLin has joined #maemo16:45
RahoHello! I'm looking for a description on how to install the os2007 "hacker edition" on the 770, using a WindowsXP computer. Does someone have a link to a tutorial or a flashing software?16:47
Mikhohttp://wiki.maemo.org/Updating_the_tablet_firmware16:48
*** jophish has joined #maemo16:50
*** lizone has quit IRC16:52
*** EdLin_ has quit IRC17:01
*** tonikitoo has quit IRC17:01
*** drjnut has quit IRC17:04
*** drjnut has joined #maemo17:04
*** ignacius has quit IRC17:13
*** doc|home has quit IRC17:15
*** ttmrichter has quit IRC17:16
jophishbooting from a flash card, can I use ext2/3 instead of fat32?17:20
jophishfor the internal memory card17:20
*** stv0 has joined #maemo17:21
*** cjdavis has quit IRC17:31
*** cjdavis has joined #maemo17:32
*** z4chh has quit IRC17:32
*** ustunozgur has joined #maemo17:34
*** stv0 has left #maemo17:34
*** z4chh has joined #maemo17:34
labaudio!ny clue about rgb njoy format table???17:40
*** z4chh has quit IRC17:40
*** z4chh has joined #maemo17:41
GAN800Stskeeps, weird thing, though, is that FBReader seems to be the only one that does.17:41
GAN800Supporting the offline use-case is particularly silly in Fremantle.17:42
StskeepsGAN800: admittedly - but i agree that the user/ requirement for locally installed debs is insane17:42
*** z4chh has joined #maemo17:43
Stskeepsi'd like to see the reasoning for that one17:43
*** EdLin has quit IRC17:47
*** udovdh has joined #maemo17:49
GAN800Protecting the user17:52
GAN800They can't uninstall them later.17:52
Stskeepsah.17:57
*** croppa has quit IRC18:03
*** croppa has joined #maemo18:03
*** radic__ has quit IRC18:04
*** frade has quit IRC18:04
*** tamp4x has joined #maemo18:06
*** rkirti|away is now known as rkirti18:06
*** bilboed-tp has quit IRC18:07
*** rkirti has quit IRC18:11
Jaffakeesj: ping18:15
JaffaGAN800: ping18:15
*** L0cutus has joined #maemo18:18
GAN800pong?18:19
Jaffasee pm :)18:20
*** Macer_ has joined #maemo18:20
*** doc|home has joined #maemo18:22
*** labaudio has quit IRC18:22
*** Free_maN has joined #maemo18:23
*** udovdh has quit IRC18:24
jophishis there any way to flash the rootfs from a fiasco image to the internal sd card18:25
jophishI've tried playing around with the options18:25
*** tamp4x has left #maemo18:25
*** lcuk has quit IRC18:26
*** z4chh has quit IRC18:27
*** Macer has quit IRC18:31
*** z4chh has joined #maemo18:32
ShadowJKjophish, I imagine it wouldn't be easy18:32
jophishah ok18:32
ShadowJKwell, flashing it could be trivial, but reading it isn't :)18:32
jophishah, no simple way18:33
jophishI may as well flash the flash18:33
jophishand copy that over18:33
jophishwith the script here: http://wiki.maemo.org/Booting_from_a_flash_card#Clone_to_the_card18:33
ShadowJKthe internal flash is jffs2, which isn't designed for mmc/sd type storage18:33
jophishsure18:33
ShadowJKThe image on the internal flash is jffs2, I mean18:34
jophishyes, that makes sense18:34
*** herz1 has quit IRC18:34
jophishJust wanting a clean install on the internal sd18:34
*** johnsq has joined #maemo18:34
jophishbut then what do I do with the internal flash18:34
jophishgoing to be wasted space I guess18:34
johnsqHi18:34
jophishhi18:35
ShadowJKwell it's just 256M of wasted space.. ;)18:35
jophishI wonder if I could install mer there18:36
jophishor another os18:36
jophishthey have a flashable image18:36
*** dieb_ has quit IRC18:36
johnsqbuy a 16gb card than you didn't need the 256mb18:37
jophishsure, I don't need it anyway18:38
jophishjust being a pedant18:38
jophishso, clean install of diablo18:39
jophishshift that to the internal mmc18:39
jophish(which is one big ext2 partition)18:39
jophishthen install mer on the flash18:39
jophish*big ext2 partition, except for a 128mb swap18:40
jophishnothing's wrong with that?18:40
johnsqwhy not ext3?18:40
jophishyes, I meant that18:41
jophishthanks18:41
jophishwould it be difficult to share the home partitions between them18:41
jophishon the internal ssd18:42
*** Raho has quit IRC18:42
johnsqI would only share the data directory.18:42
jophishwhat do you mean by that18:43
jophishsymbolic links in each OS's home to the same places?18:44
*** dieb_ has joined #maemo18:44
johnsqin the home are also the . files, which I wouldn't share just documents.18:44
jophishalright18:44
jophishso for the mer home, all the documents and whatnot, symlink to the the maemo's home's folders18:45
*** radic has joined #maemo18:45
johnsqyeah18:45
jophishthat does seem like a sensible thing to do18:45
jophishthanks for youe help18:45
jophishyour*18:45
jophishI wonder if there is anything else I can share between the two18:46
*** dieb_ has quit IRC18:47
*** hannesw_ has quit IRC18:50
*** z4chh has quit IRC18:50
*** z4chh has joined #maemo18:53
*** KurtKraut has joined #maemo18:55
*** radic has quit IRC18:55
*** t_s_o has joined #maemo19:03
*** dieb_ has joined #maemo19:05
*** shpaq has quit IRC19:08
*** avs has joined #maemo19:09
*** Raho has joined #maemo19:12
*** Raho has quit IRC19:13
*** christefano has joined #maemo19:14
*** SHADOW_V has joined #maemo19:15
jophishe2fsprogs is not in extras, should I correct the wiki page here: http://wiki.maemo.org/Booting_from_a_flash_card#Install_the_necessary_tools19:16
*** trofi has quit IRC19:17
*** croppa has quit IRC19:21
*** ustunozgur has quit IRC19:21
*** croppa has joined #maemo19:21
*** qwerty12_N810 has quit IRC19:24
*** qwerty12_N810 has joined #maemo19:24
*** z4chh has quit IRC19:25
*** trofi has joined #maemo19:26
jophishin what package is sfdisk included?19:27
jophishnot in e2fsprogs19:27
qwerty12_N810it comes with the table19:27
qwerty12_N810t19:27
jophishhmm19:28
jophishI don't seem to have it19:28
jophishclean diable flash19:28
*** jegp has joined #maemo19:28
qwerty12_N810and you're root?19:28
jophishah that was it19:28
jophishonly shows up as root19:29
*** z4chh has joined #maemo19:29
jophishthanks19:29
*** z4chh has quit IRC19:30
*** frade_home has quit IRC19:32
*** frade_home has joined #maemo19:33
*** mcpi has joined #maemo19:33
*** z4chh has joined #maemo19:34
jophishwhere could I find mke3fs19:35
*** z4chh has quit IRC19:42
slonopotamusmkfs -t ext319:43
johnsqmkext2 -j19:43
keesjJaffa: Pang!19:43
*** z4chh has joined #maemo19:43
jophishI'm afraid I don't have either of those commands19:44
*** t_s_o has quit IRC19:44
johnsqjophish: sorry mke2fs is it19:44
jophishwith journalling I presume19:45
johnsqyes with -j you get than the ext3, I have used -I 128 to make inodes smaller and use less space19:45
jophishuppercase I?19:46
johnsqyes19:46
jophishlisted on die.net as a lowercase19:47
johnsqseems that the maemo version didn't have it19:47
jophishah19:48
*** jegp has left #maemo19:48
slonopotamus-t ext3 is igeologically more correct :P19:49
johnsqslonopotamus: my kernel with make n800_defconfig, didn't compile, the correct is make nokia_2420_defconfig19:50
*** AI6PG has joined #maemo19:51
jophishthanks19:52
*** z4chh has quit IRC19:54
*** AI6PG has quit IRC19:54
slonopotamusjohnsq, i recommend layman -S, there were problems again with cx3110x, hope they are all resolved now19:54
johnsqI currently compile the X part, so I can't test. but it is in the queue19:55
slonopotamusk. X should be easy19:55
*** glima[AWAY] is now known as glima19:55
* slonopotamus still has weird things with keypad actually19:55
johnsqI will see, I have expierience with the linux input layer.19:57
*** z4chh has joined #maemo19:57
slonopotamusgood19:57
slonopotamusjohnsq,  what xorg version btw?19:58
johnsqslonopotamus: x11-base/xorg-server-1.5.3-r619:59
Jaffakeesj: it was about the summit stuff, but I've made my idea public(ish) now :)20:01
*** t_s_o has joined #maemo20:01
jophish-t ext3 didn't work20:01
jophishso I used 'j20:01
johnsqcheck if you have enough files, before you fill the flash.20:02
jophishwhat do you mean?20:04
*** qwerty12_N810 has quit IRC20:05
*** qwerty12_N810 has joined #maemo20:05
johnsqjophish: the the number of inodes is big enough.20:05
*** shpaq has joined #maemo20:05
jophishtoo late, already formatted it20:06
jophishusing -I 12820:07
johnsqIs didn't change the number of inodes, only the size.20:07
jophishthat's what I though20:07
jophishthought20:07
jophishI susnt change -i20:07
jophishwhat could the problem's be with using the default?20:08
jophishdidn't*20:08
johnsqyou get out of space on the flash20:08
johnsqhappend me compiling gcc after many hours20:09
*** slonopotamus has quit IRC20:09
johnsqtune2fs -l /dev/mmcblk... <- to check20:10
jophish245269 inodes20:11
jophishthat's lots of files20:11
johnsqyea, I had only 90k20:12
jophishwhat did you do20:12
jophishcopy and reformat I guess20:12
johnsqyes. backup on pc, reformat now with 1million and back20:13
jophishis there any way to change the default mount options, specifically to add noatime20:13
qwerty12_N810in latest diablo, noatime is default20:14
johnsqi don't know but you can change them with tune2fs, but if mount from maemo supports it?20:14
jophishah great20:14
johnsqwhy is sys-fs/sshfs-fuse masked on arm gentoo?20:17
*** rapadura_man has joined #maemo20:22
jophishthis script: http://www.nmacleod.com/nokia/bin/nupgrade.sh20:23
jophishchanging the partition to p1 should make it consider the first partition instead of the second20:23
jophishit says in the blurb that only the second partition is considered, this is not a technical reason?20:24
*** pcfe` is now known as pcfe20:26
*** Meizirkki has joined #maemo20:29
*** L0cutus has quit IRC20:30
*** disco_stu_N800 has joined #maemo20:38
*** slonopotamus has joined #maemo20:41
*** z4chh has quit IRC20:41
*** z4chh has joined #maemo20:43
*** ukki has joined #maemo20:44
*** disco_stu has quit IRC20:44
*** disco_stu_N800 is now known as disco_stu20:45
*** glima is now known as glima[AWAY]20:52
*** radic has joined #maemo20:52
*** matt_c has joined #maemo20:53
*** TheJere has quit IRC20:54
*** dieb__ has joined #maemo21:00
*** borism_ has joined #maemo21:00
radicwill it work to dump /dev/mtdblock4 to a file on a SD-Card?21:02
johnsqwhy shouldn't it work?21:02
*** torkiano has quit IRC21:03
radichmm21:03
*** borism has quit IRC21:06
slonopotamusplease open  http://gitorious.org/mer in microb and any other browser. do you see same thing?21:11
jophishwhat am I supposed to be seeing?21:12
qwerty12_N810no. does the page have an rss feed?21:12
johnsqyes, i see the rss logo with firefox21:13
jophishme too21:14
jophishI see the feed in mocrob21:14
jophishmicrob*21:14
*** dieb_ has quit IRC21:14
slonopotamusi wonder whos bug it is21:14
slonopotamuss/whos/whose/21:14
infobotslonopotamus meant: i wonder whose bug it is21:15
lbtwhat's the prob slonopotamus? (no microb to hand)21:16
slonopotamuslbt, microb shows activity log on white bg and nothing else21:16
lbtah21:16
slonopotamuscan make a shot, if you want21:17
lbtnot for me right now.. :) food in a sec21:17
slonopotamuslooks like gitorious gives rss feed instead of page contents to microb21:19
jophishwonder why?21:19
jophishmust be a deliberate feature21:19
slonopotamusmaybe they just don't like microb :)21:20
*** matt_c has quit IRC21:20
jophish"heheh this will surely confuse them!"21:21
slonopotamusmaybe something wrong with microb Accept-Encoding feature21:21
slonopotamusrss has same url as page itself? (no ff here)21:22
slonopotamusthat's just a wild guess21:22
*** matt_c has joined #maemo21:22
*** Vulcanis has joined #maemo21:23
*** matt_c has quit IRC21:24
*** wazd has joined #maemo21:27
jophishHow is the virtual memory organised in maemo21:27
jophishbecause I think that I have a ghost virtual memory file21:28
slonopotamuswtf is 'ghost virtual memory file'?21:28
jophishdoes maemo create a hidden file for virtual memory?21:29
jophishbecause I think I have two on me memory card21:29
jophishbecause I'm missing about 128mb space21:29
jophishprobably exactly21:29
qwerty12_N810/media/mmc2/.swap21:30
johnsqswapfile21:30
jophishso there can't be more than one?21:31
wazdheya maemo21:32
qwerty12_N810hullo wazd21:33
jophishhowdy21:33
wazdjust got back from nokia mobile camp21:33
wazdhave some really interesting shocking info bout maemo but don't know if I'm allowed to tell it :D21:33
Corsac(does “tumbler” rings a bell around?)21:34
slonopotamuswazd, maemo is deprecated? :)21:34
wazdguess how many maemo devices will come up in 2010? (instead of rx-51 and rx-71 in 2009)21:34
slonopotamus021:34
wazdinstead = along21:35
Stskeepswazd: does mer devices count? ;p21:35
wazdStskeeps: fremantle only :D21:35
Corsacwazd: 42?21:35
jophish44? 12.6?21:35
Corsacwazd: Pi ?21:35
wazdyou will be really surprised :)21:36
jophishoh, be rational Corsac!21:36
Corsac:))21:36
wazd14!21:36
jophishi?21:36
Corsace?21:36
johnsqI need only one.21:36
qwerty12_N81014?21:36
jophish14?21:36
wazdwell, that was my reaction :)21:36
jophishwow21:36
jophishall nokia or what?21:36
Corsachow many not from nokia?21:36
wazdI was like "eeer, fourteen?@)21:36
wazdCorsac: dunno bout this21:37
johnsqhas the maemo on screen keyboard cursor keys? if not who has designed it?21:38
wazdrx-71 exists and it's cool :)21:38
Corsacdo you have an ETA for leaks?21:38
Corsac:>21:38
johnsqengadget.com has e7221:38
wazdI haven't signed any NDA so I don't think that I'll be punnished for this21:38
Corsacmaemo based??21:38
*** ceyusa has quit IRC21:39
Stskeepswazd: did they make you write on a big piece of paper?21:39
Stskeepsif so, did you look under it? :>21:39
wazdno, it was just an ordinary discussion with nokia related person :)21:39
wazdbut not nokia employee21:40
Stskeepsrussian "ordinary" = "plenty of vodka included"? ;)21:40
johnsqlol21:40
wazdStskeeps: nah, there were no alcohol at all :(21:40
*** rapadura_man has quit IRC21:40
jophish14, that's quite a lot21:41
Corsachmhm, e72 looks nice21:41
Corsacbut I'm not sure it'll match against the n90021:42
Corsac¬¬21:42
wazdas i was told rx-71 is a slider phone :)21:42
Corsacwell, if they manage to correctly handle calendar, contacts sync etc.21:42
wazdhaven't seen it for myself anyway21:42
*** simon_ has joined #maemo21:42
wazdCorsac: full pim21:42
Corsacfor fremantle>21:42
Corsac?21:42
Stskeepsyeah, but that one is known21:42
wazdCorsac: yep21:42
Corsac\o/21:43
*** gnuton has quit IRC21:44
*** beav1s has joined #maemo21:44
*** krutt has quit IRC21:45
*** beav1s is now known as krutt21:45
jophishwhat's 12mb+2mb+156mb, maemo seems to think it's 343mb21:48
wazdwhat else can I tell you without being killed :)21:48
Stskeepswazd: i can tell by your joy that i should buy one anyway :P21:49
jophishhave you any pictures?21:49
*** ScriptRipper has quit IRC21:49
wazdjophish: are you crazy? :)21:49
jophishused space on a card21:49
ShadowJKthe internal flash is compressed21:50
*** t_s_o has quit IRC21:50
jophishthis is the internal sd card21:51
jophishsays in use 343MB21:51
jophishhowever all it has on it, is a clone of the internal flash21:51
jophishafter a clean flash21:52
qwerty12_N810yes, and like ShadowJK said, the internal flash is compressed. your sd card is not21:52
jophishoh I see21:52
jophishsorry21:52
*** herzi has joined #maemo21:59
*** frade_home has quit IRC22:01
*** kkrusty has joined #maemo22:05
kkrustyhmmm I got 173 new bluetooth lookup results in 3 hours.22:06
*** abner has joined #maemo22:06
kkrustyand Im sick of hearing "xxxx first found now"22:07
*** harbaum__ has joined #maemo22:07
*** Meizirkki has quit IRC22:07
*** Firebird has quit IRC22:08
*** Meizirkki has joined #maemo22:08
*** Meizirkki has joined #maemo22:10
*** qwerty12_N810 has quit IRC22:11
jophishhow does maemo mount the external sd card?22:11
*** qwerty12_N800 has joined #maemo22:11
jophishbecause I moved maemo to the internal sd card, and it has trouble finding the card22:12
jophishI can see it all in xterm, after manually mounting it22:12
jophishbut it doesn't appear in the file manager22:12
*** ignacius has joined #maemo22:12
slonopotamusmaemo needs first partition to be fat3222:13
slonopotamuss/32//22:13
infobotslonopotamus meant: maemo needs first partition to be fat22:13
jophishhmm, that'd odd22:13
jophishbecause when I boot into maemo (exactly the same) on the internal flash, it detects the card22:13
jophishat the moment it's ext322:13
*** L0cutus has joined #maemo22:18
johnsqjophish: mine shows both card, i made only 1 ext3 partion on each22:18
jophishthat's the same setup as me22:18
jophishI see the internal card, with one ext3 partition22:18
jophishbut no external card22:18
*** avs has quit IRC22:20
jophishoh rats, now I can't even see the internal card, despite booting off it22:21
jophishbut I can see the external one22:21
jophishwhat a conundrum!22:21
slonopotamushehe22:21
*** frade_home has joined #maemo22:25
*** Macer_ is now known as Macer22:26
jophishtaking out the external card causes me to reboot22:26
jophishsigh22:26
*** SHADOW_V has quit IRC22:26
*** SHADOW_V has joined #maemo22:27
*** gnuton has joined #maemo22:29
jophishand when the external card isn't in, I don't see the internal card22:29
jophishbut plugging it in while maemo is running allows me to see it22:30
*** jegp has joined #maemo22:30
*** SHADOW_V has quit IRC22:30
*** SHADOW_V has joined #maemo22:30
qwerty12_N800N810? https://bugs.maemo.org/show_bug.cgi?id=274722:31
*** gentooer has joined #maemo22:32
jophishthat's exactly the one22:32
*** SHADOW_V has quit IRC22:33
*** SHADOW_V has joined #maemo22:33
*** Meizirkki has quit IRC22:33
*** SHADOW_V has quit IRC22:34
*** SHADOW_V has joined #maemo22:34
lbtJaffa: can you upgrade git on badger?22:38
*** Sargun has quit IRC22:38
Jaffalbt: hmm, tricksy. It's debian stable so... can you check if it's in the backports?22:39
*** kkrusty has quit IRC22:39
lbtoh, I thought it was 1.5.x in stable....22:39
lbtis it oldstable?22:40
lbthttp://packages.debian.org/lenny/git-core ?22:41
JaffaHmm, yeah - oldstable22:42
Jaffa1.5 in etch-backports22:43
*** Sargun has joined #maemo22:44
*** richieeee72 has joined #maemo22:44
*** richieeee72 has left #maemo22:44
lbtyou may be interested in http://wiki.maemo.org/Mer/Build/UsingGitorious#Moving_a_Package_to_Gitorious22:44
Jaffalbt: upgrading git22:46
lbtgreat - ta :)22:46
Jaffaandrew@badger:~ $ git --version22:48
Jaffagit version 1.5.6.522:48
*** SHADOW_V1 has joined #maemo22:48
*** myosound has joined #maemo22:49
lbtta22:49
*** harbaum__ has quit IRC22:55
jophishrats, seems like I cane ave rotation and a mmc card fix22:57
*** k-s[AWAY] is now known as k-s22:57
jophishoh well, never used rotation much anyway22:57
*** SHADOW_V has quit IRC22:57
qwerty12_N800compile your own kernel :)22:58
*** konttori__ has quit IRC22:58
jophishthis is another one of those slippery slopes23:00
jophishwhen I start to compile my own, it will break other things23:00
locutuswin 3723:00
jophishcompiling a kernel for the NDS was a nightmare23:01
*** myosound has quit IRC23:03
jophishhow can I get a new kernel onto maemo which is on the internal sd card23:04
*** trickie has quit IRC23:05
*** cmvo has quit IRC23:07
*** jegp has left #maemo23:08
RST38hmoo all23:09
jophishhi23:10
*** SHADOW_V has joined #maemo23:11
*** ezadkiel_mB has joined #maemo23:11
qwerty12_N800jophish: unzip/untar file containing zImage and as root, run fiasco-flasher -f -k <path to zImage>. The kernel is on a separate partition in the flashed that is used by whatever system you're booting into be it flash, mmc etc23:12
jophishI see23:12
jophishthanks very much23:12
johnsqqwerty12_N800: but no separate kernel for different boots.23:13
*** LinuxCode has joined #maemo23:13
qwerty12_N800johnsq: indeed23:13
jophishpresumably, two maemo's would use the same kernel, but what about mer?23:14
qwerty12_N800mer uses whatever kernel happens to be flashed to the tablet23:15
jophishok23:15
*** bilboed has quit IRC23:19
*** SHADOW_V1 has quit IRC23:20
johnsqsomebody working on new bootloader (xloader iirc)23:22
johnsq+?23:22
Stskeepsjohnsq: if you bust NOLO, X-loader you have bricked your device quite hard23:23
Stskeepsso no, we're just happy with x-loader23:23
johnsqsure this a problem, but it is nokia fault, that it can only boot one kernel image.23:24
Stskeeps.. how is this a fault23:24
jophishis there any way to change where maemo puts the virtual memory file?23:25
Stskeepsafaik i think it can boot from sd too but that's another topic23:25
*** z4chh_ has joined #maemo23:28
*** philipl has quit IRC23:29
*** z4chh has quit IRC23:29
*** profoX` has joined #maemo23:36
*** timeless_mbp has quit IRC23:37
*** Free_maN has quit IRC23:37
*** timeless_mbp has joined #maemo23:37
*** qwerty12_N800 is now known as qwerty12_N800_23:38
*** SHADOW_V1 has joined #maemo23:39
*** juergbi has quit IRC23:39
*** christefano has quit IRC23:41
*** glima[AWAY] is now known as glima23:41
*** pH5 has joined #maemo23:42
*** lizone has joined #Maemo23:44
*** profoX` has quit IRC23:44
*** igagis has quit IRC23:46
*** SHADOW_V2 has joined #maemo23:48
*** SHADOW_V has quit IRC23:56

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