Further G1/G2 work. Bootloader compiles now, but probably won't work.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14017 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
9382e55415
commit
b7ea98f0ea
3 changed files with 16 additions and 1 deletions
|
@ -632,6 +632,19 @@ target/arm/usb-pp.c
|
|||
#endif /* SIMULATOR */
|
||||
#endif /* IPOD_3G */
|
||||
|
||||
#ifdef IPOD_1G2G
|
||||
#ifndef SIMULATOR
|
||||
target/arm/ata-pp5002.c
|
||||
target/arm/wmcodec-pp.c
|
||||
target/arm/i2s-pp.c
|
||||
target/arm/ipod/adc-ipod.c
|
||||
target/arm/ipod/3g/backlight-3g.c /* FIXME */
|
||||
target/arm/ipod/3g/button-3g.c /* FIXME */
|
||||
target/arm/ipod/lcd-gray.c
|
||||
target/arm/ipod/power-ipod.c
|
||||
#endif /* SIMULATOR */
|
||||
#endif /* IPOD_1G2G */
|
||||
|
||||
#ifdef IPOD_MINI
|
||||
#ifndef SIMULATOR
|
||||
drivers/pcf50605.c
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* This config file is for the Apple iPod 3g
|
||||
* This config file is for the Apple iPod 1g and 2g
|
||||
*/
|
||||
#define TARGET_TREE /* this target is using the target tree system */
|
||||
|
||||
|
|
|
@ -226,6 +226,8 @@ int main (int argc, char** argv)
|
|||
modelnum = 17;
|
||||
else if(!strcmp(&argv[1][5], "giga"))
|
||||
modelnum = 18;
|
||||
else if(!strcmp(&argv[1][5], "1g2g"))
|
||||
modelnum = 19;
|
||||
else {
|
||||
fprintf(stderr, "unsupported model: %s\n", &argv[1][5]);
|
||||
return 2;
|
||||
|
|
Loading…
Reference in a new issue