The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / iucode-tool / S00iucode-tool
1 #!/bin/sh
2 #
3 # Upload microcode into the processor.
4 #
5
6 microcode_file="/usr/share/misc/intel-microcode.dat"
7
8 case "$1" in
9   start)
10         echo "Starting iucode-tool:"
11         /usr/sbin/iucode_tool -k $microcode_file
12         echo "done"
13         ;;
14   stop)
15         ;;
16   restart|reload)
17         ;;
18   *)
19         echo "Usage: $0 {start|stop|restart}"
20         exit 1
21 esac
22
23 exit $?