meta-digi-arm: remove udev bbappend

It was added to fix [DEL-898] but it is no longer needed after the
underlying changes in the rootfs hierarchy (added '/run' mountpoint)

Signed-off-by: Javier Viguera <javier.viguera@digi.com>
This commit is contained in:
Javier Viguera 2014-03-06 17:17:26 +01:00
parent 987418e5ee
commit 6e5501a24f
3 changed files with 6 additions and 15 deletions

View File

@ -15,6 +15,9 @@ XSERVER = "xserver-xorg \
# Ship kernel modules # Ship kernel modules
MACHINE_EXTRA_RRECOMMENDS = "kernel-modules" MACHINE_EXTRA_RRECOMMENDS = "kernel-modules"
# Extra udev rules
MACHINE_EXTRA_RRECOMMENDS += "udev-extraconf"
# Float-Point setting # Float-Point setting
DEFAULTTUNE_mx6 ?= "cortexa9hf-neon" DEFAULTTUNE_mx6 ?= "cortexa9hf-neon"

View File

@ -22,6 +22,9 @@ INHERIT += "fsl-dynamic-packagearch"
# Ship kernel modules # Ship kernel modules
MACHINE_EXTRA_RRECOMMENDS = "kernel-modules" MACHINE_EXTRA_RRECOMMENDS = "kernel-modules"
# Extra udev rules
MACHINE_EXTRA_RRECOMMENDS += "udev-extraconf"
EXTRA_IMAGEDEPENDS = "u-boot" EXTRA_IMAGEDEPENDS = "u-boot"
# Flash image types # Flash image types

View File

@ -1,15 +0,0 @@
# Copyright (C) 2013 Digi International.
do_install_append () {
# On the fly fix udev init script and config file to avoid udev failing
# on boot a read-only NFSROOT:
# bind failed: No such file or directory
# bind failed: Address already in use
# error binding udev control socket
sed -i -e '/mkdir.*pts/a\ [ -e /dev/run ] || mkdir -m 0755 /dev/run' ${D}${sysconfdir}/init.d/udev
sed -i -e '/^udev_run=/c\udev_run="/dev/run/udev"' ${D}${sysconfdir}/udev/udev.conf
}
# Add 'udev-extraconf' recommendation as most of the imx/mxs settings are in
# that package.
RRECOMMENDS_${PN} += "udev-extraconf"