Turl changed the topic of #linux-sunxi to: Allwinner/sunxi /development discussion - did you try looking at our wiki? https://linux-sunxi.org - Don't ask to ask. Just ask and wait! - https://github.com/linux-sunxi/ - Logs at http://irclog.whitequark.org/linux-sunxi
jstein has quit [Remote host closed the connection]
skiboy has quit [Quit: Leaving]
clemens3 has quit [Ping timeout: 264 seconds]
chomwitt has quit [Quit: WeeChat 1.0.1]
ep_ has quit [Quit: Leaving]
kaspter has joined #linux-sunxi
Andy-D_ has quit [Ping timeout: 256 seconds]
kaspter has quit [Client Quit]
kaspter has joined #linux-sunxi
return0e has quit []
return0e has joined #linux-sunxi
return0e has quit [Client Quit]
juri_ has quit [Ping timeout: 256 seconds]
Ntemis has quit [Read error: Connection reset by peer]
return0e has joined #linux-sunxi
juri_ has joined #linux-sunxi
BenG83 has quit [Ping timeout: 240 seconds]
skiboy has joined #linux-sunxi
xes has quit [Quit: bye..]
cnxsoft has joined #linux-sunxi
cnxsoft has quit [Quit: cnxsoft]
cnxsoft has joined #linux-sunxi
nuuuciano_ has quit [Ping timeout: 260 seconds]
Nyuutwo has joined #linux-sunxi
Ntemis has joined #linux-sunxi
Ntemis has quit [Remote host closed the connection]
nuuuciano_ has joined #linux-sunxi
xes has joined #linux-sunxi
nuuuciano_ has quit [Ping timeout: 256 seconds]
nuuuciano_ has joined #linux-sunxi
aalm has quit [Ping timeout: 256 seconds]
<wens> for PowerVR 6, there is an open source driver in the chromium tree, for MTK devices
aalm has joined #linux-sunxi
kloczek has joined #linux-sunxi
kloczek has quit [Remote host closed the connection]
junnie_ has joined #linux-sunxi
JohnDoe_71Rus has joined #linux-sunxi
dddddd has quit [Remote host closed the connection]
nots has quit [Quit: Page closed]
cnxsoft has quit [Read error: Connection reset by peer]
cnxsoft has joined #linux-sunxi
junnie_ has quit [Ping timeout: 264 seconds]
<icenowy[m]> ElBarto: no, but in Linux it will be shutdown to save power.
<icenowy[m]> wens: only kernel part of kernel+userspace?
<wens> icenowy[m]: not sure, I only looked at the kernel sources
TheSeven has quit [Ping timeout: 240 seconds]
<icenowy[m]> oh interesting I think A80 is also rogue 6
<icenowy[m]> oh I mean powervr 6
pg12 has quit [Quit: ZNC - http://znc.in]
aalm has quit [Remote host closed the connection]
aalm has joined #linux-sunxi
reddog_ has quit [Ping timeout: 260 seconds]
TheSeven has joined #linux-sunxi
TheSeven has quit [Ping timeout: 276 seconds]
TheSeven has joined #linux-sunxi
IgorPec has joined #linux-sunxi
foxx_ has joined #linux-sunxi
<wens> yes, which is why I was looking
lurchi_ has joined #linux-sunxi
lurchi__ has quit [Ping timeout: 256 seconds]
reinforce has joined #linux-sunxi
lurchi_ is now known as lurchi__
nuuuciano_ has quit [Remote host closed the connection]
nuuuciano has joined #linux-sunxi
junnie_ has joined #linux-sunxi
nixdork has quit [Quit: EliteBNC free bnc service - http://elitebnc.org/]
aalm has quit [Ping timeout: 260 seconds]
nixdork has joined #linux-sunxi
bamvor has quit [Changing host]
bamvor has joined #linux-sunxi
bamvor has joined #linux-sunxi
Ntemis has joined #linux-sunxi
hanni76 has joined #linux-sunxi
nuuuciano has quit [Ping timeout: 260 seconds]
nuuuciano has joined #linux-sunxi
Ntemis has quit [Read error: Connection reset by peer]
xes_ has joined #linux-sunxi
xes has quit [Ping timeout: 248 seconds]
anarsoul has quit [Ping timeout: 240 seconds]
anarsoul has joined #linux-sunxi
codekipper has quit [Ping timeout: 264 seconds]
arete74 has joined #linux-sunxi
fkluknav has joined #linux-sunxi
mpmc has quit [Ping timeout: 248 seconds]
mpmc has joined #linux-sunxi
<oliv3r> Hi, i'm playing around and trying out some things, but i'm getting stuck on 'proper module loading order'. In essence, I have a module, that requires a clock to be running from a nother module. So i have the clk_prepare_enable(clk_get_parent(clk)) step in my probe function. However, that only works if the parent clock provider is already loaded. Sadly, the clk_prepare_enable(parent_clk) does not probe/load/enable the
<oliv3r> clock if the module is not loaded yet. How can I get parent supplying module to be loaded? I do have a reference in the device tree setup as well using clocks = <&parent 0>;
<oliv3r> (parent only has 1 clock)
clemens3 has joined #linux-sunxi
iamfrankenstein has quit [Ping timeout: 260 seconds]
leviathanch_ has quit [Read error: Connection reset by peer]
nuuuciano has quit [Ping timeout: 240 seconds]
_0x5eb_ has joined #linux-sunxi
codekipper has joined #linux-sunxi
leviathan has joined #linux-sunxi
leviathan has quit [Remote host closed the connection]
leviathan has joined #linux-sunxi
<mripard> oliv3r: call clk_get
<mripard> and check your return code
tom_nov has joined #linux-sunxi
d__ed is now known as d_ed
d_ed has quit [Changing host]
d_ed has joined #linux-sunxi
lemonzest has joined #linux-sunxi
<oliv3r> mripard: yeah i'm changing it to devm_clk_get right now, but i was under the impression (assumptions and all that) that clk_get_parent would sort out the details :)
<wens> nope
<oliv3r> so i'll ask the hw_clk what the parent_name(s) is, and then clk_get on the parent_name
<oliv3r> btw, any of you went to FOSDEM?
<oliv3r> i missed it ;9
<oliv3r> well wasn't able to
<mripard> but why are you doing that
<mripard> call clk_get, clk_prepare_enable on the clock
<mripard> done.
<mripard> you don't need to take care about the parent at all
<wens> oliv3r: when you call clk_get, what you get is <&parent 0>;
<wens> so it would return -EPROBE_DEFER if it's missing
<wens> why would you call clk_get_parent anyway
<oliv3r> which i can then return to the caller which would sort things automagically
<oliv3r> well because I want to 'enable' the parent clock :p so clk_get_parent sounded like what i needed
<wens> try actually reading the API docs, instead of just guessing
<oliv3r> i find the clock docs to be very light on details
<oliv3r> i still have them open, so i'll re-read them again
<oliv3r> maybe i did missunderstand something
<mripard> maybe because you're overthinking it ?
<oliv3r> quite likley
<mripard> it really is just as simple as calling clk_get and then clk_prepare_enable
<oliv3r> alright, i'll dig into it
<oliv3r> thanks you guys
BenG83 has joined #linux-sunxi
junnie_ has quit [Ping timeout: 248 seconds]
<oliv3r> hmm i did forget to specify that my module does create a clock, and thus the clock'd get would be the parent of the clock i create, maybe that's where the confusion comes from on my end
<wens> blah, it's 7 degrees outside, raining, and no indoor heating x_x
<oliv3r> and clk_register does a few things with the parent via the init data
<wens> the clk framework matches parents by strings, _without_ checking for ordering
<wens> if it's not there, the newly registered clock is orphaned, until that clock is registered
<wens> I suppose the clk provider is supposed to deal with this, by verifying that the parent is actually there
<mripard> and you still don't have to enable the parent clock in this case
<oliv3r> so my clock does it's setup, names the parent clocks in the init table and registers itself, so that when a user of my clock does the clk_prepare_enable() step, it enables all of the clocks int he chiain? my_clk->parent_clk->its_parent etc ...
<oliv3r> because that right now is not working :)
<wens> it should
<wens> but if it was orphaned when it was enabled, the still-non-existent parent won't be enabled
<wens> that is why you need to deal with ordering in your code
xerpi has joined #linux-sunxi
junnie has joined #linux-sunxi
<embed-3d> Mr__Anderson: xerpi: willmore: The right channel for PVR talks would be #powervr. The biggest Problem on those Series5 and Series 5XT GPU (SGX5xx) is the leaked code.
<embed-3d> This is the reason, why I didn't spent much time on this during the last moths/weeks. And mainlinig is nearly impossible with the current situation...
<embed-3d> _BUT_: How can I prove that those informations come from reverse engineering and not from the leaked legacy code?
<embed-3d> Small example: The SGX gpus have an autoclocking feature, for each clock the register is 2 bit wide--> conclusion and testing: 0x0 off, 0x1 on and 0x2 auto.
<xerpi> embed-3d, why do you need to prove that this info comes from RE and not from the leaked code?
<xerpi> in order to be able to mainline the code?
chlorine has joined #linux-sunxi
aalm has joined #linux-sunxi
junnie has quit [Ping timeout: 256 seconds]
<KotCzarny> xerpi: because patent trolls?
<xerpi> patent trolls?
<KotCzarny> you know, the ones that bully everyone around with lawsuits
<Ke> patents are supposedly public, you should never have to reverse engineer to get their contents
<Ke> I reality of course, perhaps...
<KotCzarny> did you hear about free-electrons case?
<KotCzarny> they have to change the name because.. word 'free' was trademarked in france
<montjoie> yes
<embed-3d> xerpi: The leaked code is proprietary closed source! And the license doesn't allow this!!!
<xerpi> yeah but then it's "impossible" to prove you haven't looked at the leaked code :/
<embed-3d> xerpi: That's the problem!!!
<wens> so it's basically dead
<wens> unless they themselves open the stuff up
<KotCzarny> hehe, leaked on purpose?
msimpson has joined #linux-sunxi
<embed-3d> I'm trying since a few moths to move Img Tech to release their leaked code under a opensource license, but they don't want to move....
yann has quit [Ping timeout: 256 seconds]
<wens> a) they don't own the copyright b) they don't want to spend the time to clean it up
<xerpi> yeah seen your tweets
<wens> IIRC b) was a factor back when open source drivers were discussed for Series6
<embed-3d> Img Tech: "We continue to review the options to determine the benefits of an opensource driver but at this point in time we do not have the resouces for this."
chlorine_ has joined #linux-sunxi
<KotCzarny> or in other words, the only person that wrote their drivers is either busy or fired already and no one wants to touch that stuff again
<KotCzarny> ;)
<wens> :)
<embed-3d> :)
<wens> embed-3d: any chance they could provide tips for porting series6 driver to other platforms?
<KotCzarny> in that light we should be happy that aw hired wink to at least work on docs
veremitz has quit [Quit: ZNC - http://znc.in]
chlorine has quit [Ping timeout: 256 seconds]
veremitz has joined #linux-sunxi
junnie has joined #linux-sunxi
<embed-3d> wens: I don't think so. Porting Series6 "opensource" driver to be able to work with mainline should be possible. I allready started this but this gets very fast very ugly!!!
<embed-3d> But the most initialization is done via user space librarys ...
pgreco has joined #linux-sunxi
<montjoie> wens: I still hit the problem with A83T and unusable packet loss ethernet and since I am not the only one to hit it, any idea on how to fix it ?
<wens> montjoie: no idea, as I'm unable to reproduce it
<wens> montjoie: does your board have a revision number?
<montjoie> wens: will check it after work
matthias_bgg has joined #linux-sunxi
<xerpi> embed-3d, actually, SGX is one of the components I care less about of the Vita SoC
<xerpi> I'm more interested in understanding the display engine and DSI blocks
junnie has quit [Quit: Ex-Chat]
junnie has joined #linux-sunxi
<junnie> Is anyone using sopine A64? I just got a board and do not know how to flashing eMMC with FEL. Because u-boot does not build u-boot-sunxi-with-spl.bin for sopine64, so I only have spl for test.
tom_nov has quit [Ping timeout: 256 seconds]
BenG83 has quit [Quit: Leaving]
Putti has joined #linux-sunxi
<oliv3r> wens but the dt 'creates' the ordering no? i mean i set the parent clock via the clocks attribute? the code doesn't know what other module it needs
<oliv3r> and thus i'd need to still call clk_get()
yann has joined #linux-sunxi
<oliv3r> ah, looking at others, clk = clk_get, followed by __clk_get_name(clk)
JohnDoe_71Rus has quit [Quit: KVIrc 4.9.3 Aria http://www.kvirc.net/]
chlorine_ has quit [Ping timeout: 248 seconds]
jbrown has joined #linux-sunxi
tom_nov has joined #linux-sunxi
afaerber has joined #linux-sunxi
BenG83 has joined #linux-sunxi
xerpi has quit [Quit: Leaving]
dlan has quit [Ping timeout: 248 seconds]
skiboy has quit [Quit: Leaving]
chlorine has joined #linux-sunxi
chlorine_ has joined #linux-sunxi
chlorine has quit [Ping timeout: 256 seconds]
chlorine has joined #linux-sunxi
chlorine_ has quit [Read error: Connection reset by peer]
<icenowy[m]> junnie: use specially made 32-bit SPL
chlorine_ has joined #linux-sunxi
chlorin__ has joined #linux-sunxi
chlorine has quit [Ping timeout: 256 seconds]
BenG83 has quit [Remote host closed the connection]
chlorine_ has quit [Ping timeout: 256 seconds]
Xalius_Ph has joined #linux-sunxi
<junnie> icenowy[m]: yes, I use sopine_baseboard_defconfig and aarch64-linux-gnu-gcc. What should I use?
ernestask has joined #linux-sunxi
<hanni76> junnie: you have to concat both files into u-boot-sunxi-with-spl.bin
<hanni76> junnie: I mean ATF + uboot
dddddd has joined #linux-sunxi
<hanni76> junnie: cat $UBOOT_SOURCE_DIR/spl/sunxi-spl.bin $UBOOT_SOURCE_DIR/u-boot.itb > "${UBOOT_SOURCE_DIR}/u-boot-sunxi-with-spl.bin"
<icenowy[m]> junnie: you need to hack Kconfig
<icenowy[m]> to create a 32-bit SPL
chlorin__ has quit [Remote host closed the connection]
cnxsoft has quit [Quit: cnxsoft]
matthias_bgg has quit [Ping timeout: 240 seconds]
<junnie> hanni76: I see atf is /dev/null in u-boot.its. So I suppose it is not needed for non-secure case. Did you run "sunxi-fel uboot u-boot-sunxi-with-spl.bin" to boot uboot?
<hanni76> junnie: no , I never used fel
<hanni76> junnie: i think atf is always needed for a64 (i may be wrong)
<hanni76> junnie: at least you can't build latest u-boot without atf
<junnie> do you use sopine board? It does not support uSD card. So I have to find a way to burn eMMC.
<hanni76> i am using nanopi a64, it is very similar
<junnie> OK, I will find atf for a64.
<junnie> thank you!
<hanni76> use branch "allwinner"
IgorPec has quit [Ping timeout: 256 seconds]
<junnie> nanopi a64 has micro SD card slot, It is more convenient. I have to use fel to load u-boot proper for eMMC flashing.
<Xalius_Ph> Why do you not use sdcard on SOPine?
<junnie> Need to check why SPL complain no boot device is supported. Maybe eMMC is not in device list.
<junnie> I did not find sdcard on the board.
<Xalius_Ph> the sdcard slot is on the SOpine
<junnie> no sd card slot on the back
<Xalius_Ph> on the module
<junnie> I see. So I need buy a module. I only have a eMMC module in the gift box :-)
<Xalius_Ph> you are missing the actual SOPine?
<junnie> you mean the a64 module? Sure I have it on board, a64+DDR+PMIC.
<Xalius_Ph> take it out and look at the back
<junnie> No sd card slot. But there is a winbond IC, I guess it is flash chip.
<junnie> Thank you very much!! I had thought it is a big crystal. I had never see so mall slot.
utnte has joined #linux-sunxi
chlorine has joined #linux-sunxi
Xalius_Ph has quit [Quit: Bye]
utnte has quit [Ping timeout: 256 seconds]
DonkeyHotei has quit [Ping timeout: 256 seconds]
chlorine_ has joined #linux-sunxi
matthias_bgg has joined #linux-sunxi
chlorine has quit [Ping timeout: 248 seconds]
utnte has joined #linux-sunxi
chlorine has joined #linux-sunxi
chlorine_ has quit [Read error: Connection reset by peer]
afaerber has quit [Ping timeout: 265 seconds]
chlorine has quit [Ping timeout: 256 seconds]
nuuuciano has joined #linux-sunxi
nuuuciano has quit [Read error: Connection reset by peer]
afaerber has joined #linux-sunxi
nuuuciano has joined #linux-sunxi
DonkeyHotei has joined #linux-sunxi
elmer___RU has joined #linux-sunxi
tkaiser has joined #linux-sunxi
mpmc has quit [Quit: ZNC 1.6.5+deb1 - http://znc.in]
chomwitt has joined #linux-sunxi
reinforce has quit [Quit: Leaving.]
wasutton3 has quit [Remote host closed the connection]
afaerber has quit [Ping timeout: 265 seconds]
IgorPec has joined #linux-sunxi
wasutton3 has joined #linux-sunxi
codekipp1r has joined #linux-sunxi
codekipper has quit [Read error: Connection reset by peer]
popolon has joined #linux-sunxi
JohnDoe_71Rus has joined #linux-sunxi
Xalius_Ph has joined #linux-sunxi
IgorPec has quit [Ping timeout: 256 seconds]
mpmc has joined #linux-sunxi
afaerber has joined #linux-sunxi
utnte has quit [Ping timeout: 240 seconds]
Xalius_Ph has quit [Quit: Bye]
junnie has quit [Ping timeout: 256 seconds]
utnte has joined #linux-sunxi
chlorine has joined #linux-sunxi
<montjoie> jernej: do you have retested your bpi M3 for the ethernet problem ?
jogoes has joined #linux-sunxi
JohnDoe4 has joined #linux-sunxi
<jogoes> Hi! Hi got a Parrot board v1.1 with A33 R16, and I would like to get a demo .img file to flash it with Phoenix tools. Anyone knos where could I find one of those images? Thanks in advance!
chlorine_ has joined #linux-sunxi
<KotCzarny> one usually goes to vendor for vendor images
<KotCzarny> this channel is about freeing allwinner socs from crappy closed code
JohnDoe_71Rus has quit [Ping timeout: 256 seconds]
<KotCzarny> which means people build their own systems here
<miasma> jogoes: hi, are you one of the scala guys
chlorine has quit [Ping timeout: 240 seconds]
utnte has quit [Ping timeout: 240 seconds]
junnie has joined #linux-sunxi
reinforce has joined #linux-sunxi
<jogoes> Hi
<jogoes> No Im not
<jogoes> I expect to build my own system
<jogoes> but I have no image to start
<jogoes> just to see it working
<jogoes> and then I´ll make a step further
<miasma> the original vendor images might not be good for customizing
<miasma> but you can test the hardware works
utnte has joined #linux-sunxi
hardfalcon has joined #linux-sunxi
xes_ is now known as xes
junnie has quit [Ping timeout: 256 seconds]
return0__ has joined #linux-sunxi
return0e has quit [Ping timeout: 248 seconds]
utnte has quit [Ping timeout: 240 seconds]
juri_ has quit [Ping timeout: 256 seconds]
return0__ has quit [Ping timeout: 256 seconds]
juri_ has joined #linux-sunxi
<tkaiser> jogoes: If you struggle with Phoenixcard (crap IMHO) you might give a random Linux image with mainline kernel a try and exchange .dtb (overwrite with sun8i-r16-parrot.dtb)
Cryterion has joined #linux-sunxi
clemens3 has quit [Ping timeout: 276 seconds]
msimpson has quit [Read error: Connection reset by peer]
msimpson has joined #linux-sunxi
IgorPec has joined #linux-sunxi
return0e has joined #linux-sunxi
gnufan1 has quit [Ping timeout: 240 seconds]
gnufan has joined #linux-sunxi
chomwitt has quit [Quit: WeeChat 1.0.1]
BenG83 has joined #linux-sunxi
scream has joined #linux-sunxi
BenG83 has quit [Remote host closed the connection]
BenG83 has joined #linux-sunxi
BenG83 has quit [Remote host closed the connection]
BenG83 has joined #linux-sunxi
freemangordon has quit [Read error: No route to host]
msimpson has quit [Quit: Leaving]
mpmc has quit [Quit: ZNC 1.6.5+deb1 - http://znc.in]
mpmc has joined #linux-sunxi
Ntemis has joined #linux-sunxi
freemangordon has joined #linux-sunxi
mpmc has quit [Ping timeout: 240 seconds]
BenG83 has quit [Remote host closed the connection]
BenG83 has joined #linux-sunxi
aalm has quit [Ping timeout: 263 seconds]
mpmc has joined #linux-sunxi
BenG83 has quit [Remote host closed the connection]
Jagan has joined #linux-sunxi
lemonzest has quit [Quit: Quitting]
matthias_bgg has quit [Ping timeout: 252 seconds]
chlorine_ has quit [Ping timeout: 252 seconds]
Jagan has quit [Quit: Page closed]
BenG83 has joined #linux-sunxi
lkcl has joined #linux-sunxi
clemens3 has joined #linux-sunxi
tom_nov has quit [Quit: Leaving]
pg12 has joined #linux-sunxi
matthias_bgg has joined #linux-sunxi
yann has quit [Ping timeout: 240 seconds]
BenG83 has quit [Ping timeout: 240 seconds]
anarsoul|2 has joined #linux-sunxi
dev1990 has joined #linux-sunxi
<embed-3d> montjoie: I've tested bpi M3 (current mainline) yesterday, I had to disable the wifi and and wifi_powersequence due to a current bug with ac100/clocking, but I don't see your ethernet problem.
hardfalcon has quit [Ping timeout: 256 seconds]
leviathan has quit [Ping timeout: 240 seconds]
leviathan has joined #linux-sunxi
hardfalcon has joined #linux-sunxi
chlorine has joined #linux-sunxi
hardfalcon has quit [Ping timeout: 240 seconds]
chlorine has quit [Ping timeout: 264 seconds]
lkcl has quit [Ping timeout: 264 seconds]
ernestask has quit [Quit: ernestask]
Wizzup has quit [Ping timeout: 256 seconds]
afaerber has quit [Quit: Leaving]
aalm has joined #linux-sunxi
JohnDoe4 has quit [Quit: KVIrc 4.9.3 Aria http://www.kvirc.net/]
Wizzup has joined #linux-sunxi
iamfrankenstein has joined #linux-sunxi
<montjoie> embed-3d: whats your board revision ?
<montjoie> wens: mine is v1.2
mpmc has quit [Ping timeout: 256 seconds]
lkcl has joined #linux-sunxi
mpmc has joined #linux-sunxi
matthias_bgg has quit [Ping timeout: 256 seconds]
IgorPec has quit [Ping timeout: 256 seconds]
lkcl has quit [Ping timeout: 256 seconds]
hardfalcon has joined #linux-sunxi
nuuuciano has quit [Ping timeout: 265 seconds]
yann has joined #linux-sunxi
nuuuciano has joined #linux-sunxi
foxx_ has quit [Read error: Connection reset by peer]
f0xx has joined #linux-sunxi
<embed-3d> montjoie: v1.2
BenG83 has joined #linux-sunxi
<montjoie> embed-3d: so your ethernet is stable and with good bandwith ?
<embed-3d> but I have some problems with my power connector/power supply ...
<embed-3d> sometimes my board turns of and then I had to rotate the connector till the power is back ...
<embed-3d> montjoie: I don't have any problems there. What for a switch do you use? I can do some load tests on wednesday and try to reproduce your problem. What do you do/see exactly when you have those problems? (a log would be helpful)
<embed-3d> montjoie: Do you have also a boot problem with latest mainline?
f0xx has quit [Ping timeout: 248 seconds]
reinforce has quit [Quit: Leaving.]
tkaiser has quit [Quit: jIRCii - http://www.oldschoolirc.com]
clemens3 has quit [Ping timeout: 264 seconds]
xerpi has joined #linux-sunxi
xerpi has quit [Remote host closed the connection]
xerpi has joined #linux-sunxi
hanni76 has quit [Quit: Leaving]
afaerber has joined #linux-sunxi
elmer___RU has quit [Ping timeout: 248 seconds]
chomwitt has joined #linux-sunxi
leviathan has quit [Remote host closed the connection]
Putti has quit [Ping timeout: 240 seconds]
lkcl has joined #linux-sunxi
fkluknav has quit [Remote host closed the connection]
fkluknav has joined #linux-sunxi
lkcl has quit [Ping timeout: 260 seconds]
scream has quit [Remote host closed the connection]
book` has quit [Quit: Leaving]
Mr__Anderson has joined #linux-sunxi
Mr__Anderson has quit [Client Quit]
book` has joined #linux-sunxi
sunxi_fan1 has joined #linux-sunxi
GrimKriegor has quit [Read error: Connection reset by peer]
GrimKriegor has joined #linux-sunxi
Ntemis has quit [Read error: Connection reset by peer]
chlorine has joined #linux-sunxi
chlorine has quit [Ping timeout: 256 seconds]
xerpi has quit [Quit: Leaving]
chomwitt has quit [Ping timeout: 240 seconds]