Changeset 1495 for branches/reyalp-flt


Ignore:
Timestamp:
12/21/11 20:56:32 (17 months ago)
Author:
tsv
Message:

Quick fix flat module branch:

  • Remove obsolete scripts from /Makefile
  • Reconcile module_inspector to new import check
Location:
branches/reyalp-flt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/reyalp-flt/Makefile

    r1488 r1495  
    121121        zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/SCRIPTS/EXAM/*     > $(DEVNULL) 
    122122        zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/SCRIPTS/TEST/*     > $(DEVNULL) 
    123         zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/SCRIPTS/4Pack/*    > $(DEVNULL) 
    124         zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/SCRIPTS/4Pack/Lua/*        > $(DEVNULL) 
    125         zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/SCRIPTS/4Pack/uBasic/* > $(DEVNULL) 
    126123        zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/SCRIPTS/EDITOR/*   > $(DEVNULL) 
    127124        zip -9 $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)CHDK/syscurves.CVF      > $(DEVNULL) 
  • branches/reyalp-flt/core/modules/module_inspector.c

    r1483 r1495  
    99 
    1010extern int basic_module_init(); 
    11 void* _getmeminfo=0; 
     11void (*_getmeminfo)(void*) = 0; 
    1212 
    1313/***************** BEGIN OF AUXILARY PART ********************* 
     
    175175                if (_getmeminfo) { 
    176176 
    177                         extern void GetMemInfo(cam_meminfo*); 
    178  
    179177                cam_meminfo meminfo; 
    180178                        memset(&meminfo,sizeof(meminfo),0); 
    181                 GetMemInfo(&meminfo); 
     179                _getmeminfo(&meminfo); 
    182180 
    183181                        char txt[50]; 
Note: See TracChangeset for help on using the changeset viewer.