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 2013-04-15

00:00:27JdGordonits going to be alot more work than i thught to make it do what you want
00:01:26lebelliumHum I'm not sure it is really worth it so feel free to give up :P
00:01:44 Join ur725 [0] (~ur725@nat.mtp.cmsinter.net)
00:03:05***Saving seen data "./dancer.seen"
00:23:48 Quit ur725 (Quit: Leaving)
00:32:34 Quit lebellium (Quit: ChatZilla 0.9.90 [Firefox 21.0/20130408165307])
00:33:31 Join ungali_mobile2 [0] (~yaaic@199.119.234.215)
00:35:22 Join zz_TheSphinX^ [0] (~briehl@p57A392DB.dip.t-dialin.net)
00:37:32 Join nesmoto [0] (~nesmoto@p508B340C.dip.t-dialin.net)
00:37:49nesmotoHello there :)
00:39:18nesmotoDoes anybody knows a way to run the batterie down faster on my unresponding sansa fuze v2?
00:40:12 Quit ungali_mobile2 (Ping timeout: 255 seconds)
00:40:41 Join ungali_mobile [0] (~yaaic@199-7-158-52.eng.wind.ca)
00:41:08nesmotowell i thought ill get quick help here :(
00:41:28kugelJdGordon: I will do the plugin api bump separately
00:41:46kugelit needs to be bumped in half of the patches
00:42:07gevaertsnesmoto: (a) if it doesn't respond to the usual long-power thing, no, and (b) two minutes is slow now?
00:42:08JdGordoni'll look at the rest of the patches this evening if i have a chance
00:42:11JdGordontoo many of them :p
00:42:26JdGordonkugel: can you put up a diff of the final outcome? or just too huge
00:42:41*gevaerts doesn't remember promising he'd be watching the channel for questions all the time
00:42:51nesmotochill down :)
00:43:18gevaertswho? Me or you?
00:43:22nesmotowell my english isnt that good, im german, so i dont know all the technical terms you said but ill google it
00:43:42JdGordonkugel: also, can you dump the font ID into the scroller line item and make it screen relative instead of viewport relative?
00:45:07nesmotonah its not responding to 30secs hold
00:45:09 Quit ungali_mobile (Ping timeout: 256 seconds)
00:46:02nesmotothats a sad thing 2-4 days without music
00:47:28kugelJdGordon: just checkout the last commit and run "git diff master"
00:48:21nesmoto@gevaerts but thanks for your help!
00:50:38 Quit Wardo (Read error: Connection reset by peer)
00:51:12 Quit ender` (Quit: Punch a psychic today: ask them if they saw it coming.)
00:51:47*nesmoto slaps gevaerts around a bit with a large trout
00:54:05kugelJdGordon: thanks for having a look
00:54:48 Quit nesmoto ()
00:54:50kugelJdGordon: why should I do what you suggested?
00:56:48kugelfor screen relative scrolling you just need to draw into the default viewport (after set_viewport(NULL))
00:56:52 Join JdGord [0] (~AndChat72@49.176.100.145)
00:56:53 Join ungali_mobile [0] (~yaaic@static-64-201-174-105.ptr.terago.net)
00:57:55JdGordKugel: it will make list drawing easirr
00:58:57JdGordI'll explain in 15m
01:00
01:00:20JdGordIt basically means you can setup the view ports for each line (icon, indent, text) and rescue them for each line instead of having to make one big viewport and doing messy stuff if any of them change dimensions
01:00:43 Join telliott [0] (~Tim@68.179.137.177)
01:02:01telliottI finally got Rockbox on my iPopd Classic 160GB. Can I use a database with around 27,000 tracks?
01:04:50kugelJdGord: not sure what you mean
01:06:18JdGordI'll be at my computer in 10
01:09:41 Join AndChat|72624 [0] (~AndChat72@vl10.gw.ok-labs.com)
01:11:08 Quit JdGord (Ping timeout: 256 seconds)
01:12:26 Quit AndChat|72624 (Client Quit)
01:14:06JdGordonkugel: right now the list creates a big viewport for all the text and a big one for all the icons and increment the line counter, what I'd like is to create a viewport per line, but they would be shared so the scroller couldnt just use the viewport *, this would make drawing the list much cleaner in some parts
01:14:14JdGordonespecially in the indenting
01:14:31JdGordonbut also its the only way scrolling can work with any implementation of skin lists (if/when that gets fixed)
01:14:55 Quit ungali_mobile (Read error: Connection reset by peer)
01:17:10kugelJdGordon: with put_line() you can simply draw all components in a single viewport
01:17:32kugelif you like with 1 viewport per line
01:17:34JdGordonI'll have a look tonight (hopefully)
01:17:47JdGordonhow does that handle scrolling though?
01:17:55kugelin my patchset the list code is converted, it doesnt do separate icon viewports anymore
01:18:02kugelbut still one large viewport for all lines
01:23:02kugelit handles scrolling fine (but only the last text segment)
01:29:20 Join jhMikeS [0] (~jethead71@50.4.247.132)
01:29:21 Quit jhMikeS (Changing host)
01:29:21 Join jhMikeS [0] (~jethead71@rockbox/developer/jhMikeS)
01:39:16kugelJdGordon: what's wrong with using a viewport per line?
01:39:59JdGordonthey each need to be different
01:40:42JdGordonwhen is the put_line() callback called? I have a feeling this wont work with skin lists :(
01:40:54*JdGordon should probably just give up on them
01:41:19kugelJdGordon: by the scroll thread, as usual
01:42:55JdGordonyeah, that wont work
01:43:07JdGordonnot with more than 1 scrolling line anyway
01:43:40kugel???
01:44:58kugelwhat wont work?
01:47:38 Quit liar (Remote host closed the connection)
01:52:52kugelJdGordon: ??
01:53:14kugelstill don't understand what's wrong with 1 vp per line
01:55:33JdGordonI need to look at your patch more closely before deciding
01:55:41 Quit krabador (Remote host closed the connection)
02:00
02:03:09***Saving seen data "./dancer.seen"
02:05:08 Quit rasher (Read error: Operation timed out)
02:16:00 Join ur725 [0] (~ur725@24-180-66-46.dhcp.bycy.mi.charter.com)
02:52:58 Quit telliott (Quit: Leaving)
03:00
03:42:07 Join [Saint] [0] (~saint@rockbox/user/saint)
04:00
04:03:12***Saving seen data "./dancer.seen"
04:09:06 Quit ur725 (Quit: Leaving)
04:22:56 Nick [Saint] is now known as [Sinner] (~saint@rockbox/user/saint)
04:23:09 Nick [Sinner] is now known as [Saint] (~saint@rockbox/user/saint)
04:24:38 Join rasher [0] (~rasher@rockbox/developer/rasher)
04:54:31 Join amiconn_ [0] (amiconn@rockbox/developer/amiconn)
04:54:31 Quit amiconn (Disconnected by services)
04:54:35 Nick amiconn_ is now known as amiconn (amiconn@rockbox/developer/amiconn)
04:54:38 Quit pixelma (Disconnected by services)
04:54:38 Join pixelma_ [0] (pixelma@rockbox/staff/pixelma)
04:54:41 Nick pixelma_ is now known as pixelma (pixelma@rockbox/staff/pixelma)
05:00
05:07:45 Join TheSphin_ [0] (~briehl@pD9FBB22F.dip.t-dialin.net)
05:10:53 Quit zz_TheSphinX^ (Ping timeout: 240 seconds)
05:16:28 Join saratoga [0] (123e1f63@gateway/web/freenode/ip.18.62.31.99)
05:17:13 Join Rower [0] (husvagn@v-413-alfarv-177.bitnet.nu)
05:26:29[Saint]kugel: around?
05:28:05[Saint]Ah - nevermind. Found what I was looking for.
05:28:42[Saint]I'll have a play and push this later.
05:29:49[Saint]Since Android is finally sorting itself out and taking a serious stance on security - we may as well follow suit.
05:30:29[Saint]I noted we don't test for protected storage, but I'm pretty sure I've sorted myself out now - I got a little lost.
05:36:23 Quit saratoga (Quit: Page closed)
05:40:41 Join zamboni [0] (~bottledwa@bas6-windsor12-1279528121.dsl.bell.ca)
05:40:41 Quit zamboni (Changing host)
05:40:41 Join zamboni [0] (~bottledwa@unaffiliated/zamboni)
05:53:15 Quit TheSeven (Disconnected by services)
05:53:25 Join [7] [0] (~quassel@rockbox/developer/TheSeven)
06:00
06:03:14***Saving seen data "./dancer.seen"
06:35:50 Quit DexterLB (Ping timeout: 252 seconds)
06:36:30 Quit froggyman (Ping timeout: 256 seconds)
06:42:00 Join DexterLB [0] (~dex@77-85-39-221.btc-net.bg)
06:42:31 Join pamaury [0] (~quassel@rockbox/developer/pamaury)
06:48:02 Quit ser (Ping timeout: 245 seconds)
06:53:30 Join ser [0] (~ser@2610:28:3090:3001:a:a:a:beef)
06:56:43 Quit pamaury (Ping timeout: 252 seconds)
07:00
07:12:52 Quit zamboni ()
07:15:12 Quit kevku (Ping timeout: 264 seconds)
07:16:04 Quit Scr0mple (Read error: Connection reset by peer)
07:22:23 Join Scromple [0] (~Simon@161.43.73.67)
07:27:42 Join akaWolf [0] (~akaWolf@unaffiliated/akawolf)
07:42:22 Join melmothX [0] (~melmoth@unaffiliated/melmothx)
07:42:24 Join mortalis [0] (~kvirc@213.33.220.118)
07:45:36 Join olspookishmagus [0] (~pookie@host-84-205-241-1.cpe.syzefxis.ote.gr)
07:48:32 Join LinusN [0] (~linus@giant.haxx.se)
08:00
08:01:58 Join Ward [0] (~Mirandaha@176-120-190-109.dsl.ovh.fr)
08:02:22 Nick Ward is now known as Guest76587 (~Mirandaha@176-120-190-109.dsl.ovh.fr)
08:02:58 Join kevku [0] (~kevku@2a01:d0:ffff:34a::8:3)
08:03:16***Saving seen data "./dancer.seen"
08:18:46 Quit jhMikeS (Ping timeout: 255 seconds)
08:24:30 Join ender` [0] (krneki@foo.eternallybored.org)
08:26:09 Quit DexterLB (Read error: Connection reset by peer)
08:28:45 Join Zagor [242] (~bjst@rockbox/developer/Zagor)
08:31:13 Join DexterLB [0] (~dex@77-85-39-221.btc-net.bg)
08:49:30 Quit Akranis (Read error: Network is unreachable)
08:50:34 Join bertrik [0] (~quassel@rockbox/developer/bertrik)
08:57:56 Join bebna [0] (~a.fasold@94.101.33.114)
09:00
09:06:17 Join Akranis [0] (~Akranis@u193-11-163-114.studentnatet.se)
09:17:48kugel[Saint]: what were you talking about?
09:18:55[Saint]protected storage permission
09:19:22[Saint]tl;dr: only allow apps that state that they'll modify sdcard contents to do so
09:21:55kugelrockbox asks (and needs to) for permission to write to the sdcard
09:22:45[Saint]....it does? Hummmm. It isn't listed in the permissionslist by CM here.
09:22:58[Saint]I found the area I wanted to poke at a while ago, but I got sidetracked.
09:23:23[Saint]So - Rockbox actually does have the "test protected storage" permission?
09:25:46[Saint]Hum...apparently all my phones hate Rockbox. Each and every one is listing different permissions.
09:25:47 Quit bertrik (Ping timeout: 252 seconds)
09:25:53kugel[Saint]: we ask for two permissions (and I can see them): write to storage, and phone state
09:26:44[Saint]just writing to storage is different to the protected storage test, iiuc.
09:27:34kugelwhat is "proteect storage test"?
09:27:47kugelwhat do you need the permission for?
09:32:04[Saint]Apps have to request permission to read the sdcard if protected storage is true.
09:32:34[Saint]there's a write variant as well - but I don't think that's in upstream yet.
09:36:01*kugel doesn't know what protected storage is
09:38:35[Saint]IIUC, with it set, Rockbox would be able to install but not be able to read any of its own files on the sdcard nor any of the other files located thereon.
09:42:24[Saint](this is quite bleeding edge stuff - you won't encounter this pre-4.2.1 I believe)
09:44:39kugeldoes it have anything to do with the multi user support?
09:45:17 Nick bebna is now known as Twi`` (~a.fasold@94.101.33.114)
09:46:34 Nick Twi`` is now known as bebna (~a.fasold@94.101.33.114)
09:47:11 Join petur [0] (~petur@rockbox/developer/petur)
09:51:07[Saint]kugel: I don't believe so, no.
09:51:18[Saint]it /may/...
10:00
10:01:13 Join einhirn [0] (~Miranda@bsod.rz.tu-clausthal.de)
10:03:03 Quit DexterLB (Read error: Connection reset by peer)
10:03:19***Saving seen data "./dancer.seen"
10:04:21 Join lebellium [0] (~chatzilla@lns-c10k-ld-02-m-212-194-176-149.dsl.sta.abo.bbox.fr)
10:08:23 Join DexterLB [0] (~dex@77-85-39-221.btc-net.bg)
10:11:46 Quit Guest76587 (Read error: Connection reset by peer)
10:20:18 Join nkontekst [0] (~ennokktts@x1-6-4c-60-de-00-74-e2.k2.webspeed.dk)
10:33:56 Part nkontekst
10:46:00 Join swilde [0] (~wilde@euarne.ipv6.intevation.de)
10:47:08 Join y4n [0] (~y4n@unaffiliated/y4ndexx)
10:52:24kugelJdGordon: ping
10:55:14 Quit DexterLB (Read error: Connection reset by peer)
11:00
11:00:29 Join DexterLB [0] (~dex@77-85-39-221.btc-net.bg)
11:03:55 Join wodz [0] (~wodz@iwl138.internetdsl.tpnet.pl)
11:09:03kugelhere's the outcome of my lcd rework: http://imagebin.org/254094
11:09:40kugelnote how the line selector now also spans the icons as well
11:11:04Zagorkugel: that looks nice
11:11:07[Saint]is the line underneath the title text intentionally thicker?
11:11:17kugel[Saint]: yes
11:11:25[Saint](and could we get one above it?)
11:11:59[Saint]{right now it looks as though the title text is a part of the statusbar}
11:12:00kugelabove doesnt look as nice
11:12:01mortaliswodz: Answer to your question about ftl - "Sorry, we also don't have this document. "
11:12:35[Saint]kugel: are we on the same page? I think the title text needs a line between it and the statusbar.
11:12:46kugelyes. we are
11:13:39[Saint]If you're wanting it to look a bit more host-system-ish, I think a line between the menu and the statusbar would be nice.
11:13:57 Join ungali_mobile [0] (~yaaic@184.64.50.234)
11:15:40kugelthat's not my primary goal
11:15:47kugelhttp://imagebin.org/254095
11:16:10kugelit looks worse (even only considering the line between the statusbar and the title)
11:16:43[Saint]I think it looks ok, but the lines could stand to be thinner.
11:17:58kugelbtw, android doesnt have bars above the title (not my rom at least)
11:18:35wodzmortalis: unfortunately that is what I expected
11:18:54kugelbut I'm not after mimicing android to the detail. I find the line above looks bad
11:19:04lebelliumBonjour,
11:19:06lebelliumJe vous confirme votre inscription pour la 1ère session.
11:19:07lebelliumCordialement,
11:19:09lebelliumLatifa Chine
11:19:11lebelliumAgence Henry Conseil
11:19:16lebelliumoops
11:19:17lebelliumwrong tab :)
11:19:33[Saint]Mine does, but even if it didn't there's a clear color separation so you know the statusbar isn't a part of the menu.
11:20:09[Saint]maybe you just can't see it? It is a *very* dark grey.
11:20:32kugelI'm not running CM...every rom looks different
11:20:45[Saint]I'm not running CM either.
11:21:19kugelyou were two hours ago :)
11:21:37[Saint]Well...I was on /that/ phone.
11:21:39[Saint]:)
11:21:53[Saint]...*this* one, however...
11:23:46kugelanyway, it's not important to clearly separate the builtin statusbar (if it's shown at all). for custom statusbars the separation can be built into the skin as appropriate
11:24:30kugelfor those you might also want lines on all sides, for example
11:25:21[Saint]I was going to ask if you could do that
11:25:36[Saint](without skinning)
11:26:13kugelwithout skinning?
11:27:05[Saint]Indeed, using the same method you've used here to box the items in completely, as opposed to lines top and bottom.
11:28:05kugelI'm not going to implement that, I think
11:28:50[Saint]It might be nice to do so for the selected item.
11:29:00[Saint](Android-esque)
11:29:22kugelwhat's "Android-esque" about that?
11:29:41[Saint]...Android does this? :)
11:29:48kugelwhere?
11:30:01kugelmine fills the item with some color
11:30:08[Saint]Oh - heh, you guys and your no HW nav keys.
11:30:38kugelah you mean when you scroll via trackball?
11:30:54[Saint]It is a lot easier to see if you have HW navigation keys, but if you look around the edges of the currently selected item it is ringed in a darker color.
11:31:33*kugel cant see that
11:32:25[Saint]weird. both whatever hacked up flavor of Android this Note 2 is using and my actual phone phone do so.
11:33:07JdGordonkugel: ponmg
11:34:46kugelJdGordon: 1) do you need to specify "???" in filetype colors or is that optional? 2) is it known that filetype colors don't work on the selected line if the selector is colobar or gradient? 3) should 2) get fixed?
11:35:34JdGordoni imagein its optional, and sure, fix 2
11:35:41kugel[Saint]: it depends not only on the rom but also on the app, it's not unlikely that I cannot reproduce what you see
11:36:38[Saint]I'm just talking about the system settings menu.
11:37:11kugelJdGordon: I updated the line selector patch rebased ontop of my rework; with this it was a lot nicer to impleent and works a lot better
11:37:27kugelline separator patch*
11:37:34JdGordonyeah, saw the screenshot, looks good
11:37:43JdGordonwont have time to look at code till later in the week
11:37:49JdGordonutter chaos at work
11:38:08kugelno problem, its far from finished anyway
11:43:26JdGordonI dont understand why you dont simply use the android list widget in the correct view
11:43:55kugelbecause it's not simple :)
11:44:08*[Saint] was going to say...
11:44:16[Saint]the problem there is the "simply" part.
11:44:34kugel(this rework wasnt that simple either, though)
11:44:43JdGordonit really shouldnt be...
11:44:57kugelbut android list intermixed with our other legacy will look even more awkward
11:44:58JdGordonbut anyway, that screenshot looks good
11:45:34kugel3rd: I'm not interested only in android
11:48:01kugelJdGordon: same question to you: Why bother with skinned lists and not use the time to get a android-native ui up? :)
11:50:01 Join mirog [0] (~d971ec2b@www.haxx.se)
11:50:07*kugel notes that making a android-native ui is tricky, especially due to the incopatible thread models (rockbox ui thread does not run on the android ui thread), but also a lot of other factors
11:50:42JdGordonkugel: i dont run raaaaa :)
11:51:00JdGordonandroid is thoughly uninterseting to me :)
11:53:16mirog240GB in H10: after upgrading partition info: P0:S:800 T:B 228933 MB and it seems to be OK. In "Disk info" one thing worries me, however: Size:131071MB is incorrect, free space:145004 is OK on the other hand. Any explanation?
11:53:44[Saint]Jesus did it.
11:53:54[Saint]...little baby Jesus.
11:55:03 Part Triffid_Hunter ("Democracy: a system of government by which 51% of the population can oppress the other 49%")
12:00
12:02:47wodz1024 vs 1000 thing?
12:03:20***Saving seen data "./dancer.seen"
12:03:20funmanlooks like a 128GB limit ?
12:03:46kugelisnt this what gevaerts recent mail was about?
12:04:38wodzsort of, I think he asks why the size is 131071MB
12:04:43wodz*but
12:05:01 Join mrkiko [0] (~mrkiko@interdet-lsp.org)
12:06:52mirogYeah, that's my question - why the size is 131GB?
12:07:51mirogMaybe Rockbox takes it from H10 flash which recognizes only 128GB?
12:08:17funmanit's NOT 131GB
12:08:35funman131 thousands of MB == 128GB
12:08:47mirogOk, ok - 128GB
12:10:00gevaertsmirog: I'm not sure making one 240GB filesystem was a good idea
12:10:58gevaertsFrom what you said, it seems fairly clear to me that the in-flash boot code doesn't handle 128GB+, so if you ever rewrite the bootloader, it may well end up beyond the 128GB limit, and the thing won't boot
12:11:17gevaertsThere's nothing we can do about that, unfortunately
12:12:08mirogWhat do you mean "rewrite bootloader"? This one in flash memory?
12:12:19gevaertsNo, the rockbox bootloader
12:12:50gevaertsThe code in flash looks on disk for SYSTEM/something./mi4 (I can't remember the exact name)
12:13:06gevaertsIf the SYSTEM directory and that file are fully within the first 128GB, that works fine
12:13:24 Quit DexterLB (Read error: Connection reset by peer)
12:13:43mirogI see.
12:13:44gevaertsIf they are not, which might happen if you defragment the disk, or if you copy a new rockbox bootloader to it, the flash code won't be able to load that file
12:14:08wodzgevaerts: so sort of /boot as small first, separate partition in linux solution for older motherboards
12:14:40gevaertsYes. Well, the rockbox bootloader expects .rockbox to be on the first partition
12:15:40gevaertsHmmm
12:15:59gevaertsI'm not sure if the flash code depends on the partition type being 0x0b or similar
12:16:28gevaertsIf it doesn't, you could have a partition type that rockbox doesn't recognise, and have just SYSTEM/ there
12:18:36 Join DexterLB [0] (~dex@77-85-39-221.btc-net.bg)
12:19:04mirogLater on I'm going to check this, but no sooner than I go over 128GB with files. Simply rename present bootloader (it doesn't change location) and record another one which would end up above 120GB.
12:19:22mirog128GB
12:19:59gevaertsThat would also magically solve the windows issue of only seeing the first partition on devices that advetrise themselves as removable
12:20:01 Quit DexterLB (Read error: Connection reset by peer)
12:20:28gevaertsYes. That should indeed be the correct test
12:20:53gevaertsAlthough if you have holes (i.e. files you deleted, maybe), it could put the new file there
12:22:20mirogI won't have holes since I'm loading all my files now one after another, no sync, no deleting.
12:22:28 Quit derf (Ping timeout: 245 seconds)
12:22:38mirogHmm, after all I can't be so sure about that...
12:23:38mirogI know very less about how rockbox OS works, definitely.
12:23:49gevaertsIt's about how FAT works, in this case
12:24:03gevaertsRockbox isn't really involved in how the files are laid out on disk
12:25:01mirogBut this is FAT implemented in Rockobx, isn't it?
12:25:07 Join DexterLB [0] (~dex@77-85-39-221.btc-net.bg)
12:25:30gevaertsFor reading, yes
12:25:39gevaertsFor writing over USB, no
12:28:10mirogThis I don't understand. So how can Rockbox write over 128GB limit if iRiver doesn't support it? I'm still below 128GB with files so I started to wonder how it will when I reach the limit.
12:29:10gevaertsRockbox doesn't use iriver code
12:29:15gevaertsWe have our own ATA driver
12:29:34 Join derf [0] (~derf@fuzzyneural.net)
12:31:22mirogLBA48 addressing?
12:33:50Torneyes, exactly.
12:33:56Tornethe original firmware doesn't use LBA48, but we do
12:36:05 Quit DexterLB (Read error: Connection reset by peer)
12:38:25 Join pamaury [0] (~quassel@rockbox/developer/pamaury)
12:39:23 Join Wardo [0] (~Mirandaha@176-120-190-109.dsl.ovh.fr)
12:41:08 Join DexterLB [0] (~dex@77-85-39-221.btc-net.bg)
12:43:18 Join krabador [0] (~krabador@unaffiliated/krabador)
12:44:23 Nick ungali_mobile is now known as ungali_mobile|te (~yaaic@184.64.50.234)
12:44:31 Quit [Saint] (Remote host closed the connection)
12:45:41 Join [Saint] [0] (~saint@rockbox/user/saint)
12:48:02 Quit DexterLB (Read error: Connection reset by peer)
12:48:34 Nick ungali_mobile|te is now known as ungali_mobile (~yaaic@184.64.50.234)
12:51:40mirogAs to bootloader and its location: isn't it possible to mark it as "nonmoveable", sort of? In Windows OS there are such files. I'm not an expert but I see it when sometimes I'm defragmenting disks
12:53:10 Join DexterLB [0] (~dex@77-85-39-221.btc-net.bg)
13:00
13:07:24Tornemirog: no, there's no way to do that
13:07:57Tornemirog: the files that are unmovable in defrag are things that the kernel is *currently* addressing via blocklists, like swap
13:08:17Tornenone of those files are actually impossible to move, they just can't be moved right now while that particular instance of the OS is running
13:08:23Torneso, no such mark exists :)
13:09:44wodzThat is actually quite weird that you can defrag without remounting disk RO. But it also means that any touch to filesystem basically restarts defrag from scratch
13:09:54wodzI mean under windows
13:09:54 Quit DexterLB (Read error: Connection reset by peer)
13:15:13 Join DexterLB [0] (~dex@77-85-39-221.btc-net.bg)
13:25:35kugelwodz: the kernel can prevent touching the filesystem (return error, caching portions to ram), possibly even on a per-file basis
13:26:37mirogTorne: thx for explanation. I thik I'll make the test (with moving bootloader above 128GB) later then. But from all you have written it seems that after moving system won't start.
13:27:03wodzmirog: that is what I would expect
13:28:05*gevaerts wants one of those H10s to do some tests
13:49:52 Quit DexterLB (Read error: Connection reset by peer)
13:55:17 Join DexterLB [0] (~dex@77-85-39-221.btc-net.bg)
14:00
14:02:33pamaurywodz: ping
14:02:49pamauryevent with the file you sent me, rk27load fails
14:03:12wodzpamaury: weird
14:03:21wodzhow do you enter dfu?
14:03:25***Saving seen data "./dancer.seen"
14:03:39wodzand how do you call rk27load
14:03:59pamauryenter dfu using rkusbtool -d
14:04:31pamaurythen send using: rk27load -e1 -s1rkboot_s1.bin
14:05:01pamaurymaybe this is not a real DFU mode and I need to do the nand shortcut trick
14:05:25wodzrk27load -e1 -e2 -s1 rkboot_s1.bin -s2 stage2.bin -s3 binary_to_send.bin
14:06:01pamaurydoesn't work either with the full command, always fails at stage 1
14:06:06mortalisrk27load works for me only in mask rom dfu, which is called by shortcuting pins, or by executing some code from dap
14:06:16mortalisiirc
14:06:27wodzpamaury: yes try shorting pins
14:06:48pamauryhum, I don't have the necessary tools to open the device right now, I'll try it tonight
14:07:29pamauryI wonder if this is just a different DFU mode or just not a DFU mode
14:10:58mortalispamaury: try to enter dfu by executing this http://pastie.org/7577317
14:11:05 Join amayer [0] (~amayer@mail.weberadvertising.com)
14:11:23pamaurymortalis: how am I supposed to execute this ?
14:11:51pamaurythe OF is running, I don't have a bootloader
14:13:20wodzmortalis: there are at least two versions of roms. See enter_rkusb() in our bootloader http://git.rockbox.org/?p=rockbox.git;a=blob;f=bootloader/rk27xx.c;h=bcf1f8f764f3a7a51a5f03276e95519dacd00173;hb=HEAD
14:13:55mortalispamaury: I didn't think about it, i thought you able to run rockbox
14:13:57wodzpamaury: shorting pins is the easiest and quite safe way.
14:14:37pamauryyeah, just this palyer is a pain to disassemble
14:14:48 Quit Wardo (Ping timeout: 258 seconds)
14:32:29 Quit olspookishmagus (Quit: free() the malloc())
14:37:57 Quit DexterLB (Read error: Connection reset by peer)
14:43:22 Join DexterLB [0] (~dex@77-85-39-221.btc-net.bg)
14:52:26 Join jhMikeS [0] (~jethead71@rockbox/developer/jhMikeS)
14:54:17 Quit amayer (Ping timeout: 245 seconds)
15:00
15:05:36pamaurywodz: pin
15:05:37pamauryg
15:05:50wodzpong
15:06:11pamauryI'm thinking now, if you have sufficient time to work on them, I can send you my archoses which are rk27xx based
15:06:56wodzwell, I don't have much time really
15:07:07pamauryok
15:07:33 Join amayer [0] (~amayer@mail.weberadvertising.com)
15:08:40wodzgtg
15:08:43 Quit wodz (Quit: Leaving)
15:11:19 Quit mirog (Quit: CGI:IRC)
15:18:42 Quit DexterLB (Read error: Connection reset by peer)
15:23:57 Join DexterLB [0] (~dex@77-85-39-221.btc-net.bg)
15:34:06ViperfangHi all, getting this error: jarsigner error: java.security.SignatureException: private key algorithm is not compatible with signature algorithm
15:34:21Viperfangthats for an android target
15:35:32 Quit ungali_mobile (Ping timeout: 240 seconds)
15:44:13 Part LinusN
15:45:21 Join froggyman [0] (~me@unaffiliated/froggyman)
15:45:24 Quit kevku (Ping timeout: 245 seconds)
15:49:23 Quit mortalis (Remote host closed the connection)
15:52:01 Quit DexterLB (Read error: Connection reset by peer)
15:52:57 Quit [Saint] (Ping timeout: 252 seconds)
15:54:38 Quit froggyman (Ping timeout: 252 seconds)
15:55:20 Join ungali_mobile [0] (~yaaic@199-7-158-55.eng.wind.ca)
15:57:01 Join DexterLB [0] (~dex@77-85-39-221.btc-net.bg)
15:59:39 Quit ungali_mobile (Client Quit)
16:00
16:00:53 Join ungali_mobile [0] (~yaaic@199-7-158-55.eng.wind.ca)
16:00:58 Quit ungali_mobile (Client Quit)
16:01:21 Join ungali_mobile [0] (~yaaic@199-7-158-55.eng.wind.ca)
16:01:51 Quit ungali_mobile (Client Quit)
16:02:22 Join ungali_mobile [0] (~yaaic@199-7-158-55.eng.wind.ca)
16:03:29***Saving seen data "./dancer.seen"
16:08:47 Quit einhirn (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org)
16:11:47 Quit ungali_mobile (Ping timeout: 245 seconds)
16:13:17 Quit mrkiko (Ping timeout: 264 seconds)
16:16:34 Quit petur (Read error: Connection reset by peer)
16:20:20 Join ungali_mobile [0] (~yaaic@199-7-158-49.eng.wind.ca)
16:30:47 Quit DexterLB (Read error: Connection reset by peer)
16:36:05 Join DexterLB [0] (~dex@77-85-39-221.btc-net.bg)
16:41:12 Join Wardo [0] (~Mirandaha@176-120-190-109.dsl.ovh.fr)
16:43:30 Join stoffel [0] (~quassel@pD9E413C1.dip.t-dialin.net)
16:53:06 Quit fs-bluebot (Ping timeout: 258 seconds)
16:54:01 Quit bluebrother (Ping timeout: 255 seconds)
16:54:28 Join fs-bluebot [0] (~fs-bluebo@g224237146.adsl.alicedsl.de)
16:56:27 Join bluebrother [0] (~dom@rockbox/developer/bluebrother)
17:00
17:06:04 Join kevku [0] (~kevku@2001:470:27:773:0:feed:c0f:fee)
17:06:40 Join kaitsu1 [0] (~bubba@a91-152-170-133.elisa-laajakaista.fi)
17:32:30 Quit DexterLB (Read error: Connection reset by peer)
17:35:24 Join wodz [0] (~wodz@89-75-41-78.dynamic.chello.pl)
17:36:39 Join n1s [0] (~n1s@rockbox/developer/n1s)
17:37:41 Join DexterLB [0] (~dex@77-85-39-221.btc-net.bg)
17:40:14wodzld question: I have memory region defined, I place .text and .data there then I want to fill it with 0x20 and finally place a few magic bytes at the very end. I can't manage to do that. http://pastie.org/7586998 gives region IRAM overflow
17:40:46 Join ur725 [0] (~ur725@97-86-82-70.static.aldl.mi.charter.com)
17:42:18pamaurywodz: does it work if you remove one byte ?
17:42:50pamaurywait, you file is strange: . = 0xffd ; bjt
17:42:56pamaurybut you put a memory size of 0x200
17:43:06wodzargh
17:44:42wodzhmm, but this doesn't make sense - when I put . = 0xfd; The first BYTE() is placed at 0x1f5 offset
17:46:41pamaurybut isn't .=0xf strange given your section doesn't start at 0 ?
17:47:42 Join Strife89 [0] (~Strife89@2602:306:250d:f4d9:225:d3ff:fed6:15a)
17:47:52wodzyes, but I tried . = 0x18200ffd; and it doesn't work either
17:48:53pamaurysince you put 6 bytes at the end, shouldn't it be 0x18200fa ?
17:50:31wodzhmm, it should be at 0x18200f8 actually
17:51:24pamauryerr, missing f but you caught it: 0x18200ffa
17:52:12wodzregion `IRAM' overflowed by 404754166 bytes
17:52:36wodzit apparently advances current location instead of setting one
17:52:59 Quit stoffel (Remote host closed the connection)
17:53:56pamaurywodz: try creating two sections, with the second one having an explicit address
17:54:30pamauryerr, three, like this: ".magic 0x18200ff8 { BYE(..) ... }"
17:55:40 Join shai [0] (~Shai@l192-117-110-233.cable.actcom.net.il)
17:56:39wodzalmost works, only 0x20 filling is missing
17:57:47wodzanyway I think the filling is not important, will try this version, thanks
17:58:08 Nick Guest65295 is now known as takeyourhatoff (~takeyourh@31.185.177.212)
17:59:10pamaurywodz: FILL doesn't actually fill, it sets the fill pattern
17:59:20pamauryto actually, you want to do . += 0x20;
18:00
18:01:33 Quit kevku (Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/)
18:03:33***Saving seen data "./dancer.seen"
18:04:40fs-bluebotBuild Server message: New build round started. Revision 0c7b787, 214 builds, 37 clients.
18:08:37pamauryah ! definitely some useful sound rework, the audiohw api was so messy, now I hope it gets a bit more understandable
18:09:13jhMikeSI tried to make it as "add a setting and forget it" as I could :)
18:09:15fs-bluebotBuild Server message: Build round completed after 275 seconds.
18:09:51jhMikeSlooks like I have a bit of work left though :P
18:11:17gevaertsSome targets do build
18:11:23gevaertsSo that's a success :)
18:11:34*jhMikeS will just leave it at that then :)
18:25:07 Join kevku [0] (~kevku@2001:470:27:773:0:feed:c0f:fee)
18:38:13 Join froggyman [0] (~me@dhcp-155-92-103-232.nebula.msoe.edu)
18:38:13 Quit froggyman (Changing host)
18:38:13 Join froggyman [0] (~me@unaffiliated/froggyman)
18:38:29 Quit ender` (Quit: When I've captured my adversary and he says, "Look, before you kill me, will you at least tell me what this is all about?" I'll say, "No." and shoot him. No, on second thought I'll shoot him then say "No." -- Evil Overlord List #7)
18:41:36 Quit DexterLB (Read error: Connection reset by peer)
18:41:46 Join ender` [0] (krneki@foo.eternallybored.org)
18:41:49fs-bluebotBuild Server message: New build round started. Revision 0971f57, 214 builds, 37 clients.
18:42:49 Join bertrik [0] (~quassel@rockbox/developer/bertrik)
18:46:48 Join DexterLB [0] (~dex@77-85-39-221.btc-net.bg)
18:47:29 Quit froggyman (Ping timeout: 264 seconds)
18:48:39fs-bluebotBuild Server message: Build round completed after 410 seconds.
18:52:17 Quit bebna (Quit: Leaving.)
18:55:02 Join froggyman [0] (~me@msoe-00033403.nebula.msoe.edu)
18:55:02 Quit froggyman (Changing host)
18:55:02 Join froggyman [0] (~me@unaffiliated/froggyman)
19:00
19:01:36 Quit wodz (Ping timeout: 246 seconds)
19:01:44 Quit DexterLB (Read error: Connection reset by peer)
19:06:50 Join DexterLB [0] (~dex@77-85-39-221.btc-net.bg)
19:08:08 Join pretty_function [0] (~sigBART@123.252.212.22)
19:16:28 Quit pamaury (Ping timeout: 252 seconds)
19:27:12fs-bluebotBuild Server message: New build round started. Revision bbd991a, 214 builds, 37 clients.
19:27:56 Quit DexterLB (Read error: Connection reset by peer)
19:32:56 Join DexterLB [0] (~dex@77-85-39-221.btc-net.bg)
19:34:57fs-bluebotBuild Server message: Build round completed after 465 seconds.
19:35:23 Quit froggyman (Ping timeout: 276 seconds)
19:37:38 Join froggyman [0] (~me@unaffiliated/froggyman)
19:40:35 Quit takeyourhatoff (Quit: Leaving)
19:43:56 Quit DexterLB (Read error: Connection reset by peer)
19:48:58 Join DexterLB [0] (~dex@77-85-39-221.btc-net.bg)
19:49:56 Quit froggyman (Ping timeout: 248 seconds)
19:52:09 Join mortalis [0] (~mortalis@77.108.98.176)
19:58:28 Join wodz [0] (~wodz@89-75-41-78.dynamic.chello.pl)
20:00
20:00:32 Quit shamus (Read error: Connection reset by peer)
20:01:11 Join shamus [0] (~shmaus@ip-206-192-195-49.marylandheights.ip.cablemo.net)
20:03:15 Join pamaury [0] (~quassel@rockbox/developer/pamaury)
20:03:34***Saving seen data "./dancer.seen"
20:03:53fs-bluebotBuild Server message: New build round started. Revision 9e71fd1, 214 builds, 38 clients.
20:09:40 Quit DexterLB (Read error: Connection reset by peer)
20:11:07fs-bluebotBuild Server message: Build round completed after 433 seconds.
20:12:16gevaertsjhMikeS: still a lot of work to do if you want a *real* high score :)
20:14:18 Quit kaitsu1 (Read error: Connection reset by peer)
20:14:31*jhMikeS just plays whack-a-mole
20:15:20 Quit pib1956 (Remote host closed the connection)
20:22:42 Join froggyman [0] (~me@dhcp-155-92-103-232.nebula.msoe.edu)
20:22:42 Quit froggyman (Changing host)
20:22:42 Join froggyman [0] (~me@unaffiliated/froggyman)
20:28:33 Join DexterLB [0] (~dex@95.43.98.183)
20:31:58 Join bertrik_ [0] (~quassel@rockbox/developer/bertrik)
20:35:40 Join bertrik__ [0] (~quassel@ip117-49-211-87.adsl2.static.versatel.nl)
20:35:48 Quit bertrik (Ping timeout: 245 seconds)
20:38:03 Quit DexterLB (Read error: Connection reset by peer)
20:39:58 Quit bertrik_ (Ping timeout: 256 seconds)
20:43:04 Join DexterLB [0] (~dex@95.43.98.183)
21:00
21:00:49fs-bluebotBuild Server message: New build round started. Revision 5261b19, 214 builds, 38 clients.
21:01:13 Quit DexterLB (Read error: Connection reset by peer)
21:02:50 Join bertrik [0] (~quassel@rockbox/developer/bertrik)
21:03:21ViperfangSo, who broke the android build?
21:03:49jhMikeSmoi
21:04:25jhMikeSshould be coming back any minute though
21:04:30ViperfangCool
21:04:44jhMikeSI hope. :)
21:06:28 Quit bertrik__ (Ping timeout: 252 seconds)
21:06:37 Join DexterLB [0] (~dex@95.43.98.183)
21:07:36Viperfangok, so the binary builds again
21:07:42Viperfangany idea how to fix this one?
21:07:44Viperfangjarsigner error: java.security.SignatureException: private key algorithm is not compatible with signature algorithm
21:08:06 Join froggymana [0] (~me@unaffiliated/froggyman)
21:08:08gevaertsViperfang: that's related to jdk versions and signing keys
21:08:11bluebrotherdelete the private key so a new one gets generated? ;-)
21:08:15gevaertsNot sure of the details though
21:08:27fs-bluebotBuild Server message: Build round completed after 458 seconds.
21:08:30fs-bluebotBuild Server message: New build round started. Revision b2dd1f8, 214 builds, 38 clients.
21:09:07Viperfangbluebrother: Where is it pulling the key from?
21:09:50 Part Akranis ("WeeChat 0.3.8")
21:09:54 Quit DexterLB (Read error: Connection reset by peer)
21:11:28 Quit froggyman (Ping timeout: 264 seconds)
21:11:45 Quit bertrik (Quit: No Ping reply in 180 seconds.)
21:11:49Viperfangwiped ~/.android/debug.keystore - Thanks
21:12:10 Join bertrik [0] (~quassel@rockbox/developer/bertrik)
21:14:41 Quit mortalis (Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/)
21:14:56fs-bluebotBuild Server message: Build round completed after 385 seconds.
21:15:08 Join DexterLB [0] (~dex@95.43.98.183)
21:15:20 Join bertrik_ [0] (~quassel@rockbox/developer/bertrik)
21:15:38 Quit bertrik_ (Remote host closed the connection)
21:16:09 Quit pretty_function (Remote host closed the connection)
21:16:34bluebrotherjhMikeS: one build left :)
21:18:52 Quit bertrik (Ping timeout: 240 seconds)
21:22:41 Join lebellium_ [0] (~chatzilla@lns-c10k-ld-02-m-212-194-176-149.dsl.sta.abo.bbox.fr)
21:23:06fs-bluebotBuild Server message: New build round started. Revision 333f4f5, 214 builds, 39 clients.
21:23:43 Quit lebellium (Ping timeout: 258 seconds)
21:23:51 Nick lebellium_ is now known as lebellium (~chatzilla@lns-c10k-ld-02-m-212-194-176-149.dsl.sta.abo.bbox.fr)
21:24:45 Join einhirn [0] (Miranda@bsod.vpn.tu-clausthal.de)
21:29:35fs-bluebotBuild Server message: Build round completed after 389 seconds.
21:29:40 Quit ender` (Read error: Operation timed out)
21:29:43 Join ender` [0] (krneki@foo.eternallybored.org)
21:32:39 Join ender1 [0] (krneki@foo.eternallybored.org)
21:33:35 Join bertrik [0] (~quassel@rockbox/developer/bertrik)
21:34:34 Join [1]ender [0] (krneki@foo.eternallybored.org)
21:35:00 Quit ender` (Ping timeout: 245 seconds)
21:36:40 Join ender` [0] (krneki@foo.eternallybored.org)
21:37:00 Quit ender1 (Ping timeout: 246 seconds)
21:39:18 Quit [1]ender (Ping timeout: 255 seconds)
21:39:54 Quit DexterLB (Read error: Connection reset by peer)
21:41:28 Quit ender` (Ping timeout: 264 seconds)
21:44:10 Quit wodz (Quit: Leaving)
21:45:12 Join DexterLB [0] (~dex@95.43.98.183)
21:51:21 Quit Rower (Quit: Hmmm...)
21:52:28 Quit froggymana (Ping timeout: 245 seconds)
22:00
22:02:31 Quit DexterLB (Read error: Connection reset by peer)
22:03:38***Saving seen data "./dancer.seen"
22:06:39 Quit akaWolf (Ping timeout: 245 seconds)
22:07:44 Join DexterLB [0] (~dex@95.43.98.183)
22:15:16fs-bluebotBuild Server message: New build round started. Revision 540e5d1, 214 builds, 39 clients.
22:15:16 Quit melmothX (Quit: #)
22:15:42 Join lebellium_ [0] (~chatzilla@lns-c10k-ld-02-m-212-194-176-149.dsl.sta.abo.bbox.fr)
22:17:55 Join ender` [0] (krneki@foo.eternallybored.org)
22:18:32 Quit lebellium (Ping timeout: 258 seconds)
22:18:37 Nick lebellium_ is now known as lebellium (~chatzilla@lns-c10k-ld-02-m-212-194-176-149.dsl.sta.abo.bbox.fr)
22:18:42pixelmawhat bmp format does Rockbox need for alpha transparency again?
22:19:29jhMikeStransparent alpha bitmaps of course
22:20:48pixelmaok, on CustomWPS there's a hint for ARGB - I assume the 16bit version (so alpha 1, and RGB 5 bit each)
22:21:21fs-bluebotBuild Server message: Build round completed after 365 seconds.
22:22:16 Join saratoga [0] (123e1cf8@gateway/web/freenode/ip.18.62.28.248)
22:23:33pixelmapity magic cyan probably won't work then (to change the bitmap by using different foreground colours)
22:23:40*jhMikeS isn't even sure what generates that format besides AA fonts
22:23:54pixelmathe gimp can at least
22:25:09*pixelma just has some crazy idea(s) for theme parts, unfortunately it doesn't come out as a full theme yet
22:27:17 Join pib1963 [0] (pib1963@2600:3c00::f03c:91ff:fe70:bb80)
22:30:00 Quit DexterLB (Read error: Connection reset by peer)
22:35:17 Join DexterLB [0] (~dex@95.43.98.183)
22:37:31 Quit saratoga (Ping timeout: 245 seconds)
22:49:58 Join lebellium_ [0] (~chatzilla@lns-c10k-ld-02-m-212-194-176-149.dsl.sta.abo.bbox.fr)
22:50:24 Quit jhMikeS (Ping timeout: 255 seconds)
22:50:48 Quit lebellium_ (Read error: Connection reset by peer)
22:51:15 Join lebellium_ [0] (~chatzilla@lns-c10k-ld-02-m-212-194-176-149.dsl.sta.abo.bbox.fr)
22:52:20 Quit lebellium (Ping timeout: 248 seconds)
22:52:25 Nick lebellium_ is now known as lebellium (~chatzilla@lns-c10k-ld-02-m-212-194-176-149.dsl.sta.abo.bbox.fr)
22:53:32 Quit n1s (Quit: Ex-Chat)
22:53:38kugelpixelma: 32bit ARGB
22:54:41kugelas saved by e.g. gimp
22:59:53 Join froggyman [0] (~me@dhcp-155-92-103-232.nebula.msoe.edu)
22:59:53 Quit froggyman (Changing host)
22:59:53 Join froggyman [0] (~me@unaffiliated/froggyman)
23:00
23:00:11 Quit kevku (Ping timeout: 264 seconds)
23:03:51 Quit amayer (Ping timeout: 245 seconds)
23:19:56 Join kaputnik_ [0] (~kaputnik@port-92-206-1-127.dynamic.qsc.de)
23:20:20pixelmakugel: aha, thanks. I still guess though that magic cyan won't work as it's actually a different cyan than our usual one?
23:20:22 Quit y4n (Quit: Assumption is the mother of all fuckups)
23:20:32 Quit kaputnik__ (Read error: Operation timed out)
23:20:49kugelnot sure
23:20:53kugelyou have to try
23:21:33pixelmaok, I will
23:23:39 Join saratoga [0] (123e1cf8@gateway/web/freenode/ip.18.62.28.248)
23:24:36 Quit einhirn (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org)
23:29:45 Quit ur725 (Quit: Leaving)
23:52:56 Quit saratoga (Ping timeout: 245 seconds)
23:53:21pixelmaas I expected, changing the foreground colour this way doesn't work
23:57:03 Join zoktar [0] (~zoktar@unaffiliated/zoktar)

Previous day | Next day