Fat imgen: Difference between revisions

From OSDev.wiki
Jump to navigation Jump to search
[unchecked revision][unchecked revision]
Content deleted Content added
+ some info
+ links to source code
Line 1: Line 1:
{{DISPLAYTITLE:{{lcfirst:{{PAGENAMEE}}}}}}
{{DISPLAYTITLE:{{lcfirst:{{PAGENAMEE}}}}}}
'''fat_imgen''' is a minimalistic utility you can use to create a [[FAT12]] floppy image with.
'''fat_imgen''' is a minimalistic utility you can use to create a [[FAT12]] floppy image with. It is licensed under the GPL v3.

Currently it does not support modifying existing images, but it's on the [http://trac.assembla.com/ambient/browser/fat_imgen/branches/latest_stable/TODO.txt TODO list].


== Current Release ==
== Current Release ==
The current release of fat_imgen can be downloaded from its [http://www.ohloh.net/projects/fat_imgen Ohloh project page]. It is licensed under the GPL v3. The source code shows many aspects of working with [[FAT12]] images.
The current release can be downloaded from the [http://www.ohloh.net/projects/fat_imgen Ohloh project page].


Currently it does not support modifying existing images, but it's on the [http://trac.assembla.com/ambient/browser/fat_imgen/branches/latest_stable/TODO.txt TODO list].
The latest stable source code can be downloaded from the [http://trac.assembla.com/ambient/browser/fat_imgen/branches/latest_stable '''latest_stable''' branch].

The [http://trac.assembla.com/ambient/browser/fat_imgen/trunk source code] shows many aspects of working with [[FAT12]] images.


==Usage==
==Usage==
Line 21: Line 25:
=== External Links ===
=== External Links ===
* [http://www.ohloh.net/projects/fat_imgen Ohloh Project Page]
* [http://www.ohloh.net/projects/fat_imgen Ohloh Project Page]
* [http://trac.assembla.com/ambient/browser/fat_imgen The project's source code]


[[Category:Disk Image Utilities]]
[[Category:Disk Image Utilities]]

Revision as of 01:46, 1 November 2008

fat_imgen is a minimalistic utility you can use to create a FAT12 floppy image with. It is licensed under the GPL v3.

Currently it does not support modifying existing images, but it's on the TODO list.

Current Release

The current release can be downloaded from the Ohloh project page.

The latest stable source code can be downloaded from the latest_stable branch.

The source code shows many aspects of working with FAT12 images.

Usage

Usage:

fat_imgen <image> <boot_sector> <filename>

Where:

  • <image> is the output image file.
  • <boot_sector> is the file to use as boot sector.
  • <filename> is the name of the file to copy onto the image.

See Also

External Links