mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 21:22:39 -05:00
move PP specific files to pp/
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31533 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
bbe5845f04
commit
5cf79723ec
26 changed files with 23 additions and 23 deletions
|
|
@ -480,7 +480,7 @@ target/arm/system-arm.c
|
||||||
|
|
||||||
#if CONFIG_STORAGE & STORAGE_ATA
|
#if CONFIG_STORAGE & STORAGE_ATA
|
||||||
# ifdef CPU_PP502x
|
# ifdef CPU_PP502x
|
||||||
target/arm/ata-pp5020.c
|
target/arm/pp/ata-pp5020.c
|
||||||
# endif
|
# endif
|
||||||
# if CONFIG_CPU == DM320 || defined(CPU_PP502x)
|
# if CONFIG_CPU == DM320 || defined(CPU_PP502x)
|
||||||
target/arm/ata-as-arm.S
|
target/arm/ata-as-arm.S
|
||||||
|
|
@ -502,7 +502,7 @@ target/arm/ipod/powermgmt-ipod-pcf.c
|
||||||
#endif /* CPU_PP && IPOD_ARCH */
|
#endif /* CPU_PP && IPOD_ARCH */
|
||||||
|
|
||||||
#if CONFIG_I2C == I2C_PP5024 || CONFIG_I2C == I2C_PP5020 || CONFIG_I2C == I2C_PP5002
|
#if CONFIG_I2C == I2C_PP5024 || CONFIG_I2C == I2C_PP5020 || CONFIG_I2C == I2C_PP5002
|
||||||
target/arm/i2c-pp.c
|
target/arm/pp/i2c-pp.c
|
||||||
#elif CONFIG_I2C == I2C_PNX0101
|
#elif CONFIG_I2C == I2C_PNX0101
|
||||||
target/arm/pnx0101/i2c-pnx0101.c
|
target/arm/pnx0101/i2c-pnx0101.c
|
||||||
#elif CONFIG_I2C == I2C_TCC780X || CONFIG_I2C == I2C_TCC77X
|
#elif CONFIG_I2C == I2C_TCC780X || CONFIG_I2C == I2C_TCC77X
|
||||||
|
|
@ -589,36 +589,36 @@ target/arm/as3525/pcm-as3525.c
|
||||||
#endif /* CONFIG_CPU == AS3525 */
|
#endif /* CONFIG_CPU == AS3525 */
|
||||||
|
|
||||||
#if defined(CPU_PP)
|
#if defined(CPU_PP)
|
||||||
target/arm/i2s-pp.c
|
target/arm/pp/i2s-pp.c
|
||||||
target/arm/kernel-pp.c
|
target/arm/pp/kernel-pp.c
|
||||||
target/arm/timer-pp.c
|
target/arm/pp/timer-pp.c
|
||||||
# if CONFIG_STORAGE & STORAGE_SD
|
# if CONFIG_STORAGE & STORAGE_SD
|
||||||
target/arm/ata-sd-pp.c
|
target/arm/pp/ata-sd-pp.c
|
||||||
# endif
|
# endif
|
||||||
# if !defined(HAVE_AS3514) && !defined(HAVE_AK4537)
|
# if !defined(HAVE_AS3514) && !defined(HAVE_AK4537)
|
||||||
target/arm/wmcodec-pp.c
|
target/arm/pp/wmcodec-pp.c
|
||||||
# endif
|
# endif
|
||||||
#if CONFIG_CPU == PP5002
|
#if CONFIG_CPU == PP5002
|
||||||
target/arm/system-pp5002.c
|
target/arm/pp/system-pp5002.c
|
||||||
target/arm/usb-fw-pp5002.c
|
target/arm/pp/usb-fw-pp5002.c
|
||||||
target/arm/ata-pp5002.c
|
target/arm/pp/ata-pp5002.c
|
||||||
#elif defined CPU_PP502x
|
#elif defined CPU_PP502x
|
||||||
target/arm/usb-fw-pp502x.c
|
target/arm/pp/usb-fw-pp502x.c
|
||||||
target/arm/system-pp502x.c
|
target/arm/pp/system-pp502x.c
|
||||||
#endif
|
#endif
|
||||||
#ifdef BOOTLOADER
|
#ifdef BOOTLOADER
|
||||||
#ifdef HAVE_BOOTLOADER_USB_MODE
|
#ifdef HAVE_BOOTLOADER_USB_MODE
|
||||||
target/arm/crt0-pp502x-bl-usb.S
|
target/arm/pp/crt0-pp502x-bl-usb.S
|
||||||
#else
|
#else
|
||||||
target/arm/crt0-pp-bl.S
|
target/arm/pp/crt0-pp-bl.S
|
||||||
#endif /* HAVE_BOOTLOADER_USB_MODE */
|
#endif /* HAVE_BOOTLOADER_USB_MODE */
|
||||||
#else /* !BOOTLOADER */
|
#else /* !BOOTLOADER */
|
||||||
target/arm/pcm-pp.c
|
target/arm/pp/pcm-pp.c
|
||||||
target/arm/debug-pp.c
|
target/arm/pp/debug-pp.c
|
||||||
#if !defined(SANSA_E200) && !defined(SANSA_C200)
|
#if !defined(SANSA_E200) && !defined(SANSA_C200)
|
||||||
target/arm/audio-pp.c
|
target/arm/pp/audio-pp.c
|
||||||
#endif /* SANSA_E200 */
|
#endif /* SANSA_E200 */
|
||||||
target/arm/crt0-pp.S
|
target/arm/pp/crt0-pp.S
|
||||||
#endif
|
#endif
|
||||||
#elif CONFIG_CPU == PNX0101
|
#elif CONFIG_CPU == PNX0101
|
||||||
target/arm/pnx0101/crt0-pnx0101.S
|
target/arm/pnx0101/crt0-pnx0101.S
|
||||||
|
|
@ -744,7 +744,7 @@ drivers/audio/tsc2100.c
|
||||||
|
|
||||||
#ifdef HAVE_AS3514
|
#ifdef HAVE_AS3514
|
||||||
# ifdef CPU_PP
|
# ifdef CPU_PP
|
||||||
target/arm/ascodec-pp.c
|
target/arm/pp/ascodec-pp.c
|
||||||
# endif
|
# endif
|
||||||
# if !defined(BOOTLOADER) || defined(CPU_PP)
|
# if !defined(BOOTLOADER) || defined(CPU_PP)
|
||||||
target/arm/adc-as3514.c
|
target/arm/adc-as3514.c
|
||||||
|
|
@ -758,7 +758,7 @@ target/arm/powermgmt-ascodec.c
|
||||||
# ifdef IPOD_ARCH
|
# ifdef IPOD_ARCH
|
||||||
target/arm/ipod/adc-ipod-pcf.c
|
target/arm/ipod/adc-ipod-pcf.c
|
||||||
# else
|
# else
|
||||||
target/arm/adc-pp5020.c
|
target/arm/pp/adc-pp5020.c
|
||||||
# endif /* IPOD_ARCH */
|
# endif /* IPOD_ARCH */
|
||||||
|
|
||||||
#elif CONFIG_I2C == I2C_PP5002
|
#elif CONFIG_I2C == I2C_PP5002
|
||||||
|
|
|
||||||
|
|
@ -1,2 +1,2 @@
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "../boot-pp502x-bl-usb.lds"
|
#include "../pp/boot-pp502x-bl-usb.lds"
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
/* Can't link all Philips ARM devices the same way at this time */
|
/* Can't link all Philips ARM devices the same way at this time */
|
||||||
#ifdef HAVE_BOOTLOADER_USB_MODE
|
#ifdef HAVE_BOOTLOADER_USB_MODE
|
||||||
#include "../boot-pp502x-bl-usb.lds"
|
#include "../pp/boot-pp502x-bl-usb.lds"
|
||||||
#else /* !HAVE_BOOTLOADER_USB_MODE */
|
#else /* !HAVE_BOOTLOADER_USB_MODE */
|
||||||
ENTRY(start)
|
ENTRY(start)
|
||||||
OUTPUT_FORMAT(elf32-littlearm)
|
OUTPUT_FORMAT(elf32-littlearm)
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
/* Can't link all Sansa PP devices the same way at this time */
|
/* Can't link all Sansa PP devices the same way at this time */
|
||||||
#ifdef HAVE_BOOTLOADER_USB_MODE
|
#ifdef HAVE_BOOTLOADER_USB_MODE
|
||||||
#include "../boot-pp502x-bl-usb.lds"
|
#include "../pp/boot-pp502x-bl-usb.lds"
|
||||||
#else /* !HAVE_BOOTLOADER_USB_MODE */
|
#else /* !HAVE_BOOTLOADER_USB_MODE */
|
||||||
|
|
||||||
ENTRY(start)
|
ENTRY(start)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue