| *** Gear_ has quit IRC | 00:01 | |
| *** gri is now known as zz_gri | 00:02 | |
| *** penguinbait has joined #maemo | 00:06 | |
| *** penguinbait has joined #maemo | 00:06 | |
| *** jpe_ has quit IRC | 00:07 | |
| *** mase76 has quit IRC | 00:08 | |
| *** Arkenoi has joined #maemo | 00:09 | |
| *** MikeK has joined #maemo | 00:10 | |
| *** ced117 has quit IRC | 00:16 | |
| *** nox- has quit IRC | 00:19 | |
| *** flo_lap has quit IRC | 00:20 | |
| *** OkropNick has quit IRC | 00:24 | |
| *** NIN102 has quit IRC | 00:27 | |
| *** blueslee has joined #maemo | 00:27 | |
| *** SmilyOrg has joined #maemo | 00:28 | |
| *** hardaker has quit IRC | 00:29 | |
| *** Smily has quit IRC | 00:29 | |
| *** blueslee has quit IRC | 00:29 | |
| *** shamus has quit IRC | 00:30 | |
| *** shamus has joined #maemo | 00:30 | |
| *** chenca has quit IRC | 00:30 | |
| *** mase76 has joined #maemo | 00:30 | |
| *** mase76 has quit IRC | 00:31 | |
| *** ychavan has quit IRC | 00:32 | |
| *** guampa has quit IRC | 00:32 | |
| *** rd has quit IRC | 00:33 | |
| *** florian has joined #maemo | 00:39 | |
| *** florian has joined #maemo | 00:39 | |
| *** lbt is now known as lbt_away | 00:39 | |
| Gh0sty | DocScrutinizer: afford? | 00:40 |
|---|---|---|
| Gh0sty | its a free conference | 00:40 |
| Gh0sty | and afaik you live in germany | 00:40 |
| Gh0sty | so you're only a small drive away ... | 00:40 |
| *** eijk has quit IRC | 00:40 | |
| *** dos1 has quit IRC | 00: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 fail | 00:52 |
| Estel_ | so, DO foo || echo bar | 00:52 |
| Estel_ | results in bar, when foo fails | 00:52 |
| Estel_ | yet, if I try to DO foo || echo bar && exit | 00: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 |
| DocScrutinizer | no DO | 00:54 |
| Estel_ | generally, I want to write things, that inform user about errors *and* roll-back changes made before by this script *and* exit afterward | 00:55 |
| DocScrutinizer | a || b && c; is a bit tricky | 00:55 |
| Estel_ | hm... | 00:56 |
| DocScrutinizer | use if; then; else | 00:56 |
| Estel_ | ok, but how to prepare if that check if a was succeed? | 00:56 |
| DocScrutinizer | a && b is the same as if a; then b; fi; | 00:56 |
| Estel_ | i.e. simple example | 00:57 |
| Estel_ | yea, noticed that | 00:57 |
| Estel_ | for example, i want | 00:57 |
| Estel_ | swapon /dev/foo | 00:57 |
| *** jacekowski has quit IRC | 00:57 | |
| Estel_ | and in case of fail | 00:57 |
| Estel_ | return info and exit | 00:57 |
| Estel_ | then, later in script | 00:57 |
| Estel_ | swapoff /dev/bar | 00:58 |
| Estel_ | and in case of fail, inform user, swapoff /dev/foo #that was swapon before and exit | 00:58 |
| Estel_ | and so goes on | 00:58 |
| DocScrutinizer | a && b is the same as if a; then b; fi; | 00:58 |
| DocScrutinizer | err | 00:58 |
| DocScrutinizer | sorry | 00:59 |
| Estel_ | script, that in case of error at any stage, roll-back itself, inform, and exit, to not leave user with mess | 00:59 |
| DocScrutinizer | if ! false; then echo "been ok"; exit 0; fi | 00:59 |
| DocScrutinizer | Estel_: rollback is tricky | 00:59 |
| DocScrutinizer | help trap | 00:59 |
| Estel_ | generally true, yet this script is relatively short and not complicated, so I though it's worth it | 01: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 inactive | 01:01 |
| Estel_ | and execute only if initial requiments are met (one if) | 01:01 |
| Estel_ | meet* | 01:01 |
| *** jacekowski has joined #maemo | 01:01 | |
| DocScrutinizer | man bash|less "+2/^ *trap" | 01:01 |
| Estel_ | must be busybox compatible :P | 01:02 |
| Estel_ | thanks anyway, will look into it | 01:02 |
| DocScrutinizer | no | 01:02 |
| Estel_ | hm? | 01:02 |
| DocScrutinizer | trap IS busybox compatible. the above man invokation to learn about trap cmd isn't | 01:03 |
| Estel_ | I see. | 01:03 |
| Estel_ | thanks, looks appealing anyway | 01: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 status | 01:06 |
| Estel_ | if ! false; then echo "been ok"; exit 0; fi | 01:06 |
| Estel_ | is same as | 01:06 |
| Estel_ | if ! false; then echo "been ok"; ELSE exit 0; fi | 01:06 |
| DocScrutinizer | no, definitely and obviously different | 01:07 |
| Estel_ | ok, I get how trap works now, thanks a lot! | 01:08 |
| Estel_ | (topic-jumper) | 01:08 |
| DocScrutinizer | if ! false; then echo "been ok"; else echo "exit 0"; fi; echo "never been here after >exit 0<" | 01:09 |
| *** federico2 has quit IRC | 01:09 | |
| Estel_ | ok, so I correctly thing that (or I am wrong again): | 01:12 |
| *** geaaru has quit IRC | 01:13 | |
| Estel_ | if ! true; then echo "went bad"; else continue fi; | 01:13 |
| Estel_ | think/ not thing | 01:13 |
| DocScrutinizer | yes | 01:17 |
| DocScrutinizer | trap is a bit tricky, but extramely useful | 01:19 |
| *** ghostcube has quit IRC | 01:19 | |
| DocScrutinizer | trap "echo byebye; exit 0" EXIT | 01:21 |
| DocScrutinizer | is a bad idea | 01:21 |
| *** federico2 has joined #maemo | 01:22 | |
| *** federico2 has quit IRC | 01:22 | |
| *** federico2 has joined #maemo | 01:22 | |
| DocScrutinizer | usually you have a >> cleanup () { trap "" EXIT; echo byebye; exit 0; } << and then a >> trap cleanup EXIT << at some early point in your script | 01:23 |
| *** alehorst has quit IRC | 01:24 | |
| DocScrutinizer | and you probably got some more nifty code for >>errorhandler () { whatever }<< and then >>trap errorhandler ERR | 01:25 |
| DocScrutinizer | and you either change the way errorhandler() works, by defining some env like tmpfileopened=true | 01:27 |
| DocScrutinizer | or | 01:27 |
| *** nox- has joined #maemo | 01:31 | |
| DocScrutinizer | you got errorhandlerA () { rm tmpfileA ; return}; errorhandlerB() { rm fileB; errorhandlerA; return}; errorhandlerC () { errohandlerB; echo "" >someotherfile; echo "duck and cover!"; return} | 01:31 |
| DocScrutinizer | and then of course: | 01:32 |
| DocScrutinizer | trap errorhandlerA ERR | 01:32 |
| DocScrutinizer | echo "" >tmpfileA | 01:32 |
| DocScrutinizer | trap errorhandlerB ERR | 01:33 |
| DocScrutinizer | cp foobar fileB | 01:33 |
| DocScrutinizer | you (tnaks to not so strict syntax for shellscripts) can interleave the traps AND the function defs for errohandlerB etc | 01:34 |
| DocScrutinizer | s/tnaks/thanks/ | 01:34 |
| infobot | DocScrutinizer meant: you (thanks to not so strict syntax for shellscripts) can interleave the traps AND the function defs for errohandlerB etc | 01:34 |
| rm_work | rm! | 01:35 |
| * rm_work waves and disappears again | 01:35 | |
| DocScrutinizer | does your highlight also trigger on warm warmaker carmanufacturer etc rm ? | 01:36 |
| * DocScrutinizer waves | 01:36 | |
| rm_work | dunno | 01:37 |
| rm_work | you included just "rm" so it highlighted on that :P | 01:37 |
| DocScrutinizer | arms are bad | 01:37 |
| rm_work | nope :) | 01:37 |
| rm_work | \wrm\w | 01:37 |
| DocScrutinizer | :nod: | 01:38 |
| rm_work | in linux related channels it becomes a problem though <_< | 01:38 |
| DocScrutinizer | the default workinf hours at my employer's office tend to becomme a problem | 01:39 |
| DocScrutinizer | anyway | 01:39 |
| * DocScrutinizer waves and says "N8" | 01:39 | |
| DocScrutinizer | thus: | 01:41 |
| DocScrutinizer | errorhandlerA () { rm tmpfileA ; return}; | 01:42 |
| DocScrutinizer | trap errorhandlerA ERR | 01:42 |
| DocScrutinizer | echo "" >tmpfileA | 01:42 |
| DocScrutinizer | errorhandlerB() { rm fileB; errorhandlerA; return}; | 01:42 |
| DocScrutinizer | trap errorhandlerB ERR | 01:43 |
| DocScrutinizer | cp foobar fileB | 01:43 |
| DocScrutinizer | etc pp | 01:43 |
| *** xtcx has quit IRC | 01:48 | |
| *** scoobertron has quit IRC | 01:49 | |
| *** trumee is now known as trumee_afk | 01:54 | |
| Estel_ | Thanks DocScrutinizer, it's definitely worth reading material | 01:58 |
| DocScrutinizer | yw | 01:59 |
| * Estel_ saved this whole conversation for further referrence, and also waves goodnight | 01:59 | |
| *** xtcx has joined #maemo | 01:59 | |
| *** ale152 has quit IRC | 02:01 | |
| *** guampa has joined #maemo | 02:03 | |
| *** trx has quit IRC | 02:10 | |
| *** Estel_ has quit IRC | 02:10 | |
| *** swc|666 has joined #maemo | 02:15 | |
| *** dole has quit IRC | 02:17 | |
| *** xev has quit IRC | 02:19 | |
| *** xev has joined #maemo | 02:20 | |
| *** rm_work has quit IRC | 02:21 | |
| *** PeterWolf has joined #maemo | 02:27 | |
| *** mortenvp has quit IRC | 02:43 | |
| *** robbiethe1st has joined #maemo | 02:46 | |
| *** MikeK has quit IRC | 02:52 | |
| *** beford has joined #maemo | 02:55 | |
| *** muellisoft has quit IRC | 02:56 | |
| *** mfridh has quit IRC | 03:21 | |
| *** federico2 has quit IRC | 03:22 | |
| *** ferdna has joined #maemo | 03:25 | |
| *** mfridh has joined #maemo | 03:25 | |
| *** trbs has quit IRC | 03:33 | |
| *** net-split has quit IRC | 03:39 | |
| *** mfridh has quit IRC | 03:40 | |
| *** mfridh has joined #maemo | 03:40 | |
| *** mfridh has joined #maemo | 03:41 | |
| *** mfridh has joined #maemo | 03:41 | |
| *** M4rtinK has quit IRC | 03:41 | |
| *** mfridh has quit IRC | 03:41 | |
| *** mfridh has joined #maemo | 03:43 | |
| *** mfridh has joined #maemo | 03:46 | |
| *** infobot has quit IRC | 03:47 | |
| *** M4rtinK has joined #maemo | 03:47 | |
| *** mfridh_ has joined #maemo | 03:50 | |
| *** mfridh_ is now known as mfridh | 03:53 | |
| *** mfridh has joined #maemo | 03:53 | |
| *** lasher has joined #maemo | 03:54 | |
| *** kimitake is now known as kimitake_idle | 03:57 | |
| lasher | i didnt know thre was a maemo irc | 04:01 |
| *** hardaker has joined #maemo | 04:01 | |
| *** penguinbait has quit IRC | 04:09 | |
| *** M4rtinK has quit IRC | 04:10 | |
| *** ekze_note has quit IRC | 04:10 | |
| *** ekze has quit IRC | 04:11 | |
| *** trx has joined #maemo | 04:14 | |
| *** ekze has joined #maemo | 04:17 | |
| *** ekze_note has joined #maemo | 04:17 | |
| *** florian has quit IRC | 04:26 | |
| *** PeterWolf has quit IRC | 04:30 | |
| *** longthen has left #maemo | 04:31 | |
| *** dangergrrl has joined #maemo | 04:36 | |
| *** florian has joined #maemo | 04:39 | |
| *** ferdna has quit IRC | 04:40 | |
| *** dangergrrl has quit IRC | 04:43 | |
| *** nox- has quit IRC | 04:44 | |
| *** PeterWolf has joined #maemo | 04:48 | |
| *** guampa has quit IRC | 05:08 | |
| *** beford has quit IRC | 05:13 | |
| *** radic has quit IRC | 05:27 | |
| *** radic_ has joined #maemo | 05:28 | |
| *** maybeArgh has joined #maemo | 05:33 | |
| *** maybeWTF has quit IRC | 05:33 | |
| *** sat2050 has joined #maemo | 05:34 | |
| *** kimitake_idle is now known as kimitake | 05:35 | |
| *** pcfe has quit IRC | 05:36 | |
| *** pcfe has joined #maemo | 05:36 | |
| *** pcfe has quit IRC | 05:36 | |
| *** pcfe has joined #maemo | 05:36 | |
| *** GeneralAntilles has quit IRC | 05:40 | |
| *** mavhc has quit IRC | 05:43 | |
| *** mavhc has joined #maemo | 05:46 | |
| *** mavhc has joined #maemo | 05:48 | |
| *** dockane_ has joined #maemo | 06:01 | |
| *** dockane has quit IRC | 06:04 | |
| *** aholler_ has joined #maemo | 06:10 | |
| *** sat2050 has quit IRC | 06:12 | |
| *** aholler has quit IRC | 06:13 | |
| *** robbiethe1st has quit IRC | 06:22 | |
| *** sat2050 has joined #maemo | 06:30 | |
| *** xtcx is now known as thomashc | 06:47 | |
| *** ebzzry has joined #maemo | 06:53 | |
| ebzzry | what is the command to determine the current profile settings? | 06:54 |
| *** evilbulgarian has quit IRC | 06:57 | |
| *** Gi0 has quit IRC | 07:04 | |
| *** evilbulgarian has joined #maemo | 07:05 | |
| *** mitsutaka has joined #maemo | 07:21 | |
| *** hylas has joined #maemo | 07:26 | |
| *** ALoGeNo has quit IRC | 07:29 | |
| *** hardaker has quit IRC | 07:30 | |
| *** GeneralAntilles has joined #maemo | 07:32 | |
| *** ALoGeNo has joined #maemo | 07:33 | |
| *** mookie has quit IRC | 07:45 | |
| *** dafox has joined #maemo | 07:49 | |
| *** dafox has quit IRC | 07:49 | |
| *** dafox has joined #maemo | 07:50 | |
| *** hylas has quit IRC | 08:01 | |
| *** ychavan has joined #maemo | 08:02 | |
| *** ebzzry has quit IRC | 08:03 | |
| *** dafox has quit IRC | 08:12 | |
| *** Smily has joined #maemo | 08:12 | |
| *** SmilyOrg has quit IRC | 08:13 | |
| *** SmilyOrg has joined #maemo | 08:18 | |
| *** Smily has quit IRC | 08:19 | |
| *** Smily has joined #maemo | 08:35 | |
| *** SmilyOrg has quit IRC | 08:38 | |
| *** SmilyOrg has joined #maemo | 08:41 | |
| *** Smily has quit IRC | 08:44 | |
| *** florian has quit IRC | 08:46 | |
| *** larsivi has quit IRC | 08:48 | |
| *** mintux has joined #maemo | 08:50 | |
| *** mintux has left #maemo | 08:50 | |
| *** uen| has joined #maemo | 08:50 | |
| *** Smily has joined #maemo | 08:51 | |
| *** SmilyOrg has quit IRC | 08:51 | |
| *** ychavan has quit IRC | 08:54 | |
| *** uen has quit IRC | 08:54 | |
| *** xtcx has joined #maemo | 08:56 | |
| *** ychavan has joined #maemo | 08:59 | |
| *** thomashc has quit IRC | 08:59 | |
| *** Smily has quit IRC | 09:00 | |
| *** Smily has joined #maemo | 09:01 | |
| *** Smily has quit IRC | 09:08 | |
| *** florian has joined #maemo | 09:09 | |
| *** mece has joined #maemo | 09:16 | |
| *** jonne has joined #maemo | 09:18 | |
| *** lasher has quit IRC | 09:24 | |
| *** lasher has joined #maemo | 09:25 | |
| *** Roomerlol has joined #maemo | 09:25 | |
| *** lasher has quit IRC | 09:29 | |
| *** lasher has joined #maemo | 09:31 | |
| *** Roomerlol has quit IRC | 09:36 | |
| *** Wikier has joined #maemo | 09:41 | |
| *** swc|666 has quit IRC | 09:42 | |
| *** zk8 has joined #maemo | 09:44 | |
| *** zz_gri is now known as gri | 09:50 | |
| *** murrayc has joined #maemo | 09:53 | |
| *** zk8 has quit IRC | 09:55 | |
| *** lasher has quit IRC | 09:56 | |
| *** lasher has joined #maemo | 10:00 | |
| *** gri is now known as zz_gri | 10:04 | |
| *** dafox has joined #maemo | 10:05 | |
| *** jpe_ has joined #maemo | 10:05 | |
| *** lasher has quit IRC | 10:06 | |
| *** lasher has joined #maemo | 10:08 | |
| *** gomiam has joined #maemo | 10:08 | |
| *** mikki-kun has joined #maemo | 10:16 | |
| *** jhb has joined #maemo | 10:19 | |
| *** lasher has quit IRC | 10:21 | |
| *** tanty has joined #maemo | 10:27 | |
| *** sasquatch has quit IRC | 10:29 | |
| *** sasquatch has joined #maemo | 10:29 | |
| *** BluesLee has joined #maemo | 10:30 | |
| *** Zahra has joined #maemo | 10:30 | |
| *** Zahra has quit IRC | 10:30 | |
| *** BluesLee has quit IRC | 10:31 | |
| *** [DarkGUNMAN] has joined #maemo | 10:33 | |
| [DarkGUNMAN] | morning all | 10:34 |
| *** geaaru has joined #maemo | 10:34 | |
| *** Cy8aer has joined #maemo | 10:36 | |
| *** florian has quit IRC | 10:37 | |
| *** Cy8aer has quit IRC | 10:39 | |
| *** tanty has quit IRC | 10:39 | |
| *** [DarkGUNMAN] has quit IRC | 10:41 | |
| *** infobot has joined #maemo | 10:41 | |
| infobot | DocScrutinizer: infobot joined! | 10:41 |
| *** ChanServ sets mode: +v infobot | 10:41 | |
| *** drussell has joined #maemo | 10:43 | |
| *** croppa has joined #maemo | 10:45 | |
| *** kimitake is now known as kimitake_idle | 10:49 | |
| *** jreznik has joined #maemo | 10:51 | |
| *** tanty has joined #maemo | 10:54 | |
| *** _berto_ has joined #maemo | 10:54 | |
| *** dafox has quit IRC | 10:58 | |
| *** dafox has joined #maemo | 10:58 | |
| *** OkropNick has joined #maemo | 10:59 | |
| *** mortenvp has joined #maemo | 10:59 | |
| *** dafox has quit IRC | 11:03 | |
| *** dafox has joined #maemo | 11:03 | |
| *** zz_gri is now known as gri | 11:03 | |
| *** _berto_ has quit IRC | 11:06 | |
| *** dmotd has quit IRC | 11:06 | |
| *** Smily has joined #maemo | 11:07 | |
| *** DocScrutinizer has quit IRC | 11:08 | |
| *** DocScrutinizer has joined #maemo | 11:08 | |
| *** jreznik has quit IRC | 11:09 | |
| *** _berto_ has joined #maemo | 11:09 | |
| *** SmilyOrg has joined #maemo | 11:12 | |
| *** Smily has quit IRC | 11:15 | |
| *** BCMM has joined #maemo | 11:16 | |
| *** larsivi has joined #maemo | 11:18 | |
| *** dafox has quit IRC | 11:18 | |
| *** dafox has joined #maemo | 11:19 | |
| *** arno0ob has joined #maemo | 11:20 | |
| *** dafox has quit IRC | 11:22 | |
| *** dafox has joined #maemo | 11:22 | |
| *** eijk has joined #maemo | 11:23 | |
| *** dafox has quit IRC | 11:24 | |
| *** dafox has joined #maemo | 11:24 | |
| *** liar has joined #maemo | 11:24 | |
| *** dafox has quit IRC | 11:25 | |
| *** dafox has joined #maemo | 11:25 | |
| *** eMHa has quit IRC | 11:28 | |
| *** dafox has quit IRC | 11:29 | |
| *** dafox has joined #maemo | 11:30 | |
| *** SmilybOrg has joined #maemo | 11:31 | |
| *** SmilybOrg is now known as Guest72931 | 11:32 | |
| *** SmilyOrg has quit IRC | 11:34 | |
| *** Guest72931 has quit IRC | 11:43 | |
| *** Guest72931 has joined #maemo | 11:47 | |
| *** liar has quit IRC | 11:50 | |
| *** ghostcube has joined #maemo | 11:50 | |
| *** Guest72931 has quit IRC | 11:55 | |
| *** lukasz_gut has joined #maemo | 11:57 | |
| *** zap_ has joined #maemo | 11:59 | |
| *** Smily has joined #maemo | 12:03 | |
| *** dafox has quit IRC | 12:05 | |
| *** dafox has joined #maemo | 12:08 | |
| *** malin has quit IRC | 12:11 | |
| *** Openfree` has quit IRC | 12:13 | |
| *** Smily has quit IRC | 12:13 | |
| *** dafox has quit IRC | 12:14 | |
| *** Smily has joined #maemo | 12:15 | |
| *** drussell has quit IRC | 12:20 | |
| *** CodenameStrike-N has joined #maemo | 12:21 | |
| *** Smily has quit IRC | 12:22 | |
| *** dole has joined #maemo | 12:23 | |
| *** malin has joined #maemo | 12:25 | |
| *** croppa has quit IRC | 12:26 | |
| *** florian has joined #maemo | 12:30 | |
| *** florian has quit IRC | 12:30 | |
| *** florian has joined #maemo | 12:30 | |
| *** dafox has joined #maemo | 12:36 | |
| *** CodenameStrike-N has quit IRC | 12:41 | |
| *** alehorst has joined #maemo | 12:42 | |
| *** ychavan has quit IRC | 12:43 | |
| *** dangergrrl has joined #maemo | 12:45 | |
| *** eMHa has joined #maemo | 12:47 | |
| *** eMHa has quit IRC | 12:51 | |
| *** Roomerlol has joined #maemo | 12:52 | |
| *** eMHa has joined #maemo | 12:52 | |
| *** lizardo has joined #maemo | 12:55 | |
| *** CodenameStrike-N has joined #maemo | 13:01 | |
| *** vivijim has joined #maemo | 13:02 | |
| *** Guest96166 has joined #maemo | 13:03 | |
| *** andrenarchy has joined #maemo | 13:04 | |
| *** xtr3m3 has joined #maemo | 13:04 | |
| *** penguinbait has joined #maemo | 13:04 | |
| *** penguinbait has quit IRC | 13:04 | |
| *** penguinbait has joined #maemo | 13:04 | |
| *** penguinbait has quit IRC | 13:10 | |
| *** vivijim has quit IRC | 13:15 | |
| *** pvanhoof has quit IRC | 13:16 | |
| *** pvanhoof has joined #maemo | 13:16 | |
| *** mairas has joined #maemo | 13:17 | |
| *** M4rtinK has joined #maemo | 13:19 | |
| *** dhbiker has joined #maemo | 13:19 | |
| *** Wizzup has quit IRC | 13:27 | |
| ruskie | http://www.theregister.co.uk/2012/02/03/windows_phone_8_features_leaked/ <-- so changing it again | 13:28 |
| *** Gi0 has joined #maemo | 13:30 | |
| *** alehorst has quit IRC | 13:30 | |
| *** scoobertron has joined #maemo | 13:31 | |
| *** penguinbait has joined #maemo | 13:31 | |
| *** vivijim has joined #maemo | 13:35 | |
| *** Free-MG has joined #maemo | 13:36 | |
| *** dangergrrl has quit IRC | 13:38 | |
| *** jonne has quit IRC | 13:39 | |
| *** penguinbait has quit IRC | 13:43 | |
| *** jonne has joined #maemo | 13:52 | |
| *** Chiku has joined #maemo | 13:53 | |
| *** Chiku has joined #maemo | 13:53 | |
| *** Roomerlol has quit IRC | 14:00 | |
| *** dangergrrl has joined #maemo | 14:04 | |
| *** Jonne_ has joined #maemo | 14:18 | |
| * RST38h yawns, swallows a fly | 14:22 | |
| *** BluesLee has joined #maemo | 14:22 | |
| *** Smily has joined #maemo | 14:23 | |
| *** BluesLee has quit IRC | 14:23 | |
| *** Jonne_ has quit IRC | 14:23 | |
| *** CodenameStrike-N has quit IRC | 14:24 | |
| *** etrunko has joined #maemo | 14:27 | |
| vi___ | can I connect two bluetooth headsets to the n900 simultaneously? | 14:29 |
| *** eeanm has quit IRC | 14:30 | |
| *** Smily has quit IRC | 14:30 | |
| Sicelo | i doubt that | 14:43 |
| RST38h | Nope | 14:43 |
| *** Aquarina has joined #maemo | 14:45 | |
| *** eMHa has quit IRC | 14:49 | |
| *** chenca has joined #maemo | 14:53 | |
| *** dhbiker has quit IRC | 14:53 | |
| *** lukasz_gut has quit IRC | 14:59 | |
| *** lukasz_gut has joined #maemo | 15:00 | |
| *** eMHa has joined #maemo | 15:01 | |
| *** fuz_ has quit IRC | 15:01 | |
| *** fuz_ has joined #maemo | 15:06 | |
| *** penguinbait has joined #maemo | 15:09 | |
| *** sat2050 has quit IRC | 15:18 | |
| *** chenca has quit IRC | 15:27 | |
| *** Guest96166 has quit IRC | 15:28 | |
| DocScrutinizer | neither HSP nor A2DP allows multiple concurrent peripherals afaik | 15:29 |
| *** Wikier has quit IRC | 15:31 | |
| *** andre__ has joined #maemo | 15:31 | |
| *** andre__ has quit IRC | 15:31 | |
| *** andre__ has joined #maemo | 15:31 | |
| *** scoobertron has quit IRC | 15:33 | |
| *** mece has quit IRC | 15:36 | |
| *** net-split has joined #maemo | 15:36 | |
| *** dvaske has quit IRC | 15:49 | |
| *** lukasz_gut has quit IRC | 15:50 | |
| *** eean has joined #maemo | 15:50 | |
| *** ced117 has joined #maemo | 15:50 | |
| *** ced117 has quit IRC | 15:50 | |
| *** ced117 has joined #maemo | 15:50 | |
| *** lukasz_gut has joined #maemo | 15:50 | |
| *** Aquarina has quit IRC | 15:52 | |
| *** eean has quit IRC | 15:54 | |
| *** scoobertron has joined #maemo | 15:55 | |
| *** eean has joined #maemo | 15:59 | |
| *** dos1 has joined #maemo | 16:00 | |
| *** mase76 has joined #maemo | 16:03 | |
| RST38h | Nokia 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 market | 16:05 |
| *** APTX has quit IRC | 16:06 | |
| *** APTX has joined #maemo | 16:07 | |
| *** paulo has joined #maemo | 16:08 | |
| *** drussell has joined #maemo | 16:09 | |
| Macer | heh | 16:10 |
| Macer | does that mean E7s are $20 now? | 16:10 |
| *** paulo has quit IRC | 16:10 | |
| Macer | 349 ? pfft heh | 16:11 |
| Macer | if they drop to 200 i'll get one :) | 16:11 |
| *** hardaker has joined #maemo | 16:16 | |
| *** Milhouse has quit IRC | 16:18 | |
| RST38h | Probably won't drp | 16:20 |
| RST38h | Nokia seems to be bent on going out of business | 16:20 |
| RST38h | On 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 #maemo | 16:22 | |
| *** Milhouse has joined #maemo | 16:22 | |
| *** Milhouse has quit IRC | 16:22 | |
| *** Milhouse has joined #maemo | 16:22 | |
| Macer | a fraction of nokia's revenue? | 16:34 |
| Macer | oh yeah. i guess the crap phones are a big business to them as well | 16:35 |
| Macer | that is a shame when you go to a smartphone powerhouse to a lowly crap phone distributor | 16:35 |
| Macer | for shame nokia | 16:35 |
| *** lukasz_gut has quit IRC | 16:36 | |
| *** lukasz_gut has joined #maemo | 16:37 | |
| *** guampa has joined #maemo | 16:40 | |
| *** valdyn has quit IRC | 16:44 | |
| *** vivijim has quit IRC | 16:45 | |
| *** larsivi has quit IRC | 16:46 | |
| *** gomiam has quit IRC | 16:47 | |
| *** chenca has joined #maemo | 16:49 | |
| ruskie | http://www.theregister.co.uk/2012/02/03/nokia_symbian/ <-- heh | 16:51 |
| ruskie | http://www.theregister.co.uk/2012/02/03/apple_motorola_patents/ <-- hehe | 16:52 |
| *** mase76 has quit IRC | 16:55 | |
| *** mase76 has joined #maemo | 16:58 | |
| *** lxp1 has joined #maemo | 17:04 | |
| *** lxp has quit IRC | 17:05 | |
| *** mase76 has quit IRC | 17:07 | |
| *** mitsutaka has quit IRC | 17:09 | |
| *** hector has joined #maemo | 17:12 | |
| *** hector has left #maemo | 17:13 | |
| *** rm_work has joined #maemo | 17:18 | |
| *** rm_work has quit IRC | 17:18 | |
| *** rm_work has joined #maemo | 17:18 | |
| *** e-yes has quit IRC | 17:27 | |
| *** paroneayea has quit IRC | 17:29 | |
| *** woodong50 has joined #maemo | 17:29 | |
| *** disco_stu has quit IRC | 17:29 | |
| *** paroneayea has joined #maemo | 17:30 | |
| *** e-yes has joined #maemo | 17:31 | |
| *** nsuffys has joined #maemo | 17:32 | |
| *** Roomerlol has joined #maemo | 17:33 | |
| *** lukasz_gut has quit IRC | 17:35 | |
| *** zap_ has quit IRC | 17:36 | |
| *** Pali has joined #maemo | 17:39 | |
| *** mairas has quit IRC | 17:44 | |
| *** hardaker has quit IRC | 17:47 | |
| *** realitygaps has joined #maemo | 17:54 | |
| *** realitygaps has quit IRC | 17:54 | |
| *** realitygaps has joined #maemo | 17:54 | |
| *** retro|cz has quit IRC | 17:54 | |
| *** ferdna has joined #maemo | 17:55 | |
| *** disco_stu has joined #maemo | 17:56 | |
| *** jhb has quit IRC | 18:01 | |
| *** woodong50 has quit IRC | 18:07 | |
| *** ToJa92 has quit IRC | 18:13 | |
| *** dangergrrl has quit IRC | 18:14 | |
| *** zk8 has joined #maemo | 18:15 | |
| *** ToJa92 has joined #maemo | 18:18 | |
| *** valdyn has joined #maemo | 18:32 | |
| *** _berto_ has quit IRC | 18:32 | |
| *** zk8 has quit IRC | 18:34 | |
| *** shanttu has joined #maemo | 18:35 | |
| *** murrayc has quit IRC | 18:35 | |
| *** jpe_ has quit IRC | 18:43 | |
| *** MrOpposite is now known as MigoMipo | 18:44 | |
| *** MigoMipo is now known as MrOpposite | 18:44 | |
| *** scoobertron has quit IRC | 18:46 | |
| *** pvanhoof has quit IRC | 18:48 | |
| *** andrenarchy has left #maemo | 18:48 | |
| *** pvanhoof has joined #maemo | 18:48 | |
| *** krnlyng has joined #maemo | 18:49 | |
| *** Anidel has joined #maemo | 18:49 | |
| *** Anidel has left #maemo | 18:49 | |
| *** Sazpaimon has quit IRC | 18:54 | |
| *** tanty has quit IRC | 18:55 | |
| *** tanty has joined #maemo | 18:56 | |
| *** arno0ob has quit IRC | 18:58 | |
| *** Arkenoi has quit IRC | 18:59 | |
| *** kimitake_idle is now known as kimitake | 19:04 | |
| *** valerius has quit IRC | 19:07 | |
| *** uen| is now known as uen | 19:07 | |
| *** dafox has quit IRC | 19:07 | |
| *** SpeedyGhost has quit IRC | 19:09 | |
| *** krnlyng has quit IRC | 19:10 | |
| *** sat2050 has joined #maemo | 19:15 | |
| *** NIN101 has joined #maemo | 19:15 | |
| *** ghostcube has quit IRC | 19:16 | |
| *** sat2050 has quit IRC | 19:19 | |
| *** hardaker has joined #maemo | 19:25 | |
| *** Roomerlol has quit IRC | 19:30 | |
| *** alehorst has joined #maemo | 19:35 | |
| *** apundhir has joined #maemo | 19:42 | |
| *** PeterWolf has quit IRC | 19:51 | |
| *** andre__ has quit IRC | 19:54 | |
| *** larsivi has joined #maemo | 19:54 | |
| *** apundhir has quit IRC | 19:58 | |
| *** tsoliman has joined #maemo | 20:00 | |
| *** tsoliman has left #maemo | 20:00 | |
| *** tsoliman has joined #maemo | 20:00 | |
| tsoliman | hi all. I am looking for someone with a Nokia 770 running OS2008 | 20:01 |
| mgedmin | wow | 20:02 |
| *** gri is now known as zz_gri | 20:03 | |
| *** sezuan has joined #maemo | 20:03 | |
| mgedmin | was that a supported version, or are you talking about Hackers Edition? | 20:04 |
| * mgedmin might be able to find his 770 maybe in a drawer | 20:04 | |
| tsoliman | I have no clue .. I don't have a 770 and didn't realize it ran Diablo | 20:04 |
| *** hardaker has quit IRC | 20:04 | |
| tsoliman | I want to see the contents of /proc/component_version on it | 20:05 |
| *** ArkanoiD_ has quit IRC | 20:07 | |
| tsoliman | "Nokia 770 OS2008HE" so I am assuming HE = Hackers Edition | 20:07 |
| tsoliman | thanks in advance mgedmin :) | 20:07 |
| mgedmin | HE is that | 20:07 |
| mgedmin | my 770 doesn't have HE | 20:07 |
| mgedmin | (and I'm not home ATM) | 20:08 |
| tsoliman | thanks anyway | 20:08 |
| *** tanty has quit IRC | 20:11 | |
| *** zz_gri is now known as gri | 20:14 | |
| *** BCMM has quit IRC | 20:14 | |
| *** hardaker has joined #maemo | 20:22 | |
| *** ekze has quit IRC | 20:26 | |
| *** ekze has joined #maemo | 20:26 | |
| *** mrklaw has joined #maemo | 20:29 | |
| *** gri is now known as zz_gri | 20:31 | |
| *** sq-one has joined #maemo | 20:40 | |
| *** githogori has quit IRC | 20:40 | |
| *** tsoliman has quit IRC | 20:41 | |
| *** florian has quit IRC | 20:42 | |
| *** tsoliman has joined #maemo | 20:42 | |
| *** NIN102 has joined #maemo | 20:44 | |
| *** NIN101 has quit IRC | 20:46 | |
| *** eMHa has quit IRC | 20:47 | |
| *** SpeedyGhost has joined #maemo | 20:47 | |
| *** Arkenoi has joined #maemo | 20:49 | |
| *** MrOpposite has left #maemo | 20:50 | |
| *** MrOpposite has joined #maemo | 20:51 | |
| *** geaaru has quit IRC | 20:51 | |
| *** Venemo has joined #maemo | 20:52 | |
| *** Venemo has quit IRC | 20:52 | |
| *** Venemo has joined #maemo | 20:52 | |
| *** robink has quit IRC | 21:00 | |
| lxp1 | i have quickly looked into the wifi kernel panic issue | 21:03 |
| lxp1 | looks to me like it is a problem in mac80211 | 21:03 |
| lxp1 | could be a known and upstream fixed problem | 21:04 |
| Pali | do you know which upstream commit fixing that problem? | 21:04 |
| lxp1 | no i don't know anything so far, it's just a wild guess | 21:04 |
| lxp1 | in the meantime 2.6.28 is pretty old so it is possible that it is already fixed upstream | 21:05 |
| *** trumee_afk is now known as trumee | 21:07 | |
| lxp1 | but 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 wl12xx | 21:07 |
| Pali | ok | 21:08 |
| lxp1 | i am currently checking upstream maybe something pops up | 21:08 |
| *** eMHa has joined #maemo | 21:08 | |
| *** liar has joined #maemo | 21:11 | |
| lxp1 | by the way is the following patch already included: http://git.kernel.org/?p=linux/kernel/git/linville/wireless-testing.git;a=commit;h=cfdfa4d3a0c7aa1287c61326a7714f262466157a | 21:11 |
| *** guampa|2 has joined #maemo | 21:12 | |
| *** guampa has quit IRC | 21:13 | |
| lxp1 | it should fix that bug: https://garage.maemo.org/tracker/index.php?func=detail&aid=5818&group_id=1528&atid=5521 | 21:14 |
| *** tsoliman has quit IRC | 21:15 | |
| *** BCMM has joined #maemo | 21:16 | |
| *** SmilyOrg has joined #maemo | 21:16 | |
| *** Smily has quit IRC | 21:17 | |
| *** vivijim has joined #maemo | 21:19 | |
| *** ghostcube has joined #maemo | 21:21 | |
| Pali | I think no | 21:22 |
| *** rd has joined #maemo | 21:22 | |
| BCMM | will having a .bash_profile break everything, if bash is my primary shell? | 21:23 |
| *** liar has quit IRC | 21:25 | |
| *** dangergrrl has joined #maemo | 21:29 | |
| *** mrklaw has quit IRC | 21:35 | |
| *** mrklaw has joined #maemo | 21:35 | |
| *** beford has joined #maemo | 21:36 | |
| *** Aloof_Jezzster has joined #maemo | 21:36 | |
| Aloof_Jezzster | hello to all - Maemo 5 what a nice internal NOKIA OS, The HILDON UI nice very nice. | 21:39 |
| *** dole has quit IRC | 21:43 | |
| *** Venemo has quit IRC | 21:48 | |
| *** SmilyOrg has quit IRC | 21:50 | |
| *** xnt14 has quit IRC | 21:50 | |
| *** mrklaw has quit IRC | 21:51 | |
| *** etrunko has quit IRC | 21:52 | |
| *** MohammadAG has quit IRC | 21:52 | |
| *** githogori has joined #maemo | 21:53 | |
| trumee | _freemangordon: ping | 21:57 |
| *** Smily has joined #maemo | 21:57 | |
| *** vivijim has quit IRC | 21:59 | |
| *** dangergrrl has quit IRC | 21:59 | |
| *** robink has joined #maemo | 22:03 | |
| *** robink has quit IRC | 22:07 | |
| *** olliey has joined #maemo | 22:11 | |
| *** SpeedEvil has quit IRC | 22:19 | |
| *** jpe_ has joined #maemo | 22:19 | |
| *** guampa|2 is now known as guampa | 22:20 | |
| *** rd has quit IRC | 22:21 | |
| lxp1 | Pali: 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 |
| Pali | it should be correct build of kernel-power | 22:25 |
| lxp1 | either i'm missing something or the backtrace is corrupted | 22:25 |
| Pali | if you looking in kernel-power sources, make sure you have applied all patches from debian/patches | 22:26 |
| lxp1 | i have only looked at a little bit older sources, but i greped the patches for changes in scan.c | 22:26 |
| lxp1 | there are only changes in the nokia-20093908+0m5.diff patch, but there is nowhere a memcmp in sight | 22:27 |
| lxp1 | even the current kernel doesn't contain a memcmp in ieee80211_bss_info_update | 22:28 |
| Pali | it can be inlined function | 22:31 |
| *** penguinbait has quit IRC | 22:31 | |
| lxp1 | i am just looking for them, i supposed they weren't inline but i better check again | 22:31 |
| Pali | mac80211/scan.c line 238 | 22:32 |
| Pali | ieee80211_bss_info_update calling ieee80211_rx_bss_get and here is memcmp | 22:32 |
| Pali | but I think this cannot be inlined | 22:33 |
| lxp1 | the header doesn't specify inline for ieee80211_rx_bss_get | 22:33 |
| Pali | with -O2 static functions can be inlined | 22:33 |
| Pali | and ieee80211_rx_mesh_bss_get is static | 22:33 |
| lxp1 | you're right | 22:34 |
| Pali | the only static function in scan.c which has memcmp is ieee80211_rx_mesh_bss_get | 22:34 |
| lxp1 | so it again has to do with mesh stuff | 22:34 |
| Pali | I will check ig MESH is enabled | 22:34 |
| lxp1 | it is enabled | 22:35 |
| lxp1 | maybe we should just disable it | 22:35 |
| Pali | yes, CONFIG_MAC80211_MESH=y | 22:35 |
| *** fuz_ has quit IRC | 22:35 | |
| lxp1 | it also causes other bugs, because of the new IANA allocated values for mesh networks | 22:35 |
| lxp1 | that was the other patch i mentioned | 22:36 |
| Pali | ok, so the best option would be disable mesh? | 22:36 |
| Pali | freemangordon, are you here? | 22:37 |
| Pali | _freemangordon, see log ^^^ | 22:37 |
| lxp1 | i don't think mesh networking is very useful in this state | 22:38 |
| lxp1 | as it is linux specific as far as i know | 22:38 |
| lxp1 | and newer linux systems don't support it anymore, because of the IEEE standards | 22:39 |
| lxp1 | here the mesh contants patch again: http://git.kernel.org/?p=linux/kernel/git/linville/wireless-testing.git;a=commit;h=cfdfa4d3a0c7aa1287c61326a7714f262466157a | 22:40 |
| *** fuz_ has joined #maemo | 22:40 | |
| *** dangergrrl has joined #maemo | 22:41 | |
| *** Aloof_Jezzster has quit IRC | 22:41 | |
| *** githogori has quit IRC | 22:48 | |
| *** Kaptenen_ has quit IRC | 22:52 | |
| *** rm_work has quit IRC | 22:57 | |
| *** rm_work has joined #maemo | 22:58 | |
| *** rm_work has joined #maemo | 22:58 | |
| *** Kaptenen has joined #maemo | 23:01 | |
| *** lizardo has quit IRC | 23:03 | |
| *** robink has joined #maemo | 23:07 | |
| *** robink has joined #maemo | 23:07 | |
| *** nox- has joined #maemo | 23:07 | |
| *** nox- has quit IRC | 23:07 | |
| *** nox- has joined #maemo | 23:07 | |
| *** BCMM has quit IRC | 23:08 | |
| *** florian has joined #maemo | 23:08 | |
| *** florian has joined #maemo | 23:08 | |
| *** net`split has joined #maemo | 23:20 | |
| *** net-split has quit IRC | 23:20 | |
| *** net-split has joined #maemo | 23:21 | |
| *** guampa has quit IRC | 23:23 | |
| *** Gadgetoid has quit IRC | 23:27 | |
| *** Gadgetoid has joined #maemo | 23:27 | |
| *** nsuffys has quit IRC | 23:28 | |
| *** longthen has joined #maemo | 23:31 | |
| *** dangergrrl has quit IRC | 23:39 | |
| *** dangergrrl has joined #maemo | 23:46 | |
| *** Gadgetoid has quit IRC | 23:46 | |
| *** olliey has quit IRC | 23:47 | |
| *** DrGrov has joined #maemo | 23:52 | |
| *** zz_gri is now known as gri | 23:55 | |
Generated by irclog2html.py 4.0.0 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!