Differences From Artifact [01a4e2e7f2]:
- File kitsh/buildsrc/kitsh-0.0/installvfs.tcl — part of check-in [e5c8483726] at 2010-09-26 04:44:16 on branch trunk — Fixed sync logic issue with new support for specifying which storage system to use (installvfs.tcl and kitInit.c) (user: rkeene, size: 2375) [annotate] [blame] [check-ins using]
To Artifact [d2ae77312e]:
- File kitsh/buildsrc/kitsh-0.0/installvfs.tcl — part of check-in [55cb9f600a] at 2011-05-20 05:50:13 on branch merge-kitdll-kitsh-common — First set of merges from KitDLL to KitSH (user: rkeene, size: 2450) [annotate] [blame] [check-ins using]
21 22 23 24 25 26 27 28 29 30 31 32 33 34 | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | + + + | close $fd if {[string match "*KIT_STORAGE_ZIP*" $data]} { set tclKitStorage zip } if {[string match "*KIT_STORAGE_MK4*" $data]} { set tclKitStorage mk4 } if {[string match "*KIT_STORAGE_CVFS*" $data]} { set tclKitStorage cvfs } if {![info exists tclKitStorage]} { if {[string match "*KIT_INCLUDES_MK4TCL*" $data]} { set tclKitStorage mk4 } else { set tclKitStorage zip |