Overview
Comment: | Initial revision |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
0ade8bf913ad8bb6a07faae1e6751e5f |
User & Date: | gawthrop@users.sourceforge.net on 2000-09-02 15:54:28 |
Other Links: | branch diff | manifest | tags |
Context
2000-09-02
| ||
15:55:11 | Now doesn't include def files in da files check-in: 4b53fa2c24 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
15:54:28 | Initial revision check-in: 0ade8bf913 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
15:53:53 | Now does partitioning up to dae.view check-in: 013b1fab87 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/mtt_make_subsystems version [f08a2c8c26].
> > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/bin/sh # Makes subsystems for partitioning # Copyright (C) 2000 by Peter J. Gawthrop echo Creating subsystems for $1_$2.$3 # Get subsystems subsystems=`mtt_get_subsystems -strip $1`; for subsystem in $subsystems; do mtt -q -sub $subsystem $1 $2 $3 ## Repeating systems need sorting out !!!! #cp $1_$subsystem"_"$2.$3 $1_$subsystem"_1_"$2.$3 done |