]> code.ossystems Code Review - openembedded-core.git/commitdiff
busybox: configure system user id to range from 100 to 999
authorChen Qi <Qi.Chen@windriver.com>
Fri, 30 Aug 2013 02:31:42 +0000 (10:31 +0800)
committerPaul Eggleton <paul.eggleton@linux.intel.com>
Thu, 10 Oct 2013 11:21:02 +0000 (12:21 +0100)
Previously, the range was 0 to 0. This made it impossible to use
busybox's adduser utility to add a system user. The following error
would appear.

      adduser: no uids left

This patch fixes this problem by giving it a reasonable range.

(From OE-Core rev: c4555007d04ccacbc192827b70a97f9a48500a22)

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-core/busybox/busybox-1.20.2/defconfig

index bdfdadf0eb79beaae7ce60d598f2b7654ad258b6..5233c93117059113e005ec7e001b7474d3751327 100644 (file)
@@ -457,8 +457,8 @@ CONFIG_USE_BB_CRYPT=y
 # CONFIG_ADDUSER is not set
 # CONFIG_FEATURE_ADDUSER_LONG_OPTIONS is not set
 # CONFIG_FEATURE_CHECK_NAMES is not set
-CONFIG_FIRST_SYSTEM_ID=0
-CONFIG_LAST_SYSTEM_ID=0
+CONFIG_FIRST_SYSTEM_ID=100
+CONFIG_LAST_SYSTEM_ID=999
 # CONFIG_ADDGROUP is not set
 # CONFIG_FEATURE_ADDGROUP_LONG_OPTIONS is not set
 # CONFIG_FEATURE_ADDUSER_TO_GROUP is not set