Ignore:
Timestamp:
Jan 1, 2014, 12:47:38 AM (10 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.21.1
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/mindi-busybox/loginutils/Config.src

    r2725 r3232  
    182182    select FEATURE_SYSLOG
    183183    help
    184       getty lets you log in on a tty, it is normally invoked by init.
     184      getty lets you log in on a tty. It is normally invoked by init.
     185
     186      Note that you can save a few bytes by disabling it and
     187      using login applet directly.
     188      If you need to reset tty attributes before calling login,
     189      this script approximates getty:
     190
     191      exec </dev/$1 >/dev/$1 2>&1 || exit 1
     192      reset
     193      stty sane; stty ispeed 38400; stty ospeed 38400
     194      printf "%s login: " "`hostname`"
     195      read -r login
     196      exec /bin/login "$login"
    185197
    186198config LOGIN
     
    193205      Note that Busybox binary must be setuid root for this applet to
    194206      work properly.
     207
     208config LOGIN_SESSION_AS_CHILD
     209    bool "Run logged in session in a child process"
     210    default y if PAM
     211    depends on LOGIN
     212    help
     213      Run the logged in session in a child process.  This allows
     214      login to clean up things such as utmp entries or PAM sessions
     215      when the login session is complete.  If you use PAM, you
     216      almost always would want this to be set to Y, else PAM session
     217      will not be cleaned up.
    195218
    196219config PAM
     
    261284      and uses this information to update a group of existing users.
    262285
     286config FEATURE_DEFAULT_PASSWD_ALGO
     287    string "Default password encryption method (passwd -a, cryptpw -m parameter)"
     288    default "des"
     289    depends on PASSWD || CRYPTPW
     290    help
     291      Possible choices are "d[es]", "m[d5]", "s[ha256]" or "sha512".
     292
    263293config SU
    264294    bool "su"
Note: See TracChangeset for help on using the changeset viewer.