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:
parent
8e90c0f1ed
commit
e86d651647
2 changed files with 6 additions and 6 deletions
|
@ -111,10 +111,12 @@ drivers/serial.c
|
|||
#ifndef SIMULATOR
|
||||
#if (CONFIG_STORAGE & STORAGE_MMC)
|
||||
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
|
||||
#elif (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND & NAND_TCC)
|
||||
#elif (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_TCC)
|
||||
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)
|
||||
drivers/ata.c
|
||||
#elif (CONFIG_STORAGE & STORAGE_RAMDISK)
|
||||
|
@ -1139,7 +1141,6 @@ target/arm/tcc780x/cowond2/audio-cowond2.c
|
|||
|
||||
#if CONFIG_CPU==S5L8700
|
||||
target/arm/s5l8700/system-s5l8700.c
|
||||
target/arm/s5l8700/ata-nand-s5l8700.c
|
||||
#endif
|
||||
|
||||
#ifdef MEIZU_M6SL
|
||||
|
|
|
@ -18,9 +18,8 @@
|
|||
* KIND, either express or implied.
|
||||
*
|
||||
****************************************************************************/
|
||||
#include "ata.h"
|
||||
#include "ata-target.h"
|
||||
#include "nand_idle_notify.h"
|
||||
#include "nand.h"
|
||||
#include "ata_idle_notify.h"
|
||||
#include "system.h"
|
||||
#include <string.h>
|
||||
#include "thread.h"
|
||||
|
|
Loading…
Reference in a new issue