diff options
author | Ross Burton <ross.burton@intel.com> | 2013-04-11 17:28:26 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-13 23:53:08 +0100 |
commit | fea74c43d148f1de49456fa6b8234331c9e096dc (patch) | |
tree | cfe877a7020495364ce36cf1823ba2c2461bcb57 | |
parent | a43b4ecd10df9d42d5d4125e5d7005a50bdf8ec6 (diff) | |
download | poky-fea74c43d148f1de49456fa6b8234331c9e096dc.tar.gz |
initrdscripts: look for new systemd-udevd location
As per the previous commit, systemd-udevd is now in /sbin/systemd/.
(From OE-Core rev: ff0fd25206c3c75921d51cb80bcb6c94ca47b405)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/initrdscripts/files/init-live.sh | 2 | ||||
-rw-r--r-- | meta/recipes-core/initrdscripts/initramfs-framework/udev | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-core/initrdscripts/files/init-live.sh b/meta/recipes-core/initrdscripts/files/init-live.sh index 9fe1cd606c..4bd1b52c11 100644 --- a/meta/recipes-core/initrdscripts/files/init-live.sh +++ b/meta/recipes-core/initrdscripts/files/init-live.sh | |||
@@ -12,7 +12,7 @@ UNIONFS="no" | |||
12 | # Copied from initramfs-framework. The core of this script probably should be | 12 | # Copied from initramfs-framework. The core of this script probably should be |
13 | # turned into initramfs-framework modules to reduce duplication. | 13 | # turned into initramfs-framework modules to reduce duplication. |
14 | udev_daemon() { | 14 | udev_daemon() { |
15 | OPTIONS="/sbin/udev/udevd /sbin/udevd /lib/udev/udevd /lib/systemd/systemd-udevd" | 15 | OPTIONS="/sbin/udev/udevd /sbin/udevd /lib/udev/udevd /sbin/systemd/systemd-udevd /lib/systemd/systemd-udevd" |
16 | 16 | ||
17 | for o in $OPTIONS; do | 17 | for o in $OPTIONS; do |
18 | if [ -x "$o" ]; then | 18 | if [ -x "$o" ]; then |
diff --git a/meta/recipes-core/initrdscripts/initramfs-framework/udev b/meta/recipes-core/initrdscripts/initramfs-framework/udev index bb462dc448..18d44a5470 100644 --- a/meta/recipes-core/initrdscripts/initramfs-framework/udev +++ b/meta/recipes-core/initrdscripts/initramfs-framework/udev | |||
@@ -11,7 +11,7 @@ udev_shutdown_hook_handler() { | |||
11 | } | 11 | } |
12 | 12 | ||
13 | udev_daemon() { | 13 | udev_daemon() { |
14 | OPTIONS="/sbin/udev/udevd /sbin/udevd /lib/udev/udevd /lib/systemd/systemd-udevd" | 14 | OPTIONS="/sbin/udev/udevd /sbin/udevd /lib/udev/udevd /sbin/systemd/systemd-udevd /lib/systemd/systemd-udevd" |
15 | 15 | ||
16 | for o in $OPTIONS; do | 16 | for o in $OPTIONS; do |
17 | if [ -x "$o" ]; then | 17 | if [ -x "$o" ]; then |