--- Log for 02.05.117 Server: rajaniemi.freenode.net Channel: #rockbox --- Nick: logbot Version: Dancer V4.16 Started: 18 days and 6 hours ago 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.58 # _builtin: BMPOBJ = $(addprefix $(BUILDDIR), $(shell echo $(BMP:.bmp=.o) | sed 's%$(ROOTDIR)/%/%g')) 00.14.30 # but 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.20.29 *** Saving seen data "./dancer.seen" 01.36.14 # <_builtin> did 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 # <__builtin> hmm, while I'm on the makefile bandwagon I might as well fix puzzles.make 01.48.34 # <__builtin> I'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 # <__builtin> and maybe I'll fix mines too 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.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.45 # how do i test changes to a lang file for errors? just compile? 03.42.27 # I guess... 03.42.35 # make sure to make clean though 03.47.25 # just a little nervous about committing stuff without the build system 03.47.42 # <__builtin> yeah, we need to do something 03.50.17 # <__builtin> the 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.06 # do we add people to CREDITS for translations? 03.58.53 # looks like historically we have 04.05.41 # we need to decide what to do about gerrit/github move/other? 04.06.13 # * __builtin votes for fixing gerrit 04.07.14 # the 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.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.58 # __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.06 # BMPOBJ = $(subst $(ROOTDIR)/,$(BUILDDIR)/,$(BMP:.bmp=.o)) 05.53.11 # BMPOBJ = $(addprefix $(BUILDDIR), $(shell echo $(BMP:.bmp=.o) | sed 's%$(ROOTDIR)/%/%g')) 05.53.31 # $(call PRINTS,$(BMPOBJ)) shows the paths are correct, but still: 05.53.39 # make: *** 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.09 # user890104: I have not followed the discussion, what is the problem? 06.04.29 # pamaury: 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.55 # and there's a substitution rule that is supposed to strip the rootdir prefix and prepend a builddir prefix 06.05.27 # but since my rootdir is /rockbox, it replaces the part in .../rockboxlogo.... 06.06.22 # so apps/bitmaps/native/rockboxlogo.320x98x16.o becomes apps/bitmaps/native/rockbox/build-sim-win64logo.320x98x16.o 06.07.19 # I 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.06 # in which makefile is this substitution made ? 06.08.27 # apps/bitmaps/bitmaps.make 06.08.31 # line 28 06.09.08 Join [Saint] [0] (~sinner@rockbox/staff/saint) 06.12.24 # I don't have the same code 06.12.25 # BMPOBJ = $(BMP:$(ROOTDIR)/%.bmp=$(BUILDDIR)/%.o) 06.12.48 # yes, what i pasted are two workaround attempts 06.13.27 # what is strange is that builddir and rootdir are supposed to be absolute path I think 06.13.36 # thus this type of strange substitution should not happen 06.13.45 # they are absolute 06.14.07 # ah "/rockbox", damn 06.14.12 # :) 06.15.54 # one 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.34 # it would also happen if the source code is in /apps, /bitmaps or /native 06.21.14 # it'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.49 # so, at the moment $(BMP) is: 06.21.51 # /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.31 # and then using the makefile-only approach: 06.22.33 # BMPOBJ = $(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.49 # $(BMPOBJ) is: 06.22.51 # /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.24 # which 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.57 # [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.18 # [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.28 # *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.56 # what's left in order to mark the classics port as stable? 06.27.58 # afaik just rb binaries. But I am planning on doing bootloader releases for some targets I know 06.28.00 # just 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.33 # i'm wondering if i can setup a build client with a nano2g running emcore attached to it 06.30.42 # so it can build the bootloader on demand 06.30.48 # <[Saint]> Oh, for cryptfw access? 06.30.49 # user890104: can you try with this: 06.30.49 # BMPOBJ =$(shell echo $(BMP) | sed 's|^$(ROOTDIR)/\(.*\)\.bmp|$(BUILDDIR)/\1.o|') 06.30.54 # <[Saint]> Yeah, neat. 06.31.00 # [Saint]: yes :) 06.31.55 # pamaury: this produces: 06.31.57 # /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.35 # i 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.10 # user890104: no, the idea is to match at the beginning of the line, sed needs to be run for each word separately 06.33.31 # make+shell is not exactly nice :-/ 06.33.35 # pamaury: word bourdinary then? 06.33.59 # my makefile-only solutions produces the correct content of the variable 06.34.05 # yes, assuming there are no space in the paths... (which our build system may not handle anyway) 06.34.22 # it's just that there's probably another substitution somewhere else 06.34.34 # and i don't know how to debug make 06.34.35 # what is your makefile-only solution? 06.34.49 # there are subtitutions happenning all over the place unfortunately 06.35.11 # look at the messages from :21-:23 06.35.32 # BMPOBJ = $(subst $(ROOTDIR)/,$(BUILDDIR)/,$(BMP:.bmp=.o)) 06.35.42 # ? 06.35.46 # yes 06.35.56 # it handles my case correctly 06.36.02 # this could suffer from the same problem though 06.36.13 # and make still finds the wrong path somehow 06.36.15 # actually I think there is a better solution, give me a second 06.36.46 # ok thanks 06.37.28 # if i can get make to output each substitution for a target file, it would be nice 06.37.40 # and i'd get gigabytes of logs at the same time... 06.46.55 # user890104: here is a solution (I think): 06.46.55 # NO_MATCH=this_string_will_never_match_anything 06.46.55 # BMPOBJ=$(patsubst $(NO_MATCH)/%,%, $(patsubst $(NO_MATCH)/$(ROOTDIR)/%.bmp, $(__BUILDDIR)/%.o, $(addprefix $(NO_MATCH)/, $(BMP)))) 06.47.35 # now if there are other subsitutions they would need to fix. May this kind of substitution could be turn into a make function 06.51.02 # something like this: 06.51.03 # NO_MATCH=this_string_will_never_match_anything 06.51.03 # full_path_subst=$(patsubst $(NO_MATCH)/%,%, $(patsubst $(NO_MATCH)/$(1), $(2), $(addprefix $(NO_MATCH)/, $(3)))) 06.51.03 DBUG Enqueued KICK pamaury 06.51.03 # __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.13 Quit TheSeven (Ping timeout: 258 seconds) 07.00.26 Join [7] [0] (~quassel@rockbox/developer/TheSeven) 07.01.45 # user890104: I have setup a repository on my box at /rockbox, I'll try to fix the problems if I can now 07.07.21 # indeed there is another substitution somewhere... 07.10.57 # user890104: I think it's line 160 in root.make 07.12.42 # __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.53 # with head on fuze plus simulator 07.14.05 # user890104: g#1602 07.14.07 # 3Gerrit review #1602 at http://gerrit.rockbox.org/r/1602 : 3Fix 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.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.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.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.10 # Congrats 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.07 # jhaluska: soon, we are still fixing some problems on Windows and Mac because of recent additions to RbUtil 11.08.08 # jhaluska: it should have it 11.08.19 # I 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.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.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.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.12 # Hell all 14.37.18 # hey* 14.37.23 # grats on the new release 14.37.40 # 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.04.13 # Yogurt_: 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.56 # Thanks pamaury. Will there be another release within the next year or will I have to use a dev build? 15.22.46 # Having regular releases again wouldn't be bad, but promising that is tricky 15.23.00 # I mean, we never planned to have to wait so long for 3.14 15.34.31 Quit Bilgus_ (Quit: Leaving) 15.42.45 # Yeah, 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.49 # maybe have two a year in the ubuntu style? 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.36 # Yogurt_: 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.29 # Well yes, but people have to actually *do* it 16.24.42 # And while rockbox isn't dead, it isn't as alive as it once was 16.26.31 # gevaerts: I understand. Software releases take time and energy too. Stand alone MP3 players are increasingly uncommon. 16.27.03 # We once did releases every three months. We managed that for three years, and then we somehow stopped 16.27.14 # We never *planned* to stop, it just happened 16.27.27 # Well I'm glad you guys didn't. 16.29.07 # __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.32 Ctcp Ignored 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.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.20 # __builtin: puzzles fail to build on win sim 17.25.53 # apart 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.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.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.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.28 # aloha, 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.52 # are 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.11 # aloha maleko 20.57.20 # perhaps look at the sony line 20.57.45 # I haven't heard much of the rocker in a while and went with a sony e585 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.50 # Any native German speaker around to check g#1600 ? 21.33.52 # 3Gerrit review #1600 at http://gerrit.rockbox.org/r/1600 : 3Add 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.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.22 # johnb2: 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.03.45 Join amayer [0] (~amayer@mail.weberadvertising.com) 23.04.51 # "Wahlweise Beleuchtung" sounds awkward. Doesn't really tell me what it does. neither does "selective backlight", though :D 23.07.31 # But 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.37 # Does 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 # <__builtin> user890104: what's the error? 23.47.40 # <__builtin> the same one pamaury pointed out? 23.47.49 # __builtin: the puzzles ones? 23.48.16 # <__builtin> yeah 23.48.36 # <__builtin> [01:12:44] __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.04 # it was a linker error in the frst puzzle 23.49.09 # but a different symbol 23.49.41 # <__builtin> hmm, 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 # <__builtin> so that probably means I fixed it 23.52.56 # <__builtin> (locally)