9f4b8dc11b
padconf is specific to arm, so it's being moved to kernel/arch/earm. Add a test case to ensure the proper error is returned on non-ARM systems. Change-Id: I07ebbe64825d59bc0ef9c818d3d54891dafb4419
14 lines
225 B
Bash
Executable file
14 lines
225 B
Bash
Executable file
#!/bin/sh
|
|
|
|
make >/dev/null
|
|
|
|
echo -n "Kernel test (sys_padconf): "
|
|
service up `pwd`/padconftest -config system.conf -label padconftest -script /etc/rs.single
|
|
r=$?
|
|
|
|
if [ $r -ne 0 ]; then
|
|
echo "failure"
|
|
exit 1
|
|
fi
|
|
|
|
echo "ok"
|