diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2013-08-30 10:31:42 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-10-10 12:31:15 +0100 |
commit | 4e399f08d596197859214fdb3b06403b87bf8789 (patch) | |
tree | 46c43bac0049f6ae9eefdc7df1a83dd61af5e851 /meta/recipes-core/busybox | |
parent | f9c65627747cb0eb47705c689423f4197f68811d (diff) | |
download | poky-4e399f08d596197859214fdb3b06403b87bf8789.tar.gz |
busybox: configure system user id to range from 100 to 999
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)
(From OE-Core rev: 3549f5f203363302256848bb33c05c4fd4871948)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/busybox')
-rw-r--r-- | meta/recipes-core/busybox/busybox-1.20.2/defconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-core/busybox/busybox-1.20.2/defconfig b/meta/recipes-core/busybox/busybox-1.20.2/defconfig index bdfdadf0eb..5233c93117 100644 --- a/meta/recipes-core/busybox/busybox-1.20.2/defconfig +++ b/meta/recipes-core/busybox/busybox-1.20.2/defconfig | |||
@@ -457,8 +457,8 @@ CONFIG_USE_BB_CRYPT=y | |||
457 | # CONFIG_ADDUSER is not set | 457 | # CONFIG_ADDUSER is not set |
458 | # CONFIG_FEATURE_ADDUSER_LONG_OPTIONS is not set | 458 | # CONFIG_FEATURE_ADDUSER_LONG_OPTIONS is not set |
459 | # CONFIG_FEATURE_CHECK_NAMES is not set | 459 | # CONFIG_FEATURE_CHECK_NAMES is not set |
460 | CONFIG_FIRST_SYSTEM_ID=0 | 460 | CONFIG_FIRST_SYSTEM_ID=100 |
461 | CONFIG_LAST_SYSTEM_ID=0 | 461 | CONFIG_LAST_SYSTEM_ID=999 |
462 | # CONFIG_ADDGROUP is not set | 462 | # CONFIG_ADDGROUP is not set |
463 | # CONFIG_FEATURE_ADDGROUP_LONG_OPTIONS is not set | 463 | # CONFIG_FEATURE_ADDGROUP_LONG_OPTIONS is not set |
464 | # CONFIG_FEATURE_ADDUSER_TO_GROUP is not set | 464 | # CONFIG_FEATURE_ADDUSER_TO_GROUP is not set |