diff options
author | Khem Raj <raj.khem@gmail.com> | 2010-06-09 13:45:43 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2010-06-09 17:34:19 -0700 |
commit | 0dc02df5726be8b3569d7c806b4f1036413b81ee (patch) | |
tree | 00a9c177551205a742ae12b003e7e0b4ac3a18ad | |
parent | 8cd716868ad626ad11356144df1f20accf6c789a (diff) |
minimal-uclibc.conf: Add pam to DISTRO_FEATURES
* if pam is not in the DISTRO_FEATURES then pam
modules dont end up in th root file system but
when using shadow pam is used for authentication
and uclibc needs these modules otherwise login
fails.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | conf/distro/minimal-uclibc.conf | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/conf/distro/minimal-uclibc.conf b/conf/distro/minimal-uclibc.conf index df727697e2..a0af3a6640 100644 --- a/conf/distro/minimal-uclibc.conf +++ b/conf/distro/minimal-uclibc.conf @@ -38,4 +38,5 @@ require conf/distro/minimal.conf DISTRO_FEATURES = "nfs smbfs wifi ppp alsa ext2 vfat pcmcia usbgadget usbhost pci" # Following features are for ARM and E500 based machines DISTRO_FEATURES += "eabi" - +# pam is needed on uclibc if using shadow +DISTRO_FEATURES += "pam" |