galiven has quit [Ping timeout: 246 seconds]
galiven has joined #neo900
<Joerg-Neo900> atk: could you please check if there's a way to change /srv/git/bin/cg-neo900 from >>GIT_COMMITTER_NAME="Generated from internal repo" \ GIT_COMMITTER_EMAIL="nobody@neo900.org" \ ${0%-neo900} --exclude="**/*.kicad_pcb" \ --exclude="**/*.kicad_mod" --exclude="**/*.fpd" \ --exclude="**/*.mod" "$@"<< to a concept like >>--exclude=*; --include *.sch --include *.foo --include *.bar<< ?
<Joerg-Neo900> mistakes/misconceptions on my side in above quite possible, I hope the idea is nevertheless clear
knttl has quit [Ping timeout: 240 seconds]
knttl has joined #neo900
ArturShaik has joined #neo900
ArturShaik has quit [Ping timeout: 248 seconds]
ArturShaik has joined #neo900
jonsger has joined #neo900
rhn has joined #neo900
rhn has quit [Changing host]
rhn has joined #neo900
xmn has joined #neo900
jonsger has quit [Ping timeout: 240 seconds]
Kabouik_ has quit [Ping timeout: 240 seconds]
qwazix has quit [Ping timeout: 240 seconds]
ravelo has joined #neo900
<ravelo> regarding gemini pda
<ravelo> someone posted about linux finally who saw the prototype at mwc
<ravelo> "They were only using the X25 chipset but I saw Linux via chroot from Android and also direct boot to Debian. They are using LK as the bootloader. The benefit of Linux inside Android was that you could use the android modem and wifi drivers and that you could do what you needed quickly without having to reboot. It also used an Android SDL Xserver."
qwazix has joined #neo900
Kabouik_ has joined #neo900
jonsger has joined #neo900
xmn has quit [Quit: Leaving.]
bl33d15 has joined #neo900
err0r3o3 has quit [Ping timeout: 246 seconds]
err0r3o3 has joined #neo900
ravelo has quit [Quit: Connection closed for inactivity]
xray256 has quit [Ping timeout: 240 seconds]
xray256 has joined #neo900
ravelo has joined #neo900
ravelo has quit [Changing host]
ravelo has joined #neo900
jonsger has quit [Ping timeout: 240 seconds]
bl33d15 has quit [Ping timeout: 246 seconds]
freemangordon_ has quit [Ping timeout: 240 seconds]
Pali has joined #neo900
Kabouik_ has quit [Read error: Connection reset by peer]
Kabouik has joined #neo900
Kabouik has quit [Remote host closed the connection]
Kabouik has joined #neo900
pagurus` has quit [Ping timeout: 240 seconds]
pagurus has joined #neo900
Kabouik has quit [Ping timeout: 240 seconds]
xmn has joined #neo900
err0r3o3 has quit [Ping timeout: 260 seconds]
cc___ has joined #neo900
<atk> Joerg-Neo900: no, that's not an option given by git log
<atk> Joerg-Neo900: but I guess you could use find to get a list of files to exclude
<Joerg-Neo900> atk: a pity
<Joerg-Neo900> hah, nice idea
<atk> well
<atk> find a list of extensions to exclude and files without extensions
<atk> Joerg-Neo900: which extensions do you want to include, and I'll look into extending the script
<Joerg-Neo900> find *, then exlude from that the files we *do* want to publish, like find .|grep -v "*.sch|*.foo|*.bar"
<atk> no need to grep, find can do that
<Joerg-Neo900> metacollin: wpwrak: which fuiles are those we want to pusblish?
<Joerg-Neo900> atk: can we read a file with list of regex to publish?
<atk> find . ! -name "*.foo" -a ! -name "*.bar"
<atk> not regex, glob
<atk> but sure
<atk> you could... do some xargs abortion to do that.
<Joerg-Neo900> glob, sure :-)
<Joerg-Neo900> gotta run for some RL obligations, bbl
ArturShaik has quit [Ping timeout: 240 seconds]
jkepler has joined #neo900
<atk> Joerg-Neo900: http://sprunge.us/YTLf - here's a list
<atk> Joerg-Neo900: feel free to come back with a list of extensions (And filenames) and I'll put together a thing
Kabouik has joined #neo900
vlitzer has joined #neo900
<Joerg-Neo900> wpwrak: metacollin: please review and evaluate http://susepaste.org/10387572 http://susepaste.org/25265382
<Joerg-Neo900> (and whoever interested)
<Joerg-Neo900> atk: sorry, I don't really understand this list, since for example *.khotkeys is in /hw/ here. Anyway I'm way too uneducated regarding kicad filetypes to decide which of those shall get published and which contains layout/footprint data that shouldn't. Plus we probably want to publish all files that are not related to kicad, like *.khotkeys, README etc
<Joerg-Neo900> maybe as a rule of thumb we may assume that all files that were included in a commit of 2 or 3 months ago are supposed to get published, except if there were any that had kicad(!) footprint files (not fped)
<Joerg-Neo900> (review) OOPS error in design, U410 IN needs pulldown to disconnect, U706 will pull UP after getting configured
<Joerg-Neo900> hmm no, sorry. I got temporarily confused. Only the writing in U410 is incorrect
<Joerg-Neo900> here the corrected part: http://susepaste.org/90455773
<atk> Joerg-Neo900: it's a list of extensions (beginning with a . and no slash) and files (beginning with a . and a slash) which exist in ee-full
<Joerg-Neo900> I probably can tell for sure we don't want to publish .brd, .b#1 .b#2 etc
<Joerg-Neo900> .bck .kicad_pcb .s#1
<Joerg-Neo900> not sure about a lot like .kicad_mod .mod .lbr .png .step .STEP .stp ...
<Joerg-Neo900> the .*mod are likely footprints which shall NOT get published, but it needs metacollin and/or wpwrak to confirm
<Joerg-Neo900> .net is probably dynamically generated and thus no subject to publishing
<Joerg-Neo900> atk: sorry for the noise, I first need to sort this out with metacollin and wpwrak
<atk> .mod and .kicad_mod are already excluded
<atk> I imagine this doesn't all need to be solved right now or even today, so feel free to talk with whoever you need to talk with
<Joerg-Neo900> will do, thanks!
<atk> I'll paste the command I used to get that list: find . ! "(" -path "./.git" -prune ")" -type f ! "(" -name ".git*" ")"|grep "\.[^.]*$" -o|sort -u
<Joerg-Neo900> wow
<atk> Just so I don't lose it, it's now in mine (and everyone else's) log :P
<Joerg-Neo900> :-)
<Joerg-Neo900> that's the spirit
* Joerg-Neo900 idly ponders to git-push the schematics changes, but I guess that can wait too until metacollin and wpwrak reviewed it
<Joerg-Neo900> at least cursory
<Joerg-Neo900> wpwrak: re analog switch metacollin and I found the propagation delay in SLG way too high to route I2C_SCL through that chip
<Joerg-Neo900> wpwrak: for the rationale: we want to avoid needing preprogrammed (for address) SLG46533
<Joerg-Neo900> and yes, it needs evaluation if we even *can* change the I2C addr via I2C
<Joerg-Neo900> odds are we cannot
err0r3o3 has joined #neo900
<Joerg-Neo900> alternative: full bitbang I2C for U402 from U706. Sucks
<Joerg-Neo900> but feasible
<Joerg-Neo900> but then, bitbanging via an IO extender is prolly simpler
err0r3o3 has quit [Quit: err0r3o3]
jcarpenter2 has joined #neo900
err0r3o3 has joined #neo900
Pompingsquatsley has joined #neo900
jcarpenter2 has quit [Ping timeout: 246 seconds]
Pompingsquatsley is now known as jcarpenter2
err0r3o3 has quit [Quit: err0r3o3]
rhn has quit [Ping timeout: 260 seconds]
xray256 has quit [Ping timeout: 264 seconds]
err0r3o3 has joined #neo900
xray256 has joined #neo900
<Joerg-Neo900> metacollin: wpwrak: nevermind, moot effort, writing I2C-addr (reg:<1867:1864>) via I2C is invalid
err0r3o3 has quit [Quit: err0r3o3]
* Joerg-Neo900 has a deja-vu
<Joerg-Neo900> a pity
err0r3o3 has joined #neo900
tierce_ has joined #neo900
err0r3o3 has quit [Quit: err0r3o3]
raoulzecat has quit [Ping timeout: 240 seconds]
ravelo has quit [Quit: Connection closed for inactivity]
Pali has quit [Remote host closed the connection]
err0r3o3 has joined #neo900
pagurus` has joined #neo900
pagurus has quit [Ping timeout: 240 seconds]
Kabouik_ has joined #neo900
Kabouik has quit [Read error: Connection reset by peer]
Kabouik_ has quit [Remote host closed the connection]
Kabouik_ has joined #neo900
vlitzer has quit [Ping timeout: 240 seconds]