
IMPORTANT: this change has a docs/UPDATING entry! This rename is unfortunately necessary because NetBSD has decided to create its own service(8) utility, and we will want to import theirs as well. The two can obviously not coexist. Also move ours from /bin to /sbin, as it is a superuser-only utility. Change-Id: Ic6e46ffb3a84b4747d2fdcb0d74e62dbea065039
17 lines
345 B
Bash
Executable File
17 lines
345 B
Bash
Executable File
#!/bin/sh
|
|
|
|
make >/dev/null
|
|
|
|
echo -n "Kernel test (sys_vumap): "
|
|
minix-service up `pwd`/vumaprelay -config system.conf -label vumaprelay -script /etc/rs.single
|
|
minix-service up `pwd`/vumaptest -config system.conf -script /etc/rs.single 2>/dev/null
|
|
r=$?
|
|
minix-service down vumaprelay
|
|
|
|
if [ $r -ne 0 ]; then
|
|
echo "failure"
|
|
exit 1
|
|
fi
|
|
|
|
echo "ok"
|