imagemagick: bump version to 7.0.3-7 (security)
[buildroot-gz.git] / package / iucode-tool / S00iucode-tool
blob0c1e409de2c5f416899f7e09194bcc5b7aceadc5
1 #!/bin/sh
3 # Upload microcode into the processor.
6 microcode_file="/usr/share/misc/intel-microcode.dat"
8 case "$1" in
9 start)
10 echo "Starting iucode-tool:"
11 /usr/sbin/iucode_tool -k $microcode_file
12 echo "done"
14 stop)
16 restart|reload)
19 echo "Usage: $0 {start|stop|restart}"
20 exit 1
21 esac
23 exit $?