2005-02-18 13:47:17 +00:00
|
|
|
#ifndef SIMULATOR
|
2004-10-04 13:03:33 +00:00
|
|
|
backlight.c
|
2005-02-18 13:47:17 +00:00
|
|
|
#endif
|
2004-10-04 13:03:33 +00:00
|
|
|
buffer.c
|
|
|
|
common/atoi.c
|
|
|
|
common/ctype.c
|
2005-02-18 13:47:17 +00:00
|
|
|
#ifndef SIMULATOR
|
2004-10-04 13:03:33 +00:00
|
|
|
common/dir.c
|
2005-02-18 13:47:17 +00:00
|
|
|
common/file.c
|
|
|
|
#endif
|
2004-10-04 13:03:33 +00:00
|
|
|
common/disk.c
|
|
|
|
common/errno.c
|
|
|
|
common/memcmp.c
|
|
|
|
common/qsort.c
|
|
|
|
common/random.c
|
|
|
|
common/sprintf.c
|
|
|
|
common/strcasecmp.c
|
2005-01-27 22:21:08 +00:00
|
|
|
common/strcasestr.c
|
2004-10-04 13:03:33 +00:00
|
|
|
common/strcat.c
|
|
|
|
common/strchr.c
|
|
|
|
common/strcmp.c
|
|
|
|
common/strcpy.c
|
2005-02-18 13:47:17 +00:00
|
|
|
#if (CONFIG_CPU == SH7034) && !defined(SIMULATOR)
|
2005-01-22 13:18:33 +00:00
|
|
|
common/strlen_a.S
|
|
|
|
#else
|
2004-10-04 13:03:33 +00:00
|
|
|
common/strlen.c
|
2005-01-22 13:18:33 +00:00
|
|
|
#endif
|
2004-10-04 13:03:33 +00:00
|
|
|
common/strncmp.c
|
|
|
|
common/strncpy.c
|
|
|
|
common/strrchr.c
|
|
|
|
common/strtok.c
|
|
|
|
common/timefuncs.c
|
2005-01-28 13:31:30 +00:00
|
|
|
#if (CONFIG_CPU == SH7034)
|
2005-01-21 22:43:02 +00:00
|
|
|
common/memcpy_a.S
|
|
|
|
common/memset_a.S
|
|
|
|
#else
|
|
|
|
common/memcpy.c
|
|
|
|
common/memset.c
|
|
|
|
#endif
|
2005-02-18 13:47:17 +00:00
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
|
|
|
drivers/lcd-player-charset.c
|
|
|
|
drivers/lcd-player.c
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2005-02-22 21:28:54 +00:00
|
|
|
#if CONFIG_KEYPAD == IRIVER_H100_PAD
|
2005-02-18 13:47:17 +00:00
|
|
|
drivers/lcd-h100.c
|
|
|
|
#else
|
|
|
|
drivers/lcd-recorder.c
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
drivers/power.c
|
|
|
|
drivers/led.c
|
|
|
|
#ifndef SIMULATOR
|
2004-10-04 13:03:33 +00:00
|
|
|
drivers/adc.c
|
2004-10-05 07:58:54 +00:00
|
|
|
#ifdef HAVE_MMC
|
2004-10-04 13:03:33 +00:00
|
|
|
drivers/ata_mmc.c
|
2004-10-05 08:11:11 +00:00
|
|
|
#else
|
|
|
|
drivers/ata.c
|
2004-10-05 07:58:54 +00:00
|
|
|
#endif
|
2004-10-04 13:03:33 +00:00
|
|
|
drivers/button.c
|
|
|
|
drivers/dac.c
|
|
|
|
drivers/fat.c
|
2004-10-05 07:58:54 +00:00
|
|
|
#ifdef CONFIG_TUNER
|
2004-10-15 21:41:46 +00:00
|
|
|
#if (CONFIG_TUNER & S1A0903X01)
|
2004-10-04 13:03:33 +00:00
|
|
|
drivers/fmradio.c
|
2004-10-15 21:41:46 +00:00
|
|
|
tuner_samsung.c
|
|
|
|
#endif
|
|
|
|
#if (CONFIG_TUNER & TEA5767)
|
|
|
|
drivers/fmradio_i2c.c
|
|
|
|
tuner_philips.c
|
|
|
|
#endif
|
2004-10-05 07:58:54 +00:00
|
|
|
#endif
|
2005-03-18 11:39:28 +00:00
|
|
|
#if CONFIG_I2C == I2C_H100
|
|
|
|
drivers/i2c-h100.c
|
|
|
|
#else
|
2004-10-04 13:03:33 +00:00
|
|
|
drivers/i2c.c
|
2005-03-18 11:39:28 +00:00
|
|
|
#endif
|
2005-01-27 19:17:47 +00:00
|
|
|
#if CONFIG_HWCODEC != MASNONE
|
2004-10-04 13:03:33 +00:00
|
|
|
drivers/mas.c
|
2005-01-27 19:17:47 +00:00
|
|
|
#endif
|
2004-10-05 07:58:54 +00:00
|
|
|
#ifdef HAVE_RTC
|
2004-10-04 13:03:33 +00:00
|
|
|
drivers/rtc.c
|
2004-10-05 07:58:54 +00:00
|
|
|
#endif
|
2004-10-04 13:03:33 +00:00
|
|
|
drivers/serial.c
|
2005-02-18 13:47:17 +00:00
|
|
|
#endif /* !SIMULATOR */
|
2004-10-05 07:58:54 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2004-10-04 13:03:33 +00:00
|
|
|
font.c
|
2004-10-05 07:58:54 +00:00
|
|
|
#endif
|
2004-10-04 13:03:33 +00:00
|
|
|
id3.c
|
2005-02-18 13:47:17 +00:00
|
|
|
#ifndef SIMULATOR
|
2005-02-18 14:21:40 +00:00
|
|
|
hwcompat.c
|
2004-10-04 13:03:33 +00:00
|
|
|
kernel.c
|
2005-02-18 13:47:17 +00:00
|
|
|
rolo.c
|
|
|
|
thread.c
|
|
|
|
crt0.S
|
|
|
|
#endif
|
2004-10-04 13:03:33 +00:00
|
|
|
mp3_playback.c
|
|
|
|
mp3data.c
|
2005-03-08 23:53:55 +00:00
|
|
|
#ifndef BOOTLOADER
|
2004-10-04 13:03:33 +00:00
|
|
|
mpeg.c
|
2005-03-08 23:53:55 +00:00
|
|
|
#endif
|
2005-02-18 13:47:17 +00:00
|
|
|
#ifndef WIN32 /* the win32 sim has its own versin of these: */
|
2004-10-04 13:03:33 +00:00
|
|
|
panic.c
|
2005-02-18 13:47:17 +00:00
|
|
|
debug.c
|
|
|
|
#endif
|
2004-10-04 13:03:33 +00:00
|
|
|
powermgmt.c
|
|
|
|
system.c
|
|
|
|
usb.c
|
2005-01-26 23:37:16 +00:00
|
|
|
#if CONFIG_CPU == SH7034
|
2004-10-04 13:03:33 +00:00
|
|
|
bitswap.S
|
|
|
|
descramble.S
|
2005-01-26 23:37:16 +00:00
|
|
|
#endif
|
2005-02-03 08:36:43 +00:00
|
|
|
drivers/lcd.S
|
2005-04-01 13:41:03 +00:00
|
|
|
#ifdef IRIVER_H100
|
|
|
|
#ifndef SIMULATOR
|
2005-03-18 11:39:28 +00:00
|
|
|
drivers/uda1380.c
|
2005-04-14 11:40:41 +00:00
|
|
|
drivers/lcd-h100-remote.c
|
2005-03-18 11:39:28 +00:00
|
|
|
pcm_playback.c
|
|
|
|
#endif
|
2005-04-01 13:41:03 +00:00
|
|
|
#endif
|
|
|
|
sound.c
|