diff options
-rw-r--r-- | meta/recipes-core/dropbear/dropbear/dropbear | 4 | ||||
-rw-r--r-- | meta/recipes-core/dropbear/dropbear/dropbear-configuration-file.patch | 18 |
2 files changed, 22 insertions, 0 deletions
diff --git a/meta/recipes-core/dropbear/dropbear/dropbear b/meta/recipes-core/dropbear/dropbear/dropbear new file mode 100644 index 0000000000..47e787fb10 --- /dev/null +++ b/meta/recipes-core/dropbear/dropbear/dropbear | |||
@@ -0,0 +1,4 @@ | |||
1 | #%PAM-1.0 | ||
2 | |||
3 | auth include common-auth | ||
4 | account include common-account | ||
diff --git a/meta/recipes-core/dropbear/dropbear/dropbear-configuration-file.patch b/meta/recipes-core/dropbear/dropbear/dropbear-configuration-file.patch new file mode 100644 index 0000000000..5e9455363a --- /dev/null +++ b/meta/recipes-core/dropbear/dropbear/dropbear-configuration-file.patch | |||
@@ -0,0 +1,18 @@ | |||
1 | dropbear: Change the path ("/etc/pam.d/sshd" as default) to find a pam configuration file \ | ||
2 | to "/etc/pam.d/dropbear for dropbear when enabling pam supporting" | ||
3 | |||
4 | Upstream-Status: Inappropriate [configuration] | ||
5 | |||
6 | Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com> | ||
7 | |||
8 | --- a/svr-authpam.c 2008-11-11 22:09:03.000000000 +0800 | ||
9 | +++ b/svr-authpam.c.new 2011-08-29 09:53:24.000000000 +0800 | ||
10 | @@ -199,7 +199,7 @@ | ||
11 | userData.passwd = password; | ||
12 | |||
13 | /* Init pam */ | ||
14 | - if ((rc = pam_start("sshd", NULL, &pamConv, &pamHandlep)) != PAM_SUCCESS) { | ||
15 | + if ((rc = pam_start("dropbear", NULL, &pamConv, &pamHandlep)) != PAM_SUCCESS) { | ||
16 | dropbear_log(LOG_WARNING, "pam_start() failed, rc=%d, %s\n", | ||
17 | rc, pam_strerror(pamHandlep, rc)); | ||
18 | goto cleanup; | ||