21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
if test "$1" = "-C"; then
say "precleaning repo"
./clean.sh
fi
# TODO: make it possible for user to change
# default set with environment vars
modules=(kcore kmem kstr kio kgraft kfile)
# compose an arch tuple. this is used in
# places, mostly to select the correct
# version of assembly files for a given
# platform (each has an arch tuple in its
# name, following the linkage specifier)
target=$arch.$os
|
|
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
if test "$1" = "-C"; then
say "precleaning repo"
./clean.sh
fi
# TODO: make it possible for user to change
# default set with environment vars
modules=(kcore kmem kstr kio kgraft kfile kcli)
# compose an arch tuple. this is used in
# places, mostly to select the correct
# version of assembly files for a given
# platform (each has an arch tuple in its
# name, following the linkage specifier)
target=$arch.$os
|