repo.or.cz
/
buildroot-gz.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
imagemagick: bump version to 7.0.3-7 (security)
[buildroot-gz.git]
/
package
/
iucode-tool
/
S00iucode-tool
blob
0c1e409de2c5f416899f7e09194bcc5b7aceadc5
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
$?