1
0
Fork 0
forked from len0rd/rockbox

Added disk/partition handling

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@405 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Björn Stenberg 2002-05-03 11:59:53 +00:00
parent 86a59ecdf6
commit c7f7934e8f
8 changed files with 164 additions and 58 deletions

View file

@ -1,18 +1,25 @@
FIRMWARE = ../..
DRIVERS = ../../drivers
CFLAGS = -g -Wall -DTEST_FAT -I$(DRIVERS) -I.
CFLAGS = -g -Wall -DTEST_FAT -I$(DRIVERS) -I$(FIRMWARE)/common -I$(FIRMWARE) -I. -DDEBUG -DCRT_DISPLAY
TARGET = fat
$(TARGET): fat.o ata-sim.o debug.o
$(TARGET): fat.o ata-sim.o debug.o main.o disk.o
gcc -g -o fat $+ -lfl
fat.o: $(DRIVERS)/fat.c $(DRIVERS)/fat.h $(DRIVERS)/ata.h
$(CC) $(CFLAGS) -c $< -o $@
disk.o: $(FIRMWARE)/common/disk.c
$(CC) $(CFLAGS) -c $< -o $@
debug.o: $(FIRMWARE)/debug.c
$(CC) $(CFLAGS) -c $< -o $@
ata-sim.o: ata-sim.c $(DRIVERS)/ata.h
debug.o: debug.c debug.h $(DRIVERS)/ata.h
main.o: main.c $(DRIVERS)/ata.h
clean:
rm -f *.o $(TARGET)

View file

@ -1,9 +0,0 @@
#ifndef DEBUG_H
#define DEBUG_H
void dbg_dump_sector(int sec);
void dbg_dump_buffer(unsigned char *buf);
void dbg_print_bpb(struct bpb *bpb);
void dbg_console(struct bpb *bpb);
#endif

View file

@ -4,6 +4,12 @@
#include "fat.h"
#include "ata.h"
#include "debug.h"
#include "disk.h"
void dbg_dump_sector(int sec);
void dbg_dump_buffer(unsigned char *buf);
void dbg_print_bpb(struct bpb *bpb);
void dbg_console(struct bpb *bpb);
void dbg_dump_sector(int sec)
{
@ -189,3 +195,25 @@ void dbg_console(struct bpb* bpb)
}
}
}
int main(int argc, char *argv[])
{
struct bpb bpb;
if(ata_init()) {
DEBUGF("*** Warning! The disk is uninitialized\n");
return -1;
}
if (disk_init()) {
DEBUGF("*** Failed reading partitions\n");
return -1;
}
if(fat_mount(&bpb,part[0].start)) {
DEBUGF("*** Failed mounting fat\n");
}
dbg_console(&bpb);
return 0;
}