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