mirror of
https://git.yoctoproject.org/poky
synced 2026-03-19 13:49:41 +01:00
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:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user