Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. # KolibriOS Image Unpacker
  2. ## Summary
  3.  
  4. Extracts files from FAT12 KolibriOS image to specified folder.
  5.  
  6. ## How to use
  7.  
  8. unimg path/to/img [output/folder] [-e]
  9.  
  10. If output folder is skipped, the image will be unpacked at /TMP0/1/KOLIBRI.IMG
  11.  
  12. Options:
  13. -e: Exit on success
  14.  
  15. ## How to build
  16.  
  17. kos32-tcc fat12.c -lck -o unimg.kex
  18.  
  19. ## Toolchain
  20.  
  21. Default toolchain for TCC on Kolibri, got from KolibriISO/develop/tcc
  22.  
  23. ## Authors
  24.  
  25. - Magomed Kostoev (Boppan, mkostoevr): FAT12 file system, driver.
  26.  
  27. ## Contributors
  28.  
  29. - Kirill Lypatov (Leency): Coding style, driver working protocol.