initscripts/urandom: create directory before staging into it

/etc/init.d/urandom fails to start/stop because it tries to save
random-seed into /var/lib/urandom folder which does not exist in the
file system.

Fixed by creating /var/lib/urandom at do_install time.

[YOCTO #3518]
[ CQID: WIND00384168 ]

(From OE-Core rev: 42e37058e06c76c6782d5371d4a60d260f00fa20)

Signed-off-by: Ming Liu <ming.liu@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Ming Liu 2012-12-19 09:55:26 +08:00 committed by Richard Purdie
parent 681bfd4fe3
commit 4392663569
1 changed files with 3 additions and 1 deletions

View File

@ -3,7 +3,7 @@ DESCRIPTION = "Initscripts provide the basic system startup initialization scrip
SECTION = "base"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
PR = "r137"
PR = "r138"
INHIBIT_DEFAULT_DEPS = "1"
@ -133,4 +133,6 @@ do_install () {
fi
install -m 0755 ${WORKDIR}/device_table.txt ${D}${sysconfdir}/device_table
# Holds state information pertaining to urandom
install -d ${D}/var/lib/urandom
}