Wednesday, 2018-03-07

*** tpb has joined #timvideos00:00
*** nueces has quit IRC00:54
*** nueces has joined #timvideos00:55
*** nueces has quit IRC00:56
*** nueces has joined #timvideos00:57
*** nueces has quit IRC00:59
*** samsagaz has joined #timvideos02:04
*** sb0 has quit IRC03:19
*** samsagaz has quit IRC03:20
*** rohitksingh_work has joined #timvideos03:52
*** techman83 has quit IRC04:28
*** techman83 has joined #timvideos04:28
*** ChanServ sets mode: +v techman8304:28
futarisIRCcloudrohitksingh_work & mithro: Those USB Host boards just arrived. USB3300 and some MAX3421E PCBs from eBay.  USB3300 is the same as the WaveShare board.04:47
rohitksingh_workNice!04:51
*** cr1901_modern1 has joined #timvideos04:54
*** cr1901_modern has quit IRC04:56
futarisIRCcloudrohitksingh_work:  Shipped from China in less than a week. https://www.ebay.com.au/itm/191891123043 ... Still have to wait a couple of weeks for the oshpark PCBs.04:56
tpbTitle: USB3300 USB HS Board Host ULPI Connector MIC2075-1BM ULPI Interface PHY Device S | eBay (at www.ebay.com.au)04:56
futarisIRCcloudrohitksingh_work: https://github.com/ObKo/USBCore is another verilog core. He's got a ULPI pmod on that github too.05:02
tpbTitle: GitHub - ObKo/USBCore: USB Full-Speed/Hi-Speed Device Controller core for FPGA (at github.com)05:02
rohitksingh_workfutarisIRCcloud: oh that's nice! Thanks for the link! It looks quite good. I'll go through its code05:05
*** cr1901_modern1 has quit IRC05:50
*** cr1901_modern has joined #timvideos05:55
*** aps has joined #timvideos07:45
*** sb0 has joined #timvideos07:49
*** shivm has joined #timvideos08:30
*** shivm has quit IRC08:31
*** futarisIRCcloud has quit IRC09:00
*** Sigyn has quit IRC09:21
*** Sigyn has joined #timvideos09:22
*** futarisIRCcloud has joined #timvideos09:52
futarisIRCcloudhttps://twitter.com/hedgeberg/status/971178485657079808?s=1909:52
*** Peetz0r has quit IRC10:54
*** Peetz0r has joined #timvideos10:55
*** rohitksingh_wor1 has joined #timvideos10:59
*** rohitksingh_work has quit IRC11:02
*** sb0 has quit IRC11:30
*** sb0 has joined #timvideos12:04
*** techman83 has quit IRC12:23
*** techman83 has joined #timvideos12:24
*** ChanServ sets mode: +v techman8312:24
*** futarisIRCcloud has quit IRC12:30
*** rohitksingh_wor1 has quit IRC12:36
*** aps has quit IRC16:46
*** harshgugale has joined #timvideos17:06
*** harshgugale has quit IRC17:13
*** wcmckee has quit IRC17:37
*** suhdood has joined #timvideos18:23
cr1901_modernmithro: Any update on merging the litex changes? I'm currently blocked on that for the SD card stuff, among other things.19:07
cr1901_moderntravis was complaining about a missing tcl file19:07
mithrocr1901_modern: Probably not going to happen until the weekend19:08
cr1901_modernOkay... well, adding the spi flash config stuff is also kinda blocked. I guess in the meantime I'll look into conda/appveyor on Windoze19:09
mithrocr1901_modern: Start with openocd I think19:15
cr1901_modernmithro: Well the first thing I need to figure out is how to get prerequisite libraries that you expect the user to have installed already onto a windows machine19:18
cr1901_modern(like libftdi/libusb)19:18
mithrocr1901_modern: That might explain why I was adding libusb to our conda packages...19:22
mithrocr1901_modern: https://github.com/mithro/conda-hdmi2usb-packages/tree/libusb19:23
tpbTitle: GitHub - mithro/conda-hdmi2usb-packages at libusb (at github.com)19:23
cr1901_modernmithro: That was a bad example. I'm sure there are others :P19:23
mithrocr1901_modern: OpenOCD doesn't have a lot of dependencies?19:23
cr1901_modernNo... if memory serves, just libusb/libftdi19:24
cr1901_modernwhat I was getting at is that I agree that if your distro provides them, use the distro-provided libusb/libftdi19:24
cr1901_modernBut perhaps Windows should provide them as conda packages b/c the package management stuff on windoze, well kinda sucks19:25
cr1901_modern(not to mention we still need bash)19:25
mithrocr1901_modern: I'd hope to get rid of the bash dependency19:25
cr1901_modernmithro: Could we get rid of make as well possibly/swap to meson?19:26
cr1901_modernWell not now*19:26
mithrocr1901_modern: Potentially - but that is a pretty big ask19:26
cr1901_modernBut just thinking ahead19:26
mithrocr1901_modern: But yes19:26
cr1901_modernmithro: You are aware that there are two ABIs used for Windows, right?19:27
mithrocr1901_modern: Nope!19:27
mithrowell kinda but I don't really care19:27
cr1901_modernFair. Just thinking about whether to build on Windows or cross-compile via mingw.19:29
cr1901_modernhttps://anaconda.org/anaconda/make Thank God19:30
mithrocr1901_modern: Being able to cross-compile via mingw would be a pretty big win19:30
cr1901_modernmithro: I will see what I can do, as I normally compile natively via mingw6419:31
cr1901_modernI don't have a problem w/ it, but need to experiment19:32
cr1901_modernI wish it were possible to see what files/dep an anaconda package provides19:33
cr1901_modern(without installing it)19:33
mithrocr1901_modern: FYI - You can just download the package and use tar to list the contents19:33
mithrocr1901_modern: The API here -> https://api.anaconda.org/docs might have something a bit more useful?19:35
mithrowget https://anaconda.org/mithro/vtr/7.0.5/download/linux-64/vtr-7.0.5-5680.1803060527.g670111a73.tar.bz2 -O- | tar -jvx info/recipe/meta.yaml -O19:36
cr1901_modernoh cool19:39
mithrocr1901_modern: I'd like to only upload a new build to anaconda when we actually changed something in which affected the package19:41
cr1901_modernWell I mean, we'll have to upload the windows versions of the packages. They're not uploaded yet!19:42
mithrocr1901_modern: This was more a reason why I was playing with the API / metadata in the meta.yaml file19:43
cr1901_modernmithro: Right now, I don't actually understand. What _is_ the current status of running HDMI2USB/litex-buildenv on Windoze, conda or otherwise?19:45
cr1901_modernI know without conda is unsupported period (although I do it anyway)19:45
mithrocr1901_modern: The only person who is doing it is you and xobs19:45
cr1901_modernWell presumably we're both using mingw64 (can't compile gcc w/o it)19:46
mithrocr1901_modern: Nope, xobs is using that compatibility layer thingy19:46
mithrohttps://github.com/timvideos/litex-buildenv/wiki/Bash-On-Windows19:47
tpbTitle: Bash On Windows · timvideos/litex-buildenv Wiki · GitHub (at github.com)19:47
cr1901_modernDamnit19:47
*** suhdood has quit IRC19:50
CarlFKso far I have only heard good things about it (bash on win)19:51
cr1901_modernI use 7, so I don't have access to it19:52
CarlFKoh, well that's a problem19:52
*** cr1901_modern1 has joined #timvideos19:55
*** cr1901_modern has quit IRC19:58
*** phls has joined #timvideos20:51
phlsHi, how can I buy a opsis board?20:53
mithrohttps://lwn.net/SubscriberLink/748198/0dd62d0b640b4a24/21:06
tpbTitle: Shrinking the kernel with a hammer [LWN.net] (at lwn.net)21:06
mithrophls: https://numato.com/product/numato-opsis-fpga-based-open-video-platform21:06
mithroThat LWN link seems like it could be *super* useful for us21:16
*** Peetz0r has quit IRC21:17
*** Peetz0r has joined #timvideos21:17
CarlFK[m]mithro: did you land that edid fix?21:56
mithroCarlFK[m]: can't until I fixed the above issue that cr1901_modern1 was talking about21:56
CarlFK[m]k - just making sure it didn't slip past me, or get forgotten about21:57
mithroCarlFK[m]: Keep bugging me22:38
CarlFKrodger that22:38
*** Kripton has quit IRC22:52
*** Kripton has joined #timvideos22:53
*** Peetz0r has quit IRC23:23
*** Peetz0r has joined #timvideos23:25
*** futarisIRCcloud has joined #timvideos23:31
futarisIRCcloudModern XIP in Linux looks cool. Its been in uClinux since early 2000s.23:37

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