summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
Diffstat (limited to 'meta')
-rw-r--r--meta/conf/documentation.conf1
-rw-r--r--meta/lib/oe/rootfs.py3
2 files changed, 3 insertions, 1 deletions
diff --git a/meta/conf/documentation.conf b/meta/conf/documentation.conf
index 4d49a02ece..9d6e78f9e6 100644
--- a/meta/conf/documentation.conf
+++ b/meta/conf/documentation.conf
@@ -436,6 +436,7 @@ UBOOT_MACHINE[doc] = "Specifies the value passed on the make command line when b
436UBOOT_MAKE_TARGET[doc] = "Specifies the target called in the Makefile." 436UBOOT_MAKE_TARGET[doc] = "Specifies the target called in the Makefile."
437UBOOT_SUFFIX[doc] = "Points to the generated U-Boot extension." 437UBOOT_SUFFIX[doc] = "Points to the generated U-Boot extension."
438UBOOT_TARGET[doc] = "Specifies the target used for building U-Boot." 438UBOOT_TARGET[doc] = "Specifies the target used for building U-Boot."
439USE_DEVFS[doc] = "When building images, specifies to populate or not /dev. This variable defaults to '1' (leave directory empty, surely because devtmpfs do the job). Set it to '0' to use makedevs (or consider using a custom file with IMAGE_DEVICE_TABLES)."
439USER_CLASSES[doc] = "List of additional classes to use when building images that enable extra features." 440USER_CLASSES[doc] = "List of additional classes to use when building images that enable extra features."
440USERADD_PACKAGES[doc] = "When a recipe inherits the useradd class, this variable specifies the individual packages within the recipe that require users and/or groups to be added." 441USERADD_PACKAGES[doc] = "When a recipe inherits the useradd class, this variable specifies the individual packages within the recipe that require users and/or groups to be added."
441USERADD_PARAM[doc] = "When a recipe inherits the useradd class, this variable specifies for a package what parameters should be passed to the useradd command if you wish to add a user to the system when the package is installed." 442USERADD_PARAM[doc] = "When a recipe inherits the useradd class, this variable specifies for a package what parameters should be passed to the useradd command if you wish to add a user to the system when the package is installed."
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