blob: 57b2b1c9a4108115f7e39dbe1ec3e665f803f3e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
# Wake target if target is suspended
sudo /usr/sbin/etherwake 00:0c:f1:77:ec:46
# Boot using novaboot
cd `dirname $0`
cd ../cyclictest
ln -s ../../../jobfiles/linuxImage uImage
ln -s ../../../tests/cyclictest/root/images/rootfs.cpio.uboot rootfs.cpio.uboot
novaboot nbscripts --exiton="NOVABOOT EXIT LINUX-CONF-PERF"
|