-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
### Generating an iPod Touch 2G NAND Image (for QEMU-iOS) | ||
|
||
This README contains the instructions on how to generate the NAND image for the iPod Touch 2G that can be read by [QEMU-iOS](https://github.com/devos50/qemu-ios). | ||
For this, you must put the `filesystem-it2g-readonly.img` file of the filesystem that will be included in the NAND image in the root of this repository. | ||
|
||
First, compile the binary with the following command: | ||
|
||
``` | ||
gcc generate_nand.c -o generate_nand | ||
``` | ||
|
||
Before generating the NAND image, make sure to remove any prior NAND data by running `rm -rf nand`. | ||
Then, generate your NAND image by running the compiled binary: | ||
|
||
``` | ||
./generate_nand | ||
``` |