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

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)

View File

@ -4,7 +4,7 @@ PRIORITY = "required"
DEPENDS = "makedevs"
RDEPENDS = "makedevs"
LICENSE = "GPL"
PR = "r116"
PR = "r117"
SRC_URI = "file://functions \
file://halt \