1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-09 15:50:16 +00:00

initscripts: merge OE change of cpuinfo_id to machine_id, fixing gsmd's startup

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5016 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Ross Burton
2008-08-04 13:45:06 +00:00
parent cf55538e50
commit 4f1efa2226
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -4,8 +4,8 @@
# shell scripts in the /etc/init.d directory.
#
cpuinfo_id() { # return the Hardware module ID
awk 'BEGIN { FS=": " } /Hardware/ { print $2 } ' </proc/cpuinfo
machine_id() { # return the machine ID
awk 'BEGIN { FS=": " } /Hardware/ { gsub(" ", "_", $2); print tolower($2) } ' </proc/cpuinfo
}
killproc() { # kill the named process(es)