Created
March 23, 2026 19:31
-
-
Save user890104/24222e6cdc0cf1aeb026cabf94d447fa to your computer and use it in GitHub Desktop.
Linux on iPod nano (7th generation)
This file contains hidden or 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
| #!/bin/bash | |
| set -e | |
| ID=05ac:8007 | |
| ~/Git/wInd3x/wInd3x cfw run ~/Git/u-boot/u-boot.bin | |
| echo -n Waiting for U-boot | |
| while [ $(lsusb -d $ID | wc -l) -eq 0 ] | |
| do | |
| echo -n . | |
| sleep 1 | |
| done | |
| echo | |
| dfu-util -d $ID -D kernel_fdt.itb | |
| dfu-util -d $ID -e |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment