blob: 19d50a3267ef88fb0ebf09c0d1d9c27337e48344 (
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 ../boot
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"
|