make the meizu bootloaders compile again with the new storage infrastructure

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19088 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Frank Gevaerts 2008-11-11 14:11:49 +00:00
parent 8e90c0f1ed
commit e86d651647
2 changed files with 6 additions and 6 deletions

View file

@ -111,10 +111,12 @@ drivers/serial.c
#ifndef SIMULATOR #ifndef SIMULATOR
#if (CONFIG_STORAGE & STORAGE_MMC) #if (CONFIG_STORAGE & STORAGE_MMC)
drivers/ata_mmc.c drivers/ata_mmc.c
#elif (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND & NAND_IFP7XX) #elif (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_IFP7XX)
drivers/ata_flash.c drivers/ata_flash.c
#elif (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND & NAND_TCC) #elif (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_TCC)
target/arm/ata-nand-telechips.c target/arm/ata-nand-telechips.c
#elif (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_SAMSUNG)
target/arm/s5l8700/ata-nand-s5l8700.c
#elif (CONFIG_STORAGE & STORAGE_ATA) #elif (CONFIG_STORAGE & STORAGE_ATA)
drivers/ata.c drivers/ata.c
#elif (CONFIG_STORAGE & STORAGE_RAMDISK) #elif (CONFIG_STORAGE & STORAGE_RAMDISK)
@ -1139,7 +1141,6 @@ target/arm/tcc780x/cowond2/audio-cowond2.c
#if CONFIG_CPU==S5L8700 #if CONFIG_CPU==S5L8700
target/arm/s5l8700/system-s5l8700.c target/arm/s5l8700/system-s5l8700.c
target/arm/s5l8700/ata-nand-s5l8700.c
#endif #endif
#ifdef MEIZU_M6SL #ifdef MEIZU_M6SL

View file

@ -18,9 +18,8 @@
* KIND, either express or implied. * KIND, either express or implied.
* *
****************************************************************************/ ****************************************************************************/
#include "ata.h" #include "nand.h"
#include "ata-target.h" #include "ata_idle_notify.h"
#include "nand_idle_notify.h"
#include "system.h" #include "system.h"
#include <string.h> #include <string.h>
#include "thread.h" #include "thread.h"