<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://freemyipod.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jdkjkjj</id>
	<title>freemyipod - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://freemyipod.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jdkjkjj"/>
	<link rel="alternate" type="text/html" href="https://freemyipod.org/wiki/Special:Contributions/Jdkjkjj"/>
	<updated>2026-05-10T13:10:07Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.45.1</generator>
	<entry>
		<id>https://freemyipod.org/index.php?title=Linux&amp;diff=22302</id>
		<title>Linux</title>
		<link rel="alternate" type="text/html" href="https://freemyipod.org/index.php?title=Linux&amp;diff=22302"/>
		<updated>2026-05-09T09:38:53Z</updated>

		<summary type="html">&lt;p&gt;Jdkjkjj: Add steps for iPod nano 2g&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Current: Freemyipod Linux ==&lt;br /&gt;
&lt;br /&gt;
We are working on supporting Samsung/S5L-based devices which have an MMU. Currently our main focus is the [[Nano 7G]], there are also builds for [[Nano 2G]] and [[Nano 5G]]. An experimental source tree is available on [https://github.com/freemyipod/linux github.com/freemyipod/linux]. Aditionaly [[User:ZeOne]] is working on making it work with the [[Nano 6G]] you can read more about that on his page.&lt;br /&gt;
&lt;br /&gt;
=== User Guide ===&lt;br /&gt;
&lt;br /&gt;
Not yet available, as the Linux port isn&#039;t yet practical to use. We have no storage drivers, no sound driver...&lt;br /&gt;
&lt;br /&gt;
=== Developer Guide ===&lt;br /&gt;
&lt;br /&gt;
If you&#039;re somewhat familiar with embedded Linux, you can get started by building [[WInd3x|wInd3x]], [[U-Boot]] and the Kernel as described below. However, &#039;&#039;&#039;you will have to provide your own userland&#039;&#039;&#039; (eg. buildroot, archlinux arm, ... anything armv6 compatible) and either run it from an initramfs or over NFS. &#039;&#039;&#039;A serial cable is not necessary, but very useful to troubleshoot boot issues.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==== Build everything ====&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;These are not copy-paste instructions. You are expected to understand what&#039;s happening.&#039;&lt;br /&gt;
&lt;br /&gt;
You will need an arm-none-eabi- toolchain into your $PATH, eg. gcc-arm-embedded from your package manager.&lt;br /&gt;
&lt;br /&gt;
First, wInd3x: this will be used to run u-boot.&lt;br /&gt;
&lt;br /&gt;
 $ git clone https://github.com/freemyipod/wInd3x&lt;br /&gt;
 $ cd wInd3x&lt;br /&gt;
 $ go build ./cmd/wInd3x&lt;br /&gt;
&lt;br /&gt;
Second, U-Boot:&lt;br /&gt;
&lt;br /&gt;
 $ git clone https://github.com/freemyipod/u-boot&lt;br /&gt;
 $ cd u-boot&lt;br /&gt;
 $ git checkout s5l87xx&lt;br /&gt;
 $ make apple_n36_defconfig # for Nano 2G OR&lt;br /&gt;
 $ make apple_n33_defconfig # for Nano 5G OR&lt;br /&gt;
 $ make apple_n31_defconfig # for Nano 7G&lt;br /&gt;
 $ make CROSS_COMPILE=arm-none-eabi- dtbs # for Nano 2G&lt;br /&gt;
 $ make CROSS_COMPILE=arm-none-eabi- -j $(nproc) u-boot.bin # don’t run this for Nano 2G yet&lt;br /&gt;
&lt;br /&gt;
On macOS, you need to install openssl using homebrew. If the build system does not find it, append the following to the last command:&lt;br /&gt;
&lt;br /&gt;
 HOSTCFLAGS=&amp;quot;-I/opt/homebrew/Cellar/openssl@3/3.6.1/include&amp;quot; HOSTLDFLAGS=&amp;quot;-L/opt/homebrew/Cellar/openssl@3/3.6.1/lib&amp;quot;&lt;br /&gt;
&lt;br /&gt;
substituting your OpenSSL version/path as needed.&lt;br /&gt;
&lt;br /&gt;
Third, Linux:&lt;br /&gt;
&lt;br /&gt;
 $ git clone https://github.com/freemyipod/linux&lt;br /&gt;
 $ cd linux&lt;br /&gt;
 $ git checkout n2g-wip # for Nano 2G OR&lt;br /&gt;
 $ git checkout n5g-wip # for Nano 5G OR&lt;br /&gt;
 $ git checkout n7g-wip # for Nano 7G&lt;br /&gt;
 $ make ARCH=arm nano2g_defconfig # for Nano 2G&lt;br /&gt;
 $ make ARCH=arm nano5g_defconfig # for Nano 5G&lt;br /&gt;
 $ make ARCH=arm apple_n31_defconfig # for Nano 7G&lt;br /&gt;
 $ make ARCH=arm CROSS_COMPILE=arm-none-eabi- -j $(nproc) zImage&lt;br /&gt;
&lt;br /&gt;
By this point, have a initramfs ready. If you wanna boot directly from nfs, edit CMDLINE in the kernel .config accordingly.&lt;br /&gt;
&lt;br /&gt;
Finally, bundle together an u-boot image containing the kernel, your initramfs, and the device-tree (built by u-boot):&lt;br /&gt;
&lt;br /&gt;
 $ mkimage -A arm -C none -O linux -T multi -a 0x08000000 -e 0x08000000 -d arch/arm/boot/zImage:initramfs.gz:../u-boot/arch/arm/dts/s5l8730.dtb mImage&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;mImage&#039;&#039; is your combined image.&lt;br /&gt;
&lt;br /&gt;
==== Running ====&lt;br /&gt;
&lt;br /&gt;
Connect your iPod nano in DFU mode.&lt;br /&gt;
&lt;br /&gt;
For [[Nano 3G]] and later, execute u-boot using wInd3x:&lt;br /&gt;
&lt;br /&gt;
 $ ./wInd3x cfw run ../u-boot/u-boot.bin&lt;br /&gt;
&lt;br /&gt;
This should start u-boot. Running this for the first time will take a while, as some bootloader stages need to be downloaded, decrypted and modified. A new USB device (05ac:8007) appear on your host. Use dfu-util to upload mImage:&lt;br /&gt;
&lt;br /&gt;
 dfu-util -d 05ac:8007 -D mImage &amp;amp;&amp;amp; dfu-util -d 05ac:8007 -e&lt;br /&gt;
&lt;br /&gt;
For the [[Nano 2G]], you will have to chainload the rockbox bootloader with u-boot.&lt;br /&gt;
&lt;br /&gt;
To do this, we assume you have already built u-boot dtbs along with Linux.&lt;br /&gt;
&lt;br /&gt;
To create the mImage, run this command inside your Linux folder:&lt;br /&gt;
&lt;br /&gt;
 $ ./create_image.sh&lt;br /&gt;
&lt;br /&gt;
Note: if it dosen’t work, you will have to make it executable, usually by running:&lt;br /&gt;
&lt;br /&gt;
 $ chmod +x create_image.sh&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After it creates the mImage, go to your u-boot folder and build u-boot.bin.&lt;br /&gt;
&lt;br /&gt;
 $ make CROSS_COMPILE=arm-none-eabi- -j $(nproc) u-boot.bin&lt;br /&gt;
&lt;br /&gt;
Now generate a fake rockbox.ipod that tricks it into starting U-Boot:&lt;br /&gt;
&lt;br /&gt;
 $ ./tools/mkimage -T ipod -d u-boot.bin rockbox.ipod&lt;br /&gt;
&lt;br /&gt;
Copy this new rockbox.ipod into the .rockbox folder on your iPod nano 2G.&lt;br /&gt;
&lt;br /&gt;
Then, in the serial console you&#039;ll see Linux booting:&lt;br /&gt;
&lt;br /&gt;
 ## Booting kernel from Legacy Image at 08000000 ...&lt;br /&gt;
 ...&lt;br /&gt;
 Starting kernel ...&lt;br /&gt;
 &lt;br /&gt;
 [    0.000000] Booting Linux on physical CPU 0x0&lt;br /&gt;
 [    0.000000] Linux version 6.2.0-rc4-00476-g4c4af4d7e53c (q3k@mimeomia) (arm-none-eabi-gcc (GNU Arm Embedded Toolchain 10.3-2021.10) 10.3.1 20210824 (release), GNU ld (GNU Arm Embedded Toolchain 10.3-2021.10) 2.36.1.20210621) #70 Fri Jan 20 18:02:56 CET 2023&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
The LCD display should start up and show a boot log. If not, try adding &amp;lt;code&amp;gt;console=tty0&amp;lt;/code&amp;gt; to your CMDLINE? You might also use &amp;lt;code&amp;gt;fbcon=rotate:1&amp;lt;/code&amp;gt; to rotate the framebuffer 90 degrees.&lt;br /&gt;
&lt;br /&gt;
If everything goes well, the kernel should boot up and attempt to mount a rootfs. It&#039;s up to you to get this part working, at least until we streamline the process. The USB CDC EEM ethernet gadget should also appear on your host (probably as usb0, or some long systemd predictable name). The other end will be visible as &#039;usb0&#039; on the device.&lt;br /&gt;
&lt;br /&gt;
On [[Nano 7G]] you&#039;ll need a DCSD cable (Alex/Magico), and the command line to get proper serial output:&lt;br /&gt;
&lt;br /&gt;
 picocom --baud 115200 --imap lfcrlf /dev/ttyUSB0&lt;br /&gt;
&lt;br /&gt;
Now go on and have a go at reverse-engineering some peripherals! :)&lt;br /&gt;
&lt;br /&gt;
== Legacy: iPodLinux ==&lt;br /&gt;
&lt;br /&gt;
The [http://www.ipodlinux.org/ iPodLinux] project supports all the PortalPlayer based iPods: iPod 1G-4G, Photo/Color, Video/5G/5.5G, Mini, iPod Nano 1G. It is currently semi-abandoned, and uses a very old ucLinux kernel build.&lt;/div&gt;</summary>
		<author><name>Jdkjkjj</name></author>
	</entry>
	<entry>
		<id>https://freemyipod.org/index.php?title=Main_Page&amp;diff=22301</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://freemyipod.org/index.php?title=Main_Page&amp;diff=22301"/>
		<updated>2026-05-09T09:18:53Z</updated>

		<summary type="html">&lt;p&gt;Jdkjkjj: Add iPod nano 2g demo image&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
[[File:Sysfetch on iPod Nano 2G.jpg|thumb|right|sysfetch on the [[Nano 2G]] running [[Linux]] 6.10]]&lt;br /&gt;
[[File:Photo 2025-12-27 20-36-24.jpg|280px|thumb|right|[[Linux]] 6.14.0 on [[Nano 7G]]]]&lt;br /&gt;
[[File:EmCORE_Nano2G_Nano4G_Classic.jpg|280px|thumb|right|[[emCORE]] r779 on [[Nano 2G]], [[Nano 4G]] and [[Classic 2G]]]]&lt;br /&gt;
This is the wiki for the freemyipod project. Freemyipod is a project aimed at reverse-engineering non-iOS iPods (all models other than the Touch) and creating tools and documentation so that other people can port alternative firmwares to them such as [https://www.rockbox.org/ Rockbox] or [https://kernel.org/ Linux]. Freemyipod is a relaunch of [[Linux4nano]].&lt;br /&gt;
&lt;br /&gt;
== FAQ ==&lt;br /&gt;
&lt;br /&gt;
=== What can I do with my [[Nano 2G]], [[Classic 6G]] or older iPods? ===&lt;br /&gt;
&lt;br /&gt;
There&#039;s an upstream Rockbox port for these devices. [https://www.rockbox.org/download/ Go use that].&lt;br /&gt;
&lt;br /&gt;
=== What can I do with my [[Nano 3G]] or newer? ===&lt;br /&gt;
&lt;br /&gt;
Not much (yet) unless you&#039;re an embedded developer :).&lt;br /&gt;
&lt;br /&gt;
On the [[Nano 3G]], [[Nano 4G]] and [[Nano 5G]], we have a stable tethered exploit ([[wInd3x]]) which allows early, untethered and safe (no permanent modification) code execution. This in turn allows you to run [[U-Boot]] and an early [[Linux|Linux port]] or experiment with reverse-engineering/modifying the original firmware, [[retailOS]].&lt;br /&gt;
&lt;br /&gt;
On the [[Nano 6G]], [[Nano 7G]] and iPod shuffle (4th generation), a vulnerability in DFU_DNLOAD packet parsing code can be exploited with [[S5Late]]. It allows tethered code execution.&lt;br /&gt;
&lt;br /&gt;
On the [[Nano 6G]] and [[Nano 7G]], a font parsing vulnerability (CVE-2010-1797) can be exploited with [[ipod_sun]]. It allows untethered code execution.&lt;br /&gt;
&lt;br /&gt;
There&#039;s a set of earlier tooling ([[emCORE]]/[[emBIOS]]/[[iBugger]]) which was exploiting other vulnerabilities and was a lead-up to a port of Rockbox, but it&#039;s mostly abandoned.&lt;br /&gt;
&lt;br /&gt;
== Getting an account ==&lt;br /&gt;
Due to spambots, registration is closed. For an account contact [[User:User890104|User890104]] or [[User:Q3k|q3k]].&lt;br /&gt;
&lt;br /&gt;
==Updates==&lt;br /&gt;
* {{#dateformat:2026-03-30}} - Some of us will be at [https://entropia.de/GPN24 GPN24] in Karlsruhe! [[Contact|Let us know on IRC/Discord/Matrix]] if you&#039;re also there!&lt;br /&gt;
* {{#dateformat:2025-12-28}} - [[User:Hug0|Hug0]] made a lightning talk at [https://events.ccc.de/congress/2025/infos/startpage.html 39C3] on [https://www.youtube.com/watch?v=FKHL1yyOKJc iPod Nano reverse engineering].&lt;br /&gt;
* {{#dateformat:2025-12-26}} - Some of us will be at [https://events.ccc.de/congress/2025/infos/startpage.html 39C3] in Hamburg! Get in touch with [https://events.ccc.de/congress/2025/hub/en/user/q3k q3k] and/or [https://events.ccc.de/congress/2025/hub/en/user/slackware Slackware] if you&#039;re around!&lt;br /&gt;
* {{#dateformat:2025-06-12}} - Some of us will be at [https://entropia.de/GPN23 GPN23] in Karlsruhe! [[Contact|Let us know on IRC/Discord/Matrix]] if you&#039;re also there!&lt;br /&gt;
* {{#dateformat:2024-12-25}} - Some of us will be at [https://events.ccc.de/congress/2024/infos/startpage.html 38C3] in Hamburg! [https://events.ccc.de/congress/2024/hub/en/project/ipod-nano-hacking-freemyipod/ Come say hi!]&lt;br /&gt;
* {{#dateformat:2024-12-16}} - [[S5Late]], a tethered iPod bootrom/DFU exploit for [[Nano 7G]] (and possibly [[Nano 6G]]), is released.&lt;br /&gt;
* {{#dateformat:2023-12-28}} - [[ipod_sun]], a tool that enables code execution on the [[Nano 6G]] and [[Nano 7G]], is released.&lt;br /&gt;
* {{#dateformat:2023-01-07}} - A preliminary [[U-Boot]] port to the [[Nano 5G]] [https://social.hackerspace.pl/@q3k/109655916469636189 has been developed].&lt;br /&gt;
* {{#dateformat:2022-01-04}} - The bootrom of [[Nano 5G]] was successfully dumped, and is in the process of being reverse-engineered!&lt;br /&gt;
* {{#dateformat:2021-12-31}} - An exploit named [[wInd3x]], which exploits the latest vulnerability, is being prepared for [[Nano 4G]] and [[Nano 5G]].&lt;br /&gt;
* {{#dateformat:2021-12-27}} - A new vulnerability was discovered in [[Nano 4G]] and [[Nano 5G]] bootrom, which allows arbitrary code execution!&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
* {{#dateformat:2018-08-25}} - The website software has been updated to MediaWiki 1.31 after about 2 months of downtime.&lt;br /&gt;
* {{#dateformat:2016-06-17}} - The freemyipod project is becoming deprecated, as parts of the code is slowly being integrated in Rockbox. It is likely that no future development on the freemyipod project will take place. Essential parts of emCORE helped building a Rockbox bootloader for iPod Classic, and any future development will take place in the Rockbox project.&lt;br /&gt;
* {{#dateformat:2014-03-26}} - A bug that prevented [[emCORE]] installations on certain Windows configurations (getting stuck on &amp;quot;Booting UBI file...&amp;quot;), has been finally fixed! If the installation has failed for you before, you can retry it using the updated version of our tool (use the iTunes method for now).&lt;br /&gt;
* {{#dateformat:2012-01-02}} - There have been some problems with the latest release. A hotfix release ([[EmCORE_Releases/r859|r859]]) has been published to fix some of these problems. [[Nano 2G]] users are advised to upgrade.  See the [[EmCORE_Releases/r859|release details page]] for more information.&lt;br /&gt;
* {{#dateformat:2012-01-01}} - A new release &amp;lt;s&amp;gt;([[EmCORE_Releases/r855|r855]])&amp;lt;/s&amp;gt; is out! It includes a couple of new features, several bugfixes and a new bootmenu theme! More information on the &amp;lt;s&amp;gt;[[EmCORE_Releases/r855|release details page]]&amp;lt;/s&amp;gt;.&lt;br /&gt;
* {{#dateformat:2011-04-25}} - The [[emCORE]] kernel now runs on the iPod Touch 2G as well, thanks to the help of kleemajo. This is of course not a fully functional port yet, but we&#039;ll see how it continues. It&#039;s about the same state as the [[Nano 4G]] now. /7&lt;br /&gt;
* {{#dateformat:2011-03-25}} - [[emCORE]] is replacing [[emBIOS]] completely now. Therefore [[emBIOS]] will be deprecated software as of now! All emBIOS users are advised to upgrade to emCORE including people using iLoader 0.2.2 or less. More detailed update instructions will follow!&lt;br /&gt;
* {{#dateformat:2011-01-08}} - The Rockbox port for the iPod Classic is slowly getting usable. Most of the blocking issues have been fixed. The  first-generation 160GB model still doesn&#039;t work, and some people are experiencing slightly garbled display contents.&lt;br /&gt;
* {{#dateformat:2011-01-04}} - There is an early Rockbox port for the iPod Classic! It still isn&#039;t quite usable, playback stutters etc., but if you want to play around with it, here are some quick&#039;n&#039;dirty notes on the installation procedure: [[IPod Classic iLoader Installation]]&lt;br /&gt;
* {{#dateformat:2010-11-22}} - We now have emBIOS support for the iPod classic 1g, the others might follow soon&lt;br /&gt;
* {{#dateformat:2010-08-29}} - We&#039;re proud to announce the release of [[emBIOS]] v0.1.0 and [[iLoader]] v0.2.0!&lt;br /&gt;
* {{#dateformat:2010-08-26}} - [[iLoader]], its installer and uninstaller all have been fully ported to [[emBIOS]] now. A beta release will be coming soon!&lt;br /&gt;
* {{#dateformat:2010-08-13}} - [[emBIOS]] is continually being improved and the next step is porting tools like [[iLoader]] to use it.&lt;br /&gt;
* {{#dateformat:2010-08-06}} - The wiki has now been moved to www.freemyipod.org&lt;br /&gt;
* {{#dateformat:2010-08-05}} - Recently we&#039;ve been working on a hardware abstraction project called [[emBIOS]]. Follow development [https://websvn.freemyipod.org/listing.php?repname=freemyipod&amp;amp;path=/embios/ here]&lt;br /&gt;
* {{#dateformat:2010-08-03}} - We can now access the [[Nano 4G]] accelerometer.&lt;br /&gt;
* {{#dateformat:2010-08-02}} - serpilliere managed to decrypt the NOR flash on the [[Nano 3G]].&lt;br /&gt;
* {{#dateformat:2010-08-01}} - serpilliere managed to access and dump the NOR flash on the [[Nano 3G]]. This code could possibly work on the Classics.&lt;br /&gt;
* {{#dateformat:2010-07-27}} - The server got zapped by lightning but a new one was up and running within a day.&lt;br /&gt;
* {{#dateformat:2010-02-23}} - We can now execute code on everything besides the [[Nano 5G]]! Minimalistic iBugger working on [[Nano 3G]]!&lt;br /&gt;
* {{#dateformat:2009-11-01}} - iBugger core v0.1 successfully running on [[Nano 4G]]! [https://img217.imageshack.us/img217/4122/img0969.jpg]&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
Follow [https://x.com/freemyipod our X feed] to get status updates automatically. See the [[Status]] page for more detailed information. Check our [https://github.com/freemyipod GitHub repositories] for the latest changes to our source code.&lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;3&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|style=&amp;quot;border: 1px dashed #c6c9ff; background-color: #f0f0ff&amp;quot;|&lt;br /&gt;
===Project info===&lt;br /&gt;
* [[ Status ]]&lt;br /&gt;
* [[ Contact ]]&lt;br /&gt;
* [[ Contributing ]]&lt;br /&gt;
&lt;br /&gt;
===Released Software===&lt;br /&gt;
* [[wInd3x]]&lt;br /&gt;
* [[ipod_sun]]&lt;br /&gt;
* [[U-Boot|U-Boot port]]&lt;br /&gt;
* [[Linux|Linux port]]&lt;br /&gt;
* Legacy:&lt;br /&gt;
** [[iBugger]]&lt;br /&gt;
** [[iLoader]]&lt;br /&gt;
** [[emCORE]]&lt;br /&gt;
&lt;br /&gt;
|style=&amp;quot;border: 1px dashed #c6c9ff; background-color: #f0f0ff&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
===Basic skills===&lt;br /&gt;
* [[Working with binaries]]&lt;br /&gt;
* [[Dumping firmware]]&lt;br /&gt;
* [[Extracting firmware]]&lt;br /&gt;
* [[Firmware downgrading]]&lt;br /&gt;
* [[Troubleshooting]]&lt;br /&gt;
&lt;br /&gt;
===Reverse engineering results===&lt;br /&gt;
* [[Firmware]]&lt;br /&gt;
** [[Bootrom]]&lt;br /&gt;
** [[Boot Process]]&lt;br /&gt;
** [[Firmware decryption]]&lt;br /&gt;
** [[FTL|Flash Translation Layer]]&lt;br /&gt;
** [[RetailOS]]&lt;br /&gt;
*** [[RetailOS Options]]&lt;br /&gt;
* [[GUID table]]&lt;br /&gt;
* [[JTAG]]&lt;br /&gt;
* Nano 2G&lt;br /&gt;
** [[Nano2G clock gates‎]]&lt;br /&gt;
** [[Nano2G LCD init]]&lt;br /&gt;
** [[Nano2G HW analysis]]&lt;br /&gt;
** [[S5L8701 analysis]]&lt;br /&gt;
* Nano 4G&lt;br /&gt;
** [[Nano4G firmware upgrade process]]&lt;br /&gt;
* Nano 5G&lt;br /&gt;
** [[Nano 5G|General]]&lt;br /&gt;
|style=&amp;quot;border: 1px dashed #c6c9ff; background-color: #f0f0ff&amp;quot;|&lt;br /&gt;
===Hardware===&lt;br /&gt;
* [[Hardware]]&lt;br /&gt;
** [[Nano 1G]]&lt;br /&gt;
** [[Nano 2G]]&lt;br /&gt;
** [[Nano 3G]]&lt;br /&gt;
** [[Nano 4G]]&lt;br /&gt;
*** [[920-0614-03]]&lt;br /&gt;
** [[Nano 5G]]&lt;br /&gt;
** [[Nano 6G]]&lt;br /&gt;
** [[Nano 7G]]&lt;br /&gt;
** [[Classic 6G]]&lt;br /&gt;
* [[Chronology]]&lt;br /&gt;
* [[S5L8700 datasheet]]&lt;br /&gt;
* [[Modes]]&lt;br /&gt;
&lt;br /&gt;
===Exploiting===&lt;br /&gt;
* [[wInd3x]]&lt;br /&gt;
* [[Pwnage 2.0]]&lt;br /&gt;
* [[Notes vulnerability]]&lt;br /&gt;
** [[Address bruteforcing]]&lt;br /&gt;
** [[Nanotron 3000]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Jdkjkjj</name></author>
	</entry>
	<entry>
		<id>https://freemyipod.org/index.php?title=File:Sysfetch_on_iPod_Nano_2G.jpg&amp;diff=22300</id>
		<title>File:Sysfetch on iPod Nano 2G.jpg</title>
		<link rel="alternate" type="text/html" href="https://freemyipod.org/index.php?title=File:Sysfetch_on_iPod_Nano_2G.jpg&amp;diff=22300"/>
		<updated>2026-05-09T09:13:38Z</updated>

		<summary type="html">&lt;p&gt;Jdkjkjj: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;sysfetch, a C-written clone of neofetch running on iPod nano 2G&lt;/div&gt;</summary>
		<author><name>Jdkjkjj</name></author>
	</entry>
</feed>