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 2020-04-01

00:02:56speachyI hope!
00:03:51speachyBut I am curious to see if the images I built with a more modern toolchain work. It would be nice to sweep everything forward to the same level. :)
00:04:44 Join prof_wolfff [0] (~prof_wolf@45.152.183.180)
00:08:58_Bilgussure but it's on thechopping block it'll be gone before next release
00:09:05*pixelma still likes her OndioFM
00:09:27pixelmaalthough I seldom use it, I admit
00:09:33_Bilgusdoes it have HW_Codec?
00:09:41pixelmayes
00:10:06_Bilgusyou said you stopped updating it though?
00:10:10pixelmaand I haven't updated Rockbox in years
00:10:21pixelmaindeed
00:10:27speachypixelma, feel like trying out some highly experimental code? :)
00:10:33_BilgusIIRC it was a size constraint?
00:11:10 Join pamaury [0] (~pamaury@rockbox/developer/pamaury)
00:13:32speachypixelma: http:/www.shaftnet.org/~pizza/rockbox-ondiofm-gcc494.zip
00:13:42Lonoxmont>mp3 codec implemented in hardware
00:13:44Lonoxmontnani the fuck
00:14:04speachyneedless to say, I recommend stashing away your .rockbox dir first.
00:15:48pixelmaspeachy: not sure I want that... also, my Ondio would need an advanced build (it's backlight modded - https://www.rockbox.org/wiki/OndioBacklight , last picture is mine)
00:16:11pixelmawell, it would work without but the backlight wouldn't
00:16:30speachyeasy enough to fix..
00:17:10speachyokay, that's now a backlight-enabled build. :)
00:18:11Lonoxmontthat was an oddly fast recompile :V
00:18:41speachyfrom a clean build dir to a zip file.. in 15s. :)
00:18:57Lonoxmontdamn son
00:19:21speachythe archos targets are quite fast to build, due to their much-reduced feature set
00:19:49speachy(plus 8 cores and an SSD)
00:20:04pixelmaLonoxmont: sound is better than quite a few other swcodec players playing mp3 files (e.g. my c200 is way worse, the M5 is probably better though)
00:20:31pixelmait also depends on the other hardware like the DAC etc.
00:20:50speachyI suspect the sound quality is more to do with the the DAC, amps, and other analog-y things
00:23:33 Quit pamaury (Ping timeout: 265 seconds)
00:26:12pixelmaspeachy: downloaded the build now but probably not going to test right now (past midnight here and I'm currently also doing other hobby-ish things currently)
00:28:01pixelmahurr... what a sentence. I guess I'm a bit too tired already
00:30:02 Quit prof_wolfff (Ping timeout: 256 seconds)
00:31:57dimquado you aware about this fork? http://poretsky.homelinux.net/rockbox/index-en.html
00:32:05cockroachI'm trying to add a new option to rockbox' configuration. is there a document somewhere describing how to do that or should I just poke around in the code and see how it was done before?
00:33:22cockroachoh, I just noticed, the thing that I'm trying to make configurable happens before the settings are loaded.
00:40:19cockroachhmm still, it could be done. I'm wondering, in apps/main.c, before checking whether the hold button is turned on, would it be a problem if we loaded the current settings regardless of the hold position?
00:45:20 Join ufdm [0] (~ufdm@c-75-72-10-216.hsd1.mn.comcast.net)
00:50:26_Bilguswhat are you trying to make configurable?
00:52:46cockroachI would like to run my ipod with its keypad locked all the time, thus I'm trying to add an option to disable the settings_reset on poweron when the hold button is on
00:54:06 Quit krabador (Remote host closed the connection)
00:56:07_Bilgusit wouldn't be an issue to load them I don't think
00:57:37_Bilgusproblem is there might be an issue of reloading them
00:57:45cockroachoh?
00:59:08cockroachwhy would that be a problem?
01:00
01:00:11_BilgusIdk if you can reload the defaults after things get init'd just guessing atm still looking at the code
01:01:36__builtindimqua: yes
01:01:43__builtinspeachy has merged many of his patches into the mainline
01:04:23_Bilguscockroach ok here we go you could do the load with apply = FALSE
01:05:23_Bilgusdo your thing then either call settings_apply(True) or reset them
01:06:10cockroach_Bilgus: interesting. that would be settings_load_config, right?
01:06:35_Bilgusyeah
01:07:16_Bilgusrejigger it to call that instead of the settings_load call
01:07:17cockroachso I would probably have to load both, CONFIGFILE as well as FIXEDSETTINGSFILE
01:07:33_Bilgussame as usual yes
01:08:22_Bilgusas long as you don't apply the settings then reset them I don't think you'll have an issue
01:08:29cockroachhmm, but doesn't settings_load do just that? call settings_load_config(..., false)?
01:09:56_Bilgusyep sure enough its already set up that way
01:10:02cockroachheh
01:10:55_Bilgusas far as the settings menus go I don't think there is a guide but the code is documented sorta ok
01:11:06cockroachso if I just moved the call to settings_load out of the else block and put it before the whole button_hold stuff, that should do the trick, right?
01:11:21_Bilgusjust make sure you keep track of your conditional defines and the order you have the settings in
01:11:56_Bilguslooks to be the case to me
01:11:57cockroachyeah, the menu seems to work, I just need to figure out where exactly to put the option.
01:12:29cockroachthe defines are what's currently causing some headaches, I'll try to get them right...
01:12:46cockroachrgr then, thanks
01:12:57_BilgusIIRC you need to keep the menu variable synched between the c and h file
01:13:25_Bilgusmight be thinking of something else though like the plugins file
01:23:01_Bilgusah looking at it I don't think its a requirement perhaps just the rule
01:23:20_Bilgussettings.h and settings_list.c
01:27:01cockroachah right, so I should make the same modifications to both files. makes sense.
01:37:37speachydimqua, yeah, I've probably managed to get about half of his patches merged in one form or another. Many more to go, but I had to step back from this stuff for a while
01:53:14***Saving seen data "./dancer.seen"
01:54:32speachyI'd guessimate that about 50% of what remains isn't likely to ever get merged, but the rest I'd like to see get in.
02:00
02:03:52cockroach_Bilgus: what about documentation? I suppose I should also submit a patch against that?
02:26:51 Quit mendel_munkis_ (Read error: Connection reset by peer)
02:27:12 Join mendelmunkis [0] (~mendelmun@65-128-208-151.mpls.qwest.net)
02:27:55 Quit MrZeus (Ping timeout: 258 seconds)
02:40:44speachyyeah, it needs to go into the manual too
02:52:25cockroachyeah I was going to ask where that was kept, but I found it...
03:00
03:01:01 Join massiveH [0] (~massiveH@ool-18e4eaeb.dyn.optonline.net)
03:23:56 Join MrZeus [0] (~MrZeus@79-65-237-109.host.pobb.as13285.net)
03:40:47 Quit cockroach (Quit: leaving)
03:49:09 Join prof_wolfff [0] (~prof_wolf@45.152.183.180)
03:53:15***Saving seen data "./dancer.seen"
04:00
04:02:58 Quit prof_wolfff (Ping timeout: 260 seconds)
04:56:21 Join advcomp2019_ [0] (~advcomp20@unaffiliated/advcomp2019)
04:58:14 Quit advcomp2019 (Ping timeout: 240 seconds)
05:00
05:32:50 Quit St3ak (Ping timeout: 252 seconds)
05:34:22 Quit brasello (Ping timeout: 265 seconds)
05:34:39 Join brasello [0] (~brasello@anon-39-6.vpn.ipredator.se)
05:40:11 Quit mendelmunkis (Ping timeout: 256 seconds)
05:40:20 Quit Moarc (Quit: i znowu NADMUCHAƁ BALONA)
05:40:33 Join mendelmunkis [0] (~mendelmun@65-128-208-151.mpls.qwest.net)
05:42:38 Join Moarc [0] (~chujko@a105.net128.okay.pl)
05:50:32 Join St3ak [0] (~st3ak@st3ak3000.powered.by.lunarbnc.net)
05:53:17***Saving seen data "./dancer.seen"
05:54:11 Quit Natch (Ping timeout: 265 seconds)
05:54:11 Quit logbot (Ping timeout: 265 seconds)
05:54:11***ERROR: (Closing Link: giant.haxx.se (Ping timeout: 265 seconds)) from weber.freenode.net
05:54:11***Cleanup
05:54:11***Cleanup
05:54:11***Saving seen data "./dancer.seen"
05:54:11***Exit
05:54:13***Started Dancer V4.16
05:54:13***Connected to irc.freenode.net on port 6667
05:54:13***Logfile for #rockbox started
05:54:15Mode"logbot :+i" by logbot
05:54:20***Server message 501: 'logbot :Unknown MODE flag'
05:54:20 Join logbot [0] (~rockbox@giant.haxx.se)
05:54:20 Join St3ak [0] (~st3ak@st3ak3000.powered.by.lunarbnc.net)
05:54:20 Join Moarc [0] (~chujko@a105.net128.okay.pl)
05:54:20 Join mendelmunkis [0] (~mendelmun@65-128-208-151.mpls.qwest.net)
05:54:20 Join brasello [0] (~brasello@anon-39-6.vpn.ipredator.se)
05:54:20 Join advcomp2019_ [0] (~advcomp20@unaffiliated/advcomp2019)
05:54:20 Join MrZeus [0] (~MrZeus@79-65-237-109.host.pobb.as13285.net)
05:54:20 Join massiveH [0] (~massiveH@ool-18e4eaeb.dyn.optonline.net)
05:54:20 Join ufdm [0] (~ufdm@c-75-72-10-216.hsd1.mn.comcast.net)
05:54:20 Join pixelma [0] (marianne@rockbox/staff/pixelma)
05:54:20 Join amiconn [0] (jens@rockbox/developer/amiconn)
05:54:20 Join dimqua [0] (~quassel@2a01:4f9:2a:14e2:335::9b45)
05:54:20 Join craftyguy [0] (~craftyguy@qutebrowser/dev/craftyguy)
05:54:20 Join fs-bluebot [0] (~fs-bluebo@port-92-193-100-145.dynamic.as20676.net)
05:54:20 Join koniu [0] (~koniu@gateway/tor-sasl/koniu)
05:54:20 Join mikroflops [0] (~yogurt@c188-150-217-176.bredband.comhem.se)
05:54:20 Join Loeb [0] (~urp@76.229.134.243)
05:54:20 Join blbro[m] [0] (blbrostrat@gateway/shell/matrix.org/x-nevrveafmslmtght)
05:54:20 Join danielp3344 [0] (danielp334@gateway/shell/matrix.org/x-czwqmqudbojsxmia)
05:54:20 Join olavx200 [0] (olavx200ma@gateway/shell/matrix.org/x-zphqyuuqftexcgks)
05:54:20 Join kadoban [0] (kadobanmat@gateway/shell/matrix.org/x-mgtxfkealcutltsb)
05:54:20 Join zagor[m] [0] (bjstmatrix@gateway/shell/matrix.org/x-uhmucwuddayjpjlo)
05:54:20 Join sh4 [0] (shapeless@unaffiliated/sh4)
05:54:20 Join michaelni [0] (~michael@213-47-68-29.cable.dynamic.surfer.at)
05:54:20 Join speachy [0] (~speachy@209.2.65.77)
05:54:20 Join APLU [0] (~mulx@eva.aplu.fr)
05:54:20 Join bertrik [0] (~bertrik@rockbox/developer/bertrik)
05:54:20 Join bluebrother [0] (~dom@rockbox/developer/bluebrother)
05:54:20 Join amdj [0] (~aaron@freenode/staff/atheme.amdj)
05:54:20 Join chillmaster [0] (~assa@2001:bc8:4700:2500::1613)
05:54:20 Join Acou_Bass [0] (~eddie@cpc97736-bolt17-2-0-cust152.10-3.cable.virginm.net)
05:54:20 Join _3dsv [0] (~3dsv@97-91-206-90.dhcp.stls.mo.charter.com)
05:54:20 Join Huntereb [0] (~Huntereb@d-69-161-102-241.va.cpe.atlanticbb.net)
05:54:20 Join fauweh [0] (~root@ithaqua.unzane.com)
05:54:20 Join emacsomancer [0] (~runner@c-174-52-88-123.hsd1.ut.comcast.net)
05:54:20 Join Rondom [0] (~rondom@modo.nonmodosedetiam.net)
05:54:20 Join Galois [0] (djao@efnet.math.uwaterloo.ca)
05:54:20 Join scorche [0] (~scorche@rockbox/administrator/scorche)
05:54:20 Join Soap [0] (~Soap@rockbox/staff/soap)
05:54:20 Join _Bilgus [0] (~Bilgus@unaffiliated/bilgus)
05:54:20 Join JanC [0] (~janc@lugwv/member/JanC)
05:54:20 Join yosafbridge [0] (~yosafbrid@static.38.6.217.95.clients.your-server.de)
05:54:20 Join Ckat [0] (~Ckat@xn--z7x.xn--6frz82g)
05:54:20 Join TheSphinX^ [0] (~briehl@srv001.nosupamu.de)
05:54:20 Join TheSilentLink [0] (~TheSilent@unaffiliated/thesilentlink)
05:54:20 Join beencubed [0] (~beencubed@209.131.238.248)
05:54:20 Join benedikt93 [0] (~quassel@unaffiliated/benedikt93)
05:54:20 Join eldudeness [0] (~eldud3nes@mariner.whatbox.ca)
05:54:20 Join kugel [0] (~kugel@rockbox/developer/kugel)
05:54:20 Join mc2739 [0] (~mc2739@rockbox/developer/mc2739)
05:54:20 Join J_Darnley [0] (~J_Darnley@d51A44418.access.telenet.be)
05:54:20 Join Lonoxmont [0] (~lonoxmont@75-139-229-57.static.rvsd.ca.charter.com)
05:54:20 Join blackyus17 [0] (~blackyus1@ip189.ip-144-217-213.net)
05:54:20 Join Aldem [0] (~Aldem@unaffiliated/aldem)
05:54:20 Join flabrus [0] (~beard@unaffiliated/flabrus)
05:54:20 Join kirvesAxe [0] (kirvesaxe@aulis.sange.fi)
05:54:20 Join dys [0] (~dys@tmo-121-217.customers.d1-online.com)
05:54:20 Join paulk-leonov [0] (~paulk-leo@leonov.paulk.fr)
05:54:20 Join tchan [0] (~tchan@lunar-linux/developer/tchan)
05:54:20 Join ps-auxw [0] (~arneb@p548D5259.dip0.t-ipconnect.de)
05:54:20 Join copper [0] (~copper@unaffiliated/copper)
05:54:20 Join Strife89 [0] (sid399903@gateway/web/irccloud.com/x-xvfoyadtgulccbzy)
05:54:20 Join bzed [0] (~bzed@shell.bzed.at)
05:54:20 Join Frans-Willem [0] (~quassel@94-210-82-195.cable.dynamic.v4.ziggo.nl)
05:54:20 Join toruvinn [0] (~toruvinn@77-255-69-84.adsl.inetia.pl)
05:54:20 Join __builtin [0] (~quassel@rockbox/developer/builtin)
05:54:20 Join SovietShaman [0] (quassel@24-217-39-226.dhcp.stls.mo.charter.com)
05:54:20 Join Xeha [0] (~Xeha@unaffiliated/k1773r)
05:54:20 Join Marex [0] (~Marex@195.140.253.167)
05:54:20 Join WakiMiko [0] (~WakiMiko@unaffiliated/wakimiko)
05:54:20 Join St0neHead [0] (stonehead@2a01:7e00:e001:3700:6667::2)
05:54:20 Join Slasheri [0] (~miipekk@rockbox/developer/Slasheri)
05:54:20 Join klock [0] (~freeklock@unaffiliated/klock)
05:54:20 Join Topy44 [0] (6i7Xh6P5Bs@bellatrix.uberspace.de)
05:54:20 Join alexbobp [0] (~alex@unaffiliated/lizzie)
05:54:20 Join w1d3m0d3 [0] (~w1d3m0d3@fsf/member/w1d3m0d3)
05:54:20 Join galaxy_knuckles [0] (~gknux@unaffiliated/galaxy-knuckles/x-1756549)
05:54:20 Join user890104 [0] (~Venci@freemyipod.org)
05:54:20 Join plum [0] (~plum@unaffiliated/plum)
05:54:20 Join gevaerts [0] (~fg@rockbox/developer/gevaerts)
05:54:20 Join Jack87 [0] (Jack87@nasadmin/admin/jack87)
05:54:20 Join @ChanServ [0] (ChanServ@services.)
05:54:20 Join TorC [0] (~Tor@fsf/member/TorC)
05:54:20 Join rogeliodh [0] (~rogeliodh@135.ip-66-70-189.net)
05:54:20 Join rudi_s [0] (~simon@bmi.informatik.uni-erlangen.de)
05:54:20 Join ParkerR [0] (ParkerR@unaffiliated/parkerr)
05:54:20 Join shrizza [0] (~shrizza@oki-180-131-209-187.jptransit.net)
05:54:20 Join ender| [0] (~ender1@2a01:260:4094:1:6045:6fff:fedd:cbf3)
05:54:20 Join heredoc [0] (~heredoc@2a01:7e01::f03c:91ff:fec1:de1d)
05:54:20 Join vup [0] (~~~~@46.101.193.235)
05:54:20 Join olspookishmagus [0] (~pookie@snf-137798.vm.okeanos.grnet.gr)
05:54:20 Join XDjackieXD [0] (~jackie@tureis.comfix.cc)
05:54:20 Join marex-cloud [0] (sid137234@gateway/web/irccloud.com/x-ygdraudcytuemchj)
05:54:20 Join Tsesarevich [0] (Tsesarevic@fluxbuntu/founder/joejaxx)
05:54:20 Join signop [0] (~signop@199.180.249.106)
05:54:20 Join atsampson [0] (~ats@cartman.offog.org)
05:54:20 Join rasher [0] (~rasher@diti.rasher.dk)
05:54:20 Join asaba [0] (~asaba@103.113.159.184)
05:54:20 Join xcin [0] (~x@159.203.132.140)
05:54:20 Join tomf [0] (tomf@b.irthday.party)
05:54:20 Join igitoor [0] (igitur@unaffiliated/contempt)
05:54:20 Join funman [0] (~fun@rockbox/developer/funman)
06:00
06:02:22 Join Natch [0] (~Natch@h-112-130.A444.priv.bahnhof.se)
07:00
07:35:00 Quit mendelmunkis (Ping timeout: 256 seconds)
07:54:17***Saving seen data "./dancer.seen"
07:59:25 Join mendelmunkis [0] (~mendelmun@65-128-208-151.mpls.qwest.net)
08:00
08:27:21 Quit MrZeus (Ping timeout: 256 seconds)
08:46:55 Join TheLemonMan [0] (~lemonboy@irssi/staff/TheLemonMan)
08:51:05 Quit Galois (Ping timeout: 265 seconds)
09:00
09:04:28 Quit SovietShaman (Ping timeout: 250 seconds)
09:09:51 Join SovietShaman [0] (quassel@24-217-39-226.dhcp.stls.mo.charter.com)
09:39:47 Join Soap_ [0] (~Soap@rockbox/staff/soap)
09:40:51 Join GeekShadow [0] (~antoine@nzf.turmel.info)
09:40:51 Quit GeekShadow (Changing host)
09:40:51 Join GeekShadow [0] (~antoine@reactos/tester/GeekShadow)
09:42:19 Quit Soap (Ping timeout: 265 seconds)
09:44:43 Join Soap [0] (~Soap@rockbox/staff/soap)
09:45:58 Quit Soap_ (Ping timeout: 260 seconds)
09:47:05 Join Galois [0] (djao@efnet.math.uwaterloo.ca)
09:54:20***Saving seen data "./dancer.seen"
10:00
10:11:13 Join MrZeus [0] (~MrZeus@79-65-237-109.host.pobb.as13285.net)
10:24:22 Quit MrZeus (Ping timeout: 265 seconds)
10:35:31 Join prof_wolfff [0] (~prof_wolf@45.152.183.180)
11:00
11:10:08 Join pamaury [0] (~pamaury@rockbox/developer/pamaury)
11:18:23 Join PimpiN8 [0] (~PimpiN8@178.239.173.228)
11:50:01 Quit koniu (Remote host closed the connection)
11:50:28 Join koniu [0] (~koniu@gateway/tor-sasl/koniu)
11:54:22***Saving seen data "./dancer.seen"
13:00
13:41:16 Join cockroach [0] (~blattodea@pdpc/supporter/active/cockroach)
13:54:24***No seen item changed, no save performed.
13:55:30speachyuser890104, looks like your builder hiccupped again.
13:56:45user890104well, it seems to have enough space available
13:57:36user890104looks like gcc crashed...
13:57:47user890104http://build.rockbox.org/shownewlog.cgi?rev=c8111eb;type=ipodcolorsim
13:58:49gevaertsInteresting...
13:59:49 Join MrZeus [0] (~MrZeus@79-65-237-109.host.pobb.as13285.net)
13:59:52user890104i removed the sdl capability
14:00
14:00:55speachygcc crashing is a sign there's something not quite right with your system
14:01:35speachytake it offline for a full fsck, perhaps?
14:01:40gevaertsYou could try running that exact same build again and see if it has the same issue
14:01:50user890104it's a lxc container on top of zfs, it does other strange things from time to time
14:02:02gevaertsIf you're going to check things, I'd also check RAM
14:02:20*gevaerts has no advice about container things
14:02:38speachycontainers multiply the "stuff-to-go-wrong" surface considerably
14:03:26speachyyeah, does the container have sufficent available RAM? Maybe you are right on the hairy edge..
14:03:56user890104there's no ram or disk limit, the host machine is barely used
14:04:35*speachy nods.
14:04:58user890104i just wanted to separate them, so i can give someone access to individual containers
14:05:39user890104if it continues to cause issues, i'll disable the builder, and look into migrating on a more stable environment
14:14:26speachyhow many capabilities do you advertise?
14:26:54 Quit PimpiN8 (Ping timeout: 260 seconds)
14:33:22 Quit prof_wolfff (Ping timeout: 250 seconds)
14:33:44*speachy pings scorche through the forums.
14:46:43 Join prof_wolfff [0] (~prof_wolf@45.152.183.180)
15:00
15:54:25***Saving seen data "./dancer.seen"
15:59:18 Quit pamaury (Ping timeout: 265 seconds)
16:00
16:26:47 Join TheSeven [0] (~quassel@rockbox/developer/TheSeven)
16:46:00 Join ZincAlloy [0] (~Adium@ip5f5acf9f.dynamic.kabel-deutschland.de)
17:00
17:27:33 Join sherbets1 [0] (~Thunderbi@2600:6c58:4c7f:936b:10b7:49e4:9e73:7705)
17:54:27***Saving seen data "./dancer.seen"
17:59:46 Join Rower [0] (~husvagn@m83-191-113-108.cust.tele2.se)
18:00
18:02:24 Quit michaelni (Read error: Connection reset by peer)
18:19:12 Join michaelni [0] (~michael@213-47-68-29.cable.dynamic.surfer.at)
18:31:15 Quit sherbets1 (Ping timeout: 252 seconds)
18:35:42 Join pamaury [0] (~pamaury@rockbox/developer/pamaury)
18:37:48 Quit pamaury (Client Quit)
18:48:52 Join lebellium [0] (~lebellium@89-92-253-148.hfc.dyn.abo.bbox.fr)
19:00
19:29:04 Quit prof_wolfff (Ping timeout: 265 seconds)
19:54:30***Saving seen data "./dancer.seen"
20:00
20:04:50 Quit mendelmunkis (Remote host closed the connection)
20:05:09 Join mendel_munkis_ [0] (~mendelmun@65-128-208-151.mpls.qwest.net)
20:24:45 Join prof_wolfff [0] (~prof_wolf@45.152.183.180)
21:00
21:01:45 Join sakax [0] (~r0b0t@unaffiliated/r0b0t)
21:12:25 Quit TheSilentLink (Ping timeout: 260 seconds)
21:13:09 Join TheSilentLink [0] (~TheSilent@unaffiliated/thesilentlink)
21:16:04 Quit mendel_munkis_ (Quit: Leaving)
21:16:18 Join mendel_munkis_ [0] (~mendelmun@65-128-208-151.mpls.qwest.net)
21:19:25 Quit mendel_munkis_ (Remote host closed the connection)
21:19:47 Join mendelmunkis [0] (~mendelmun@65-128-208-151.mpls.qwest.net)
21:24:48 Quit prof_wolfff (Ping timeout: 256 seconds)
21:31:58 Quit flabrus (Quit: #InstallGentoo)
21:34:48 Join flabrus [0] (~beard@flab.tech)
21:34:48 Quit flabrus (Changing host)
21:34:48 Join flabrus [0] (~beard@unaffiliated/flabrus)
21:36:19 Quit yosafbridge (Quit: Leaving)
21:39:49 Join yosafbridge [0] (~yosafbrid@static.38.6.217.95.clients.your-server.de)
21:54:32***Saving seen data "./dancer.seen"
22:00
22:04:45 Join Nugettes [0] (4574c419@ool-4574c419.dyn.optonline.net)
22:05:34NugettesI have bad news... My pc isnt opening a disk and the other computer isnt mine to use freely..
22:05:48NugettesOpening the CD slot.
22:07:15NugettesNot sure what to do with a broken CD slot...
22:10:56NugettesMight as well get rid of apple and just use rockbox if apple is only going to limit me to 128gb...
22:32:06Nugettesim trying to install rockbox escept
22:32:18NugettesI keep getting a there is no mount point
22:32:54chillmasterdid you mount it?
22:33:29Nugettesuh I think so?
22:33:41NugettesIt was mounted before
22:34:23chillmasteris the ipod fat formatted?
22:34:30Nugettesyes
22:35:24chillmasteryou might need to remount it manually during the installation process.
22:35:43Nugetteshmm ok how do I do this?
22:36:04chillmasterjust click on the icon of your ipod in the file browser of your choice
22:36:14chillmasterit might be listed, but not mounted
22:36:20chillmasterbut idk how it's on windows tbh
22:36:33Nugettes:I
22:36:53NugettesIt was working bwfore..
22:37:12NugettesI installed rockbox and it only loaded 128gb...
22:37:29Nugetteswith the apple firmware
22:39:30 Join amiconn_ [0] (jens@rockbox/developer/amiconn)
22:39:30 Quit amiconn (Killed (kornbluth.freenode.net (Nickname regained by services)))
22:39:30 Nick amiconn_ is now known as amiconn (jens@rockbox/developer/amiconn)
22:40:29 Join pixelma_ [0] (marianne@rockbox/staff/pixelma)
22:40:29 Quit pixelma (Killed (leguin.freenode.net (Nickname regained by services)))
22:40:29 Nick pixelma_ is now known as pixelma (marianne@rockbox/staff/pixelma)
22:45:44 Quit pixelma (Ping timeout: 240 seconds)
22:45:50 Quit amiconn (Ping timeout: 256 seconds)
22:50:59 Quit Nugettes (Remote host closed the connection)
22:51:29 Join Nugettes [0] (4574c419@ool-4574c419.dyn.optonline.net)
22:53:26 Join pixelma [0] (marianne@rockbox/staff/pixelma)
22:53:46 Join amiconn [0] (jens@rockbox/developer/amiconn)
22:54:11 Quit ZincAlloy (Quit: Leaving.)
22:56:38Nugetteshmm the ipod is there its just not mounted?
23:00
23:10:26 Quit Rower (Ping timeout: 265 seconds)
23:10:38 Join Rower [0] (~husvagn@d83-183-134-99.cust.tele2.se)
23:11:28LonoxmontNugettes:
23:11:28Lonoxmonthttps://smile.amazon.com/SanDisk-Ultra-Transfer-Speeds-s-SDCZ48-032G-UAM46/dp/B00KZIXSP6/ref=sxin_2_ac_d_pm?ac_md=1-0-VW5kZXIgJDEw-ac_d_pm&cv_ct_cx=usb%2Bdrive&dchild=1&keywords=usb%2Bdrive&pd_rd_i=B00KYK2AKO&pd_rd_r=3e569e2a-7100-4af0-aa59-4a3efb479e88&pd_rd_w=j3kVO&pd_rd_wg=0k07Y&pf_rd_p=0e223c60-bcf8-4663-98f3-da892fbd4372&pf_rd_r=1S8HF0EG4M0XSTKT23RJ&qid=1585775419&sr=1-1-22d05c05-1231-4126-b7c4-3e7
23:11:28Lonoxmonta9c0027 ...
23:11:28DBUGEnqueued KICK Lonoxmont
23:11:28Lonoxmont... d0&th=1
23:11:33Lonoxmontgdi
23:12:10Lonoxmontanyhow its a 16gb flash drive (which is wya more than we need to gparted live) for like 7 dollars
23:12:14Lonoxmontorder that
23:12:25Lonoxmontwhen it gets in, let me know and i ill walk you through getting gparted onto it
23:12:44Nugettesoh okay
23:12:53NugettesI was going to use a CD...
23:13:01Lonoxmontyeah i saw, the drive wont open
23:13:17Lonoxmontso unless oyu have an external cd drive lying about usb is the next option
23:13:20Nugettesthe CD slot
23:13:42NugettesI can try it on another computer
23:14:05Lonoxmontagain, if you have a usb drive similar to the one i linked available, and dont mind erasing it, we can put gparted live on it now
23:14:13Lonoxmontotherwise order one and wait for it to get in
23:14:32Nugettesyea
23:15:45Nugettesthis is sum bullshit..
23:16:30NugettesGetting rid of the OF will get rockbox to work but I guess thats not an option
23:17:33NugettesNow the mount is not being recognized :?
23:17:40Lonoxmonti would have linked you to a site selling gparted live already on flash drives, but apparantly they closed down years ago
23:17:40Nugettes:/
23:18:07Lonoxmontonce we get gparted live running a lot of this toruble becomes easier
23:18:18Nugettesyes
23:18:19Lonoxmontlinux is a lot more flexible as far as getting at things
23:18:39NugettesIve never used it before..
23:18:56NugettesI do have some spare CDs that I boot it from
23:19:20Lonoxmontthe cds dont help you if the drive you want to use them in wont open
23:19:24NugettesI can use it on the other computer which is not mine)
23:19:44NugettesIt will surely work on there
23:20:09Lonoxmontworth a try if they are willing to let you use it for this
23:20:19Nugettesyea
23:20:27 Quit TheLemonMan (Quit: "It's now safe to turn off your computer.")
23:20:38Nugettesbrb gonna get it
23:21:00Lonoxmontjust to be absolutely safe as far as data loss, we should probably temporarily disconnect the power to the existing hard drives in the machine when we go to use it for gparted
23:21:21Lonoxmontbut that happens once you have a disc ready to go
23:21:36Nugettesoh?
23:22:00Nugettesill be on another device to chat brb
23:22:04 Part Nugettes
23:23:42 Join Nugettes [0] (4574c419@ool-4574c419.dyn.optonline.net)
23:23:45NugettesOk back
23:24:29NugettesWhat should I do
23:25:27NugettesIm inserting the CD
23:25:48Lonoxmontdid you install imgburn?
23:26:01NugettesNot yet
23:26:04Nugettesi, not sure how
23:26:19Lonoxmonthttp://download.imgburn.com/SetupImgBurn_2.5.8.0.exe
23:26:53NugettesThere us 300mb free
23:26:58Lonoxmontis this machine you are using a laptop or a desktop?
23:27:11NugettesLaptop
23:27:25Lonoxmontalright, put the file i linked on the desktop then double click it
23:27:37NugettesOk
23:28:44Lonoxmontdid you get imgburn installed?
23:28:59NugettesThe wifi is down give me a few
23:30:57NugettesOk
23:31:17Lonoxmontis the disc you put in blank?
23:31:27Lonoxmontif it has stuff on it we might need a blank one
23:31:37NugettesOkay
23:31:47Nugettesill move the files else where
23:32:05Lonoxmontits a cd, you cant really move files on and off at will unless its a cd-rw
23:32:17Lonoxmontand even then it usually requires an erase cycle to do it
23:32:27NugettesOh
23:32:42NugettesSo just delete everything on it?
23:33:06Lonoxmontyou can, but it wont reclaim any space unless its a cd-rw or a dvd-ram disc
23:33:34Lonoxmontif its just a cd-r, those are essentially one time write for most use cases
23:33:53NugettesOh
23:34:05Lonoxmontit is possible to 'delete' data off it, but because the data is already burned into the data area of the disc all you are doing is marking that entry invalid
23:34:07NugettesHang on let me get a different one
23:35:11NugettesIts claiming that the download is dangerous
23:35:26Lonoxmontfor imgburn?
23:35:28Lonoxmontshouldnt be
23:35:36Lonoxmontlemme look at another host of it then
23:35:57NugettesOk
23:36:21Lonoxmonthttp://www.digital-digest.com/software/download.php?sid=470&ssid=0&did=1
23:36:58NugettesOkay so you told me to open it?
23:37:03Lonoxmontyes
23:37:57NugettesThis CD has 3GB
23:38:06Lonoxmontdoesnt sounds like a cd
23:38:08Lonoxmontsounds like a dvd
23:38:17NugettesYea its a dvd
23:38:19Lonoxmontwe can use it, but it would be kind of a waste
23:38:35NugettesWhat do you mean?
23:38:49NugettesIt has Windows Xp set up on it
23:38:51Lonoxmontwell the image we are burning to it isnt all that large, a couple hundred mb at most
23:38:58Lonoxmontso the rest of the dvd wouldnt really be useful
23:39:04NugettesAh ok
23:39:27Lonoxmontif you dont have any blanks thats fine
23:39:28Lonoxmontorder some
23:39:31Lonoxmontif you can
23:39:42Lonoxmontor just get a usb drive for cheap off amazon and use that instead
23:39:56Lonoxmontthose are a lot easier to reclaim vs trying to clear out space on optical media
23:40:09NugettesHmmm Ok
23:40:14NugettesI still want to try
23:40:22NugettesIm moving the files off of it
23:40:31Lonoxmontyou
23:40:32NugettesAnd then deleting it
23:40:36Lonoxmontdont really listen well do you
23:40:43Lonoxmontmoving files
23:40:46Lonoxmontoff a cd
23:40:49Lonoxmontdoesnt free space
23:40:52Nugettes:I oh
23:41:02Lonoxmontunless its a rewriteable disc which by default they arent
23:41:05NugettesDx okay okay ill just buy the usb
23:41:08Lonoxmontand even then only after an erase cycle
23:41:29 Part dimqua (" ")
23:44:47NugettesWell Ill just buy the usb
23:45:02NugettesIll be right back
23:45:05 Quit Nugettes (Remote host closed the connection)
23:51:18 Quit lebellium (Quit: Leaving)
23:54:35***Saving seen data "./dancer.seen"

Previous day | Next day