template:yaffs

This is an old revision of the document!


  1. Download the yaffs-tools repository from Github
  2. Create a file called run.bat with the following contents:
    @echo off
    setlocal enabledelayedexpansion
     
    set "target_folder=%~dp0\config"
     
    echo Input File: "%~1"
    echo;
     
    echo Config List:
    set /a count=0
    for %%F in ("%target_folder%\*.*") do (
        set /a count+=1
        set "file[!count!]=%%~nxF"
        echo !count!: %%~nxF
    )
     
    set /p "choice=Select number: "
     
    if not defined file[%choice%] (
        echo Invalid number.
        exit /b
    )
    echo;
     
    echo Extraction started with "!file[%choice%]!".
     
    python "%~dp0\extract.py" -m -u -s "%~1" "%~1_out" "%~dp0\config\!file[%choice%]!"
     
    pause
  3. Drag your chosen bin file onto run.bat. Select the matching phone number and dump type (mlc or slc). Files should be extracted into the output folder.
  • template/yaffs.1743213882.txt.gz
  • Last modified: 2025/03/29 03:04
  • by lnrc