mirror of
https://git.yoctoproject.org/poky
synced 2026-09-15 06:49:33 +02:00
Do not mount /dev/md by default via udev, this resolved a problem with the sanity test failing due to seeing the error while attempting to mount /dev/md0 (From OE-Core rev: 07a2825c6f4ad3e5e3970cd1a89233bd795c68cf) (From OE-Core rev: 8ea8e41ad7863f57a851f00154e133cd0e550ef8) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
16 lines
473 B
BlitzBasic
16 lines
473 B
BlitzBasic
SUMMARY = "Extra machine specific configuration files"
|
|
DESCRIPTION = "Extra machine specific configuration files for udev, specifically blacklist information."
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://${WORKDIR}/COPYING.GPL;md5=751419260aa954499f7abaabaa882bbe"
|
|
|
|
PR = "r2"
|
|
|
|
SRC_URI = "file://mount.blacklist \
|
|
file://COPYING.GPL"
|
|
|
|
do_install () {
|
|
install -d ${D}${sysconfdir}/udev/
|
|
|
|
install -m 0644 ${WORKDIR}/mount.blacklist ${D}${sysconfdir}/udev/
|
|
}
|