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 2018-07-24

00:00:59 Quit benedikt93 (Quit: http://quassel-irc.org - Chat comfortably. Anywhere.)
00:01:09 Join benedikt93 [0] (~quassel@unaffiliated/benedikt93)
00:21:33 Quit this_is_a_nick (Ping timeout: 276 seconds)
00:23:36 Join Strife89 [0] (~quassel@adsl-98-80-194-117.mcn.bellsouth.net)
00:24:31 Quit Strife1989 (Ping timeout: 248 seconds)
00:26:05 Join this_is_a_nick [0] (~amofiuhr_@ip151-132-50-179.ct.co.cr)
01:00
01:14:33 Quit ender` (Quit: Live your Life in such a way that the Westboro Baptist Church will want to picket your funeral.)
01:56:38***Saving seen data "./dancer.seen"
02:00
02:10:01 Quit ZincAlloy (Quit: Leaving.)
03:00
03:56:40***Saving seen data "./dancer.seen"
03:57:54__builtinWow, that's a long commit message, _Bilgus
03:58:20_Bilgusmonths of work :p
03:58:55_Bilgusoh __builtin any clue why some of the targets wouldn't create new files?
03:59:30_Bilguscp: cannot create regular file '/home/bjst/src/rockbox-rbclient/build-mpiohd200sim/apps/plugins/lua/blit.lua': No such file or directory
03:59:50_BilgusI couldn't reproduce it on my side..
03:59:53__builtinLemme see
04:00
04:01:18__builtinOdd, I can't view the build output on the site
04:01:41__builtinAll I get is a blank page with just the target name
04:03:44_Bilguslook at the one just before the revert its the same
04:10:08__builtinI'm guessing the parent directory doesn't exist
04:10:33 Quit this_is_a_nick (Remote host closed the connection)
04:13:11_Bilgushmm so should I create it first then or just move it to after the files that create it in the make file?
04:13:53__builtinI'll take a look at the makefile that's doing that
04:14:12__builtin(I don't have a build environment at the moment, though)
04:17:56 Quit quaz0r (Quit: WeeChat 2.2-dev)
04:18:26 Join quaz0r [0] (~quaz@c-24-18-93-195.hsd1.wa.comcast.net)
04:18:49_BilgusThe rocklib_aux.pl file creates a file within the same directory but maybe I'm missing something
04:20:05_Bilgusno sorry thats action_helper.pl
04:24:39__builtinthere's one thing in the lua.make file that stands out to me
04:24:54__builtinyou have the line "+$(LUA_INCLUDELIST): %: $(LUA_INCLUDEDIR)/%.lua"
04:25:59__builtinwhat's the first "%:" supposed to do?
04:26:50_BilgusI think that just prints out CP filename
04:28:10_Bilgusnah maybe not Its been months ago that I wrote this It looks like someone elses code already lol
04:28:37__builtinI don't thiink that's proper syntax, that build rule (though I might be wrong)
04:29:25__builtinyou have two targets on a single line, both with colons after them
04:30:48__builtinyeah, see https://www.gnu.org/software/make/manual/make.html#Rule-Syntax
04:31:02__builtinit's supposed to be "target1 target2: prereqs1
04:32:08__builtinbut you have "target1: target2: prereqs", with a colon after each target name
04:32:24__builtinalso, why are you specifying a target rule for "%"?
04:36:29_Bilgusit looks like a typo to me
04:38:00_Bilgusit becomes a prerequisite but I think it needs the extension too
04:38:41_Bilgustargets : prerequisites ; recipe
04:38:56_Bilgusmaybe just the semicolon
04:39:51_Bilgusah duh you are right
04:40:20_Bilgusit should be $(LUA_INCLUDELIST) : $(LUA_INCLUDEDIR)/%.lua
04:41:23_Bilgusnope I guess not /home/ubuntu/Desktop/rockbox_gerrit/rockbox/apps/plugins/lua/include_lua/%.lua', needed by `blit'. Stop.
04:42:47 Join this_is_a_nick [0] (~amofiuhr_@ip39-154-64-186.ct.co.cr)
05:00
05:14:51__builtinsorry, wandered off for a bit
05:15:10__builtinwhat exactly are you trying to do with these rules?
05:15:59_BilgusI just need to copy the include files no processing
05:17:18__builtinso you've got files [a, b, c] under include_lua/, right?
05:17:33__builtinand you want to copy them to LUA_BUILDDIR/[a, b, c]?
05:21:17_Bilgusyep CP rockbox/apps/plugins/lua/include_lua[a, b, c] /apps/plugins/lua.[a, b, c]
05:21:34_Bilgusand on install they end up in /.rockbox/rocks/viewers/lua/[a, b, c]
05:21:59_Bilgusit works perfectly on 90% of the targets just not those few
05:27:19__builtinit's just that you've chosen to do it in a really weird way in the Makefile
05:27:49__builtinit would make more sense to add LUA_BUILDDIR/[a,b,c] as the prerequisites of lua.rock
05:28:42__builtinrather than [a, b, c] as you've done now (which causes make to think it needs to create the files [a, b, c] in the *top-level* build directory, not the lua build directory)
05:29:44_BilgusI'm pretty sure I tried that the first time but it puked on it but I'll try again to confirm
05:30:53__builtinthen you'd just need a rule $(LUA_BUILDDIR)/%.lua
05:56:43***Saving seen data "./dancer.seen"
06:00
06:14:09 Quit TheSeven (Ping timeout: 260 seconds)
06:15:01 Join TheSeven [0] (~quassel@rockbox/developer/TheSeven)
06:58:49 Quit TheSeven (Disconnected by services)
06:58:59 Join [7] [0] (~quassel@rockbox/developer/TheSeven)
07:00
07:11:32fs-bluebotBuild Server message: New build round started. Revision aefdd20, 275 builds, 13 clients.
07:13:18_Bilgusfor future reference $(files):%:%.lua is a static pattern https://www.gnu.org/software/make/manual/make.html#Static-Pattern
07:25:42fs-bluebotBuild Server message: Build round completed after 849 seconds.
07:25:43fs-bluebotBuild Server message: Revision aefdd20 result: 22 errors 79 warnings
07:28:57 Join Gyuritzy [0] (8d710322@gateway/web/freenode/ip.141.113.3.34)
07:29:25GyuritzyGood morning
07:30:36_Bilgus@__builtin, I think its an issue with those particular build servers I've one more idea and then I give
07:31:11_Bilgusit seems to follow zagors
07:32:23fs-bluebotBuild Server message: New build round started. Revision 1482a31, 275 builds, 13 clients.
07:34:40_BilgusGyuritzy, are you the person with the Creative Zen X-Fi
07:35:10Gyuritzyyes
07:41:26Gyuritzy@_Bilgus do you think you can give me some advice?
07:42:03_BilgusI saw your post on the forum in linux have you tried looking at the disk give me a minute I think there is a help file on the wiki
07:43:19Gyuritzythe disc is showing up as a 60Mb disc, I can't format it, I can't put any file on it.
07:44:35GyuritzyI can not format all (it says it's formatting but then I get a black screen), I can't erase firmware (error message at the end: Media problem).
07:45:57_Bilgusok so I saw you were trying to put the OF back on the device
07:46:12_Bilgus https://www.rockbox.org/wiki/CreativeZENPort
07:46:42_Bilgustry putting the RB bootloader on it and follow the instructions for the reformat
07:47:16_Bilgusthe OF are generally pretty rigid in their acceptable parameters also do this from linux
07:47:52Gyuritzythe only bootloader I can get on - which does anything to the player is zenxfi_pcfw_l22_1_04_08e_rk_fresc.nk
07:48:07_Bilgusother than that I'm not familar with the player so you will probably have to talk to pamaury but he is MIA
07:48:33fs-bluebotBuild Server message: Build round completed after 971 seconds.
07:48:34fs-bluebotBuild Server message: Revision 1482a31 result: 0 errors 64 warnings
07:49:05GyuritzyI was hoping to see him (pamaury) on irc...
07:50:02Gyuritzydo you know any other way to contact him? I tried his e-mail...
07:54:51Gyuritzyis there any tool to connect to the player? other than sbloader and sendfirm
07:54:55_BilgusI'm unsure of how else you can besides waiting till he isn't busy
07:55:30GyuritzyI have the feeleing that sendfirm is using the wrong vid:pid
07:55:47_BilgusIIRC sbloader has some other in built commands to change that
07:56:19_BilgusI'm also unsure why the OF file would work but not the rockbox bootloader
07:56:34Gyuritzycan I send the firmware with sbloader? I tried but it does nothing...
07:56:44***Saving seen data "./dancer.seen"
07:59:48Gyuritzypamaury did some changes on the sbloader... oh but then it should work with both booloader files...
08:00
08:00:43Gyuritzywhere can I get this tool IIRC sbloader? or is it the one which I already have?
08:01:38GyuritzyI have no ideea why it does not work... I tried all of them, the only one which works is the one I wrote above (the one with fresc)
08:03:14_Bilguswell if sendfirm works i'd its the correct one again I'm sorry but I haven't used that player to give you any real insight
08:03:49Gyuritzysendfirm does not work at all
08:04:14Gyuritzyif I have the player and another usb device, then it will send the file to the usb device...
08:04:27Gyuritzythe only tool which is working is sbloader
08:05:44GyuritzyI could get the creative original firmware updater to see my player and try to send the firmware, but in the end I only get a black screen, I must then reboot and I am back at the begining
08:06:14Gyuritzysendfirm gives me error occured during sending error message
08:10:13_Bilguswell sbloader has some otheroptions you should be able to type sbloader -h in linux to see them
08:11:46_Bilgusalso after you transfer the rbbootloader have you tried hooking up to a charger (NOT THE PC) and see if it might be a super low battery?
08:12:49Gyuritzythe player starts on the pc to charge and then at some point I get the graphic of a full battery
08:15:33_Bilgusnot on the pc..
08:17:48GyuritzyI undocked the player from pc - it says the battery is full
08:18:03 Join ender` [0] (krneki@foo.eternallybored.org)
08:19:16Gyuritzyis there any other way to format the player drive with command lines?
08:32:34fs-bluebotBuild Server message: New build round started. Revision 1b68aea, 275 builds, 13 clients.
08:33:38_BilgusI'm sure there is but I couldn't tell you how
08:57:35 Quit dys (Ping timeout: 268 seconds)
09:00
09:06:44 Join wodz [0] (~wodz@iwl138.internetdsl.tpnet.pl)
09:56:45***Saving seen data "./dancer.seen"
10:00
10:07:05 Join dandels [0] (~dandels@unaffiliated/dandels)
10:16:29 Quit dandels (Ping timeout: 256 seconds)
10:22:12 Join ZincAlloy [0] (~Adium@2a02:8108:8b80:1700:394d:8556:87a8:8a7a)
10:26:12 Quit ZincAlloy (Client Quit)
10:26:35 Join ZincAlloy [0] (~Adium@2a02:8108:8b80:1700:394d:8556:87a8:8a7a)
10:31:45 Quit ZincAlloy (Quit: Leaving.)
11:00
11:26:21 Join ZincAlloy [0] (~Adium@2a02:8108:8b80:1700:394d:8556:87a8:8a7a)
11:56:47***Saving seen data "./dancer.seen"
13:00
13:02:58wodzhello, I am not good at UI so I have a question how should bluetooth menu looks like? Basically it should be possible to ON and OFF, scan for devices, connect, disconnect, remove from paired list. Help welcome
13:15:21 Quit deevious (Ping timeout: 268 seconds)
13:20:02 Join deevious [0] (~Thunderbi@193.226.142.214)
13:20:31 Quit ZincAlloy (Quit: Leaving.)
13:21:19 Join ZincAlloy [0] (~Adium@2a02:8108:8b80:1700:394d:8556:87a8:8a7a)
13:36:47 Join massiveH [0] (~massiveH@ool-18e4e27c.dyn.optonline.net)
13:44:42 Quit ZincAlloy (Quit: Leaving.)
13:47:49 Join ZincAlloy [0] (~Adium@2a02:8108:8b80:1700:394d:8556:87a8:8a7a)
13:56:49***Saving seen data "./dancer.seen"
14:00
14:09:54 Join amayer [0] (~amayer@107-1-97-172-ip-static.hfc.comcastbusiness.net)
14:45:30 Quit jhMikeS (Ping timeout: 244 seconds)
14:50:47 Join jhMikeS [0] (~jethead71@24.192.177.173)
14:54:56 Quit jhMikeS (Ping timeout: 248 seconds)
14:56:08 Quit quaz0r (Ping timeout: 264 seconds)
15:00
15:12:58 Part Gyuritzy
15:31:06 Join quaz0r [0] (~quaz@c-24-18-93-195.hsd1.wa.comcast.net)
15:36:18 Quit wodz (Ping timeout: 265 seconds)
15:56:52***Saving seen data "./dancer.seen"
16:00
16:42:56 Quit michaelni (Ping timeout: 240 seconds)
16:55:31 Join michaelni [0] (~michael@213-47-41-20.cable.dynamic.surfer.at)
17:00
17:02:46 Join Strife1989 [0] (~quassel@adsl-98-80-189-187.mcn.bellsouth.net)
17:06:08 Quit Strife89 (Ping timeout: 260 seconds)
17:56:55***Saving seen data "./dancer.seen"
18:00
18:15:13 Join krabador [0] (~krabador@unaffiliated/krabador)
18:18:17 Quit noobineer (Quit: Leaving)
18:37:20 Quit quaz0r (Ping timeout: 248 seconds)
19:00
19:06:11 Quit Strife1989 (Ping timeout: 256 seconds)
19:13:10 Quit krabador (Remote host closed the connection)
19:20:15 Join lebellium [0] (~hexchat@89-92-253-253.hfc.dyn.abo.bbox.fr)
19:21:57 Join dys [0] (~dys@tmo-109-164.customers.d1-online.com)
19:33:33 Join Strife89 [0] (~quassel@adsl-98-67-57-103.mcn.bellsouth.net)
19:34:59 Join quaz0r [0] (~quaz@c-24-18-93-195.hsd1.wa.comcast.net)
19:45:05 Quit quaz0r (Ping timeout: 268 seconds)
19:47:45 Quit JanC (Remote host closed the connection)
19:48:08 Join JanC [0] (~janc@lugwv/member/JanC)
19:54:20 Quit mikroflops (Ping timeout: 264 seconds)
19:55:57 Join mikroflops [0] (~yogurt@c83-255-27-121.bredband.comhem.se)
19:56:59***Saving seen data "./dancer.seen"
19:57:09 Join krabador [0] (~krabador@unaffiliated/krabador)
19:58:05 Quit Strife89 (Ping timeout: 244 seconds)
20:00
20:01:18 Join TheLemonMan [0] (~lemonboy@irssi/staff/TheLemonMan)
20:04:56 Join Strife89 [0] (~quassel@adsl-98-80-189-110.mcn.bellsouth.net)
20:09:32 Join aevin [0] (eivindsy@unaffiliated/aevin)
20:10:25 Join Strife1989 [0] (~quassel@adsl-98-80-186-17.mcn.bellsouth.net)
20:11:37 Quit Strife89 (Ping timeout: 260 seconds)
20:13:22 Quit GeekShadow (Ping timeout: 260 seconds)
20:26:11 Quit this_is_a_nick (Remote host closed the connection)
20:35:09 Quit Strife1989 (Ping timeout: 276 seconds)
20:35:33 Join GeekShadow [0] (~antoine@nzf.turmel.info)
20:35:33 Quit GeekShadow (Changing host)
20:35:33 Join GeekShadow [0] (~antoine@reactos/tester/GeekShadow)
20:41:34 Join quaz0r [0] (~quaz@c-24-18-93-195.hsd1.wa.comcast.net)
20:44:18 Quit TheLemonMan (Quit: "It's now safe to turn off your computer.")
20:46:48 Quit krabador (Remote host closed the connection)
20:56:14 Join jhMikeS [0] (~jethead71@24.192.177.173)
20:56:51 Join Strife89 [0] (~quassel@adsl-98-67-57-103.mcn.bellsouth.net)
21:00
21:02:29 Quit Strife89 (Ping timeout: 256 seconds)
21:14:07 Quit quaz0r (Ping timeout: 248 seconds)
21:24:06 Join Strife89 [0] (~quassel@adsl-98-80-193-120.mcn.bellsouth.net)
21:29:23 Join quaz0r [0] (~quaz@c-24-18-93-195.hsd1.wa.comcast.net)
21:32:31 Quit Strife89 (Ping timeout: 256 seconds)
21:33:26 Join Strife89 [0] (~quassel@adsl-98-80-194-36.mcn.bellsouth.net)
21:37:18 Join Strife1989 [0] (~quassel@adsl-98-80-192-120.mcn.bellsouth.net)
21:37:22 Quit quaz0r (Ping timeout: 260 seconds)
21:39:53 Quit Strife89 (Ping timeout: 256 seconds)
21:48:20 Quit Strife1989 (Ping timeout: 264 seconds)
21:57:01***Saving seen data "./dancer.seen"
22:00
22:14:34 Join this_is_a_nick [0] (~amofiuhr_@201.196.87.171)
22:34:53 Join quaz0r [0] (~quaz@c-24-18-93-195.hsd1.wa.comcast.net)
22:43:26 Quit amayer (Quit: Leaving)
22:55:23 Quit this_is_a_nick (Remote host closed the connection)
22:58:43 Join this_is_a_nick [0] (~amofiuhr_@201.196.87.171)
23:00
23:00:12 Quit quaz0r (Ping timeout: 256 seconds)
23:13:50 Join quaz0r [0] (~quaz@c-24-18-93-195.hsd1.wa.comcast.net)
23:14:36 Quit lebellium (Quit: Leaving)
23:47:10 Join amiconn_ [0] (~amiconn@rockbox/developer/amiconn)
23:47:10 Nick amiconn is now known as Guest64136 (~amiconn@rockbox/developer/amiconn)
23:47:10 Quit Guest64136 (Killed (moon.freenode.net (Nickname regained by services)))
23:47:10 Nick amiconn_ is now known as amiconn (~amiconn@rockbox/developer/amiconn)
23:47:51 Join pixelma_ [0] (~pixelma@rockbox/staff/pixelma)
23:47:51 Nick pixelma is now known as Guest33496 (~pixelma@rockbox/staff/pixelma)
23:47:51 Quit Guest33496 (Killed (moon.freenode.net (Nickname regained by services)))
23:47:51 Nick pixelma_ is now known as pixelma (~pixelma@rockbox/staff/pixelma)
23:57:05***Saving seen data "./dancer.seen"

Previous day | Next day