blob: 4efb1e29dd18f7e458269c5e2551d3f1e484febb (
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 -sf ../../../jobfiles/linuxImage uImage
ln -sf ../../../tests/cyclictest/root/images/rootfs.cpio.uboot rootfs.cpio.uboot
novaboot nbscripts --exiton="NOVABOOT EXIT LINUX-CONF-PERF"
|