From: Herve Codina <Herve.CODINA@celad.com>
To: barebox@lists.infradead.org
Cc: Herve Codina <Herve.CODINA@celad.com>
Subject: [PATCH 1/1] passwd: Support passwd file custom directory
Date: Thu, 19 Jun 2014 11:07:30 +0200 [thread overview]
Message-ID: <1403168850-5995-1-git-send-email-Herve.CODINA@celad.com> (raw)
Support custom directory for passwd file instead of hardcoded /env/etc/
This directory is set using CONFIG_PASSWORD_DIR.
Signed-off-by: Herve Codina <Herve.CODINA@celad.com>
---
common/Kconfig | 8 ++++++++
include/password.h | 10 ++++++++--
2 files changed, 16 insertions(+), 2 deletions(-)
diff --git a/common/Kconfig b/common/Kconfig
index 1afee93..d4cf61b 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -414,6 +414,14 @@ endchoice
endif
+config PASSWORD_DIR
+ string
+ prompt "passwd directory"
+ default "/env/etc"
+ depends on PASSWORD
+ help
+ Define directory for passwd file.
+
config DYNAMIC_CRC_TABLE
bool
depends on CRC32
diff --git a/include/password.h b/include/password.h
index 0dd1054..9d84685 100644
--- a/include/password.h
+++ b/include/password.h
@@ -18,8 +18,14 @@
#ifndef __PASSWORD_H__
#define __PASSWORD_H__
-#define PASSWD_FILE "/env/etc/passwd"
-#define PASSWD_DIR "/env/etc/"
+#ifdef CONFIG_PASSWORD_DIR
+#define PASSWD_DIR CONFIG_PASSWORD_DIR
+#else
+#define PASSWD_DIR "/env/etc"
+#endif
+
+#define PASSWD_FILE PASSWD_DIR"/passwd"
+
#define HIDE (0 << 0)
#define STAR (1 << 1)
--
1.7.9.5
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next reply other threads:[~2014-06-19 9:07 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-19 9:07 Herve Codina [this message]
2014-07-02 6:45 ` Herve Codina
2014-07-03 6:54 ` Sascha Hauer
2014-07-03 6:57 ` Jean-Christophe PLAGNIOL-VILLARD
2014-07-03 7:36 ` Herve Codina
2014-07-03 10:19 ` Jean-Christophe PLAGNIOL-VILLARD
2014-07-03 11:09 ` Herve Codina
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1403168850-5995-1-git-send-email-Herve.CODINA@celad.com \
--to=herve.codina@celad.com \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox