Main public logs
Jump to navigation
Jump to search
Combined display of all available logs of WiiUBrew. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 15:16, 24 July 2026 Spletz talk contribs created page /dev/im (Redirected page to Input Manager) Tag: New redirect
- 15:14, 24 July 2026 Spletz talk contribs created page Input Manager (Created page with "The Input Manager (IM) handles the Energy Saver functionality of the Wii U, including Screen Burn-In Reduction and Auto Power-Down (APD). The Input Manager is responsible for monitoring all user input devices and discerning the lack of user activity. If no activity is detected for the specified timeout, the Input Manager triggers video screen burn-in reduction (auto-dimming) or a shutdown request. Its IOSU device node for the RM is '''/dev/im'''. Its PPC shim is in cor...")
- 08:28, 20 July 2026 Spletz talk contribs created page IOS-TEST (Created page with "IOS-TEST is a module in IOSU dedicated to debugging and development. == Devices == */dev/testproc1 - Test process */dev/testproc2 - Test process */dev/iopsh - IOP shell */dev/cbl - Cafe OS block log */debug/prof - Profiler (development mode only) */test/ppcprotviol - PPC protocol violation (test mode only) */test/sp - System profiler (test mode only) */test/test_rm - Resource manager test (test mode only) == IOSThreadProfileComma...")
- 05:19, 20 July 2026 Spletz talk contribs created page Cafe OS Kernel (Redirected page to Cafe OS/Kernel) Tag: New redirect
- 05:16, 20 July 2026 Spletz talk contribs created page Cafe OS/Kernel (Created page with "The kernel runs in supervisor mode on the PowerPC, and performs the basic tasks of a microkernel. It is responsible for process isolation, memory management, and interrupt dispatching, as well as communication with IOSU. Cafe OS applications run as user mode processes, with separate address spaces and W^X memory protection. == Syscalls == Cafe OS syscalls are issued by doing the following: li r0, 0x0100 # load syscall value->r0 sc # syscall instruction...")
- 05:05, 19 July 2026 Spletz talk contribs created page /dev/pcfs (Redirected page to PCFS) Tag: New redirect
- 05:03, 19 July 2026 Spletz talk contribs created page PCFS (Created page with "PCFS ([https://en.wikipedia.org/wiki/Personal_computer PC] Filesystem) refers to the Wii U's ability to derive its internal filesystem from a host computer rather than the console NAND. It is intended for development purposes and ease of file transferring and filesystem access for the developer. As such, it is only available on development hardware and fully available when the console is in DEV mode (otherwise a PCFS device will not be initialised). If the console is not...")
- 04:43, 19 July 2026 Spletz talk contribs created page ATFS (Created page with "ATFS (formerly DVDFS in SDK versions prior to 2.03) refers to the file system format for Cafe optical discs. It provides section-level encryption and support for up to 25GB of disc capacity.")
- 04:40, 19 July 2026 Spletz talk contribs created page /dev/atfs (Created page with "ATFS (formerly DVDFS in SDK versions prior to 2.03) refers to the file system format for Cafe optical discs. It provides section-level encryption and support for up to 25GB of disc capacity.")
- 23:03, 18 July 2026 User account JaylenSoto25 talk contribs was created Tags: Mobile edit Mobile web edit
- 11:43, 18 July 2026 Spletz talk contribs created page IOS/Kernel (Created page with "= Kernel = After being parsed by it's own ELF loader, the IOSU's kernel is launched from the Wii U's SRAM (0xFFFF0000). IOSU's kernel follows a standard ARM microkernel architecture: // IOSU kernel entry-point // ARM vector table (firmware 5.5.1) start() // 0xFFFF0000 { // Reset handler pc <- sub_FFFF0060 // Undefined handler pc <- loc_812DD6C // SWI handler pc <- sub_812DD20 // Prefetch handler pc <- sub_812E74C // Abort handl...")
- 11:42, 18 July 2026 Spletz talk contribs created page IOS/Loader (Created page with "= Loader = Each time the IOSU starts, the ELF loader is the first portion of code that runs in order to make preparations for the actual IOSU binary. During the console's initial boot, boot1 is responsible for fetching the "fw.img" file from NAND, verifying, decrypting and launching it (cold boot). However, IOS-MCP also has to do this when handling a system restart (warm boot) for which it follows a similar path but, ultimately, uses the LaunchOS system...")
- 11:35, 18 July 2026 Spletz talk contribs created page IOS/Resource utilisation (Created page with "== IOSResourceAggregateUtilization == {| class="wikitable" border="1" |- ! Offset || Size || Description |- | 0x0 || 0x4 || ActiveResources |- | 0x4 || 0x4 || ActiveResourcesWaterline |- | 0x8 || 0x4 || MaxResources |- | 0xC || 0x4 || TotalActiveTxns |- | 0x10 || 0x4 || TotalActiveTxnsWaterline |- | 0x14 || 0x4 || TotalTxnAllocFailures |- | 0x18 || 0x4 || MaxTotalActiveTxns |} == IOSResourcePerProcessUtilization == {| class="wikitable" border="1" |- ! Offset || Size ||...")
- 11:32, 18 July 2026 Spletz talk contribs created page IOS/IOSHeap (Created page with "== IOSHeap == The IOSU is able to create and handle up to 0x30 heaps. Each heap has a corresponding descriptor structure stored in the kernel's BSS section (0x08150008 in firmware 5.5.1). {| class="wikitable" border="1" |- ! Offset || Size || Description |- | 0x0 || 0x4 || Base |- | 0x4 || 0x4 || Owner |- | 0x8 || 0x4 || Size |- | 0xC || 0x4 || FreeList |- | 0x10 || 0x4 || AllocErrors |- | 0x14 || 0x4 || FreeErrors |- | 0x18 || 0x4 || ReAllocErrors |- | 0x...")
- 11:30, 18 July 2026 Spletz talk contribs created page IOS/Resource request (Created page with "== IOSMessage == This is a s32. == IOSMessageQueueId == This is an u32. == IOSMessageQueue == {| class="wikitable" border="1" |- ! Offset || Size || Description |- | 0x0 || 0x4 || EmptyQueue |- | 0x4 || 0x4 || FullQueue |- | 0x8 || 0x4 || Count |- | 0xC || 0x4 || Rptr |- | 0x10 || 0x4 || Size |- | 0x14 || 0x4 || Buffer |- | 0x18 || 0x4 || Id |- | 0x1C || 0x1 || Owner |- | 0x1D || 0x1 || HasEvent |- | 0x1E || 0x2 || |} ==...")
- 11:27, 18 July 2026 Spletz talk contribs created page IOS/IOSThread (Created page with "== IOSThread == The IOSU is able to create and handle up to 0xB4 threads. Each thread has a corresponding internal structure stored in kernel SRAM (0xFFFF4D78 in firmware 5.5.1). {| class="wikitable" border="1" |- ! Offset || Size || Description |- | 0x0 || 0x40 || Context |- | 0x40 || 0x4 || Pc |- | 0x44 || 0x4 || Next |- | 0x48 || 0x4 || InitPriority |- | 0x4C || 0x4 || Priority |- | 0x50 || 0x4 || State |- | 0x54 || 0x4 || Pi...")
- 11:27, 18 July 2026 Spletz talk contribs created page IOS/IOSTime (Created page with "== IOSTimeStruct == {| class="wikitable" border="1" |- ! Offset || Size || Description |- | 0x0 || 0x4 || Microsecond |- | 0x4 || 0x4 || Second |} == IOSTimeCalendar == {| class="wikitable" border="1" |- ! Offset || Size || Description |- | 0x0 || 0x4 || Year |- | 0x4 || 0x4 || Month |- | 0x8 || 0x4 || Day |- | 0xC || 0x4 || Hour |- | 0x10 || 0x4 || Minute |- | 0x14 || 0x4 || Second |- | 0x18 || 0x4 || Microsecond |}")
- 11:58, 15 July 2026 Spletz talk contribs created page IOS/Syscalls (Created page with "== Syscalls (via undefined instructions) == Similarly to the Wii's IOS, the IOSU uses a syscall table that is stored towards the end of the kernel area inside the main ARM binary (fw.img). The second vector is the invalid instruction handler, which is used to implement syscalls: fw:FFFF0000 LDR PC, =_reset fw:FFFF0004 LDR PC, =starbuck_syscall_handler The Starbuck syscall handler: starbuck_syscall_handler STMFA SP,...")
- 09:59, 13 July 2026 Spletz talk contribs created page /dev/bsp/CORTADO (Created page with "'''/bsp/CORTADO''' is the BSP entity that handles methods related to the [https://wiki.raregamingdump.ca/index.php/Cortado Cortado] platform. It is only available on board types <code>BSP_HARDWARE_VERSION_HOLLYWOOD_CORTADO</code> and <code>BSP_HARDWARE_VERSION_HOLLYWOOD_CORTADO_ESPRESSO</code>. Not much is really known about Cortado, its BSP entity or NESCAFE. == Attributes == === FPGAType === '''Options''': <code>BSP_AO_QUERY_DATA_INDIRECT</code> '''Permissions''': <...")
- 10:02, 12 July 2026 Spletz talk contribs created page Nio prof.rpl (Created page with "nio_prof.rpl is the shim/wrapper library for PPC communication with the /debug/prof IOSU device node on the IOP, i.e the ''Wii U's IO profiler API''. == Functions == {| class="wikitable" ! Name !! Prototype !! Description |- | IO_ProfilerLibInit || <code>IO_PROF_RVAL IO_ProfilerLibInit(void)</code> || Initializes the IO profiler library. |- | IO_ProfilerLibFinish || <code>IO_PROF_RVAL IO_ProfilerLibFinish(void)</code> || Cleanup and close the IO profiler li...")
- 09:51, 12 July 2026 Spletz talk contribs created page /debug/prof (Created page with "''/debug/prof'' is the IOSU device node for the Wii U's IO profiler API. It provides statistics about the percentage of IO bandwidth consumed by each of the determined IO channels. To measure an operation, a profiling checkpoint should be started just before it begins and end the checkpoint when it finishes. The profiler reports the I/O activity that occurred during that interval. The application can then either stop profiling or start another checkpoint to measure the n...")
- 18:13, 11 July 2026 User account Techflash talk contribs was created
- 20:21, 3 July 2026 User account Cjthetechy talk contribs was created
- 01:01, 1 July 2026 User account Ogee talk contribs was created
- 06:03, 14 June 2026 Spletz talk contribs created page Cafe SDK 1.7 (TODO)
- 15:01, 6 June 2026 Sayora talk contribs created page User talk:Sayora (Created page with "hi")
- 15:20, 5 June 2026 Sayora talk contribs created page User:Sayora (Created page with "she/her")
- 15:08, 30 May 2026 User account Sayora talk contribs was created
- 00:23, 9 May 2026 Hexkyz talk contribs deleted page Guide to Access Wii U eShop From Your Browser (Author request)
- 03:48, 7 May 2026 TheWiiArchivist talk contribs created page User talk:TheWiiArchivist (Created page with "Hi, i'd like to talk about the page i created "https://wiiubrew.org/wiki/Guide_to_Access_Wii_U_eShop_From_Your_Browser" It is very messy and was originally a google doc, i am sorry about that, i tried to keep it clean here. I wish for it to he removed as it gives piracy shops a start unfortunately, or atleast removed from my profile and redone.")
- 18:46, 17 March 2026 User account Jonbarrow talk contribs was created
- 01:36, 15 February 2026 User account Light talk contribs was created Tags: Mobile edit Mobile web edit
- 23:18, 14 February 2026 Izzywithoutokami talk contribs created page User talk:GaryOderNichts (Created page with "== question == I apologize if this is sudden! I've been redesigning the logo for wiiubrew. For awhile now, this wiki has been using the same logo for WiiBrew, and i'd like to change that. Let me know if you are interested. ~~~~")
- 23:15, 14 February 2026 User account Izzywithoutokami talk contribs was created
- 00:31, 14 February 2026 Lazr talk contribs uploaded a new version of File:WUP-10 bottom.jpg
- 09:01, 24 January 2026 User account Wiiu lover talk contribs was created Tags: Mobile edit Mobile web edit
- 01:22, 20 January 2026 User account Plot talk contribs was created Tags: Mobile edit Mobile web edit
- 07:12, 12 January 2026 Spletz talk contribs created page /dev/dlp (Created page with "'''/dev/dlp''' is the IOSU device node for 3DS download play hosting. It was likely introduced in SDK version 2.11.0, or at least sometime between versions 2.10.12 (system version 4.1.0) and 2.11.06, possibly coinciding with the late-stage development of Super Smash Bros. for Nintendo 3DS and Wii U. It is used by the Cafe library nn_dlp.rpl but was never utilised. == List of functions (Ioctlv) == All functions listed are under the namespace <code>nn::dlp::Cafe::Ser...")
- 06:19, 31 December 2025 Spletz talk contribs created page /dev/bsp/DISPLAY (Created page with "/bsp/DISPLAY provides a minimalist interface for the display controller. It is only utilised by the MCP recovery menu. == Attributes == === DC_INIT === '''Permissions''': <code>BSP_PERMISSIONS_IOS_SUPV_WRITE</code> {| class="wikitable" ! Method ! Data Size ! Values ! Description |- | Write | 0x4 | 0, 1 | Initialises one of two available display controllers depending on the input value. |} === DC_CONFIG === '''Permissions''': <code>BSP_PERMISSIONS_IOS_SUPV_READ</code...")
- 04:53, 31 December 2025 Spletz talk contribs created page /dev/bsp/EE (Created page with "/bsp/EE is the BSP entity that handles the EEPROM. == Attributes == === access === Only available if control has been initialised and access is enabled. IOSU utilises the <code>access</code> attribute to read and write to the EEPROM in 2-byte sets. Higher level EEPROM read/write functions consecutively operate on 2-byte sections a provided number of times to interact with larger sections of data. '''Permissions''': <code>BSP_PERMISSIONS_IO...")
- 09:01, 30 December 2025 User account Mx316 talk contribs was created
- 00:35, 28 December 2025 User account Jxhadron talk contribs was created
- 00:16, 26 December 2025 User account Cbass92 talk contribs was created
- 23:50, 8 December 2025 User account Felipemr98 talk contribs was created
- 15:01, 7 December 2025 User account ARandomOSDever talk contribs was created
- 00:12, 27 November 2025 Hexkyz talk contribs moved page Talk:Ancast image to Talk:Boot image (Official name as per boot1writer)
- 00:12, 27 November 2025 Hexkyz talk contribs moved page Ancast image to Boot image (Official name as per boot1writer)
- 23:59, 16 November 2025 OceansofNatalie talk contribs created page File:Ventura Carpena's Deltarune Wii U Port.png
- 23:59, 16 November 2025 OceansofNatalie talk contribs uploaded File:Ventura Carpena's Deltarune Wii U Port.png
- 23:52, 16 November 2025 OceansofNatalie talk contribs created page Deltarune (Wii U Port) (Created page with "A **Deltarune** Wii U port was created by Ventura Carpena, known by their pen and online name, Ventura J.S.C. It was released on their YouTube channel on November 12, 2025, and on GBATemp.")