2010-10-28 00:36 can i put my application in /etc/profile in order to get the application lauched at startup 2010-10-28 00:41 xiangfu can u solve my prob 2010-10-28 00:42 kristian plz help me 2010-10-28 02:47 nitin_gupta: /etc/rc.local 2010-10-28 02:48 larsc : let me check 2010-10-28 02:58 it doesnt 2010-10-28 03:00 larsc : it is not working 2010-10-28 03:01 i have developed a console based application and needs to launch soon after the boot operation gets completed 2010-10-28 03:04 if you put it in /etc/rc.local it wont be lunched on your console. but you might use /etc/inittab for it 2010-10-28 03:05 ok 2010-10-28 03:06 [commit] Xiangfu Liu: autologin to system, thanks to Juan http://qi-hw.com/p/openwrt-xburst/93f45c1 2010-10-28 03:08 how to make an entry of bin file in inittab ? 2010-10-28 03:15 xiangfu it is not working 2010-10-28 03:17 nitin_gupta: don't use cd ..., just the static patch like: /root/test 2010-10-28 03:17 ok 2010-10-28 03:23 xiangfu: hi... do you maybe agree that only tty1 should be "respawn", and others should be "askfirst"? i guess in most cases spawing shell in other terminals automatically would be just a waste of resources.. 2010-10-28 03:24 xiangfu still it is not working 2010-10-28 03:24 my app is not getting launched 2010-10-28 03:29 kyak: oh. I don't know that. so only enable tty1 better. 2010-10-28 03:29 xiangfu: i think so, yes 2010-10-28 03:31 xiangfu: could you please help me with git at openwrt-xburst? for some reason (i guess it was renaming of remote branches) i don't see the list of modified files after "git pull".. 2010-10-28 03:31 it only outputs this line "d8efb94..93f45c1  master     -> origin/master" 2010-10-28 03:31 without actually shoowing what files were affected 2010-10-28 03:32 i can do git diff of course, but i'd like to understand this 2010-10-28 03:32 xiang inittab is ot working 2010-10-28 03:33 [commit] Xiangfu Liu: autologin to system at tty1, thanks to Juan http://qi-hw.com/p/openwrt-xburst/6883819 2010-10-28 03:36 kyak: hmm.. strange. the git pull should always show the change files. 2010-10-28 03:36 kyak: if there is no change in your local. I think you can try delete you local branch. then checkout this "mater" branch again. 2010-10-28 03:39 [commit] Wolfgang Spraul: partial boom update http://qi-hw.com/p/mmone-jtag-serial-cable/a8f8e8a 2010-10-28 03:41 kyak: when the "git pull" not show those change files?  today ? 2010-10-28 03:52 xiangfu: i think, couple of days ago 2010-10-28 03:52 xiangfu: can i just rename my local branch? 2010-10-28 03:53 kyak: yes. 2010-10-28 03:53 what should be its name? 2010-10-28 03:53 right now it is local_backfire 2010-10-28 03:59 i think local_backfire should track origin/master 2010-10-28 03:59 kyak: wait, can you send the "git config -l " to me . 2010-10-28 03:59 not origin/tracking_backfire 2010-10-28 03:59 (i followed the http://en.qi-hardware.com/wiki/Building_Software_Image) 2010-10-28 03:59 kyak: it's up to you. I always use the same name as remote. 2010-10-28 04:00 kyak: yes. we need update the wiki. 2010-10-28 04:00 xiangfu: one sec.. 2010-10-28 04:02 xiangfu: http://pastebin.com/f0zb78NZ 2010-10-28 04:03 and you are tight, i would like to name the local branch the same,, so git push would be more easy 2010-10-28 04:03 *you are right even 2010-10-28 04:05 kyak: oh. why there is no change files , because there is not local 'master' branch . 2010-10-28 04:06 we are start to commit to 'master' branch. 2010-10-28 04:06 so when you run git pull. it's just pull the 'tracking_backfire'. which is no changes. 2010-10-28 04:07 also it will fetch the remote 'master' in background. which you will see "d8efb94..93f45c1  master     -> origin/master" 2010-10-28 04:08 kyak: so just create another branch track the origin/master. then you will see those changes. 2010-10-28 04:08 okay, so i'll do now this: "git checkout --track -b local_backfire origin/master" 2010-10-28 04:09 or even better, git checkout --track -b master origin/master 2010-10-28 04:09 what do you think? 2010-10-28 04:09 then i will have local branch master, tracking origin/master 2010-10-28 04:10 kyak: i think git checkout --track -b master origin/master is better :) 2010-10-28 04:11 fatal: git checkout: branch master already exists 2010-10-28 04:11 strange that i can't see it.. 2010-10-28 04:11 in git config -l 2010-10-28 04:12 kyak: let's do this: 2010-10-28 04:12 1. remove your local backfire branch, which is useless : git branch -D backfire 2010-10-28 04:13 $ git branch -D backfire 2010-10-28 04:13 error: branch 'backfire' not found. 2010-10-28 04:13 $ git branch -D local_backfire 2010-10-28 04:13 error: Cannot delete the branch 'local_backfire' which you are currently on. 2010-10-28 04:13 :) 2010-10-28 04:14 1. git fetch -a 2010-10-28 04:14 2. git gc 2010-10-28 04:14 3. git prune 2010-10-28 04:14 4. git remote prune origin 2010-10-28 04:14 let's see what happen :) 2010-10-28 04:15 then paste the 'git config -l' :) 2010-10-28 04:17 xiangfu: http://pastebin.com/NCe6RCkb 2010-10-28 04:19 kyak: try git br -D tracking_backfire backfire 2010-10-28 04:20 then  git checkout --track -b master origin/master 2010-10-28 04:23 $ git br -D tracking_backfire backfire 2010-10-28 04:23 error: branch 'tracking_backfire' not found. 2010-10-28 04:23 error: branch 'backfire' not found. 2010-10-28 04:24 $ git checkout --track -b master origin/master 2010-10-28 04:24 fatal: git checkout: branch master already exists 2010-10-28 04:27 kyak: have you set the "GIT_DIR" ? 2010-10-28 04:27 env |grep GIT_DIR 2010-10-28 04:27 nothing 2010-10-28 04:28 kyak: what is the output of 'git br -a' 2010-10-28 04:28 http://pastebin.mandriva.com/21073 2010-10-28 04:34 kyak: ok. we have remove the 'master' branch then create the 'maser' again. 2010-10-28 04:34 ok 2010-10-28 04:34 will do it now 2010-10-28 04:34 kyak: that why you remotes/origin/HEAD  point to 'master' which is old config. 2010-10-28 04:35 my git dir is pretty old 2010-10-28 04:35 kyak: sorry, I mean the server have remove the 'master' branch then create the 'master' again 2010-10-28 04:35 it survived several renames :) 2010-10-28 04:35 kyak: :) my final advice is . remove the whole folder. git clone again. 2010-10-28 04:36 no-no 2010-10-28 04:36 i think it's working now 2010-10-28 04:36 thanks to your advanced usage of git :) 2010-10-28 04:36 kyak: ok. I think we can remove the 'xburst' and 'master' in local.  checkout the 'mater' again. 2010-10-28 04:36 i will clean up now 2010-10-28 04:37 kyak: edit the ".git/refs/remotes/origin/HEAD" change to: 2010-10-28 04:37 $ git br -a 2010-10-28 04:37 * master remotes/origin/HEAD -> origin/master remotes/origin/master remotes/origin/tracking_backfire 2010-10-28 04:37 ref: refs/remotes/origin/tracking_backfire 2010-10-28 04:38 oh ok 2010-10-28 04:39 http://pastebin.mandriva.com/21074 2010-10-28 04:39 this is git br -a 2010-10-28 04:39 looks good now? 2010-10-28 04:40 i don't understand now what is the purpose of tracking_backfire? and why i pointed HEAD to it? 2010-10-28 04:45 yes. now looks better. 2010-10-28 04:45 xiangfu: thanks for you help! 2010-10-28 04:45 kyak:  for now I just want your local setting is same as server. 2010-10-28 04:46 at before. we want use 'tracking_backfire' as the develop branch. that's why we point the HEAD to it. 2010-10-28 04:48 but for now. we switch back to master. but we haven't modify the server setting. 2010-10-28 04:48 what is the procedure? how are commits from tracking_backfire getting to the master? 2010-10-28 04:48 the master branch is base on tracking_backfire, all trackiing_backfire have goto master 2010-10-28 04:49 on the server side? 2010-10-28 04:49 kyak: yes. 2010-10-28 04:49 well ok, let it be so :) 2010-10-28 04:51 kyak: take a look this email : http://lists.en.qi-hardware.com/pipermail/discussion/2010-October/005904.html 2010-10-28 04:51 kyak: we rename a lot  on openwrt-xburst :) 2010-10-28 04:51 kyak: I have one question about package: ben-cyrillic 2010-10-28 04:52 kyak:  after run 'russian.sh', then we can input  and display Russian , right?? 2010-10-28 07:39 kristianpaul: http://debian.pastebin.com/AapQsn42 2010-10-28 07:41 kristianpaul: that is an example of how the new install script tool works.. Now, (until somebody fixes opkg/ipkg or set apt useful for OE) we do not need to wait hours to install something :) .. and also it does not need swap ;) 2010-10-28 09:50 hi!! 2010-10-28 09:53 hola heberth 2010-10-28 09:53 great rafa ! 2010-10-28 09:54 jejeje kristianpaul  hola!! 2010-10-28 09:55 heberth: sobre elusb host no creo aun este en camino 2010-10-28 09:56 digo esta como una deseo pero faltan otros nanos por vender aun para pensar en la sigueinte version 2010-10-28 09:56 hmm heberth  ! 2010-10-28 09:56 kristianpaul:  me decias que ya hay compradores para encargar? 2010-10-28 09:56 que ya ahy gente para pedirlos? 2010-10-28 09:57 hay 2 2010-10-28 09:57 quienes? 2010-10-28 09:57 vos y un mande bogota 2010-10-28 09:58 bueno depronto hay otra persona en bogota serian 3 2010-10-28 09:58 mmm y ronald? 2010-10-28 09:58 ;) 2010-10-28 09:58 jajaj 2010-10-28 09:58 de donde.. 2010-10-28 09:58 el tiene uno ya 2010-10-28 09:58 a ronald no e que se lo iban a regalar? 2010-10-28 09:58 pero est en espa;a 2010-10-28 09:58 por eso 2010-10-28 09:58 un primo pero esta en espa;a ya se lo compro pero no lo ha enviado 2010-10-28 09:58 jum 2010-10-28 09:58 no se.. 2010-10-28 09:58 pero eso escuche.. 2010-10-28 09:58 XDS 2010-10-28 09:59 jajaj .. eso 2010-10-28 10:00 entonces heberth podrias comprar una board de AVT2 2010-10-28 10:00 que es el la board de prubeas de la siguiente version del nanonote 2010-10-28 10:00 y esa si tiene usbhost 2010-10-28 10:00 pero es algo mas cosotosa que un nanonote pues no hay muchas 2010-10-28 10:00 ahhhh 2010-10-28 10:00 english mode 2010-10-28 10:01 heberth: why you need usb host? 2010-10-28 10:01 you already have a usb dongle to connect to the nanote? 2010-10-28 10:04 medio entiende.... 2010-10-28 10:04 heberth: i think you can explore a lot of features witht the nannote as it is 2010-10-28 10:04 heberth: ;) 2010-10-28 10:04 bueno espa;onl entonces 2010-10-28 10:04 heberth: que por que quries usb host? 2010-10-28 10:04 y fdigo tambien que hay mucho que explorar del nanonote asi como es ahora 2010-10-28 10:04 no no no.. 2010-10-28 10:04 yo se que asi como esta el nano se le puede explorar mucho!! 2010-10-28 10:04 ah bueno :) 2010-10-28 10:05 pero seria bueno que tubiese usb host 2010-10-28 10:05 por decir si una persona que no le gusta nada los sistemas.. 2010-10-28 10:05 pero quiere tener su musica rapida en el nano.. 2010-10-28 10:05 hay esta ! 2010-10-28 10:05 arranca en 15 s4gundos 2010-10-28 10:05 jajaja.. 2010-10-28 10:05 y puede repdrucir musica 2010-10-28 10:05 como? 2010-10-28 10:06 bueon la pasa en la memoria uSD 2010-10-28 10:06 lo digo por pasar la musica de mi pc de escritorio al nano 2010-10-28 10:06 en la microsd 2010-10-28 10:06 si si si .. 2010-10-28 10:06 claro.. 2010-10-28 10:06 se le habia olvidado la micro 2010-10-28 10:06 no es tan grave, asi fuenciona un mp4 ahora 2010-10-28 10:06 heberth: es muy importante !! 2010-10-28 10:06 oe otra pregunta como es eso del wi-fi por micro sd? 2010-10-28 10:06 el puero usd lo podes usar para conectar dispositivos 2010-10-28 10:07 inclusives leds o pulsadores 2010-10-28 10:07 es muy facil ! 2010-10-28 10:07 la micro sd tiene un puerto SPI, eso permite conectar dipositivos de varios tipos 2010-10-28 10:07 uan tarjeta con wifi es uno 2010-10-28 10:08 pero son costosas 2010-10-28 10:08 pero al conectarla el nano ya queda con internet ? 2010-10-28 10:08 normla? 2010-10-28 10:08 pues es laidea 2010-10-28 10:08 no heprobado creo tuxbrain tiene una 2010-10-28 10:08 pero no esta por estos lados para contarnos como le fue 2010-10-28 10:08 creo que el fue el que iso la explicacion en la wiki? 2010-10-28 10:09 creo fue wolfspraul 2010-10-28 10:10 y otros mas :) 2010-10-28 10:10 menos kristianpaul 2010-10-28 10:10 jeje 2010-10-28 10:10 pero tranaquilo ! 2010-10-28 10:10 loque pasa es que no queremos usar wifi cerradas 2010-10-28 10:11 hay otras iniciativas actualmente para darle al nannote conexion inalambrica 2010-10-28 10:11 como cuales? 2010-10-28 10:12 entiende mejor las faltas de ortgrafia en Ingles. El irc destruye neuronas 2010-10-28 10:13 jluis: :) 2010-10-28 10:14 heberth: http://downloads.qi-hardware.com/people/werner/wpan/atusd/atusd-20100908-inserted.jpg 2010-10-28 10:15 http://www.almesberger.net/misc/ben/wpan/ 2010-10-28 10:15 :O 2010-10-28 10:15 http://projects.qi-hardware.com/index.php/p/ben-wpan/ 2010-10-28 10:16 heberth: ;) 2010-10-28 10:16 ese dispositivo quien o lo desarrollo? 2010-10-28 10:16 almesberger.net 2010-10-28 10:16 werner 2010-10-28 10:16 pero por que puerto del nano trabaja? 2010-10-28 10:16 uSD 2010-10-28 10:16 osea .. ahy a que esta conectado? 2010-10-28 10:16 puerto uSD 2010-10-28 10:16 ya ya ya 2010-10-28 10:17 que elegante!! 2010-10-28 10:20 :) 2010-10-28 10:20 estan los otros moduloes los rmf12b 2010-10-28 10:21 es otra opcion para darle conexion sin cable al nanonote 2010-10-28 10:21 si compra el nano le paso uno para que experimente ;) 2010-10-28 10:21 podria controlar el pinguino desde el nanonote 2010-10-28 10:21 o algo asi 2010-10-28 10:22 heberth: le queda facil comprar el nanonote en estados unidos? 2010-10-28 10:22 pues la verdad .. no creoo 2010-10-28 10:22 por que en freedomincluded.com/ lo van a vender tambien 2010-10-28 10:22 hmmm 2010-10-28 10:22 que me lo compren seria facil.. 2010-10-28 10:22 bueon toca esperar reunir mas gente 2010-10-28 10:22 pero que me lo manden.. 2010-10-28 10:23 tambin! 2010-10-28 10:23 para eso esta el correo postal 2010-10-28 10:23 25 dolares le vale 2010-10-28 10:23 o 5 dolares sin seguro 2010-10-28 10:23 jejeje.. 2010-10-28 10:24 djbclark: do you have nanonotes avaliable to ship/sell in-side the USA ? 2010-10-28 10:24 oe kristianpaul  y por que no traen a vender aca a colombia? 2010-10-28 10:25 heberth: presteme dos millones de pesos y le hacemos 2010-10-28 10:25 ;) 2010-10-28 10:25 jeejej 2010-10-28 10:25 con dos millones cuantos se trae? 2010-10-28 10:26 10 unidades para venderlas aprox en 260 - 270 mil y recuperara lo invertido 2010-10-28 10:26 claor que el dolar baja y baja 2010-10-28 10:26 tal ves se puedea llegara  250mil 2010-10-28 10:28 claro.. 2010-10-28 10:30 http://linux.slashdot.org/story/10/10/28/0113244/Microsoft-Charging-Royalties-For-Linux if anyone is interested 2010-10-28 10:32 kristianpaul: forgive my ignorance - is this Spanish? http://www.puntogeek.com/2010/10/26/ya-tengo-mi-nanonote-y-suman-1000-compradores/ 2010-10-28 10:32 wolfspraul: yes it is 2010-10-28 10:33 I cannot easily tell the difference between Spanish and Portuguese :-) 2010-10-28 10:33 ah ok THANKS! 2010-10-28 10:33 wolfspraul: no problem ignore the same when is deutsch :/ 2010-10-28 10:33 i ignore* 2010-10-28 10:39 who is Jaume? 2010-10-28 10:40 le regalo el nano al pelao? 2010-10-28 10:40 ni idea 2010-10-28 10:40 lo compro 2010-10-28 10:41 Jaume debe ser de tuxbrain 2010-10-28 10:58 kristianpaul: not quite there yet. RISCI_ATOM just handed off an alpha unit to me yesterday. I'm hoping we'll get there before black friday (Nov 26). (To those not in US: http://en.wikipedia.org/wiki/Black_Friday_(shopping) ) 2010-10-28 11:00 que yo sepa los nombres de tuxbrain David y Victor 2010-10-28 11:08 jluis: quien sabe quien sera Jaume entonces... 2010-10-28 11:24 no lo se pregunta a tuxbrain (David). Segun el post no sabia ni de la existencia de la tienda 2010-10-28 14:48 larsc, you really norwegian or just working in norway? 2010-10-28 15:38 kristoffer: it's another lars on the mailinglist 2010-10-28 15:39 aaaaah 2010-10-28 20:18 wpwrak: you rose from the ashes! 2010-10-28 20:19 what happened in the end? 2010-10-28 20:21 wpwrak: wb ! 2010-10-28 20:32 /names 2010-10-28 20:32 :) 2010-10-28 23:54 [commit] Xiangfu Liu: [uboot-xburst] move lcd init more early http://qi-hw.com/p/openwrt-xburst/a510aa3