diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2020-09-17 07:08:04 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2020-09-17 07:08:04 +0200 |
commit | cb21a6af17142ce7fdceaeb3ef35cfd5fba69109 (patch) | |
tree | 1ec36e15bf25e28ebc8a35e4e5580336f94c0cdb /package/busybox/config/util-linux | |
parent | fd7056d4d7972e7374043a45140ba1093ac238bf (diff) |
busybox: add missing symbols for noMMU case
Diffstat (limited to 'package/busybox/config/util-linux')
-rw-r--r-- | package/busybox/config/util-linux/Config.in | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/package/busybox/config/util-linux/Config.in b/package/busybox/config/util-linux/Config.in index 106ebd934..ff9dae4d1 100644 --- a/package/busybox/config/util-linux/Config.in +++ b/package/busybox/config/util-linux/Config.in @@ -128,6 +128,27 @@ config BUSYBOX_MKDOSFS help Utility to create FAT32 filesystems. +config BUSYBOX_NOLOGIN + bool "nologin" + default n + depends on BUSYBOX_FEATURE_SH_EMBEDDED_SCRIPTS + help + Politely refuse a login + +config BUSYBOX_NOLOGIN_DEPENDENCIES + bool "Enable dependencies for nologin" + default n # Y default makes it harder to select single-applet test + depends on BUSYBOX_NOLOGIN + select BUSYBOX_CAT + select BUSYBOX_ECHO + select BUSYBOX_SLEEP + help + nologin is implemented as a shell script. It requires the + following in the runtime environment: + cat echo sleep + If you know these will be available externally you can + disable this option. + config BUSYBOX_NSENTER bool "nsenter" default n |