diff options
Diffstat (limited to 'meta/lib/oe/rootfs.py')
-rw-r--r-- | meta/lib/oe/rootfs.py | 3 |
1 files changed, 2 insertions, 1 deletions
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): | |||
116 | "offline and rootfs is read-only: %s" % | 116 | "offline and rootfs is read-only: %s" % |
117 | delayed_postinsts) | 117 | delayed_postinsts) |
118 | 118 | ||
119 | self._create_devfs() | 119 | if self.d.getVar('USE_DEVFS', True) != "1": |
120 | self._create_devfs() | ||
120 | 121 | ||
121 | self._uninstall_uneeded() | 122 | self._uninstall_uneeded() |
122 | 123 | ||