IRC log of #maemo for Friday, 2012-02-03

*** Gear_ has quit IRC00:01
*** gri is now known as zz_gri00:02
*** penguinbait has joined #maemo00:06
*** penguinbait has joined #maemo00:06
*** jpe_ has quit IRC00:07
*** mase76 has quit IRC00:08
*** Arkenoi has joined #maemo00:09
*** MikeK has joined #maemo00:10
*** ced117 has quit IRC00:16
*** nox- has quit IRC00:19
*** flo_lap has quit IRC00:20
*** OkropNick has quit IRC00:24
*** NIN102 has quit IRC00:27
*** blueslee has joined #maemo00:27
*** SmilyOrg has joined #maemo00:28
*** hardaker has quit IRC00:29
*** Smily has quit IRC00:29
*** blueslee has quit IRC00:29
*** shamus has quit IRC00:30
*** shamus has joined #maemo00:30
*** chenca has quit IRC00:30
*** mase76 has joined #maemo00:30
*** mase76 has quit IRC00:31
*** ychavan has quit IRC00:32
*** guampa has quit IRC00:32
*** rd has quit IRC00:33
*** florian has joined #maemo00:39
*** florian has joined #maemo00:39
*** lbt is now known as lbt_away00:39
Gh0styDocScrutinizer: afford?00:40
Gh0styits a free conference00:40
Gh0styand afaik you live in germany00:40
Gh0styso you're only a small drive away ...00:40
*** eijk has quit IRC00:40
*** dos1 has quit IRC00:47
Estel_another noob devel question: while writin sh script,  may use a || after a command, and thing written after it gets executed in case, that command *before* dual-pipe fail00:52
Estel_so, DO foo || echo bar00:52
Estel_results in bar, when foo fails00:52
Estel_yet, if I try to DO foo || echo bar && exit00:53
Estel_it exits no matter if foo suceed or not, as thing after && is recognized as next command (not as after-|| content)00:53
Estel_any other, better way to include failsafe mechanism in my scripts? preferrably, one that doesn't include epic IF cascades?00:54
DocScrutinizerno DO00:54
Estel_generally, I want to write things, that inform user about errors *and* roll-back changes made before by this script *and* exit afterward00:55
DocScrutinizera || b && c; is a bit tricky00:55
Estel_hm...00:56
DocScrutinizeruse if; then; else00:56
Estel_ok, but how to prepare if that check if a was succeed?00:56
DocScrutinizera && b  is the same as if a; then b; fi;00:56
Estel_i.e. simple example00:57
Estel_yea, noticed that00:57
Estel_for example, i want00:57
Estel_swapon /dev/foo00:57
*** jacekowski has quit IRC00:57
Estel_and in case of fail00:57
Estel_return info and exit00:57
Estel_then, later in script00:57
Estel_swapoff /dev/bar00:58
Estel_and in case of fail, inform user, swapoff /dev/foo #that was swapon before and exit00:58
Estel_and so goes on00:58
DocScrutinizera && b  is the same as if a; then b; fi;00:58
DocScrutinizererr00:58
DocScrutinizersorry00:59
Estel_script, that in case of error at any stage, roll-back itself, inform, and exit, to not leave user with mess00:59
DocScrutinizerif ! false; then echo "been ok"; exit 0; fi00:59
DocScrutinizerEstel_: rollback is tricky00:59
DocScrutinizerhelp trap00:59
Estel_generally true, yet this script is relatively short and not complicated, so I though it's worth it01:00
Estel_best idea would be to check in advance if swap exist on /dev/foo, and if /dev/bar is swap type partition, yet inactive01:01
Estel_and execute only if initial requiments are met (one if)01:01
Estel_meet*01:01
*** jacekowski has joined #maemo01:01
DocScrutinizerman bash|less "+2/^ *trap"01:01
Estel_must be busybox compatible :P01:02
Estel_thanks anyway, will look into it01:02
DocScrutinizerno01:02
Estel_hm?01:02
DocScrutinizertrap IS busybox compatible. the above man invokation to learn about trap cmd isn't01:03
Estel_I see.01:03
Estel_thanks, looks appealing anyway01:03
Estel_I think I presume what does it mean for script ;)01:03
Estel_noob dilema continued - is this:01:06
DocScrutinizer>> If a sigspec is ERR, the command arg is executed whenever  a  simple  command  has  a  non-zero  exit status01:06
Estel_if ! false; then echo "been ok"; exit 0; fi01:06
Estel_is same as01:06
Estel_if ! false; then echo "been ok"; ELSE exit 0; fi01:06
DocScrutinizerno, definitely and obviously different01:07
Estel_ok, I get how trap works now, thanks a lot!01:08
Estel_(topic-jumper)01:08
DocScrutinizerif ! false; then echo "been ok"; else echo "exit 0"; fi; echo "never been here after >exit 0<"01:09
*** federico2 has quit IRC01:09
Estel_ok, so I correctly thing that (or I am wrong again):01:12
*** geaaru has quit IRC01:13
Estel_if ! true; then echo "went bad"; else continue  fi;01:13
Estel_think/ not thing01:13
DocScrutinizeryes01:17
DocScrutinizertrap is a bit tricky, but extramely useful01:19
*** ghostcube has quit IRC01:19
DocScrutinizertrap "echo byebye; exit 0" EXIT01:21
DocScrutinizeris a bad idea01:21
*** federico2 has joined #maemo01:22
*** federico2 has quit IRC01:22
*** federico2 has joined #maemo01:22
DocScrutinizerusually you have a >> cleanup () { trap "" EXIT; echo byebye; exit 0; } << and then a >> trap cleanup EXIT << at some early point in your script01:23
*** alehorst has quit IRC01:24
DocScrutinizerand you probably got some more nifty code for >>errorhandler () { whatever }<< and then >>trap errorhandler ERR01:25
DocScrutinizerand you either change the way errorhandler() works, by defining some env like tmpfileopened=true01:27
DocScrutinizeror01:27
*** nox- has joined #maemo01:31
DocScrutinizeryou got errorhandlerA () { rm tmpfileA ; return};    errorhandlerB() { rm fileB; errorhandlerA; return}; errorhandlerC () { errohandlerB; echo "" >someotherfile; echo "duck and cover!"; return}01:31
DocScrutinizerand then of course:01:32
DocScrutinizertrap errorhandlerA ERR01:32
DocScrutinizerecho "" >tmpfileA01:32
DocScrutinizertrap errorhandlerB ERR01:33
DocScrutinizercp foobar fileB01:33
DocScrutinizeryou (tnaks to not so strict syntax for shellscripts) can interleave the traps AND the function defs for errohandlerB etc01:34
DocScrutinizers/tnaks/thanks/01:34
infobotDocScrutinizer meant: you (thanks to not so strict syntax for shellscripts) can interleave the traps AND the function defs for errohandlerB etc01:34
rm_workrm!01:35
* rm_work waves and disappears again01:35
DocScrutinizerdoes your highlight also trigger on warm warmaker carmanufacturer etc rm ?01:36
* DocScrutinizer waves01:36
rm_workdunno01:37
rm_workyou included just "rm" so it highlighted on that :P01:37
DocScrutinizerarms are bad01:37
rm_worknope :)01:37
rm_work\wrm\w01:37
DocScrutinizer:nod:01:38
rm_workin linux related channels it becomes a problem though <_<01:38
DocScrutinizerthe default workinf hours at my employer's office tend to becomme a problem01:39
DocScrutinizeranyway01:39
* DocScrutinizer waves and says "N8"01:39
DocScrutinizerthus:01:41
DocScrutinizererrorhandlerA () { rm tmpfileA ; return};01:42
DocScrutinizertrap errorhandlerA ERR01:42
DocScrutinizer echo "" >tmpfileA01:42
DocScrutinizererrorhandlerB() { rm fileB; errorhandlerA; return};01:42
DocScrutinizertrap errorhandlerB ERR01:43
DocScrutinizercp foobar fileB01:43
DocScrutinizeretc pp01:43
*** xtcx has quit IRC01:48
*** scoobertron has quit IRC01:49
*** trumee is now known as trumee_afk01:54
Estel_Thanks DocScrutinizer, it's definitely worth reading material01:58
DocScrutinizeryw01:59
* Estel_ saved this whole conversation for further referrence, and also waves goodnight01:59
*** xtcx has joined #maemo01:59
*** ale152 has quit IRC02:01
*** guampa has joined #maemo02:03
*** trx has quit IRC02:10
*** Estel_ has quit IRC02:10
*** swc|666 has joined #maemo02:15
*** dole has quit IRC02:17
*** xev has quit IRC02:19
*** xev has joined #maemo02:20
*** rm_work has quit IRC02:21
*** PeterWolf has joined #maemo02:27
*** mortenvp has quit IRC02:43
*** robbiethe1st has joined #maemo02:46
*** MikeK has quit IRC02:52
*** beford has joined #maemo02:55
*** muellisoft has quit IRC02:56
*** mfridh has quit IRC03:21
*** federico2 has quit IRC03:22
*** ferdna has joined #maemo03:25
*** mfridh has joined #maemo03:25
*** trbs has quit IRC03:33
*** net-split has quit IRC03:39
*** mfridh has quit IRC03:40
*** mfridh has joined #maemo03:40
*** mfridh has joined #maemo03:41
*** mfridh has joined #maemo03:41
*** M4rtinK has quit IRC03:41
*** mfridh has quit IRC03:41
*** mfridh has joined #maemo03:43
*** mfridh has joined #maemo03:46
*** infobot has quit IRC03:47
*** M4rtinK has joined #maemo03:47
*** mfridh_ has joined #maemo03:50
*** mfridh_ is now known as mfridh03:53
*** mfridh has joined #maemo03:53
*** lasher has joined #maemo03:54
*** kimitake is now known as kimitake_idle03:57
lasheri didnt know thre was a maemo irc04:01
*** hardaker has joined #maemo04:01
*** penguinbait has quit IRC04:09
*** M4rtinK has quit IRC04:10
*** ekze_note has quit IRC04:10
*** ekze has quit IRC04:11
*** trx has joined #maemo04:14
*** ekze has joined #maemo04:17
*** ekze_note has joined #maemo04:17
*** florian has quit IRC04:26
*** PeterWolf has quit IRC04:30
*** longthen has left #maemo04:31
*** dangergrrl has joined #maemo04:36
*** florian has joined #maemo04:39
*** ferdna has quit IRC04:40
*** dangergrrl has quit IRC04:43
*** nox- has quit IRC04:44
*** PeterWolf has joined #maemo04:48
*** guampa has quit IRC05:08
*** beford has quit IRC05:13
*** radic has quit IRC05:27
*** radic_ has joined #maemo05:28
*** maybeArgh has joined #maemo05:33
*** maybeWTF has quit IRC05:33
*** sat2050 has joined #maemo05:34
*** kimitake_idle is now known as kimitake05:35
*** pcfe has quit IRC05:36
*** pcfe has joined #maemo05:36
*** pcfe has quit IRC05:36
*** pcfe has joined #maemo05:36
*** GeneralAntilles has quit IRC05:40
*** mavhc has quit IRC05:43
*** mavhc has joined #maemo05:46
*** mavhc has joined #maemo05:48
*** dockane_ has joined #maemo06:01
*** dockane has quit IRC06:04
*** aholler_ has joined #maemo06:10
*** sat2050 has quit IRC06:12
*** aholler has quit IRC06:13
*** robbiethe1st has quit IRC06:22
*** sat2050 has joined #maemo06:30
*** xtcx is now known as thomashc06:47
*** ebzzry has joined #maemo06:53
ebzzrywhat is the command to determine the current profile settings?06:54
*** evilbulgarian has quit IRC06:57
*** Gi0 has quit IRC07:04
*** evilbulgarian has joined #maemo07:05
*** mitsutaka has joined #maemo07:21
*** hylas has joined #maemo07:26
*** ALoGeNo has quit IRC07:29
*** hardaker has quit IRC07:30
*** GeneralAntilles has joined #maemo07:32
*** ALoGeNo has joined #maemo07:33
*** mookie has quit IRC07:45
*** dafox has joined #maemo07:49
*** dafox has quit IRC07:49
*** dafox has joined #maemo07:50
*** hylas has quit IRC08:01
*** ychavan has joined #maemo08:02
*** ebzzry has quit IRC08:03
*** dafox has quit IRC08:12
*** Smily has joined #maemo08:12
*** SmilyOrg has quit IRC08:13
*** SmilyOrg has joined #maemo08:18
*** Smily has quit IRC08:19
*** Smily has joined #maemo08:35
*** SmilyOrg has quit IRC08:38
*** SmilyOrg has joined #maemo08:41
*** Smily has quit IRC08:44
*** florian has quit IRC08:46
*** larsivi has quit IRC08:48
*** mintux has joined #maemo08:50
*** mintux has left #maemo08:50
*** uen| has joined #maemo08:50
*** Smily has joined #maemo08:51
*** SmilyOrg has quit IRC08:51
*** ychavan has quit IRC08:54
*** uen has quit IRC08:54
*** xtcx has joined #maemo08:56
*** ychavan has joined #maemo08:59
*** thomashc has quit IRC08:59
*** Smily has quit IRC09:00
*** Smily has joined #maemo09:01
*** Smily has quit IRC09:08
*** florian has joined #maemo09:09
*** mece has joined #maemo09:16
*** jonne has joined #maemo09:18
*** lasher has quit IRC09:24
*** lasher has joined #maemo09:25
*** Roomerlol has joined #maemo09:25
*** lasher has quit IRC09:29
*** lasher has joined #maemo09:31
*** Roomerlol has quit IRC09:36
*** Wikier has joined #maemo09:41
*** swc|666 has quit IRC09:42
*** zk8 has joined #maemo09:44
*** zz_gri is now known as gri09:50
*** murrayc has joined #maemo09:53
*** zk8 has quit IRC09:55
*** lasher has quit IRC09:56
*** lasher has joined #maemo10:00
*** gri is now known as zz_gri10:04
*** dafox has joined #maemo10:05
*** jpe_ has joined #maemo10:05
*** lasher has quit IRC10:06
*** lasher has joined #maemo10:08
*** gomiam has joined #maemo10:08
*** mikki-kun has joined #maemo10:16
*** jhb has joined #maemo10:19
*** lasher has quit IRC10:21
*** tanty has joined #maemo10:27
*** sasquatch has quit IRC10:29
*** sasquatch has joined #maemo10:29
*** BluesLee has joined #maemo10:30
*** Zahra has joined #maemo10:30
*** Zahra has quit IRC10:30
*** BluesLee has quit IRC10:31
*** [DarkGUNMAN] has joined #maemo10:33
[DarkGUNMAN]morning all10:34
*** geaaru has joined #maemo10:34
*** Cy8aer has joined #maemo10:36
*** florian has quit IRC10:37
*** Cy8aer has quit IRC10:39
*** tanty has quit IRC10:39
*** [DarkGUNMAN] has quit IRC10:41
*** infobot has joined #maemo10:41
infobotDocScrutinizer: infobot joined!10:41
*** ChanServ sets mode: +v infobot10:41
*** drussell has joined #maemo10:43
*** croppa has joined #maemo10:45
*** kimitake is now known as kimitake_idle10:49
*** jreznik has joined #maemo10:51
*** tanty has joined #maemo10:54
*** _berto_ has joined #maemo10:54
*** dafox has quit IRC10:58
*** dafox has joined #maemo10:58
*** OkropNick has joined #maemo10:59
*** mortenvp has joined #maemo10:59
*** dafox has quit IRC11:03
*** dafox has joined #maemo11:03
*** zz_gri is now known as gri11:03
*** _berto_ has quit IRC11:06
*** dmotd has quit IRC11:06
*** Smily has joined #maemo11:07
*** DocScrutinizer has quit IRC11:08
*** DocScrutinizer has joined #maemo11:08
*** jreznik has quit IRC11:09
*** _berto_ has joined #maemo11:09
*** SmilyOrg has joined #maemo11:12
*** Smily has quit IRC11:15
*** BCMM has joined #maemo11:16
*** larsivi has joined #maemo11:18
*** dafox has quit IRC11:18
*** dafox has joined #maemo11:19
*** arno0ob has joined #maemo11:20
*** dafox has quit IRC11:22
*** dafox has joined #maemo11:22
*** eijk has joined #maemo11:23
*** dafox has quit IRC11:24
*** dafox has joined #maemo11:24
*** liar has joined #maemo11:24
*** dafox has quit IRC11:25
*** dafox has joined #maemo11:25
*** eMHa has quit IRC11:28
*** dafox has quit IRC11:29
*** dafox has joined #maemo11:30
*** SmilybOrg has joined #maemo11:31
*** SmilybOrg is now known as Guest7293111:32
*** SmilyOrg has quit IRC11:34
*** Guest72931 has quit IRC11:43
*** Guest72931 has joined #maemo11:47
*** liar has quit IRC11:50
*** ghostcube has joined #maemo11:50
*** Guest72931 has quit IRC11:55
*** lukasz_gut has joined #maemo11:57
*** zap_ has joined #maemo11:59
*** Smily has joined #maemo12:03
*** dafox has quit IRC12:05
*** dafox has joined #maemo12:08
*** malin has quit IRC12:11
*** Openfree` has quit IRC12:13
*** Smily has quit IRC12:13
*** dafox has quit IRC12:14
*** Smily has joined #maemo12:15
*** drussell has quit IRC12:20
*** CodenameStrike-N has joined #maemo12:21
*** Smily has quit IRC12:22
*** dole has joined #maemo12:23
*** malin has joined #maemo12:25
*** croppa has quit IRC12:26
*** florian has joined #maemo12:30
*** florian has quit IRC12:30
*** florian has joined #maemo12:30
*** dafox has joined #maemo12:36
*** CodenameStrike-N has quit IRC12:41
*** alehorst has joined #maemo12:42
*** ychavan has quit IRC12:43
*** dangergrrl has joined #maemo12:45
*** eMHa has joined #maemo12:47
*** eMHa has quit IRC12:51
*** Roomerlol has joined #maemo12:52
*** eMHa has joined #maemo12:52
*** lizardo has joined #maemo12:55
*** CodenameStrike-N has joined #maemo13:01
*** vivijim has joined #maemo13:02
*** Guest96166 has joined #maemo13:03
*** andrenarchy has joined #maemo13:04
*** xtr3m3 has joined #maemo13:04
*** penguinbait has joined #maemo13:04
*** penguinbait has quit IRC13:04
*** penguinbait has joined #maemo13:04
*** penguinbait has quit IRC13:10
*** vivijim has quit IRC13:15
*** pvanhoof has quit IRC13:16
*** pvanhoof has joined #maemo13:16
*** mairas has joined #maemo13:17
*** M4rtinK has joined #maemo13:19
*** dhbiker has joined #maemo13:19
*** Wizzup has quit IRC13:27
ruskiehttp://www.theregister.co.uk/2012/02/03/windows_phone_8_features_leaked/ <-- so changing it again13:28
*** Gi0 has joined #maemo13:30
*** alehorst has quit IRC13:30
*** scoobertron has joined #maemo13:31
*** penguinbait has joined #maemo13:31
*** vivijim has joined #maemo13:35
*** Free-MG has joined #maemo13:36
*** dangergrrl has quit IRC13:38
*** jonne has quit IRC13:39
*** penguinbait has quit IRC13:43
*** jonne has joined #maemo13:52
*** Chiku has joined #maemo13:53
*** Chiku has joined #maemo13:53
*** Roomerlol has quit IRC14:00
*** dangergrrl has joined #maemo14:04
*** Jonne_ has joined #maemo14:18
* RST38h yawns, swallows a fly14:22
*** BluesLee has joined #maemo14:22
*** Smily has joined #maemo14:23
*** BluesLee has quit IRC14:23
*** Jonne_ has quit IRC14:23
*** CodenameStrike-N has quit IRC14:24
*** etrunko has joined #maemo14:27
vi___can I connect two bluetooth headsets to the n900 simultaneously?14:29
*** eeanm has quit IRC14:30
*** Smily has quit IRC14:30
Siceloi doubt that14:43
RST38hNope14:43
*** Aquarina has joined #maemo14:45
*** eMHa has quit IRC14:49
*** chenca has joined #maemo14:53
*** dhbiker has quit IRC14:53
*** lukasz_gut has quit IRC14:59
*** lukasz_gut has joined #maemo15:00
*** eMHa has joined #maemo15:01
*** fuz_ has quit IRC15:01
*** fuz_ has joined #maemo15:06
*** penguinbait has joined #maemo15:09
*** sat2050 has quit IRC15:18
*** chenca has quit IRC15:27
*** Guest96166 has quit IRC15:28
DocScrutinizerneither HSP nor A2DP allows multiple concurrent peripherals afaik15:29
*** Wikier has quit IRC15:31
*** andre__ has joined #maemo15:31
*** andre__ has quit IRC15:31
*** andre__ has joined #maemo15:31
*** scoobertron has quit IRC15:33
*** mece has quit IRC15:36
*** net-split has joined #maemo15:36
*** dvaske has quit IRC15:49
*** lukasz_gut has quit IRC15:50
*** eean has joined #maemo15:50
*** ced117 has joined #maemo15:50
*** ced117 has quit IRC15:50
*** ced117 has joined #maemo15:50
*** lukasz_gut has joined #maemo15:50
*** Aquarina has quit IRC15:52
*** eean has quit IRC15:54
*** scoobertron has joined #maemo15:55
*** eean has joined #maemo15:59
*** dos1 has joined #maemo16:00
*** mase76 has joined #maemo16:03
RST38hNokia is said to be hastening the demise of its legacy Symbian platform, cancelling the development of all but one new Symbian-based device. Although Nokia Belle updates will continue to ship to existing customers, only one new model  a successor to the N8 high-end camera phone  will reach the market16:05
*** APTX has quit IRC16:06
*** APTX has joined #maemo16:07
*** paulo has joined #maemo16:08
*** drussell has joined #maemo16:09
Macerheh16:10
Macerdoes that mean E7s are $20 now?16:10
*** paulo has quit IRC16:10
Macer349 ? pfft heh16:11
Macerif they drop to 200 i'll get one :)16:11
*** hardaker has joined #maemo16:16
*** Milhouse has quit IRC16:18
RST38hProbably won't drp16:20
RST38hNokia seems to be bent on going out of business16:20
RST38hOn the other hand, if smartphones are only a fraction of Nokia's revenue, then it may not be that much of a difference...16:21
*** Smily has joined #maemo16:22
*** Milhouse has joined #maemo16:22
*** Milhouse has quit IRC16:22
*** Milhouse has joined #maemo16:22
Macera fraction of nokia's revenue?16:34
Maceroh yeah. i guess the crap phones are a big business to them as well16:35
Macerthat is a shame when you go to a smartphone powerhouse to a lowly crap phone distributor16:35
Macerfor shame nokia16:35
*** lukasz_gut has quit IRC16:36
*** lukasz_gut has joined #maemo16:37
*** guampa has joined #maemo16:40
*** valdyn has quit IRC16:44
*** vivijim has quit IRC16:45
*** larsivi has quit IRC16:46
*** gomiam has quit IRC16:47
*** chenca has joined #maemo16:49
ruskiehttp://www.theregister.co.uk/2012/02/03/nokia_symbian/ <-- heh16:51
ruskiehttp://www.theregister.co.uk/2012/02/03/apple_motorola_patents/ <-- hehe16:52
*** mase76 has quit IRC16:55
*** mase76 has joined #maemo16:58
*** lxp1 has joined #maemo17:04
*** lxp has quit IRC17:05
*** mase76 has quit IRC17:07
*** mitsutaka has quit IRC17:09
*** hector has joined #maemo17:12
*** hector has left #maemo17:13
*** rm_work has joined #maemo17:18
*** rm_work has quit IRC17:18
*** rm_work has joined #maemo17:18
*** e-yes has quit IRC17:27
*** paroneayea has quit IRC17:29
*** woodong50 has joined #maemo17:29
*** disco_stu has quit IRC17:29
*** paroneayea has joined #maemo17:30
*** e-yes has joined #maemo17:31
*** nsuffys has joined #maemo17:32
*** Roomerlol has joined #maemo17:33
*** lukasz_gut has quit IRC17:35
*** zap_ has quit IRC17:36
*** Pali has joined #maemo17:39
*** mairas has quit IRC17:44
*** hardaker has quit IRC17:47
*** realitygaps has joined #maemo17:54
*** realitygaps has quit IRC17:54
*** realitygaps has joined #maemo17:54
*** retro|cz has quit IRC17:54
*** ferdna has joined #maemo17:55
*** disco_stu has joined #maemo17:56
*** jhb has quit IRC18:01
*** woodong50 has quit IRC18:07
*** ToJa92 has quit IRC18:13
*** dangergrrl has quit IRC18:14
*** zk8 has joined #maemo18:15
*** ToJa92 has joined #maemo18:18
*** valdyn has joined #maemo18:32
*** _berto_ has quit IRC18:32
*** zk8 has quit IRC18:34
*** shanttu has joined #maemo18:35
*** murrayc has quit IRC18:35
*** jpe_ has quit IRC18:43
*** MrOpposite is now known as MigoMipo18:44
*** MigoMipo is now known as MrOpposite18:44
*** scoobertron has quit IRC18:46
*** pvanhoof has quit IRC18:48
*** andrenarchy has left #maemo18:48
*** pvanhoof has joined #maemo18:48
*** krnlyng has joined #maemo18:49
*** Anidel has joined #maemo18:49
*** Anidel has left #maemo18:49
*** Sazpaimon has quit IRC18:54
*** tanty has quit IRC18:55
*** tanty has joined #maemo18:56
*** arno0ob has quit IRC18:58
*** Arkenoi has quit IRC18:59
*** kimitake_idle is now known as kimitake19:04
*** valerius has quit IRC19:07
*** uen| is now known as uen19:07
*** dafox has quit IRC19:07
*** SpeedyGhost has quit IRC19:09
*** krnlyng has quit IRC19:10
*** sat2050 has joined #maemo19:15
*** NIN101 has joined #maemo19:15
*** ghostcube has quit IRC19:16
*** sat2050 has quit IRC19:19
*** hardaker has joined #maemo19:25
*** Roomerlol has quit IRC19:30
*** alehorst has joined #maemo19:35
*** apundhir has joined #maemo19:42
*** PeterWolf has quit IRC19:51
*** andre__ has quit IRC19:54
*** larsivi has joined #maemo19:54
*** apundhir has quit IRC19:58
*** tsoliman has joined #maemo20:00
*** tsoliman has left #maemo20:00
*** tsoliman has joined #maemo20:00
tsolimanhi all. I am looking for someone with a Nokia 770 running OS200820:01
mgedminwow20:02
*** gri is now known as zz_gri20:03
*** sezuan has joined #maemo20:03
mgedminwas that a supported version, or are you talking about Hackers Edition?20:04
* mgedmin might be able to find his 770 maybe in a drawer20:04
tsolimanI have no clue .. I don't have a 770 and didn't realize it ran Diablo20:04
*** hardaker has quit IRC20:04
tsolimanI want to see the contents of /proc/component_version on it20:05
*** ArkanoiD_ has quit IRC20:07
tsoliman"Nokia 770 OS2008HE" so I am assuming HE = Hackers Edition20:07
tsolimanthanks in advance mgedmin :)20:07
mgedminHE is that20:07
mgedminmy 770 doesn't have HE20:07
mgedmin(and I'm not home ATM)20:08
tsolimanthanks anyway20:08
*** tanty has quit IRC20:11
*** zz_gri is now known as gri20:14
*** BCMM has quit IRC20:14
*** hardaker has joined #maemo20:22
*** ekze has quit IRC20:26
*** ekze has joined #maemo20:26
*** mrklaw has joined #maemo20:29
*** gri is now known as zz_gri20:31
*** sq-one has joined #maemo20:40
*** githogori has quit IRC20:40
*** tsoliman has quit IRC20:41
*** florian has quit IRC20:42
*** tsoliman has joined #maemo20:42
*** NIN102 has joined #maemo20:44
*** NIN101 has quit IRC20:46
*** eMHa has quit IRC20:47
*** SpeedyGhost has joined #maemo20:47
*** Arkenoi has joined #maemo20:49
*** MrOpposite has left #maemo20:50
*** MrOpposite has joined #maemo20:51
*** geaaru has quit IRC20:51
*** Venemo has joined #maemo20:52
*** Venemo has quit IRC20:52
*** Venemo has joined #maemo20:52
*** robink has quit IRC21:00
lxp1i have quickly looked into the wifi kernel panic issue21:03
lxp1looks to me like it is a problem in mac8021121:03
lxp1could be a known and upstream fixed problem21:04
Palido you know which upstream commit fixing that problem?21:04
lxp1no i don't know anything so far, it's just a wild guess21:04
lxp1in the meantime 2.6.28 is pretty old so it is possible that it is already fixed upstream21:05
*** trumee_afk is now known as trumee21:07
lxp1but i am pretty sure it hasn't directly to do with wl12xx, but of course it could be a race condition, which isn't checked in mac80211 and triggered by wl12xx21:07
Paliok21:08
lxp1i am currently checking upstream maybe something pops up21:08
*** eMHa has joined #maemo21:08
*** liar has joined #maemo21:11
lxp1by the way is the following patch already included: http://git.kernel.org/?p=linux/kernel/git/linville/wireless-testing.git;a=commit;h=cfdfa4d3a0c7aa1287c61326a7714f262466157a21:11
*** guampa|2 has joined #maemo21:12
*** guampa has quit IRC21:13
lxp1it should fix that bug: https://garage.maemo.org/tracker/index.php?func=detail&aid=5818&group_id=1528&atid=552121:14
*** tsoliman has quit IRC21:15
*** BCMM has joined #maemo21:16
*** SmilyOrg has joined #maemo21:16
*** Smily has quit IRC21:17
*** vivijim has joined #maemo21:19
*** ghostcube has joined #maemo21:21
PaliI think no21:22
*** rd has joined #maemo21:22
BCMMwill having a .bash_profile break everything, if bash is my primary shell?21:23
*** liar has quit IRC21:25
*** dangergrrl has joined #maemo21:29
*** mrklaw has quit IRC21:35
*** mrklaw has joined #maemo21:35
*** beford has joined #maemo21:36
*** Aloof_Jezzster has joined #maemo21:36
Aloof_Jezzsterhello to all - Maemo 5 what a nice internal NOKIA OS, The HILDON UI nice very nice.21:39
*** dole has quit IRC21:43
*** Venemo has quit IRC21:48
*** SmilyOrg has quit IRC21:50
*** xnt14 has quit IRC21:50
*** mrklaw has quit IRC21:51
*** etrunko has quit IRC21:52
*** MohammadAG has quit IRC21:52
*** githogori has joined #maemo21:53
trumee_freemangordon: ping21:57
*** Smily has joined #maemo21:57
*** vivijim has quit IRC21:59
*** dangergrrl has quit IRC21:59
*** robink has joined #maemo22:03
*** robink has quit IRC22:07
*** olliey has joined #maemo22:11
*** SpeedEvil has quit IRC22:19
*** jpe_ has joined #maemo22:19
*** guampa|2 is now known as guampa22:20
*** rd has quit IRC22:21
lxp1Pali: i think i'm giving up. i even can't locate the memcmp call in mac80211. can we be sure this is caused by an correctly install vanilla kernel-power?22:24
Paliit should be correct build of kernel-power22:25
lxp1either i'm missing something or the backtrace is corrupted22:25
Paliif you looking in kernel-power sources, make sure you have applied all patches from debian/patches22:26
lxp1i have only looked at a little bit older sources, but i greped the patches for changes in scan.c22:26
lxp1there are only changes in the nokia-20093908+0m5.diff patch, but there is nowhere a memcmp in sight22:27
lxp1even the current kernel doesn't contain a memcmp in ieee80211_bss_info_update22:28
Paliit can be inlined function22:31
*** penguinbait has quit IRC22:31
lxp1i am just looking for them, i supposed they weren't inline but i better check again22:31
Palimac80211/scan.c line 23822:32
Paliieee80211_bss_info_update calling ieee80211_rx_bss_get and here is memcmp22:32
Palibut I think this cannot be inlined22:33
lxp1the header doesn't specify inline for ieee80211_rx_bss_get22:33
Paliwith -O2 static functions can be inlined22:33
Paliand ieee80211_rx_mesh_bss_get is static22:33
lxp1you're right22:34
Palithe only static function in scan.c which has memcmp is ieee80211_rx_mesh_bss_get22:34
lxp1so it again has to do with mesh stuff22:34
PaliI will check ig MESH is enabled22:34
lxp1it is enabled22:35
lxp1maybe we should just disable it22:35
Paliyes, CONFIG_MAC80211_MESH=y22:35
*** fuz_ has quit IRC22:35
lxp1it also causes other bugs, because of the new IANA allocated values for mesh networks22:35
lxp1that was the other patch i mentioned22:36
Paliok, so the best option would be disable mesh?22:36
Palifreemangordon, are you here?22:37
Pali_freemangordon, see log ^^^22:37
lxp1i don't think mesh networking is very useful in this state22:38
lxp1as it is linux specific as far as i know22:38
lxp1and newer linux systems don't support it anymore, because of the IEEE standards22:39
lxp1here the mesh contants patch again: http://git.kernel.org/?p=linux/kernel/git/linville/wireless-testing.git;a=commit;h=cfdfa4d3a0c7aa1287c61326a7714f262466157a22:40
*** fuz_ has joined #maemo22:40
*** dangergrrl has joined #maemo22:41
*** Aloof_Jezzster has quit IRC22:41
*** githogori has quit IRC22:48
*** Kaptenen_ has quit IRC22:52
*** rm_work has quit IRC22:57
*** rm_work has joined #maemo22:58
*** rm_work has joined #maemo22:58
*** Kaptenen has joined #maemo23:01
*** lizardo has quit IRC23:03
*** robink has joined #maemo23:07
*** robink has joined #maemo23:07
*** nox- has joined #maemo23:07
*** nox- has quit IRC23:07
*** nox- has joined #maemo23:07
*** BCMM has quit IRC23:08
*** florian has joined #maemo23:08
*** florian has joined #maemo23:08
*** net`split has joined #maemo23:20
*** net-split has quit IRC23:20
*** net-split has joined #maemo23:21
*** guampa has quit IRC23:23
*** Gadgetoid has quit IRC23:27
*** Gadgetoid has joined #maemo23:27
*** nsuffys has quit IRC23:28
*** longthen has joined #maemo23:31
*** dangergrrl has quit IRC23:39
*** dangergrrl has joined #maemo23:46
*** Gadgetoid has quit IRC23:46
*** olliey has quit IRC23:47
*** DrGrov has joined #maemo23:52
*** zz_gri is now known as gri23:55

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