Changeset 1371
- Timestamp:
- 10/19/11 07:47:16 (20 months ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
Makefile (modified) (2 diffs)
-
camera_list.csv (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r1369 r1371 67 67 LANG=C echo -e "CHDK-$(VER) for $(PLATFORM) fw:$(PLATFORMSUB) build:$(BUILD_NUMBER) date:`date -R`" | \ 68 68 zip -9jz $(topdir)bin/$(VER)-$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)$(STATE).zip $(topdir)bin/DISKBOOT.BIN > $(DEVNULL) 69 ifdef PLATFORMOS 70 ifeq ($(PLATFORMOS),vxworks) 71 zip -9j $(topdir)bin/$(VER)-$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)$(STATE).zip $(topdir)bin/PS.FIR > $(DEVNULL) 72 rm -f $(topdir)bin/PS.FIR 73 endif 74 ifeq ($(PLATFORMOS),dryos) 75 ifdef OPT_FI2 76 ifdef FI2KEY 77 zip -9j $(topdir)bin/$(VER)-$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)$(STATE).zip $(topdir)bin/PS.FI2 > $(DEVNULL) 78 rm -f $(topdir)bin/PS.FI2 69 ifdef PLATFORMOS 70 ifeq ($(PLATFORMOS),vxworks) 71 zip -9j $(topdir)bin/$(VER)-$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)$(STATE).zip $(topdir)bin/PS.FIR > $(DEVNULL) 72 rm -f $(topdir)bin/PS.FIR 73 endif 74 ifeq ($(PLATFORMOS),dryos) 75 ifdef OPT_FI2 76 ifdef FI2KEY 77 zip -9j $(topdir)bin/$(VER)-$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)$(STATE).zip $(topdir)bin/PS.FI2 > $(DEVNULL) 78 rm -f $(topdir)bin/PS.FI2 79 endif 80 endif 79 81 endif 80 82 endif 81 endif 82 endif 83 # if COPY_TO is defined then copy this camera/firmware version to the copied firmware version 84 # Define COPY_TO in $(topdir)/platform/$(PLATFORM)/sub/$(PLATFORMSUB)/makefile.inc of the source 85 # firmware version that needs to be copied to another firmware version 86 ifdef COPY_TO 87 cp $(topdir)bin/$(VER)-$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)$(STATE).zip $(topdir)bin/$(VER)-$(PLATFORM)-$(COPY_TO)-$(BUILD_NUMBER)$(STATE).zip 88 endif 83 # if COPY_TO is defined then copy this camera/firmware version to the copied firmware version 84 # Define COPY_TO in $(topdir)/platform/$(PLATFORM)/sub/$(PLATFORMSUB)/makefile.inc of the source 85 # firmware version that needs to be copied to another firmware version 86 # For the case where one CHDK version applies to two or more other Canon firmware version place all the 87 # 'copy to' firmware versions together seperated by ':' - e.g. "a2000,100c,BETA,100a:100b," 88 ifdef COPY_TO 89 @echo "**** Copying duplicate Firmwares" 90 $(foreach COPY_PLATFORMSUB, $(subst :, ,$(COPY_TO)), \ 91 cp $(topdir)bin/$(VER)-$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)$(STATE).zip $(topdir)bin/$(VER)-$(PLATFORM)-$(COPY_PLATFORMSUB)-$(BUILD_NUMBER)$(STATE).zip ; \ 92 ) 93 endif 89 94 rm -f $(topdir)bin/DISKBOOT.BIN 90 95 … … 124 129 zip -9j $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)$(STATE).zip $(topdir)doc/readme.txt > $(DEVNULL) 125 130 126 ifdef PLATFORMOS 127 ifeq ($(PLATFORMOS),vxworks) 128 zip -9j $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)bin/PS.FIR > $(DEVNULL) 129 zip -9j $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)$(STATE).zip $(topdir)bin/PS.FIR > $(DEVNULL) 130 rm -f $(topdir)bin/PS.FIR 131 endif 132 ifeq ($(PLATFORMOS),dryos) 133 ifdef OPT_FI2 134 ifdef FI2KEY 135 zip -9j $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)bin/PS.FI2 > $(DEVNULL) 136 zip -9j $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)$(STATE).zip $(topdir)bin/PS.FI2 > $(DEVNULL) 137 rm -f $(topdir)bin/PS.FI2 131 ifdef PLATFORMOS 132 ifeq ($(PLATFORMOS),vxworks) 133 zip -9j $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)bin/PS.FIR > $(DEVNULL) 134 zip -9j $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)$(STATE).zip $(topdir)bin/PS.FIR > $(DEVNULL) 135 rm -f $(topdir)bin/PS.FIR 136 endif 137 ifeq ($(PLATFORMOS),dryos) 138 ifdef OPT_FI2 139 ifdef FI2KEY 140 zip -9j $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)bin/PS.FI2 > $(DEVNULL) 141 zip -9j $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)$(STATE).zip $(topdir)bin/PS.FI2 > $(DEVNULL) 142 rm -f $(topdir)bin/PS.FI2 143 endif 144 endif 138 145 endif 139 146 endif 140 endif 141 endif 142 # if COPY_TO is defined then copy this camera/firmware version to the copied firmware version 143 # Define COPY_TO in $(topdir)/platform/$(PLATFORM)/sub/$(PLATFORMSUB)/makefile.inc of the source 144 # firmware version that needs to be copied to another firmware version 145 ifdef COPY_TO 146 cp $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)bin/$(PLATFORM)-$(COPY_TO)-$(BUILD_NUMBER)-full$(STATE).zip 147 cp $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)$(STATE).zip $(topdir)bin/$(PLATFORM)-$(COPY_TO)-$(BUILD_NUMBER)$(STATE).zip 148 endif 147 # if COPY_TO is defined then copy this camera/firmware version to the copied firmware version 148 # Define COPY_TO in $(topdir)/platform/$(PLATFORM)/sub/$(PLATFORMSUB)/makefile.inc of the source 149 # firmware version that needs to be copied to another firmware version 150 # For the case where one CHDK version applies to two or more other Canon firmware version place all the 151 # 'copy to' firmware versions together seperated by ':' - e.g. "a2000,100c,BETA,100a:100b," 152 ifdef COPY_TO 153 @echo "**** Copying duplicate Firmwares" 154 $(foreach COPY_PLATFORMSUB, $(subst :, ,$(COPY_TO)), \ 155 cp $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip $(topdir)bin/$(PLATFORM)-$(COPY_PLATFORMSUB)-$(BUILD_NUMBER)-full$(STATE).zip ; \ 156 cp $(topdir)bin/$(PLATFORM)-$(PLATFORMSUB)-$(BUILD_NUMBER)$(STATE).zip $(topdir)bin/$(PLATFORM)-$(COPY_PLATFORMSUB)-$(BUILD_NUMBER)$(STATE).zip ; \ 157 ) 158 endif 149 159 rm -f $(topdir)bin/DISKBOOT.BIN 150 160 -
trunk/camera_list.csv
r1369 r1371 1 1 CAMERA,FIRMWARE,BETA_STATUS,COPY_TO,SKIP_AUTOBUILD 2 2 a1100,100c,BETA,, 3 a2000,100c,BETA, ,3 a2000,100c,BETA,100a:100b, 4 4 a430,100b,BETA,,SKIP_AUTOBUILD 5 5 a450,100d,,,
Note: See TracChangeset
for help on using the changeset viewer.