-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathload.sh
More file actions
executable file
·23 lines (23 loc) · 973 Bytes
/
Copy pathload.sh
File metadata and controls
executable file
·23 lines (23 loc) · 973 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash
cd spl
./spl --os ./spl_progs/os_startup.spl
./spl --int=1 ./spl_progs/int1.spl
./spl --int=2 ./spl_progs/int2.spl
./spl --int=3 ./spl_progs/int3.spl
./spl --int=4 ./spl_progs/int4.spl
./spl --int=5 ./spl_progs/int5.spl
./spl --int=6 ./spl_progs/int6.spl
./spl --int=7 ./spl_progs/int7.spl
./spl --int=timer ./spl_progs/timer.spl
./spl --exhandler ./spl_progs/exhandler.spl
cd ../xfs-interface
./xfs-interface load --os ../spl/spl_progs/os_startup.xsm
./xfs-interface load --int=1 ../spl/spl_progs/int1.xsm
./xfs-interface load --int=2 ../spl/spl_progs/int2.xsm
./xfs-interface load --int=3 ../spl/spl_progs/int3.xsm
./xfs-interface load --int=4 ../spl/spl_progs/int4.xsm
./xfs-interface load --int=5 ../spl/spl_progs/int5.xsm
./xfs-interface load --int=6 ../spl/spl_progs/int6.xsm
./xfs-interface load --int=7 ../spl/spl_progs/int7.xsm
./xfs-interface load --int=timer ../spl/spl_progs/timer.xsm
./xfs-interface load --exhandler ../spl/spl_progs/exhandler.xsm