Changeset 755
- Timestamp:
- 08/16/11 18:01:33 (22 months ago)
- Location:
- trunk
- Files:
-
- 11 added
- 5 edited
-
Makefile (modified) (3 diffs)
-
platform/sx20/platform_camera.h (modified) (1 diff)
-
platform/sx20/sub/100f (added)
-
platform/sx20/sub/100f/Makefile (added)
-
platform/sx20/sub/100f/boot.c (added)
-
platform/sx20/sub/100f/capt_seq.c (added)
-
platform/sx20/sub/100f/lib.c (added)
-
platform/sx20/sub/100f/makefile.inc (added)
-
platform/sx20/sub/100f/movie_rec.c (added)
-
platform/sx20/sub/100f/stubs_asm.h (added)
-
platform/sx20/sub/100f/stubs_entry.S (added)
-
platform/sx20/sub/100f/stubs_entry_2.S (added)
-
platform/sx20/sub/100f/stubs_min.S (added)
-
platform/sx20/sub/102b/boot.c (modified) (1 diff)
-
platform/sx20/sub/102b/makefile.inc (modified) (1 diff)
-
platform/sx20/sub/102d/makefile.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r742 r755 284 284 $(MAKE) -s --no-print-directory PLATFORM=s90 PLATFORMSUB=101a NO_INC_BUILD=1 firzipsub 285 285 $(MAKE) -s --no-print-directory PLATFORM=s90 PLATFORMSUB=101c NO_INC_BUILD=1 firzipsub 286 $(MAKE) -s --no-print-directory PLATFORM=sx20 PLATFORMSUB=100f NO_INC_BUILD=1 firzipsub 286 287 $(MAKE) -s --no-print-directory PLATFORM=sx20 PLATFORMSUB=102b NO_INC_BUILD=1 firzipsub 287 288 $(MAKE) -s --no-print-directory PLATFORM=sx20 PLATFORMSUB=102d NO_INC_BUILD=1 firzipsub … … 509 510 $(MAKE) -s --no-print-directory PLATFORM=s90 PLATFORMSUB=101a NO_INC_BUILD=1 firzipsubcomplete 510 511 $(MAKE) -s --no-print-directory PLATFORM=s90 PLATFORMSUB=101c NO_INC_BUILD=1 firzipsubcomplete 512 $(MAKE) -s --no-print-directory PLATFORM=sx20 PLATFORMSUB=100f NO_INC_BUILD=1 firzipsubcomplete 511 513 $(MAKE) -s --no-print-directory PLATFORM=sx20 PLATFORMSUB=102b NO_INC_BUILD=1 firzipsubcomplete 512 514 $(MAKE) -s --no-print-directory PLATFORM=sx20 PLATFORMSUB=102d NO_INC_BUILD=1 firzipsubcomplete … … 805 807 $(MAKE) -s --no-print-directory PLATFORM=s90 PLATFORMSUB=101a NO_INC_BUILD=1 clean 806 808 $(MAKE) -s --no-print-directory PLATFORM=s90 PLATFORMSUB=101c NO_INC_BUILD=1 clean 809 $(MAKE) -s --no-print-directory PLATFORM=sx20 PLATFORMSUB=100f NO_INC_BUILD=1 clean 807 810 $(MAKE) -s --no-print-directory PLATFORM=sx20 PLATFORMSUB=102b NO_INC_BUILD=1 clean 808 811 $(MAKE) -s --no-print-directory PLATFORM=sx20 PLATFORMSUB=102d NO_INC_BUILD=1 clean -
trunk/platform/sx20/platform_camera.h
r698 r755 102 102 103 103 #define CAM_ZEBRA_ASPECT_ADJUST 1 104 105 #ifndef OPT_EXMEM_MALLOC 104 106 #define CAM_ZEBRA_NOBUF 1 107 #endif 105 108 106 109 #undef CAM_BITMAP_PALETTE -
trunk/platform/sx20/sub/102b/boot.c
r398 r755 174 174 "MOV R0, #0x53000\n" 175 175 "STR R0, [SP,#4]\n" 176 // "LDR R0, =0x13DD20\n" // - 176 #if defined(OPT_CHDK_IN_EXMEM) 177 "LDR R0, =0x13DD20\n" // use original heap offset since CHDK is loaded in high memory 178 #else 177 179 "LDR R0, =new_sa\n" // + 178 180 "LDR R0, [R0]\n" // + 181 #endif 179 182 "LDR R2, =0x2F9C00\n" 180 183 "LDR R1, =0x2F24A8\n" -
trunk/platform/sx20/sub/102b/makefile.inc
r398 r755 4 4 PLATFORMOS=dryos 5 5 6 ROMBASEADDR=0xFF810000 7 MAXRAMADDR=0x03FFFFFF 6 8 MEMBASEADDR=0x1900 7 9 RESTARTSTART=0x50000 8 MEMISOSTART=0x13DD6C 9 ROMBASEADDR=0xFF810000 10 11 # Set up size variables for EXMEM 12 EXMEM_HEAP_SKIP=0x2F7600 #(0x44000000-0x43D08A00) from sub_FF88A064 = size of video buffers in EXMEM area 13 EXMEM_BUFFER_SIZE=0x200000 # Amount of EXMEM memory to allocate for CHDK = 2MB 14 ifdef OPT_CHDK_IN_EXMEM 15 MEMISOSTART=0x3B089E0 # MAXRAMADDR+1 - EXMEM_HEAP_SKIP - EXMEM_BUFFER_SIZE - 32 (exmem allocates 64 bytes extra, 32 before and 32 after block allocated) 16 else 17 MEMISOSTART=0x13DD6C 18 endif 10 19 11 20 PLFLAGS=-DMEMBASEADDR=$(MEMBASEADDR) -DMEMISOSTART=$(MEMISOSTART) -DMEMISOSIZE=$(MEMISOSIZE) -
trunk/platform/sx20/sub/102d/makefile.inc
r631 r755 6 6 ROMBASEADDR=0xFF810000 7 7 MAXRAMADDR=0x03FFFFFF 8 9 8 MEMBASEADDR=0x1900 10 9 RESTARTSTART=0x50000
Note: See TracChangeset
for help on using the changeset viewer.