diff options
author | Vencislav Atanasov <user890104@freemyipod.org> | 2024-11-23 10:02:13 +0200 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2024-11-23 17:19:18 -0500 |
commit | f4bbddb044cc0c55434d1f4dec22f340f1d295b3 (patch) | |
tree | d288f1fb4b1535487b5c29871b1d94b0811b9a89 | |
parent | 46a4361bf17c8ba7eea7cb598f54ee51528404a0 (diff) | |
download | rockbox-f4bbddb044.tar.gz rockbox-f4bbddb044.zip |
ipod6g: Fix config
- NOR flash size is 1MB, not 10MB
- BOOTFILE_EXT2 is not used, the Rockbox binary is always unencrypted on iPod 6G. This looks like a leftover from ipodnano2g config
Change-Id: Iea76c1e87f27e25b3d59924ef02e22d91448e39d
-rw-r--r-- | firmware/export/config/ipod6g.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/firmware/export/config/ipod6g.h b/firmware/export/config/ipod6g.h index 9858ddcdfc..b1ca0c2da9 100644 --- a/firmware/export/config/ipod6g.h +++ b/firmware/export/config/ipod6g.h @@ -178,7 +178,7 @@ #define HAVE_USB_CHARGING_ENABLE /* The size of the flash ROM */ -#define FLASH_SIZE 0x1000000 +#define FLASH_SIZE 0x100000 /* Define this to the CPU frequency */ #define CPU_FREQ 216000000 @@ -212,9 +212,6 @@ #define BOOTFILE "rockbox." BOOTFILE_EXT #define BOOTDIR "/.rockbox" -/* Alternative bootfile extension - this is for encrypted images */ -#define BOOTFILE_EXT2 "ipodx" - /* Define this for FM radio input available */ #define HAVE_FMRADIO_IN |