No, i didn't find the cause of the problem.there are a way to boot rxtools on v0.5?
No, i didn't find the cause of the problem.there are a way to boot rxtools on v0.5?
Yes this is not possible.Stop asking for 3dsx or other for lauching i think this is impossible if cpasjuste can confirm!!
It's impossible, the normal version is loaded by the *hax payload. There is no such payload this time, so no 3dsx launching.Stop asking for 3dsx or other for lauching i think this is impossible if cpasjuste can confirm!!

mkdir build\
cd build
cmake -DCMAKE_TOOLCHAIN_FILE=../DevkitARM3DS.cmake ../ -G "MSYS Makefiles"
cmake -DCMAKE_TOOLCHAIN_FILE=../DevkitARM3DS.cmake ../ -G "MSYS Makefiles"
cmake --build . --target CtrBootManager_a9lh
Here's a BAT file which should clone, compile and download the a9lh.cfg file for CtrBootManager9.
Note: If the a9lh.cfg file doesn't download then you need to install Powershell. This is for windows users.
Thanks to @WhoAmI? who made the original scripts, and @DjoeN for modifying and sharing them.
@cpasjuste
It would be a good idea if you could put this on your README.MD so windows users know how to compile your source.
Code:mkdir build\ cd build cmake -DCMAKE_TOOLCHAIN_FILE=../DevkitARM3DS.cmake ../ -G "MSYS Makefiles" cmake -DCMAKE_TOOLCHAIN_FILE=../DevkitARM3DS.cmake ../ -G "MSYS Makefiles" cmake --build . --target CtrBootManager_a9lh
Thanks to the help from some of the users on this thread who found the correct way to compile on windows.
Well, i don't want to be rude but it's in the a9lh readme since a whileHere's a BAT file which should clone, compile and download the a9lh.cfg file for CtrBootManager9.
Note: If the a9lh.cfg file doesn't download then you need to install Powershell. This is for windows users.
Thanks to @WhoAmI? who made the original scripts, and @DjoeN for modifying and sharing them.
@cpasjuste
It would be a good idea if you could put this on your README.MD so windows users know how to compile your source.
Code:mkdir build\ cd build cmake -DCMAKE_TOOLCHAIN_FILE=../DevkitARM3DS.cmake ../ -G "MSYS Makefiles" cmake -DCMAKE_TOOLCHAIN_FILE=../DevkitARM3DS.cmake ../ -G "MSYS Makefiles" cmake --build . --target CtrBootManager_a9lh
Thanks to the help from some of the users on this thread who found the correct way to compile on windows.

Here's a BAT file which should clone, compile and download the a9lh.cfg file for CtrBootManager9.
Note: If the a9lh.cfg file doesn't download then you need to install Powershell. This is for windows users.
Thanks to @WhoAmI? who made the original scripts, and @DjoeN for modifying and sharing them.
@cpasjuste
It would be a good idea if you could put this on your README.MD so windows users know how to compile your source.
Code:mkdir build\ cd build cmake -DCMAKE_TOOLCHAIN_FILE=../DevkitARM3DS.cmake ../ -G "MSYS Makefiles" cmake -DCMAKE_TOOLCHAIN_FILE=../DevkitARM3DS.cmake ../ -G "MSYS Makefiles" cmake --build . --target CtrBootManager_a9lh
Thanks to the help from some of the users on this thread who found the correct way to compile on windows.
echo Making a backup of your current CtrBootManager folder...
move CtrBootManager Backups_CtrBootManager
@echo off
Title = Building CtrBootManager...
cls
%~d0
cd %~dp0
if exist "CtrBootManager" (
echo Making a backup of your current CtrBootManager folder...
copy CtrBootManager Backups_CtrBootManager
cd CtrBootManager
Title = Building CtrBootManager ^(Update^)...
echo Updating repo...
git pull origin master
git submodule update --init --recursive
) else (
Title = Building CtrBootManager ^(Clone^)...
echo Cloning repo...
git clone --recursive https://github.com/Cpasjuste/CtrBootManager.git -b a9lh
cd CtrBootManager
)
echo Building...
Title = Building CtrBootManager ^(Release^)...
mkdir CtrBootManager build
cd build
cmake -DCMAKE_TOOLCHAIN_FILE=../DevkitARM3DS.cmake ../ -G "MSYS Makefiles"
cmake -DCMAKE_TOOLCHAIN_FILE=../DevkitARM3DS.cmake ../ -G "MSYS Makefiles"
cmake --build . --target CtrBootManager_a9lh
Title = Building CtrBootManager ^(Done^)
cd ..\
copy build\CtrBootManager9.bin CtrBootManager\
ren CtrBootManager\CtrBootManager9.bin arm9loaderhax.bin
Title = Downloading a9lh.cfg.... ^(Release^)
echo Downloading a9lh.cfg....
powershell -command "& { iwr https://d7.usercdn.com/d/qil7vnzjt3xe5uyj3lvjxgyaaqrjxo25bfkycjoprja5t4k6nxlghaes/a9lh.cfg -OutFile CtrBootManager\a9lh.cfg }"
Title = Downloading a9lh.cfg.... ^(Done^)
echo Done.
echo.
echo ################################################
echo Done. Files are in the "CtrBootManager" folder.
cd ..
pause >nul
goto :EOF

And you have to run it twice which is why I put it there twiceWell, i don't want to be rude but it's in the a9lh readme since a while(well except the msys flag..)
And you have to run it twice which is why I put it there twice![]()

rxtools doesn't use firmware files
You use the python script provided with the release folder, the you execute the correct python script (O3DS or N3DS)
This generates a folder with the firmware files in it (not named firmware.bin), for N3DS this is 1 file, for O3DS there are are 3 files
You put the firm folder into rxTools folder
At the moment its not know(from what I read on 3dbrew) how the zl and zr button are working on arm9, its not using the normal hid memory it seems, since there is no change to it when pressing the buttons.Thank you for your effort and work man, but i still cant use ZR or ZL for the recovery key or it wont autoboot. Will it ever be posible?
Yep i confirm that with our current implementation it can't work.At the moment its not know(from what I read on 3dbrew) how the zl and zr button are working on arm9, its not using the normal hid memory it seems, since there is no change to it when pressing the buttons.
Yep i confirm that with our current implementation it can't work.
Here's a BAT file which should clone.


