blob: cd041622f3afba85c3a1bf14535337b1574f14f4 (
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 ../../../root/cyclictest/images/rootfs.cpio.uboot rootfs.cpio.uboot
novaboot nbscripts --exiton="NOVABOOT EXIT LINUX-CONF-PERF"
|