mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 10:07:38 -04:00
S5L8702: Rename nor-* to norboot-*
Since the SPI NOR flash is only used for the bootloader, rename the files accordingly, This is a preparation for the nandboot driver will be introduced, since S5L8720+ don't have an SPI NOR flash anymore. This is a part of the large iPod Nano 4G and iPod Touch 2G support patch. Credit: Cástor Muñoz <cmvidal@gmail.com> Change-Id: Iea835fd2029470bfe9f813631ad4f3db711facc3
This commit is contained in:
parent
2669548bcd
commit
a29b570ac4
7 changed files with 6 additions and 6 deletions
|
@ -137,7 +137,7 @@
|
|||
#endif
|
||||
|
||||
#if defined(IPOD_6G)
|
||||
#include "nor-target.h"
|
||||
#include "norboot-target.h"
|
||||
#endif
|
||||
|
||||
#define SCREEN_MAX_CHARS (LCD_WIDTH / SYSFONT_WIDTH)
|
||||
|
|
|
@ -56,7 +56,7 @@
|
|||
#include "i2c-s5l8702.h"
|
||||
#include "gpio-s5l8702.h"
|
||||
#include "pmu-target.h"
|
||||
#include "nor-target.h"
|
||||
#include "norboot-target.h"
|
||||
|
||||
|
||||
#define FW_ROCKBOX 0
|
||||
|
|
|
@ -1577,7 +1577,7 @@ target/arm/s5l8702/ipod6g/lcd-asm-6g.S
|
|||
target/arm/s5l8702/ipod6g/piezo-6g.c
|
||||
target/arm/s5l8702/spi-s5l8702.c
|
||||
target/arm/s5l8702/crypto-s5l8702.c
|
||||
target/arm/s5l8702/nor-s5l8702.c
|
||||
target/arm/s5l8702/norboot-s5l8702.c
|
||||
#if 0 //TODO
|
||||
target/arm/s5l8702/postmortemstub.S
|
||||
#endif
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#include "s5l87xx.h"
|
||||
#include "spi-s5l8702.h"
|
||||
#include "crypto-s5l8702.h"
|
||||
#include "nor-target.h"
|
||||
#include "norboot-target.h"
|
||||
|
||||
static void bootflash_ce(int port, bool state)
|
||||
{
|
|
@ -45,7 +45,7 @@ SOURCES = init.S dualboot.c
|
|||
SOURCES += $(ROOTDIR)/lib/arm_support/support-arm.S
|
||||
SOURCES += $(wildcard $(FIRMDIR)/asm/mem*.c $(FIRMDIR)/libc/mem*.c)
|
||||
SOURCES += $(addprefix $(FWARM)/, mmu-arm.S)
|
||||
SOURCES += $(addprefix $(FW8702)/, clocking-s5l8702.c spi-s5l8702.c nor-s5l8702.c crypto-s5l8702.c)
|
||||
SOURCES += $(addprefix $(FW8702)/, clocking-s5l8702.c spi-s5l8702.c norboot-s5l8702.c crypto-s5l8702.c)
|
||||
# target/loader specific sources
|
||||
SRCTARGET = piezo-.c
|
||||
$(foreach l, $(LOADERS), $(foreach t, $(TARGETS),\
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include "s5l87xx.h"
|
||||
#include "clocking-s5l8702.h"
|
||||
#include "spi-s5l8702.h"
|
||||
#include "nor-target.h"
|
||||
#include "norboot-target.h"
|
||||
#include "piezo.h"
|
||||
|
||||
/* How it works:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue