Previous day | Jump to hour: 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | Next day

Seconds: Show Hide | Joins: Show Hide | View raw
Font: Serif Sans-Serif Monospace | Size: Small Medium Large

Click in the nick column to highlight everything a person has said.
The Logo icon identifies that the person is a core developer (has commit access).

#rockbox log for 2017-08-11

00:17:03 Quit ZincAlloy (Quit: Leaving.)
00:26:01***Saving seen data "./dancer.seen"
00:32:08 Join __builtin [0] (~franklin@cpe-71-71-34-79.triad.res.rr.com)
00:32:08 Quit __builtin (Changing host)
00:32:08 Join __builtin [0] (~franklin@rockbox/developer/builtin)
00:40:26__builtinwalle303, saratoga: good thinking
00:41:20__builtinthat narrows it down to a few specific possible issues
00:41:56__builtin(since the issue seems specific to this target)
00:43:37__builtintry commenting out all the mutex_* calls in firmware/target/arm/tcc780x/sd-tcc780x.c
00:44:18walle303I thought we already did that
00:45:02 Join smoke_fumus [0] (~smoke_fum@188.35.176.90)
00:52:46 Quit pamaury (Ping timeout: 260 seconds)
00:52:48 Quit lebellium (Quit: ChatZilla 0.9.93 [Firefox 54.0.1/20170628075643])
01:00
01:05:10 Quit ender` (Quit: It's not DNS / There's no way it's DNS / It was DNS)
01:06:04 Quit _meg (Ping timeout: 240 seconds)
01:06:55 Join _meg [0] (~notsure@211.25.203.45)
01:25:03 Quit _meg (Ping timeout: 240 seconds)
01:26:18 Join _meg [0] (~notsure@211.25.203.45)
02:00
02:13:56__builtinwalle303: did you comment them out in that file as well as the bootloader?
02:20:06 Join pirik3 [0] (~pirik3@cpc128650-hawk17-0-0-cust67.know.cable.virginm.net)
02:26:03***Saving seen data "./dancer.seen"
02:28:47 Quit quaz0r (Ping timeout: 260 seconds)
02:56:18 Join quaz0r [0] (quaz@c-67-183-243-24.hsd1.wa.comcast.net)
03:00
03:13:00walle303__builtin: they're not the same file?
03:13:15__builtinit's a different file that I'm referring to now
03:13:34__builtinthe one that made the bootloader work was the i2c driver
03:14:05walle303is ca228d3d8 the current head commit?
03:14:14__builtinyeah
03:15:02__builtinit shouldn't really matter though, all that last commit did was cut a couple bytes from some game plugins
03:15:59walle303just to verify i'm buding this right, i should be running `make clean; make reconf; make -j; make fullzip` for building right?
03:16:32walle303building*
03:17:17__builtinno need for all that
03:17:28__builtinheck, that must take forever
03:17:33walle303just `make -j; make fullzip`?
03:17:39walle303uh, not really, it takes about 40 seconds
03:18:15walle303real0m18.161s
03:18:20walle303that's the build time for that command
03:18:21__builtinyou really only need to type `make -j[# of cpu cores here]', so it only rebuilds what's changed
03:18:55walle303i have an i7-7700k running at 4.8ghz, it builds most stuff extremely fast
03:19:44walle303Commenting out those mutex calls didn't fix the black screen
03:20:10__builtinto recap, you've commented out mutex calls in two files, right? the i2c driver and the sd driver?
03:20:12walle303Although I think it is panicing but not printing it to the display
03:20:50walle303Are we changing the bootloader or the system right now
03:21:29__builtintechnically both since they share some code, but you don't need to update the bootloader since it works already
03:21:57walle303where's the i2c driver again, it probably got undone when i was bisecting
03:22:45__builtinfirmware/target/arm/i2c-telechips.c
03:28:37walle303on a sidenote, is there any usb data implementation at all?
03:28:57__builtinwhat do you mean by usb data?
03:29:13walle303I vaguely remember usb mounting working under rockbox for this device but being extremely buggy
03:29:15walle303Now all the usb does is charge
03:29:35__builtinI'm not sure about the D2, but for some targets we have a full USB stack
03:29:49walle303Yeah, i'm aware it works completely on other devices
03:30:05walle303Also, commenting both the i2c and sd mutex calls makes it boot now
03:30:24walle303ca228d3d8M-170811
03:30:45__builtinboot completely?
03:30:53walle303yeah it works
03:30:59__builtinnice!
03:31:42walle303What are the mutex calls supposed to do?
03:32:18__builtinthey're for exclusively locking a resource so no other thread can use it
03:32:45walle303Ah, so is it unsupported by the cpu in this device or something?
03:33:37__builtinnot really, it's that in certain situations (such as an interrupt handler), blocking, which a mutex could do, doesn't make sense
03:34:59__builtinand therefore having a blocking call such as a mutex lock is bad practice in those cases
03:37:24walle303Makes sense
03:37:44__builtinI'll push a commit to fix it in git
03:38:00walle303Is there a way to dump all ADC values to the screen, I want to look into possibily fixing the battery readout
03:38:37__builtincheck the debug menu
03:38:54walle303Ah "HW Infio"
03:38:57walle303info*
03:40:08__builtinwhat's wrong with the battery readout though?
03:40:19walle303When it's plugged in it drops 30%
03:40:38walle303the voltage drops from 4.1-4.2 to 3.8-3.9 around the full charge point
03:40:46walle303[the voltage it says it has]
03:41:08walle303So the percentage displayed while charging is incorrect
03:41:49__builtinhmm, I'm not sure that removing *all* the mutex lock/unlock calls from the sd card driver is a good idea
03:42:33walle303Yeah, probably not, since an SD is serial, if two things write to it at once it's likely to cause data corruption
03:42:48 Part Gremuchnik ("До скорого")
03:44:22 Quit Jinx (Ping timeout: 246 seconds)
03:46:45__builtinideally I'd be able to know exactly which calls were causing the panic
03:47:35walle303Would the crashes occur in the emulator?
03:47:44__builtinno
03:48:00walle303Is there any way to dump a trace over usb?
03:48:03__builtinall it simulates is the high level stuff
03:48:22__builtinI think there is, but I'm not sure how
03:48:24walle303and if not, does this device have a serial header?
03:48:51walle303I can make use of serial headers if needed
03:49:06 Join Jinx [0] (~Jinx@unaffiliated/jinx)
03:49:08walle303Not JTAGs though, haven't gotten my JTAG thing to actually work
03:52:08__builtinthere are only 4 functions which have calls to mutex_* in them
03:52:15__builtin(in the sd driver)
03:52:41walle303Both the sd driver and the i2c driver have to have them commented out for it to boot though
03:53:03 Quit pirik3 (Ping timeout: 240 seconds)
03:53:30__builtinyeah, the i2c driver is used for button detection in both the bootloader and firmware
03:53:37 Join pirik3 [0] (~pirik3@cpc128650-hawk17-0-0-cust67.know.cable.virginm.net)
03:54:12 Quit Jinx (Quit: reboot)
03:55:21__builtinI'll go ahead and push the change to the i2c driver
03:55:31fs-bluebotBuild Server message: New build round started. Revision 0dbf701, 255 builds, 13 clients.
03:56:20__builtinwalle303: can you restore the sd-tcc780x.c file to its original state and then remove only the mutex_* calls in sd_init()?
03:56:52walle303I only commented them out so i'll just uncomment the others
03:57:48__builtinjudging from other drivers, it seems acceptable to block in calls to sd_[read|write]_sectors(), but not sd_init()
03:58:23 Quit _meg (Ping timeout: 260 seconds)
03:58:46__builtinwait
03:59:09walle303what now, i already built the modified version
03:59:12__builtinsince you're leaving the other calls intact, don't remove the call to mutex_init(), just the lock/unlock ones
03:59:21walle303oh ok
03:59:39 Quit iceCalt (Remote host closed the connection)
03:59:49walle303built again, testing
04:00
04:01:31 Join _meg [0] (~notsure@211.25.203.45)
04:02:00walle303it still works
04:08:13 Quit smoke_fumus (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/)
04:09:10__builtinby only removing mutex_lock/unlock in sd_init(), right?
04:09:19walle303Yeah
04:09:27walle303Oh, and the i2c file
04:09:59walle303but for the sd file, only the ones in sd_init seem to cause it to blackscreen/crash during boot
04:10:57__builtinalright, that's it then
04:11:01__builtinI'll push it
04:11:13 Join idonob_ [0] (~Owner@S010600259c3e7d7b.vs.shawcable.net)
04:11:36 Join krabador [0] (~krabador@unaffiliated/krabador)
04:12:12walle303Is it safe to leave the ones in the i2c driver disabled?
04:12:33__builtinyes, in fact they should remain that way
04:13:11walle303ok then, i'll keep looking into the battery then
04:16:27__builtinI just pushed those two changes (to the i2c and sd drivers)
04:16:37__builtincould you do me a favor and test the autobuild as soon as they're both finished?
04:16:57walle303Ok
04:16:59__builtinit might be a while since the build system's been really weird recently
04:17:20__builtinyou can follow its progress at https://build.rockbox.org/dev.cgi
04:18:13fs-bluebotBuild Server message: Build round completed after 1362 seconds.
04:18:14fs-bluebotBuild Server message: Revision 0dbf701 result: 4 errors 10920 warnings
04:18:15fs-bluebotBuild Server message: New build round started. Revision e00d78d, 255 builds, 12 clients.
04:18:54 Quit idonob (Ping timeout: 260 seconds)
04:18:55 Quit tomflint (Ping timeout: 260 seconds)
04:18:55 Quit tchan (Ping timeout: 260 seconds)
04:18:55 Quit yosafbridge (Ping timeout: 260 seconds)
04:18:55 Quit duo8 (Ping timeout: 260 seconds)
04:18:59 Join yosafbridge [0] (~yosafbrid@68.ip-149-56-14.net)
04:19:48__builtingevaerts: any idea why this is happening?
04:21:48 Join duo8 [0] (~ZNC-SRV-H@27.76.252.96)
04:22:57 Join tomflint [0] (~tomflint@unaffiliated/tomflint)
04:24:37 Join yosafbridge` [0] (~yosafbrid@68.ip-149-56-14.net)
04:26:07***Saving seen data "./dancer.seen"
04:28:15 Quit yosafbridge (Ping timeout: 260 seconds)
04:29:05 Join tchan [0] (~tchan@lunar-linux/developer/tchan)
04:39:30fs-bluebotBuild Server message: Build round completed after 1276 seconds.
04:39:31fs-bluebotBuild Server message: Revision e00d78d result: 4 errors 4858 warnings
04:44:24__builtinwalle303: I'll read the logs, could you tell me if the latest autobuild works?
04:44:29__builtingood night
04:44:36 Quit __builtin (Quit: Leaving)
04:44:44walle303good night
05:00
05:19:24 Join [Saint] [0] (~sinner@rockbox/staff/saint)
05:31:34 Quit _meg (Ping timeout: 240 seconds)
05:32:48 Join _meg [0] (~notsure@211.25.203.45)
06:00
06:05:04 Quit _meg (Ping timeout: 240 seconds)
06:06:12 Join _meg [0] (~notsure@211.25.203.45)
06:10:41 Quit pirik3 (Ping timeout: 260 seconds)
06:11:10 Quit krabador (Quit: Leaving)
06:26:09***Saving seen data "./dancer.seen"
06:38:01 Quit [7] (Disconnected by services)
06:38:07 Join TheSeven [0] (~quassel@rockbox/developer/TheSeven)
06:39:23 Join zlo [0] (d593b152@gateway/web/freenode/ip.213.147.177.82)
06:47:44 Join dys [0] (~dys@tmo-122-194.customers.d1-online.com)
06:48:24 Quit zlo (Ping timeout: 260 seconds)
07:00
07:53:43 Join johnb4 [0] (~johnb2@p5B3AFF39.dip0.t-ipconnect.de)
07:59:29 Quit mc2739 (Ping timeout: 240 seconds)
08:00
08:05:15 Quit johnb4 (Ping timeout: 260 seconds)
08:06:37 Join mc2739 [0] (~mc2739@rockbox/developer/mc2739)
08:25:34 Quit _meg (Ping timeout: 240 seconds)
08:26:04 Join _meg [0] (~notsure@211.25.203.45)
08:26:11***Saving seen data "./dancer.seen"
08:27:04 Join ender` [0] (krneki@foo.eternallybored.org)
08:38:56 Join lebellium [0] (~chatzilla@i15-les04-th2-31-35-19-195.sfr.lns.abo.bbox.fr)
08:41:28 Join TheLemonMan [0] (~lemonboy@irssi/staff/TheLemonMan)
09:00
09:29:15 Quit dys (Ping timeout: 260 seconds)
09:35:39 Join dys [0] (~dys@2003:5b:203b:100:6af7:28ff:fe06:801)
09:52:59 Join deevious [0] (~Thunderbi@193.226.142.214)
10:00
10:00:21 Join jhMikeS [0] (~jethead71@d192-24-173-177.try.wideopenwest.com)
10:10:07 Join MrZeus [0] (~MrZeus@81.144.218.162)
10:15:20 Quit [Saint] (Remote host closed the connection)
10:16:34 Join [Saint] [0] (~sinner@rockbox/staff/saint)
10:25:58 Join xorly [0] (~xorly@ip-86-49-24-93.net.upcbroadband.cz)
10:26:13***Saving seen data "./dancer.seen"
10:29:03 Quit nlogex (Ping timeout: 240 seconds)
10:43:06 Join nlogex [0] (~nlogex@198-16-168-171.on.cable.ebox.net)
11:00
11:39:33 Join pamaury [0] (~pamaury@rockbox/developer/pamaury)
11:41:04 Quit _meg (Ping timeout: 255 seconds)
11:41:50 Join _meg [0] (~notsure@211.25.203.45)
11:57:39 Join iceCalt [0] (~iceCalt@5.146.198.73)
12:00
12:26:15***Saving seen data "./dancer.seen"
12:27:44 Join robertd1 [0] (~root@186-90-51-247.genericrev.cantv.net)
12:32:59 Quit robertd1 (Quit: Leaving.)
12:34:07 Join pirik3 [0] (~pirik3@cpc128650-hawk17-0-0-cust67.know.cable.virginm.net)
13:00
13:05:19 Quit xorly (Quit: WeeChat 1.9-rc1)
13:08:07 Join robertd1 [0] (~root@186-90-51-247.genericrev.cantv.net)
13:15:45 Quit pirik3 (Remote host closed the connection)
13:16:07 Join pirik3 [0] (~pirik3@cpc128650-hawk17-0-0-cust67.know.cable.virginm.net)
13:23:03 Quit TheLemonMan (Ping timeout: 260 seconds)
13:24:55 Quit nlogex (*.net *.split)
13:24:55 Quit mc2739 (*.net *.split)
13:34:44 Join johnb3 [0] (~johnb2@p5B3AFF39.dip0.t-ipconnect.de)
13:35:51 Join johnb4 [0] (~johnb2@p5B3AFF39.dip0.t-ipconnect.de)
13:42:47 Quit dfkt (Read error: Connection reset by peer)
13:51:19 Join mc2739 [0] (~mc2739@rockbox/developer/mc2739)
13:56:46 Quit johnb4 (Ping timeout: 260 seconds)
13:59:26 Quit uwe_ (Ping timeout: 240 seconds)
13:59:35 Join dfkt [0] (~dfkt@unaffiliated/dfkt)
14:00
14:00:39 Join uwe_ [0] (~uwe_@dslb-088-067-009-107.088.067.pools.vodafone-ip.de)
14:01:08 Join parchd [0] (~parchd@unaffiliated/parchd)
14:03:27 Quit Marex (Ping timeout: 240 seconds)
14:05:34 Quit _meg (Ping timeout: 240 seconds)
14:07:02 Join _meg [0] (~notsure@211.25.203.45)
14:14:42 Join Marex [0] (~Marex@195.140.253.167)
14:19:06 Quit _meg (*.net *.split)
14:19:06 Quit parchd (*.net *.split)
14:19:24 Join parchd [0] (~parchd@unaffiliated/parchd)
14:22:37 Join _meg [0] (~notsure@211.25.203.45)
14:26:17***Saving seen data "./dancer.seen"
14:28:43 Join krabador [0] (~krabador@unaffiliated/krabador)
14:31:12 Quit johnb3 (Quit: Nettalk6 - www.ntalk.de)
14:33:22 Join uwe__ [0] (~uwe_@ipservice-092-219-213-190.092.219.pools.vodafone-ip.de)
14:34:54 Quit uwe_ (Ping timeout: 246 seconds)
14:34:56 Quit pirik3 (Ping timeout: 240 seconds)
15:00
15:33:02 Quit pamaury (Ping timeout: 240 seconds)
15:37:23 Join pamaury [0] (~pamaury@rockbox/developer/pamaury)
16:00
16:26:18***Saving seen data "./dancer.seen"
16:26:37 Quit krabador (Read error: Connection reset by peer)
16:29:07 Join krabador [0] (~krabador@unaffiliated/krabador)
16:29:30 Quit deevious (Quit: deevious)
16:37:43 Join johnb3 [0] (~johnb2@p5B3AFF39.dip0.t-ipconnect.de)
17:00
17:01:28 Quit pamaury (Ping timeout: 255 seconds)
17:06:48 Quit iceCalt (Remote host closed the connection)
17:08:05 Quit idonob_ (Quit: stop breaking)
17:08:50 Join idonob [0] (~Owner@S010600259c3e7d7b.vs.shawcable.net)
17:24:57 Join iceCalt [0] (~iceCalt@5.146.198.73)
17:40:37 Nick uwe__ is now known as uwe_ (~uwe_@ipservice-092-219-213-190.092.219.pools.vodafone-ip.de)
17:52:29 Quit krabador (Quit: Leaving)
18:00
18:15:56 Quit johnb3 (Quit: Nettalk6 - www.ntalk.de)
18:16:28 Quit prg318 (Quit: ZNC 1.6.5 - http://znc.in)
18:17:01 Join prg318 [0] (~prg@deadcodersociety/prg318)
18:17:23 Join pamaury [0] (~pamaury@rockbox/developer/pamaury)
18:19:01 Quit MrZeus (Read error: Connection reset by peer)
18:26:21***Saving seen data "./dancer.seen"
18:26:46 Quit parchd (Quit: life)
18:37:47DEBUGEOF from server (Connection reset by peer) (snapshot: netstuff.c line 545)
18:37:47***Cleanup
18:37:47***Cleanup
18:37:47***Saving seen data "./dancer.seen"
18:37:47***Exit
18:37:50***Started Dancer V4.16
18:37:50***Connected to irc.freenode.net on port 6667
18:37:50***Logfile for #rockbox started
18:37:50Mode"logbot :+i" by logbot
18:37:57***Server message 501: 'logbot :Unknown MODE flag'
18:37:57 Join logbot [0] (~rockbox@giant.haxx.se)
18:37:57 Join Xeha_ [0] (~Xeha@unaffiliated/k1773r)
18:37:57 Join pamaury [0] (~pamaury@rockbox/developer/pamaury)
18:37:57 Join prg318 [0] (~prg@deadcodersociety/prg318)
18:37:57 Join iceCalt [0] (~iceCalt@5.146.198.73)
18:37:57 Join idonob [0] (~Owner@S010600259c3e7d7b.vs.shawcable.net)
18:37:57 Join uwe_ [0] (~uwe_@ipservice-092-219-213-190.092.219.pools.vodafone-ip.de)
18:37:57 Join _meg [0] (~notsure@211.25.203.45)
18:37:57 Join Marex [0] (~Marex@195.140.253.167)
18:37:57 Join dfkt [0] (~dfkt@unaffiliated/dfkt)
18:37:57 Join mc2739 [0] (~mc2739@rockbox/developer/mc2739)
18:37:57 Join robertd1 [0] (~root@186-90-51-247.genericrev.cantv.net)
18:37:57 Join [Saint] [0] (~sinner@rockbox/staff/saint)
18:37:57 Join jhMikeS [0] (~jethead71@d192-24-173-177.try.wideopenwest.com)
18:37:57 Join dys [0] (~dys@2003:5b:203b:100:6af7:28ff:fe06:801)
18:37:57 Join lebellium [0] (~chatzilla@i15-les04-th2-31-35-19-195.sfr.lns.abo.bbox.fr)
18:37:57 Join ender` [0] (krneki@foo.eternallybored.org)
18:37:57 Join TheSeven [0] (~quassel@rockbox/developer/TheSeven)
18:37:57 Join tchan [0] (~tchan@lunar-linux/developer/tchan)
18:37:57 Join yosafbridge` [0] (~yosafbrid@68.ip-149-56-14.net)
18:37:57 Join tomflint [0] (~tomflint@unaffiliated/tomflint)
18:37:57 Join duo8 [0] (~ZNC-SRV-H@27.76.252.96)
18:37:57 Join quaz0r [0] (quaz@c-67-183-243-24.hsd1.wa.comcast.net)
18:37:57 Join Slasheri [0] (~miipekk@rockbox/developer/Slasheri)
18:37:57 Join JanC [0] (~janc@lugwv/member/JanC)
18:37:57 Join alexweissman [0] (~alexweiss@c-68-51-123-75.hsd1.in.comcast.net)
18:37:57 Join Strife89 [0] (~quassel@adsl-98-80-197-248.mcn.bellsouth.net)
18:37:57 Join kugel [0] (~kugel@rockbox/developer/kugel)
18:37:57 Join michaelni [0] (~michael@213-47-41-20.cable.dynamic.surfer.at)
18:37:57 Join ps-auxw [0] (~arneb@p5B0FBF4C.dip0.t-ipconnect.de)
18:37:57 Join Aldem [0] (~Aldem@unaffiliated/aldem)
18:37:57 Join walle303 [0] (walle303ke@pisg/dev/walle303)
18:37:57 Join Soap [0] (~Soap@rockbox/staff/soap)
18:37:57 Join advcomp2019__ [0] (~advcomp20@unaffiliated/advcomp2019)
18:37:57 Join scorche [0] (~scorche@rockbox/administrator/scorche)
18:37:57 Join bray90820 [0] (~bray90820@50-83-217-236.client.mchsi.com)
18:37:57 Join JdGordon_ [0] (~jonno@rockbox/developer/JdGordon)
18:37:57 Join Rower [0] (~husvagn@m176-64-239-166.cust.tele2.se)
18:37:57 Join shrizza_ [0] (~shrizza@oki-dc-urasoe01-187.glbb.ne.jp)
18:37:57 Join Huntereb [0] (~Huntereb@d-209-42-136-145.cpe.metrocast.net)
18:37:57 Join knittl [0] (~knittl@unaffiliated/knittl)
18:37:57 Join fs-bluebot [0] (~fs-bluebo@port-92-196-37-111.dynamic.qsc.de)
18:37:57 Join akaWolf [0] (~akaWolf@unaffiliated/akawolf)
18:37:57 Join shmibs [0] (~shmibs@shmibbles.me)
18:37:57 Join amiconn [0] (~amiconn@rockbox/developer/amiconn)
18:37:57 Join pixelma [0] (~pixelma@rockbox/staff/pixelma)
18:37:57 Join vifino [0] (~vifino@tty.sh)
18:37:57 Join user890104 [0] (Venci@unaffiliated/user890104)
18:37:57 Join mikroflops [0] (~yogurt@178.174.137.46)
18:37:57 Join The_Prospector [0] (~The_Prosp@unaffiliated/cornman)
18:37:57 Join CyberJacob [0] (~CyberJaco@bouncer.bluesapphiremedia.co.uk)
18:37:57 Join Moarc [0] (~chujko@a105.net128.okay.pl)
18:37:57 Join CommunistWitchDr [0] (quasselcor@97-87-177-85.dhcp.stls.mo.charter.com)
18:37:57 Join paulk-gagarine [0] (~paulk-gag@gagarine.paulk.fr)
18:37:57 Join Senji [0] (~Senji@87.118.138.79)
18:37:57 Join TorC [0] (~Tor@fsf/member/TorC)
18:37:57 Join EmanueleSorce[m] [0] (emanueleso@gateway/shell/matrix.org/x-zccwyanusgaehkzg)
18:37:57 Join shifttymike [0] (~shifttymi@105.227.107.97)
18:37:57 Join GodEater [0] (~whoknows@rockbox/staff/GodEater)
18:37:57 Join rudi_s [0] (~simon@kraftwerk.ruderich.eu)
18:37:57 Join alucryd [0] (~quassel@archlinux/developer/alucryd)
18:37:57 Join nialv7 [0] (m7nialmatr@gateway/shell/matrix.org/x-etnttyxfsejmmtzz)
18:37:57 Join WakiMiko [0] (~WakiMiko@unaffiliated/wakimiko)
18:37:57 Join woffs [0] (3cd46299b2@woffs.de)
18:37:57 Join derf [0] (~derf@static-108-18-126-14.washdc.fios.verizon.net)
18:37:57 Join SammysHP [0] (~SammysHP@faol.sammyshp.de)
18:37:57 Join GeekShadow [0] (~antoine@reactos/tester/GeekShadow)
18:37:57 Join atsampson [0] (~ats@cartman.offog.org)
18:37:57 Join mmint [0] (~mmint@unaffiliated/mmint)
18:37:57 Join igitoor [0] (igitur@unaffiliated/contempt)
18:37:57 Join ruskie [0] (~ruskie@sourcemage/mage/ruskie)
18:37:57 Join APLU [0] (~mulx@eva.aplu.fr)
18:37:57 Join snw [0] (~snow_bcks@ganon.dot-server.net)
18:37:57 Join literal [0] (hinrik@u.nix.is)
18:37:57 Join Jack87 [0] (Jack87@nasadmin/admin/jack87)
18:37:57 Join Kohlrabi [0] (~kohlrabi@kohlio.de)
18:37:57 Join monotux [0] (~monotux@faktaresistens.party)
18:37:57 Join olspookishmagus [0] (~pookie@snf-137798.vm.okeanos.grnet.gr)
18:37:57 Join gevaerts [0] (~fg@rockbox/developer/gevaerts)
18:37:57 Join evilnick [0] (~evilnick@rockbox/staff/evilnick)
18:37:57 Join dovber [0] (~dovber@2600:8801:3180:de:beee:7bff:fee3:335f)
18:37:57 Join __jae__ [0] (~jae@dedicated.jaerhard.com)
18:37:57 Join bzed [0] (~bzed@shell.bzed.at)
18:37:57 Join copper [0] (~copper@unaffiliated/copper)
18:37:57 Join pystar89 [0] (~pystar89@ip5f586226.dynamic.kabel-deutschland.de)
18:37:57 Join dan- [0] (~d@freenode/corporate-sponsor/privateinternetaccess.com/doaks)
18:37:57 Join dongs [0] (~dongs@bcas.tv)
18:37:57 Join rasher [0] (~rasher@rockbox/developer/rasher)
18:37:57 Join uwe_mobile__ [0] (~uwe@static.173.76.9.176.clients.your-server.de)
18:37:57 Join diox [0] (~u@h-152-132.A586.priv.bahnhof.se)
18:37:57 Join funman [0] (~fun@rockbox/developer/funman)
18:37:57 Join sielicki [0] (~sielicki@unaffiliated/n1cky)
18:37:57 Join jeandet [0] (sid239360@gateway/web/irccloud.com/x-gxztbgmykhkdsvuy)
18:37:57 Join Topy44 [0] (jwfam1viLZ@2a00:d0c0:200:0:b9:1a:9c23:400)
18:37:57 Join vflyson [0] (~vflyson@cupcake.uberspace.net)
18:37:57 Join beveradb [0] (~beveradb@irc.beveridge.uk)
18:37:57 Join n17ikh [0] (~n17ikh@unaffiliated/n17ikh)
18:37:57 Join scorche|sh [0] (~scorche@rockbox/administrator/scorche)
18:37:57 Join bluebrother [0] (~dom@rockbox/developer/bluebrother)
18:37:57 Join Rondom [0] (~rondom@modo.nonmodosedetiam.net)
18:37:57 Join ender| [0] (krneki@2a01:260:4094:1:42:42:42:42)
18:37:57 Join Cu5tosLimen [0] (~CustosLim@unaffiliated/cust0slim3n)
18:37:57 Join marex-cloud [0] (sid137234@gateway/web/irccloud.com/x-xumkfelkiucjwuqa)
18:37:57 Join Riviera_ [0] (Riviera@2a03:b0c0:1:d0::10:b001)
18:37:57 Join Elfish [0] (amba@2001:1608:12:1:13:3:3:7)
18:37:57 Join ParkerR [0] (ParkerR@unaffiliated/parkerr)
18:37:57 Join Xeha [0] (~Xeha@unaffiliated/k1773r)
18:37:57 Join Jon [0] (jon@dow.land)
18:37:57 Join aevin [0] (eivindsy@unaffiliated/aevin)
18:37:57 Join anonus [0] (~anonymous@citadel.niflheim.info)
18:37:57 Join zu_ [0] (~zu@ks387228.kimsufi.com)
18:37:57 Join alexbobp [0] (~alex@testificate.xen.prgmr.com)
18:37:57 Join @ChanServ [0] (ChanServ@services.)
18:37:57 Join Galois [0] (djao@efnet-math.org)
18:37:57 Join munch [0] (pls@gateway/shell/elitebnc/x-ipnsgvdldpftccgo)
18:37:57 Join preglow [0] (~thomj@2001:840:4243:3::101)
18:37:57 Join ChickeNES [0] (~ChickeNES@162.243.44.61)
18:37:57 Join St0neHead [0] (stonehead@2a01:7e00:e001:3700:6667::2)
18:37:57 Join CustosL1men [0] (~CustosLim@unaffiliated/cust0slim3n)
18:37:57 Join rogeliodh [0] (~rogeliodh@ec2-52-90-241-120.compute-1.amazonaws.com)
18:37:57 Join froggyman [0] (~frogs@unaffiliated/froggyman)
18:37:57 Join puckipedia [0] (~puck@puckipedia.com)
18:37:57 Join evert [0] (~evert@static.58.140.9.5.clients.your-server.de)
18:37:57 Join maraz [0] (maraz@217.30.184.161)
18:37:57 Join benedikt93_ [0] (~quassel@unaffiliated/benedikt93)
18:37:57 Join utrack [0] (~utrack@unaffiliated/utrack)
18:37:57 Join Petri152 [0] (~Spinic@petritrebs.ca)
18:37:57 Join a-109-107 [0] (amk@turbous.xshellz.com)
18:37:57 Join cttttt [0] (sid135570@gateway/web/irccloud.com/x-odhysxyvlnorfoyx)
18:38:29 Quit diox (Ping timeout: 264 seconds)
18:38:29 Quit Xeha (Ping timeout: 264 seconds)
18:38:29 Nick Xeha_ is now known as Xeha (~Xeha@unaffiliated/k1773r)
18:38:38 Join diox [0] (~u@h-152-132.A586.priv.bahnhof.se)
19:00
19:09:52 Join ZincAlloy [0] (~Adium@2a02:8108:8b80:1700:6974:9d42:5a2e:5fed)
19:43:06 Join johnb4 [0] (~johnb2@p5B3AFF39.dip0.t-ipconnect.de)
19:47:55 Quit johnb4 (Ping timeout: 260 seconds)
19:48:16 Join MrZeus [0] (~MrZeus@2a02:c7f:7066:fb00:4805:445b:592:97e2)
19:55:09 Join JanC_ [0] (~janc@lugwv/member/JanC)
19:56:26 Quit JanC (Killed (wolfe.freenode.net (Nickname regained by services)))
19:56:26 Nick JanC_ is now known as JanC (~janc@lugwv/member/JanC)
19:59:58 Join smoke_fumus [0] (~smoke_fum@188.35.176.90)
20:00
20:10:01 Quit dys (Ping timeout: 255 seconds)
20:16:50 Join petur [0] (~petur@rockbox/developer/petur)
20:22:32 Join dys [0] (~dys@tmo-101-8.customers.d1-online.com)
20:23:07 Quit yosafbridge` (Write error: Connection reset by peer)
20:23:42 Quit nialv7 (Read error: Connection reset by peer)
20:23:44 Quit EmanueleSorce[m] (Remote host closed the connection)
20:23:46 Quit walle303 (Write error: Connection reset by peer)
20:31:54 Join yosafbridge [0] (~yosafbrid@68.ip-149-56-14.net)
20:32:25 Join walle303 [0] (walle303ke@pisg/dev/walle303)
20:37:54***Saving seen data "./dancer.seen"
20:44:45 Join johnb4 [0] (~johnb2@p5B3AFF39.dip0.t-ipconnect.de)
20:55:42 Join EmanueleSorce[m] [0] (emanueleso@gateway/shell/matrix.org/x-ffuakrjchfoakncp)
20:55:42 Join nialv7 [0] (m7nialmatr@gateway/shell/matrix.org/x-fhfrtyonguqoxqol)
20:58:10 Quit johnb4 (Ping timeout: 255 seconds)
21:00
21:39:43 Quit jhMikeS (Ping timeout: 248 seconds)
21:41:08 Join jhMikeS [0] (~jethead71@d192-24-173-177.try.wideopenwest.com)
21:45:32 Quit jhMikeS (Ping timeout: 240 seconds)
21:57:33 Quit pamaury (Ping timeout: 240 seconds)
22:00
22:01:48 Quit EmanueleSorce[m] (Read error: Connection reset by peer)
22:01:50 Quit nialv7 (Read error: Connection reset by peer)
22:01:54 Quit walle303 (Read error: Connection reset by peer)
22:07:18 Join walle303 [0] (walle303ke@pisg/dev/walle303)
22:29:47 Join Ruhan [0] (uid76353@gateway/web/irccloud.com/x-cuurwtvqozjqrrib)
22:32:19 Join EmanueleSorce[m] [0] (emanueleso@gateway/shell/matrix.org/x-rnchdcuoumahbdyp)
22:32:19 Join nialv7 [0] (m7nialmatr@gateway/shell/matrix.org/x-naicvcxvgcohcaaa)
22:36:32 Join uwe__ [0] (~uwe_@ipservice-092-217-117-162.092.217.pools.vodafone-ip.de)
22:37:58***Saving seen data "./dancer.seen"
22:38:55 Quit uwe_ (Ping timeout: 248 seconds)
22:42:25 Join Strife1989 [0] (~quassel@adsl-98-80-183-98.mcn.bellsouth.net)
22:44:05 Quit Strife89 (Ping timeout: 258 seconds)
23:00
23:20:50 Join uwe_ [0] (~uwe_@dslb-094-216-126-210.094.216.pools.vodafone-ip.de)
23:23:31 Quit uwe__ (Ping timeout: 240 seconds)
23:25:05 Quit _meg (Ping timeout: 276 seconds)
23:25:24 Join Rockboxer [0] (a5533283@gateway/web/freenode/ip.165.83.50.131)
23:25:38 Join _meg [0] (~notsure@211.25.203.45)
23:30:39RockboxerHello, having trouble with the file browser on an iPod Classic. When I try to open it now, nothing happens. The only way I can get into it is by opening a shortcut to a folder. Any tips?
23:33:09 Join ZincAlloy1 [0] (~Adium@ip1f12fa45.dynamic.kabel-deutschland.de)
23:33:59 Quit ZincAlloy (Ping timeout: 255 seconds)
23:36:39 Quit dys (Ping timeout: 246 seconds)
23:42:28RockboxerHmm, seems to have fixed itself, thanks!
23:42:31 Quit Rockboxer (Quit: Page closed)
23:45:02 Quit Aldem (Ping timeout: 258 seconds)

Previous day | Next day