Build WiiUIdent:


Get prerequisites:


Install DevKitPro (on Ubuntu):

   wget https://apt.devkitpro.org/install-devkitpro-pacman
   chmod +x ./install-devkitpro-pacman
   sudo ./install-devkitpro-pacman


Then edit the /etc/environment and add this to the file:
   export DEVKITPRO=/opt/devkitpro
   export DEVKITARM=/opt/devkitpro/devkitARM
   export DEVKITPPC=/opt/devkitpro/devkitPPC

save and close.


Install all dependency (other then libmocha):
sudo /opt/devkitpro/pacman/bin/pacman -S wut wiiu-sdl2 wiiu-sdl2_ttf wiiu-curl wiiu-mbedtls

Build/Install libmocha:
git clone https://github.com/wiiu-env/libmocha.git
cd libmocha
make
sudo make install

-----------------------------------------------------------------------------------

Then compile WiiUIdent:

git clone https://github.com/GaryOderNichts/WiiUIdent.git
cd WiiUIdent
make

In the directory/folder you should now have the 3 binary's needed:
wiiuident.elf + wiiuident.rpx + wiiuident.wuhb

Move these files to this location on your SD card:
SD:/wiiu/apps/wiiuident/

They should now load correctly!

--------------------------------------------------------------------------------------
Sources:
devkitpro.org/wiki/devkitPro_pacman
WiiUIdent.git


Date: August 29th 2024

Back