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-05-02

00:01:49 Join ender` [0] (krneki@foo.eternallybored.org)
00:09:34 Join _builtin [0] (~xray@rockbox/developer/builtin)
00:12:23 Quit __builtin (Ping timeout: 260 seconds)
00:13:58user890104_builtin: BMPOBJ = $(addprefix $(BUILDDIR), $(shell echo $(BMP:.bmp=.o) | sed 's%$(ROOTDIR)/%/%g'))
00:14:30user890104but it can also fail, if your ROOTDIR is for example in /apps
00:20:41 Join krabador [0] (~krabador@unaffiliated/krabador)
00:35:03 Join Strife89 [0] (~quassel@adsl-98-80-197-138.mcn.bellsouth.net)
00:57:07 Join jhMikeS [0] (~jethead71@d192-24-173-177.try.wideopenwest.com)
00:59:36 Quit Ruhan (Quit: Connection closed for inactivity)
01:00
01:20:29***Saving seen data "./dancer.seen"
01:36:14_builtindid you ever get the awk version to work?
01:45:03 Quit ZincAlloy (Quit: Leaving.)
01:45:25 Nick _builtin is now known as __builtin (~xray@rockbox/developer/builtin)
01:47:58__builtinhmm, while I'm on the makefile bandwagon I might as well fix puzzles.make
01:48:34__builtinI'll probably throw out all the code for a combined build
01:51:45 Quit ender` (Quit: The whole principle is wrong; it's like demanding that grown men live on skim milk because the baby can't eat steak. — Robert A. Heinlein on Censorship (from The Man Who Sold the Moon))
01:54:39__builtinand maybe I'll fix mines too
02:00
02:01:05 Quit krabador (Quit: Leaving)
02:38:07 Join pamaury [0] (~pamaury@rockbox/developer/pamaury)
02:40:42 Quit MrZeus (Ping timeout: 255 seconds)
02:49:25 Quit xorly (Ping timeout: 240 seconds)
03:00
03:20:31***Saving seen data "./dancer.seen"
03:26:48 Quit prg318 (Quit: WeeChat 1.7.1)
03:31:37 Join Ruhan [0] (uid76353@gateway/web/irccloud.com/x-gvhfgrtgkamgdtzw)
03:35:16 Join prg318 [0] (~prg318@deadcodersociety/prg318)
03:41:45saratogahow do i test changes to a lang file for errors? just compile?
03:42:27pamauryI guess...
03:42:35pamaurymake sure to make clean though
03:47:25saratogajust a little nervous about committing stuff without the build system
03:47:42__builtinyeah, we need to do something
03:50:17__builtinthe least disruptive would of course be a fix for gerrit, but I don't know how probable that is
03:51:37 Quit prof_wolfff (Ping timeout: 260 seconds)
03:57:06saratogado we add people to CREDITS for translations?
03:58:53saratogalooks like historically we have
04:00
04:05:41pamaurywe need to decide what to do about gerrit/github move/other?
04:06:13*__builtin votes for fixing gerrit
04:07:14pamaurythe problem is that badger does not know how to fix gerrit and we don't have access to the server :( Otherwise I would be up for fixing gerrit
04:16:42 Quit [Saint] (Remote host closed the connection)
04:20:07 Quit jhMikeS (Ping timeout: 276 seconds)
04:53:19 Join [Saint] [0] (~sinner@rockbox/staff/saint)
05:00
05:01:06[Saint]Congratulations on the release, ladies and gentlemen.
05:01:12[Saint]Sorry I haven't been around much.
05:20:32***Saving seen data "./dancer.seen"
05:27:45 Quit [Saint] (Remote host closed the connection)
05:29:07 Join [Saint] [0] (~sinner@rockbox/staff/saint)
05:31:54 Join PurlingNayuki [0] (~Thunderbi@123.116.193.26)
05:36:07 Join Strife1989 [0] (~quassel@adsl-98-80-191-106.mcn.bellsouth.net)
05:36:34 Quit PurlingNayuki (Ping timeout: 268 seconds)
05:40:04 Quit Strife89 (Ping timeout: 276 seconds)
05:52:58user890104__builtin: both these ways work, but the build fails with the same message, even after cleaning - maybe there's more substitution somewhere else?
05:53:06user890104BMPOBJ = $(subst $(ROOTDIR)/,$(BUILDDIR)/,$(BMP:.bmp=.o))
05:53:11user890104BMPOBJ = $(addprefix $(BUILDDIR), $(shell echo $(BMP:.bmp=.o) | sed 's%$(ROOTDIR)/%/%g'))
05:53:31user890104$(call PRINTS,$(BMPOBJ)) shows the paths are correct, but still:
05:53:39user890104make: *** No rule to make target '/rockbox/build-sim-win64/apps/bitmaps/native/rockbox/build-sim-win64logo.320x98x16.o', needed by '/rockbox/build-sim-win64/rockboxui.exe'. Stop.
06:00
06:00:09pamauryuser890104: I have not followed the discussion, what is the problem?
06:04:29user890104pamaury: i'm trying to build a rockbox win32 simulator in a vagrant virtual machine, having the rockbox git repo as a shared folder from the VM host, mounted inside at /rockbox
06:04:55user890104and there's a substitution rule that is supposed to strip the rootdir prefix and prepend a builddir prefix
06:05:27user890104but since my rootdir is /rockbox, it replaces the part in .../rockboxlogo....
06:06:22user890104so apps/bitmaps/native/rockboxlogo.320x98x16.o becomes apps/bitmaps/native/rockbox/build-sim-win64logo.320x98x16.o
06:07:19pamauryI see, that's an interesting corner case... Let me think about it for a second
06:07:49 Quit [Saint] (Remote host closed the connection)
06:08:06pamauryin which makefile is this substitution made ?
06:08:27user890104apps/bitmaps/bitmaps.make
06:08:31user890104line 28
06:09:08 Join [Saint] [0] (~sinner@rockbox/staff/saint)
06:12:24pamauryI don't have the same code
06:12:25pamauryBMPOBJ = $(BMP:$(ROOTDIR)/%.bmp=$(BUILDDIR)/%.o)
06:12:48user890104yes, what i pasted are two workaround attempts
06:13:27pamaurywhat is strange is that builddir and rootdir are supposed to be absolute path I think
06:13:36pamaurythus this type of strange substitution should not happen
06:13:45user890104they are absolute
06:14:07pamauryah "/rockbox", damn
06:14:12user890104:)
06:15:54pamauryone would need to use regex to enforce matching at the beginning of the string
06:19:05*pamaury tries to reproduce the problem first
06:20:34user890104it would also happen if the source code is in /apps, /bitmaps or /native
06:21:14user890104it's not common to see such names, but it shows that the substitution is wrong
06:21:18[Saint]__builtin: how, or did, you handle the bootloaders?
06:21:35[Saint]Did you just tag off a new release with the old bootloaders, or did you rebuild?
06:21:49user890104so, at the moment $(BMP) is:
06:21:51user890104/rockbox/apps/bitmaps/mono/default_icons.bmp /rockbox/apps/bitmaps/native/rockboxlogo.320x98x16.bmp /rockbox/apps/bitmaps/native/usblogo.176x48x16.bmp
06:21:55[Saint]Just wondering if you got the nano2g bootloader right.
06:22:15[Saint]Beause that needs to be encrypted on device after building it, using cryptfw.
06:22:31user890104and then using the makefile-only approach:
06:22:33user890104BMPOBJ = $(subst $(ROOTDIR)/,$(BUILDDIR)/,$(BMP:.bmp=.o))
06:22:42[Saint]If all you guys did was tag off a new version of the old binaries, then it's sweet.
06:22:49user890104$(BMPOBJ) is:
06:22:51user890104/rockbox/build-sim-win64/apps/bitmaps/mono/default_icons.o /rockbox/build-sim-win64/apps/bitmaps/native/rockboxlogo.320x98x16.o /rockbox/build-sim-win64/apps/bitmaps/native/usblogo.176x48x16.o
06:23:07[Saint]If not and you didn't encrypt the n2g bootloader someone's gonna have a bad/annoying day.
06:23:24user890104which is correct, but the build stil fails, looking for a rule to build /rockbox/build-sim-win64/apps/bitmaps/native/rockbox/build-sim-win64logo.320x98x16.o
06:23:57user890104[Saint]: IIUC only rockbox was released, not new bootloader versions
06:25:31[Saint]Aha. Cool, I guess. But the n2g kinda needs the git head bootloader.
06:25:54[Saint]But...it has for years. So, I guess no one's doin' too badly.
06:26:09[Saint]Or, they use emCORE, probably.
06:26:18pamaury[Saint]: rockbox release is independent or bootloader release. If what you say is right then someone needs to release a new n2g bootloader. Most probably someone that knows the n2g
06:26:28pamaury*of
06:27:00[Saint]Yeah, I'm aware the releases are independent, but historically releases have been convenient branch points for bootloaders as well.
06:27:15[Saint]SO I wondered if that was the case this time or if it was just the Rb binaries.
06:27:18[Saint]*So
06:27:56user890104what's left in order to mark the classics port as stable?
06:27:58pamauryafaik just rb binaries. But I am planning on doing bootloader releases for some targets I know
06:28:00user890104just manual?
06:29:14[Saint]The old n2g bootloader will still boot the current binaries, I just wondering _in case you had_ done bootloader as well, because it isn't obvious to someone that isn;t familiar with the hardware that the n2g bootloader needs to be run through cryptfw to become *.ipodx
06:29:34[Saint]At first glance it would look like just another *.ipod bootloader
06:29:59[Saint]It would certainly be nice to get the git head n2g bootloader out, but it's not terribly important.
06:30:19[Saint]I do imagine most people use emCORE on n2g these days.
06:30:33user890104i'm wondering if i can setup a build client with a nano2g running emcore attached to it
06:30:42user890104so it can build the bootloader on demand
06:30:48[Saint]Oh, for cryptfw access?
06:30:49pamauryuser890104: can you try with this:
06:30:49pamauryBMPOBJ =$(shell echo $(BMP) | sed 's|^$(ROOTDIR)/\(.*\)\.bmp|$(BUILDDIR)/\1.o|')
06:30:54[Saint]Yeah, neat.
06:31:00user890104[Saint]: yes :)
06:31:55user890104pamaury: this produces:
06:31:57user890104/rockbox/build-sim-win64/apps/bitmaps/mono/default_icons.bmp /rockbox/apps/bitmaps/native/rockboxlogo.320x98x16.bmp /rockbox/apps/bitmaps/native/usblogo.176x48x16.o
06:31:58[Saint]The iPod Nano 2G is kinda a fucky target.
06:31:58[Saint]Apple was living dangerously then. The target, for the timeline, is insanely fast. And the screen and the general form factor was nice.
06:32:11[Saint]But a maximum of 16GB NAND made them nearly useless.
06:32:17[Saint]ANd the 16GB ones are like unicorns.
06:32:28[Saint]EVen the 8GB ones are uncommon enough.
06:32:35user890104i think i should add |g ?
06:32:36 Join prof_wolfff [0] (~prof_wolf@62.83.49.172.dyn.user.ono.com)
06:32:46[Saint]Bah - stoopid sticky shift key.
06:32:48[Saint]Sorry.
06:33:10pamauryuser890104: no, the idea is to match at the beginning of the line, sed needs to be run for each word separately
06:33:31pamaurymake+shell is not exactly nice :-/
06:33:35user890104pamaury: word bourdinary then?
06:33:59user890104my makefile-only solutions produces the correct content of the variable
06:34:05pamauryyes, assuming there are no space in the paths... (which our build system may not handle anyway)
06:34:22user890104it's just that there's probably another substitution somewhere else
06:34:34user890104and i don't know how to debug make
06:34:35pamaurywhat is your makefile-only solution?
06:34:49pamaurythere are subtitutions happenning all over the place unfortunately
06:35:11user890104look at the messages from :21-:23
06:35:32pamauryBMPOBJ = $(subst $(ROOTDIR)/,$(BUILDDIR)/,$(BMP:.bmp=.o))
06:35:42pamaury?
06:35:46user890104yes
06:35:56user890104it handles my case correctly
06:36:02pamaurythis could suffer from the same problem though
06:36:13user890104and make still finds the wrong path somehow
06:36:15pamauryactually I think there is a better solution, give me a second
06:36:46user890104ok thanks
06:37:28user890104if i can get make to output each substitution for a target file, it would be nice
06:37:40user890104and i'd get gigabytes of logs at the same time...
06:46:55pamauryuser890104: here is a solution (I think):
06:46:55pamauryNO_MATCH=this_string_will_never_match_anything
06:46:55pamauryBMPOBJ=$(patsubst $(NO_MATCH)/%,%, $(patsubst $(NO_MATCH)/$(ROOTDIR)/%.bmp, $(__BUILDDIR)/%.o, $(addprefix $(NO_MATCH)/, $(BMP))))
06:47:35pamaurynow if there are other subsitutions they would need to fix. May this kind of substitution could be turn into a make function
06:51:02pamaurysomething like this:
06:51:03pamauryNO_MATCH=this_string_will_never_match_anything
06:51:03pamauryfull_path_subst=$(patsubst $(NO_MATCH)/%,%, $(patsubst $(NO_MATCH)/$(1), $(2), $(addprefix $(NO_MATCH)/, $(3))))
06:51:03DBUGEnqueued KICK pamaury
06:51:03pamaury__BMPOBJ=$(call full_path_subst,$(__ROOTDIR)/%.bmp,$(__BUILDDIR)/%.o,$(__BMP))
06:55:00 Nick Guest80758 is now known as olspookishmagus (~pookie@snf-137798.vm.okeanos.grnet.gr)
07:00
07:00:13 Quit TheSeven (Ping timeout: 258 seconds)
07:00:26 Join [7] [0] (~quassel@rockbox/developer/TheSeven)
07:01:45pamauryuser890104: I have setup a repository on my box at /rockbox, I'll try to fix the problems if I can now
07:07:21pamauryindeed there is another substitution somewhere...
07:10:57pamauryuser890104: I think it's line 160 in root.make
07:12:42pamaury__builtin: /rockbox/build_fuzep_sim/apps/plugins/puzzles/src/bridges.o:/rockbox/apps/plugins/puzzles/src/bridges.c:1927: more undefined references to `random_upto' follow
07:12:53pamaurywith head on fuze plus simulator
07:14:05pamauryuser890104: g#1602
07:14:07fs-bluebotGerrit review #1602 at http://gerrit.rockbox.org/r/1602 : Fix unsafe substitutions in Makefile. by Amaury Pouly
07:20:36***Saving seen data "./dancer.seen"
07:23:39 Join dovber [0] (~dovber@2600:8801:3180:3a9:beee:7bff:fee3:335f)
07:25:23 Join idonob [0] (~Owner@S010600259c3e7d7b.vs.shawcable.net)
07:32:10 Join PurlingNayuki [0] (~Thunderbi@123.116.193.26)
07:36:49 Quit PurlingNayuki (Ping timeout: 268 seconds)
07:47:15 Join jhMikeS [0] (~jethead71@d192-24-173-177.try.wideopenwest.com)
07:48:08 Join Yogurt_ [0] (~Yogurt@4daeb4bb.ftth.telfortglasvezel.nl)
08:00
08:04:46 Join deevious [0] (~Thunderbi@188.25.209.46)
08:08:19 Join Horrorcat [0] (129994c4c6@unaffiliated/horrorcat)
08:24:03 Quit Xeha (Ping timeout: 260 seconds)
08:24:09 Quit michaelni (Ping timeout: 258 seconds)
08:26:19 Join Xeha [0] (~Xeha@unaffiliated/k1773r)
08:37:37 Join michaelni [0] (~michael@213-47-41-20.cable.dynamic.surfer.at)
08:38:51 Join Strife89 [0] (~quassel@adsl-98-80-189-113.mcn.bellsouth.net)
08:42:48 Quit Strife1989 (Ping timeout: 268 seconds)
08:50:21 Nick GodEater` is now known as GodEater (~whoknows@176.252.138.218)
08:50:34 Quit GodEater (Changing host)
08:50:34 Join GodEater [0] (~whoknows@rockbox/staff/GodEater)
09:00
09:11:28 Quit deevious (Quit: deevious)
09:17:11 Quit Yogurt_ (Ping timeout: 260 seconds)
09:20:37***Saving seen data "./dancer.seen"
09:39:04 Join petur [0] (~petur@rockbox/developer/petur)
09:47:09 Join elensil [0] (~edhelas@535580F9.cm-6-6c.dynamic.ziggo.nl)
09:48:08 Join Yogurt_ [0] (~Yogurt@ip-145-116-170-23.wlan-int.ru.nl)
10:00
10:01:05 Join knitt1 [0] (~knittl@unaffiliated/knittl)
10:01:22 Quit knittl (Ping timeout: 264 seconds)
10:01:32 Quit funman (Ping timeout: 264 seconds)
10:01:32 Quit ruskie (Ping timeout: 264 seconds)
10:01:40 Join funman [0] (~fun@chui-pas.net)
10:07:08 Join MrZeus [0] (~MrZeus@81.144.218.162)
10:19:20 Join PurlingNayuki [0] (~Thunderbi@114.255.40.60)
10:36:34 Join ruskie [0] (~ruskie@sourcemage/mage/ruskie)
10:42:38 Join ender` [0] (krneki@foo.eternallybored.org)
10:48:34 Join jhaluska [0] (~nothing@ool-457e6532.dyn.optonline.net)
10:49:10jhaluskaCongrats on releasing 3.14. Do you know when the RockBox Utility will be updated to have 3.14?
10:51:55 Quit igorsk (Ping timeout: 245 seconds)
10:57:07pamauryjhaluska: soon, we are still fixing some problems on Windows and Mac because of recent additions to RbUtil
11:00
11:08:08gevaertsjhaluska: it should have it
11:08:19gevaertsI installed 3.14 using RockBox Utility yesterday
11:09:19 Join igorsk [0] (~igorsk@host-85-201-83-23.dynamic.voo.be)
11:11:47 Join ZincAlloy [0] (~Adium@2a02:8108:8b80:1700:3125:668b:8b00:f222)
11:13:48 Quit igorsk (Ping timeout: 260 seconds)
11:15:02 Join xorly [0] (~xorly@ip-86-49-24-93.net.upcbroadband.cz)
11:20:38***Saving seen data "./dancer.seen"
11:20:51 Join igorsk [0] (~igorsk@host-85-201-83-23.dynamic.voo.be)
11:36:03 Quit duo8 (Ping timeout: 260 seconds)
11:46:30 Quit advcomp2019 (Ping timeout: 245 seconds)
11:52:07 Quit PurlingNayuki (Ping timeout: 268 seconds)
12:00
12:12:55 Quit petur (Quit: Connection reset by beer)
12:13:48 Join robertd1 [0] (~root@201.242.174.75)
12:33:43 Quit MrZeus (Ping timeout: 240 seconds)
12:35:44 Quit ZincAlloy (Quit: Leaving.)
12:37:10 Join paulk-collins [0] (~paulk@gagarine.paulk.fr)
13:00
13:20:42***Saving seen data "./dancer.seen"
13:25:06 Join MrZeus [0] (~MrZeus@2a02:c7f:7066:fb00:989d:f202:d02f:e97c)
13:44:06 Quit jhMikeS (Ping timeout: 260 seconds)
14:00
14:15:46 Join jhMikeS [0] (~jethead71@d192-24-173-177.try.wideopenwest.com)
14:16:59 Join krabador [0] (~krabador@unaffiliated/krabador)
14:35:27 Join MrZeus1 [0] (~MrZeus@2a02:c7f:7066:fb00:6978:4a4a:6000:b21f)
14:37:12Yogurt_Hell all
14:37:18Yogurt_hey*
14:37:23Yogurt_grats on the new release
14:37:40Yogurt_quick question, is the sony E585 port anywhere near reliable yet?
14:52:07 Join ZincAlloy [0] (~Adium@2a02:8108:8b80:1700:d50e:d8c4:1ef:d58f)
15:00
15:04:13pamauryYogurt_: it's almost usable now, but it's not in the trunk. You'll probably have to wait for another 2 weeks to a month, just a guess
15:08:25 Quit pamaury (Ping timeout: 240 seconds)
15:20:45***Saving seen data "./dancer.seen"
15:21:56Yogurt_Thanks pamaury. Will there be another release within the next year or will I have to use a dev build?
15:22:46gevaertsHaving regular releases again wouldn't be bad, but promising that is tricky
15:23:00gevaertsI mean, we never planned to have to wait so long for 3.14
15:34:31 Quit Bilgus_ (Quit: Leaving)
15:42:45jhaluskaYeah, people like me assumed it was dead.
15:43:12 Join duo8 [0] (~ZNC-SRV-H@116.111.121.211)
15:51:08 Quit Strife89 (Quit: No Ping reply in 180 seconds.)
15:52:34 Join Strife89 [0] (~quassel@adsl-98-80-189-113.mcn.bellsouth.net)
15:59:33 Join MrZeus_ [0] (~MrZeus@2a02:c7f:7066:fb00:989d:f202:d02f:e97c)
15:59:49Yogurt_maybe have two a year in the ubuntu style?
16:00
16:03:24 Quit MrZeus (Ping timeout: 276 seconds)
16:06:39 Join amayer [0] (~amayer@mail.weberadvertising.com)
16:07:28 Part robertd1
16:14:36jhaluskaYogurt_: That's what I would recommend. Even if it's a minor bug or optimization, it keeps people interested.
16:15:57 Quit amayer (Quit: Leaving)
16:21:55 Quit jhMikeS (Ping timeout: 245 seconds)
16:24:29gevaertsWell yes, but people have to actually *do* it
16:24:42gevaertsAnd while rockbox isn't dead, it isn't as alive as it once was
16:26:31jhaluskagevaerts: I understand. Software releases take time and energy too. Stand alone MP3 players are increasingly uncommon.
16:27:03gevaertsWe once did releases every three months. We managed that for three years, and then we somehow stopped
16:27:14gevaertsWe never *planned* to stop, it just happened
16:27:27jhaluskaWell I'm glad you guys didn't.
16:29:07gevaerts__builtin then started working on a release again a few weeks ago, so now we have 3.14. Let's hope we get some momentum again and things keep happening
16:36:46 Join amayer [0] (~amayer@mail.weberadvertising.com)
16:43:38 Quit dys (Ping timeout: 258 seconds)
16:44:08 Quit madk (Ping timeout: 264 seconds)
16:44:20 Quit fIorz (Remote host closed the connection)
16:44:22 Quit Petri152 (Ping timeout: 255 seconds)
16:44:23 Quit saratoga (Ping timeout: 260 seconds)
16:44:32CtcpIgnored 1 channel CTCP requests in 0 seconds at the last flood
16:44:32*Yogurt_ is just glad you're not dead
16:45:40 Quit krabador (Remote host closed the connection)
16:46:21 Join robertd1 [0] (~root@201.242.174.75)
16:46:42 Quit alexweis_ (Ping timeout: 255 seconds)
16:47:44 Join madk [0] (~noneofyou@107.170.140.154)
16:49:44 Join Petri152 [0] (~Petri@petritrebs.ca)
16:53:28 Join alexweissman [0] (~alexweiss@c-68-51-123-75.hsd1.in.comcast.net)
17:00
17:02:36 Join fIorz [0] (nobody@rain.florz.de)
17:11:06 Quit Yogurt_ (Ping timeout: 240 seconds)
17:20:48***Saving seen data "./dancer.seen"
17:25:20user890104__builtin: puzzles fail to build on win sim
17:25:53user890104apart from that, with pamaury's makefile fixes, everything else in the sim compiles fine
17:44:29 Join Yogurt_ [0] (~Yogurt@4daeb4bb.ftth.telfortglasvezel.nl)
17:46:47 Quit amayer (Quit: Leaving)
17:47:04 Join amayer [0] (~amayer@mail.weberadvertising.com)
17:47:44 Quit amayer (Client Quit)
17:48:25 Join amayer [0] (~amayer@mail.weberadvertising.com)
17:55:14 Join PimpiN8 [0] (~textual@2a02:a454:38ea:1:b4d8:259c:5fe8:91db)
18:00
18:06:11 Quit elensil (Quit: Leaving.)
18:17:58 Join PurlingNayuki [0] (~Thunderbi@121.69.255.182)
18:20:08 Quit PurlingNayuki (Client Quit)
18:20:28 Join PurlingNayuki [0] (~Thunderbi@121.69.255.182)
18:24:33 Quit PurlingNayuki (Ping timeout: 240 seconds)
18:29:39 Quit MrZeus_ (Ping timeout: 276 seconds)
19:00
19:04:35 Join dys [0] (~dys@ip-109-40-3-76.web.vodafone.de)
19:15:42 Join advcomp2019 [0] (~advcomp20@unaffiliated/advcomp2019)
19:16:47 Quit funman (Changing host)
19:16:47 Join funman [0] (~fun@rockbox/developer/funman)
19:18:29 Quit JanC (Killed (hitchcock.freenode.net (Nickname regained by services)))
19:18:29 Join JanC [0] (~janc@lugwv/member/JanC)
19:20:52***Saving seen data "./dancer.seen"
19:34:55 Join petur [0] (~petur@rockbox/developer/petur)
19:46:16 Join scorche|sh [0] (~scorche@squisch.net)
19:46:16 Quit scorche|sh (Changing host)
19:46:16 Join scorche|sh [0] (~scorche@rockbox/administrator/scorche)
19:57:08 Join lorenzo92_1 [0] (~lorenzo@host120-107-dynamic.17-79-r.retail.telecomitalia.it)
20:00
20:00:38 Quit Soap (Ping timeout: 240 seconds)
20:02:14 Join maleko [0] (ae1d5709@gateway/web/freenode/ip.174.29.87.9)
20:03:56 Quit PimpiN8 (Quit: My MacBook has gone to sleep. ZZZzzz…)
20:06:28malekoaloha, beautiful people! i've been trying to find some information on the current status of the agptek rocker port, but it appears the last comment on the page is from february
20:06:52malekoare there any news? is there any way i could help?
20:09:05 Join TheLemonMan [0] (~root@irssi/staff/TheLemonMan)
20:20:31 Quit xorly (Read error: Connection reset by peer)
20:22:16 Join johnb3 [0] (~johnb2@p5B2ACE04.dip0.t-ipconnect.de)
20:48:45 Quit johnb3 (Ping timeout: 276 seconds)
20:57:11Yogurt_aloha maleko
20:57:20Yogurt_perhaps look at the sony line
20:57:45Yogurt_I haven't heard much of the rocker in a while and went with a sony e585
21:00
21:15:29 Quit amayer (Quit: Leaving)
21:20:56***Saving seen data "./dancer.seen"
21:31:24 Join johnb2 [0] (~johnb2@91.42.206.4)
21:33:50johnb2Any native German speaker around to check g#1600 ?
21:33:52fs-bluebotGerrit review #1600 at http://gerrit.rockbox.org/r/1600 : Add German translation for "Selective Backlight" by Johannes Rauh
21:36:11 Quit johnb2 (Client Quit)
21:42:28 Quit maleko (Ping timeout: 260 seconds)
22:00
22:13:19 Join johnb2 [0] (~johnb2@p5B2ACE04.dip0.t-ipconnect.de)
22:14:59 Join Soap [0] (~Soap@rockbox/staff/soap)
22:20:03 Quit johnb2 (Ping timeout: 240 seconds)
22:25:27 Quit Yogurt_ (Ping timeout: 255 seconds)
22:32:22lorenzo92_1johnb2: I do speak german, although I am not a native...one thing is for sure wrong, please check my comment
22:34:00 Quit petur (Quit: Leaving)
22:55:27 Quit TheLemonMan (Quit: "It's now safe to turn off your computer.")
23:00
23:03:45 Join amayer [0] (~amayer@mail.weberadvertising.com)
23:04:51ZincAlloy"Wahlweise Beleuchtung" sounds awkward. Doesn't really tell me what it does. neither does "selective backlight", though :D
23:07:31ZincAlloyBut I have to admit I have no idea for a more self explanatory term either.
23:12:56 Quit lorenzo92_1 (Ping timeout: 264 seconds)
23:20:58***Saving seen data "./dancer.seen"
23:22:15 Join bray90820 [0] (~bray90820@50-83-217-236.client.mchsi.com)
23:22:37bray90820Does rockbox have support to me used as an external amp
23:22:44 Quit michaelni (Quit: Leaving)
23:30:31 Join jhMikeS [0] (~jethead71@d192-24-173-177.try.wideopenwest.com)
23:40:08 Join michaelni [0] (~michael@213-47-41-20.cable.dynamic.surfer.at)
23:47:28__builtinuser890104: what's the error?
23:47:40__builtinthe same one pamaury pointed out?
23:47:49user890104__builtin: the puzzles ones?
23:48:16__builtinyeah
23:48:36__builtin[01:12:44] <pamaury> __builtin: /rockbox/build_fuzep_sim/apps/plugins/puzzles/src/bridges.o:/rockbox/apps/plugins/puzzles/src/bridges.c:1927: more undefined references to `random_upto' follow
23:49:04user890104it was a linker error in the frst puzzle
23:49:09user890104but a different symbol
23:49:41__builtinhmm, I've simplified the makefile so I can't reproduce it right now
23:52:32 Quit jhMikeS (Ping timeout: 264 seconds)
23:52:52__builtinso that probably means I fixed it
23:52:56__builtin(locally)

Previous day | Next day