diff options
Diffstat (limited to 'firmware')
-rw-r--r-- | firmware/export/config-ipod3g.h | 2 | ||||
-rw-r--r-- | firmware/export/config-ipod4g.h | 2 | ||||
-rw-r--r-- | firmware/export/config-ipodcolor.h | 2 | ||||
-rw-r--r-- | firmware/export/config-ipodmini.h | 2 | ||||
-rw-r--r-- | firmware/export/config-ipodmini2g.h | 2 | ||||
-rw-r--r-- | firmware/export/config-ipodnano.h | 2 | ||||
-rw-r--r-- | firmware/export/config-ipodvideo.h | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/firmware/export/config-ipod3g.h b/firmware/export/config-ipod3g.h index 4c9b61267f..58776b0c9a 100644 --- a/firmware/export/config-ipod3g.h +++ b/firmware/export/config-ipod3g.h @@ -46,7 +46,7 @@ #define CONFIG_CODEC SWCODEC /* define this if you have a real-time clock */ -#ifndef BOOTLOADER +#if !defined(BOOTLOADER) && !defined(SIMULATOR) #define CONFIG_RTC RTC_PCF50605 #define HAVE_RTC_ALARM #endif diff --git a/firmware/export/config-ipod4g.h b/firmware/export/config-ipod4g.h index 3790500063..91f228561e 100644 --- a/firmware/export/config-ipod4g.h +++ b/firmware/export/config-ipod4g.h @@ -52,7 +52,7 @@ #define CONFIG_CODEC SWCODEC /* define this if you have a real-time clock */ -#ifndef BOOTLOADER +#if !defined(BOOTLOADER) && !defined(SIMULATOR) #define CONFIG_RTC RTC_PCF50605 #define HAVE_RTC_ALARM #endif diff --git a/firmware/export/config-ipodcolor.h b/firmware/export/config-ipodcolor.h index efe49fb6a7..eacdbe6b4c 100644 --- a/firmware/export/config-ipodcolor.h +++ b/firmware/export/config-ipodcolor.h @@ -43,7 +43,7 @@ #define CONFIG_CODEC SWCODEC /* define this if you have a real-time clock */ -#ifndef BOOTLOADER +#if !defined(BOOTLOADER) && !defined(SIMULATOR) #define CONFIG_RTC RTC_PCF50605 #define HAVE_RTC_ALARM #endif diff --git a/firmware/export/config-ipodmini.h b/firmware/export/config-ipodmini.h index 4a6c6a5dcf..e84ebfe44c 100644 --- a/firmware/export/config-ipodmini.h +++ b/firmware/export/config-ipodmini.h @@ -46,7 +46,7 @@ #define CONFIG_CODEC SWCODEC /* define this if you have a real-time clock */ -#ifndef BOOTLOADER +#if !defined(BOOTLOADER) && !defined(SIMULATOR) #define CONFIG_RTC RTC_PCF50605 #define HAVE_RTC_ALARM #endif diff --git a/firmware/export/config-ipodmini2g.h b/firmware/export/config-ipodmini2g.h index a8033b1574..f6aefc56ae 100644 --- a/firmware/export/config-ipodmini2g.h +++ b/firmware/export/config-ipodmini2g.h @@ -46,7 +46,7 @@ #define CONFIG_CODEC SWCODEC /* define this if you have a real-time clock */ -#ifndef BOOTLOADER +#if !defined(BOOTLOADER) && !defined(SIMULATOR) #define CONFIG_RTC RTC_PCF50605 #define HAVE_RTC_ALARM #endif diff --git a/firmware/export/config-ipodnano.h b/firmware/export/config-ipodnano.h index 2e727e463b..b1e7c4f8f1 100644 --- a/firmware/export/config-ipodnano.h +++ b/firmware/export/config-ipodnano.h @@ -43,7 +43,7 @@ #define CONFIG_CODEC SWCODEC /* define this if you have a real-time clock */ -#ifndef BOOTLOADER +#if !defined(BOOTLOADER) && !defined(SIMULATOR) #define CONFIG_RTC RTC_PCF50605 #define HAVE_RTC_ALARM #endif diff --git a/firmware/export/config-ipodvideo.h b/firmware/export/config-ipodvideo.h index 765c33b2a4..8c53b38507 100644 --- a/firmware/export/config-ipodvideo.h +++ b/firmware/export/config-ipodvideo.h @@ -43,7 +43,7 @@ #define CONFIG_CODEC SWCODEC /* define this if you have a real-time clock */ -#ifndef BOOTLOADER +#if !defined(BOOTLOADER) && !defined(SIMULATOR) #define CONFIG_RTC RTC_PCF50605 #define HAVE_RTC_ALARM #endif |