manual/user guide/customization: add section on users tables
authorThomas De Schampheleire <patrickdepinguin@gmail.com>
Thu, 18 Sep 2014 19:39:30 +0000 (21:39 +0200)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sun, 21 Sep 2014 17:41:12 +0000 (19:41 +0200)
This patch adds basic documentation on users tables, a topic which was
currently not yet covered in the manual.

Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
docs/manual/customize-users-tables.txt [new file with mode: 0644]
docs/manual/customize.txt
docs/manual/makeusers-syntax.txt

diff --git a/docs/manual/customize-users-tables.txt b/docs/manual/customize-users-tables.txt
new file mode 100644 (file)
index 0000000..e2d32e2
--- /dev/null
@@ -0,0 +1,18 @@
+// -*- mode:doc; -*-
+// vim: set syntax=asciidoc:
+
+[[customize-users]]
+=== Adding custom user accounts
+
+Sometimes it is needed to add specific users in the target system.
+To cover this requirement, Buildroot provides support for so-called
+_users tables_. To use this feature, set config option
++BR2_ROOTFS_USERS_TABLES+ to a space-separated list of users tables,
+regular text files following the xref:makeuser-syntax[makeusers syntax].
+
+As shown in xref:customize-dir-structure[], the recommended location for
+such files is +board/<company>/<boardname>/+.
+
+It should be noted that if the custom users are related to a specific
+application, you should set variable +FOO_USERS+ in the package's +.mk+
+file instead (see xref:generic-package-reference[]).
index ad335b9ab5230b620fe08e086e3fe5f6ff2993e9..0a73988cb3a7449b5aa8808d1dec04ec5c331711 100644 (file)
@@ -20,6 +20,7 @@ Typical actions you may need to perform for a given project are:
      +BR2_ROOTFS_DEVICE_TABLE+)
   ** adding custom devices nodes (using
      +BR2_ROOTFS_STATIC_DEVICE_TABLE+)
+* adding custom user accounts (using +BR2_ROOTFS_USERS_TABLES+)
 * running arbitrary commands after generating the filesystem image
   (using +BR2_ROOTFS_POST_IMAGE_SCRIPT+)
 * adding project-specific patches to some packages (using
@@ -48,6 +49,8 @@ include::customize-configuration.txt[]
 
 include::customize-rootfs.txt[]
 
+include::customize-users-tables.txt[]
+
 include::customize-post-image.txt[]
 
 include::customize-packages.txt[]
index 9c616043b349751ce9c3b8850c9622519d4ff46d..5b3f34777e3f7c4f1f2b0e4f77d8555da2898122 100644 (file)
@@ -1,7 +1,7 @@
 // -*- mode:doc -*- ;
 
 [[makeuser-syntax]]
-== Makeuser syntax documentation
+== Makeusers syntax documentation
 
 The syntax to create users is inspired by the makedev syntax, above, but
 is specific to Buildroot.