annotate scripts/ideboot @ 1850:cb874dd5c8d6

Modified to read commands from the new common directory.
author cyouse
date Sat, 02 Jul 2005 01:05:16 +0000
parents c37b7bb2b116
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1779
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
1 # Makes 'bootlist' and 'bootfile' in the current directory
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
2 set md=$NITROS9DIR/6309l2/modules
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
3 set sd=$CLOUD9DIR/Products/SuperDrivers/software/6309l2
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
4 set dd=$CLOUD9DIR/Products/DriveWire/software/6309l2
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
5
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
6 set tracklist_1773="$md/rel_80 $md/boot_1773_6ms $md/krn"
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
7 set tracklist_tc3="$md/rel_80 $sd/boot_tc3 $md/krn"
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
8 set tracklist_ide="$md/rel_80 $sd/boot_ide $md/krn"
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
9 set tracklist_dw="$md/rel_80 $dd/boot_dw $md/krn"
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
10
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
11 # IDE Boot with IDE Master as /DD
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
12 set bootlist_ide="$md/krnp2 $md/ioman $md/init $md/rbf.mn $sd/rbsuper.dr $sd/llide.dr $sd/lltc3.dr $sd/dd_ide.dd $sd/i0_ide.dd $sd/i1_ide.dd $sd/ih_ide.dd $sd/s0_tc3.dd $sd/s1_tc3.dd $sd/s2_tc3.dd $sd/s3_tc3.dd $sd/s4_tc3.dd $sd/s5_tc3.dd $sd/s6_tc3.dd $sd/s7_tc3.dd $sd/sh_tc3.dd $dd/drivewire.dr $dd/x0.dd $dd/x1.dd $dd/x2.dd $dd/x3.dd $md/rb1773.dr $md/d0_80d.dd $md/d1_40d.dd $md/scf.mn $md/cc3io.dr $md/term_win80.dt $md/keydrv_cc3.sb $md/joydrv_joy.sb $md/snddrv_cc3.sb $md/grfint.io $md/w.dw $md/w1.dw $md/w2.dw $md/w3.dw $md/w4.dw $md/w5.dw $md/w6.dw $md/w7.dw $md/sc6551.dr $md/t2_sc6551.dd $md/t3_sc6551.dd $md/pipeman.mn $md/piper.dr $md/pipe.dd $md/clock_60hz $md/clock2_cloud9"
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
13
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
14 # $(C9)/Products/SuperDrivers/software/6309l2/lldw.dr \
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
15 # $(C9)/Products/SuperDrivers/software/6309l2/ddx0.dd \
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
16 # $(C9)/Products/SuperDrivers/software/6309l2/x1.dd \
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
17 # $(C9)/Products/SuperDrivers/software/6309l2/x2.dd \
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
18 # $(C9)/Products/SuperDrivers/software/6309l2/x3.dd \
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
19
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
20
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
21
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
22 # Select our bootlist and tracklist
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
23 set bootlist="$bootlist_ide"
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
24 set tracklist="$tracklist_ide"
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
25
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
26 # Create the files
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
27 if (-e bootfile) then
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
28 rm bootfile
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
29 endif
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
30 foreach file ($bootlist)
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
31 cat $file>>bootfile
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
32 end
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
33 if (-e boottrack) then
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
34 rm boottrack
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
35 endif
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
36 foreach file ($tracklist)
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
37 cat $file>>boottrack
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
38 end
c37b7bb2b116 Parameterized the script.... still needs more work
boisy
parents:
diff changeset
39