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 2024-01-02

00:28:25***No seen item changed, no save performed.
01:00
01:21:23 Quit braewoods (Remote host closed the connection)
01:21:43 Join braewoods [0] (~braewoods@user/braewoods)
01:33:39 Join termac [0] (~termac@user/termac)
02:00
02:21:58 Quit braewoods (Remote host closed the connection)
02:22:12 Join braewoods [0] (~braewoods@user/braewoods)
02:28:27***Saving seen data "./dancer.seen"
04:00
04:20:57 Quit LjL (Read error: Connection reset by peer)
04:21:30 Join LjL [0] (~ljl@user/ljl)
04:28:31***Saving seen data "./dancer.seen"
05:00
05:13:24 Join lebellium [0] (~lebellium@2a01cb040610e000f8a7215f945b02ee.ipv6.abo.wanadoo.fr)
06:00
06:28:33***No seen item changed, no save performed.
06:38:35 Quit CH23_M (Read error: Connection reset by peer)
06:38:55 Join CH23_M [0] (~CH23@revspace/participant/ch23)
06:49:17 Join amachronic [0] (~amachroni@user/amachronic)
06:51:09rb-bluebotBuild Server message: New build round started. Revision a3fe07ff12, 304 builds, 9 clients.
06:51:09rb-bluebotErosQ New Revision HW volume by Dana Conrad
07:00
07:05:13 Quit sch (Ping timeout: 256 seconds)
07:06:04 Join sch [0] (a2fe4b5ecb@irc.cheogram.com)
07:07:14rb-bluebotBuild Server message: Build round completed after 966 seconds.
07:07:16rb-bluebotBuild Server message: Revision a3fe07ff12 result: All green
07:07:30 Quit Moriar (Quit: Leaving.)
07:07:52 Quit amachronic (Quit: amachronic)
07:33:52 Quit braewoods (Remote host closed the connection)
07:34:13 Join braewoods [0] (~braewoods@user/braewoods)
08:00
08:06:52 Quit braewoods (Remote host closed the connection)
08:06:59 Quit speachy (Quit: WeeChat 4.1.2)
08:07:11 Join braewoods [0] (~braewoods@user/braewoods)
08:19:04 Join amachronic [0] (~amachroni@user/amachronic)
08:19:35rb-bluebotBuild Server message: New build round started. Revision 8cc7476735, 304 builds, 9 clients.
08:19:36rb-bluebotErosQ Native ES9018K2M: Add digital filters capability by Dana Conrad
08:28:36***Saving seen data "./dancer.seen"
08:31:53rb-bluebotBuild Server message: Build round completed after 739 seconds.
08:31:54rb-bluebotBuild Server message: Revision 8cc7476735 result: All green
08:34:23 Quit braewoods (Remote host closed the connection)
08:34:45 Join braewoods [0] (~braewoods@user/braewoods)
08:40:14 Join braewoods_ [0] (~braewoods@user/braewoods)
08:40:17 Quit braewoods (Ping timeout: 256 seconds)
08:41:18 Quit braewoods_ (Read error: Connection reset by peer)
08:43:23 Join braewoods_ [0] (~braewoods@user/braewoods)
08:43:23 Quit braewoods_ (Remote host closed the connection)
08:43:41 Join braewoods_ [0] (~braewoods@user/braewoods)
08:49:23 Quit braewoods_ (Remote host closed the connection)
08:49:41 Join braewoods_ [0] (~braewoods@user/braewoods)
08:54:32 Join braewoods [0] (~braewoods@user/braewoods)
08:55:02 Quit braewoods_ (Read error: Connection reset by peer)
09:00
09:31:51 Quit Raptorious (Remote host closed the connection)
09:31:51 Quit sch (Remote host closed the connection)
09:38:02 Join Raptorious [0] (eb720881f2@irc.cheogram.com)
10:00
10:02:02 Join speachy [0] (~speachy@hurricane.shaftnet.org)
10:02:03 Quit speachy (Changing host)
10:02:03 Join speachy [0] (~speachy@rockbox/developer/speachy)
10:02:03Mode"#rockbox +v speachy" by ChanServ (ChanServ@services.libera.chat)
10:05:19rb-bluebotBuild Server message: New build round started. Revision ed27dac432, 304 builds, 9 clients.
10:05:19rb-bluebotFix CODEC_AAC_SBR_DEC check with undefined CONFIG_CPU by roman.artiukhin
10:07:41speachy^^^ this entire patch shouldn't have been necessary; CONFIG_CPU is always defined where the old test was moved in 161c861153f
10:07:50 Quit tertu (Quit: so long...)
10:10:21amachronichmm, then what was the red?
10:10:42speachyI fixed the red in 161c
10:10:57 Join tertu [0] (~tertu@user/tertu)
10:12:00amachronicI think the point is that CONFIG_CPU got undefined at that point and thus was treated as 0, so it enabled CODEC_AAC_SBR_DEC
10:12:03speachyby moving that test from where it was originally in 4cd65b9d9 to below the fallback CONFIG_CPU set.
10:12:33amachronicThe intent of the patch is to use the original CONFIG_CPU, not the redefined one
10:12:51amachronicbecause apparently the code path with SBR_DEC disabled is different
10:13:41speachyno, I mean the only way CONFIG_CPU was not set is if it was an APPLICATION build.
10:14:07speachyand line 626 #defined CONFIG_CPU to 0 for that case.
10:15:14speachymy "fix red" patch moved the AAC_SBR_DEC test to below that line. the one just committed pulled it back up to its original place and added a new test for if CONFIG_CPU Wasn't set.
10:18:15amachronicok, so looking at configure, sim should not define APPLICATION
10:18:30amachronichowever sim.h does #undef CONFIG_CPU so that has the same effect as #define CONFIG_CPU 0
10:19:06speachyI didn't check it that far, just made sure the warnings went away. :)
10:19:30amachronicno worries :)
10:19:31 Quit bluebrother (Ping timeout: 245 seconds)
10:19:56 Quit rb-bluebot (Ping timeout: 245 seconds)
10:20:02speachyonce afain proves the best way to get a discussion going is to do something "wrong" :D
10:21:15 Join bluebrother [0] (~dom@user/bluebrother)
10:28:37***Saving seen data "./dancer.seen"
10:30:54 Nick Guest4600 is now known as buZz (~buzz@education.punked.us)
10:32:10speachyI have toyed with creating a basic set of smoke tests as a requirement for being able to submit a patch
10:34:05speachybasically make sure a handful of representative build targets pass first
10:34:42 Join rb-bluebot [0] (~rb-bluebo@rockbox/bot/utility)
10:36:39amachronicsounds reasonable
10:37:20amachroniclike automatically build things from gerrit before submit?
10:39:27speachyonce it meets code review, automatically do the smoke test builds (~half a dozen or so vs the full 300ish)
10:39:44speachyand maybe submit automatically if it passes.
10:48:31speachyit would be really awesome to do the full suite but that would require reworking how how the autobuilder infrastructure interacts with the download site etc.
10:50:45speachya set of smoke tests won't catch everything, but even with just (sim, pctool, hosted, native mono, native color, native+remote) ought to catch the "turn the board yellow/red" offenders.
11:00
11:02:41amachronicyeah it'd be a good idea
11:16:09 Join othello7 [0] (~Thunderbi@pool-100-36-166-8.washdc.fios.verizon.net)
11:40:32 Quit CH23_M (Ping timeout: 256 seconds)
11:41:42 Join CH23_M [0] (~CH23@revspace/participant/ch23)
12:00
12:08:56 Quit CH23_M (Read error: Connection reset by peer)
12:09:18 Join CH23_M [0] (~CH23@revspace/participant/ch23)
12:09:50 Quit amachronic (Quit: amachronic)
12:22:52 Quit braewoods (Remote host closed the connection)
12:23:12 Join braewoods [0] (~braewoods@user/braewoods)
12:28:21 Join davisr [0] (~davisr@fsf/emeritus/davisr)
12:28:39***Saving seen data "./dancer.seen"
12:29:02 Quit braewoods (Read error: Connection reset by peer)
12:29:13 Join braewoods [0] (~braewoods@user/braewoods)
12:31:53 Quit braewoods (Remote host closed the connection)
12:32:12 Join braewoods [0] (~braewoods@user/braewoods)
13:00
13:01:07 Quit braewoods (Read error: Connection reset by peer)
13:01:13 Join braewoods_ [0] (~braewoods@user/braewoods)
13:14:13 Quit Raptorious (Ping timeout: 246 seconds)
13:25:29 Join Raptorious [0] (eb720881f2@irc.cheogram.com)
13:40:02 Quit termac (Ping timeout: 252 seconds)
14:00
14:11:22 Quit braewoods_ (Remote host closed the connection)
14:11:42 Join braewoods_ [0] (~braewoods@user/braewoods)
14:28:44***Saving seen data "./dancer.seen"
15:00
15:27:03 Join JanC_ [0] (~janc@user/janc)
15:27:15 Quit JanC (Killed (zinc.libera.chat (Nickname regained by services)))
15:27:15 Nick JanC_ is now known as JanC (~janc@user/janc)
15:40:05 Quit Raptorious (Ping timeout: 240 seconds)
16:00
16:28:46***Saving seen data "./dancer.seen"
17:00
17:05:17 Quit CH23_M (Ping timeout: 240 seconds)
17:19:31 Join CH23_M [0] (~CH23@revspace/participant/ch23)
17:32:43 Quit CH23_M (Read error: Connection reset by peer)
17:32:59 Join CH23_M [0] (~CH23@revspace/participant/ch23)
17:49:49 Join Moriar [0] (~moriar@107-200-193-159.lightspeed.stlsmo.sbcglobal.net)
17:50:24 Join CH23 [0] (~CH23@revspace/participant/ch23)
17:53:30 Join othello8 [0] (~Thunderbi@pool-100-36-166-8.washdc.fios.verizon.net)
17:57:37 Join Raptorious [0] (eb720881f2@irc.cheogram.com)
18:00
18:04:31 Quit othello8 (Ping timeout: 245 seconds)
18:28:49***Saving seen data "./dancer.seen"
18:39:45 Quit lebellium (Quit: Leaving)
19:00
19:03:18 Quit CH23 (Quit: Leaving)
19:30:26 Join massiveH [0] (~massiveH@2600:4040:a982:c800:127:666b:547f:d4bf)
20:00
20:28:50***Saving seen data "./dancer.seen"
21:00
21:40:42 Join hactar|ant [0] (~zem@97.115.130.223)
21:51:42 Quit hactar|ant (Quit: and it's always been the same / it's just a complicated game)
22:00
22:01:00 Quit massiveH (Quit: Leaving)
22:15:00 Join hactar|ant [0] (~zem@97.115.130.223)
22:28:52***Saving seen data "./dancer.seen"
22:37:11 Quit Moriar (Ping timeout: 264 seconds)
23:00
23:28:28 Quit davisr (Quit: yeehaw)

Previous day | Next day