From d12a5e38a02abe3feb3db8ae5ffd9a5005124294 Mon Sep 17 00:00:00 2001 From: Matthieu Crapet Date: Thu, 3 Apr 2014 07:05:50 +0000 Subject: rootfs.py: introduce USE_DEVFS check Since commit a83144bac8d67704ff66f5dc0fc56f5b63979694 (2014-02-11), USE_DEVFS is not considered anymore. For compatibility, let's restore USE_DEVFS semantic. Also add USE_DEVFS to documentation.conf. Signed-off-by: Matthieu Crapet Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- meta/lib/oe/rootfs.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'meta/lib') diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py index 3eac3c947d..dddbef4d64 100644 --- a/meta/lib/oe/rootfs.py +++ b/meta/lib/oe/rootfs.py @@ -116,7 +116,8 @@ class Rootfs(object): "offline and rootfs is read-only: %s" % delayed_postinsts) - self._create_devfs() + if self.d.getVar('USE_DEVFS', True) != "1": + self._create_devfs() self._uninstall_uneeded() -- cgit 1.2.3-korg