simulator: fix ipod6g simulator build.

This wasn't caught because the ipod6gsim target was inadvertantly left
out of the buildfarm.

Change-Id: Id0c250f29a999f8722f8911e061166f0e9c35502
This commit is contained in:
Solomon Peachy 2024-06-26 07:50:19 -04:00
parent 4691152f92
commit 3611266d0f

View file

@ -2585,7 +2585,7 @@ static bool dbg_boot_data(void)
} }
#endif /* defined(HAVE_BOOTDATA) && !defined(SIMULATOR) */ #endif /* defined(HAVE_BOOTDATA) && !defined(SIMULATOR) */
#if defined(IPOD_6G) #if defined(IPOD_6G) && !defined(SIMULATOR)
#define SYSCFG_MAX_ENTRIES 10 // 9 on iPod Classic/6G #define SYSCFG_MAX_ENTRIES 10 // 9 on iPod Classic/6G
static bool dbg_syscfg(void) { static bool dbg_syscfg(void) {
@ -2784,7 +2784,7 @@ static const struct {
#if defined(HAVE_BOOTDATA) && !defined(SIMULATOR) #if defined(HAVE_BOOTDATA) && !defined(SIMULATOR)
{"Boot data", dbg_boot_data }, {"Boot data", dbg_boot_data },
#endif #endif
#if defined(IPOD_6G) #if defined(IPOD_6G) && !defined(SIMULATOR)
{"View SysCfg", dbg_syscfg }, {"View SysCfg", dbg_syscfg },
#endif #endif
}; };