diff options
author | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
commit | 709c4d66e0b107ca606941b988bad717c0b45d9b (patch) | |
tree | 37ee08b1eb308f3b2b6426d5793545c38396b838 /packages/tinylogin/tinylogin-1.4/add-system.patch | |
parent | fa6cd5a3b993f16c27de4ff82b42684516d433ba (diff) |
rename packages/ to recipes/ per earlier agreement
See links below for more details:
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816
Signed-off-by: Denys Dmytriyenko <denis@denix.org>
Acked-by: Mike Westerhof <mwester@dls.net>
Acked-by: Philip Balister <philip@balister.org>
Acked-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Marcin Juszkiewicz <hrw@openembedded.org>
Acked-by: Koen Kooi <koen@openembedded.org>
Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'packages/tinylogin/tinylogin-1.4/add-system.patch')
-rw-r--r-- | packages/tinylogin/tinylogin-1.4/add-system.patch | 115 |
1 files changed, 0 insertions, 115 deletions
diff --git a/packages/tinylogin/tinylogin-1.4/add-system.patch b/packages/tinylogin/tinylogin-1.4/add-system.patch deleted file mode 100644 index 18b4e47ad7..0000000000 --- a/packages/tinylogin/tinylogin-1.4/add-system.patch +++ /dev/null @@ -1,115 +0,0 @@ -? add-system.patch -? cvs-20040608.patch -? familiar -? pod2htmd.tmp -? pod2htmi.tmp -? system.diff -? tinylogin_1.4-20030620.1_arm.ipk -? tinylogin_1.4-20030620.1_arm.ipk.asc -? tinylogin_1.4-20030620.1_arm.ipk.upload.html -? tinylogin_1.4-20030620.2_arm.ipk -? tinylogin_1.4-20030620.2_arm.ipk.asc -? tinylogin_1.4-20030620.2_arm.ipk.upload.html -? tinylogin_1.4-20030620_arm.ipk -? tinylogin_1.4-20030620_arm.ipk.asc -? tinylogin_1.4-20030620_arm.ipk.upload.html -? tmp -Index: addgroup.c -=================================================================== -RCS file: /var/cvs/tinylogin/addgroup.c,v -retrieving revision 1.23 -diff -u -r1.23 addgroup.c ---- a/addgroup.c 9 Jan 2003 18:43:29 -0000 1.23 -+++ b/addgroup.c 8 Jun 2004 08:56:08 -0000 -@@ -31,6 +31,7 @@ - #include <sys/stat.h> - #include <sys/types.h> - #include <unistd.h> -+#include <getopt.h> - #include "tinylogin.h" - - #define GROUP_FILE "/etc/group" -@@ -124,6 +125,11 @@ - return 0; - } - -+static struct option long_options[] = { -+ { "system", 0, NULL, 'S' }, -+ { 0, 0, 0, 0 } -+}; -+ - /* - * addgroup will take a login_name as its first parameter. - * -@@ -136,14 +142,19 @@ - int opt; - char *group; - char *user; -+ int option_index = -1; - gid_t gid = 0; -+ int system = 0; - - /* get remaining args */ -- while ((opt = getopt (argc, argv, "g:")) != -1) { -+ while ((opt = getopt_long (argc, argv, "g:S", long_options, &option_index)) != -1) { - switch (opt) { - case 'g': - gid = strtol(optarg, NULL, 10); - break; -+ case 'S': -+ system = 1; -+ break; - default: - show_usage(); - break; -Index: adduser.c -=================================================================== -RCS file: /var/cvs/tinylogin/adduser.c,v -retrieving revision 1.38 -diff -u -r1.38 adduser.c ---- a/adduser.c 21 Jun 2003 19:35:42 -0000 1.38 -+++ b/adduser.c 8 Jun 2004 08:56:09 -0000 -@@ -66,13 +66,13 @@ - - /* remix */ - /* EDR recoded such that the uid may be passed in *p */ --static int passwd_study(const char *filename, struct passwd *p) -+static int passwd_study(const char *filename, struct passwd *p, int system) - { - struct passwd *pw; - FILE *passwd; - -- const int min = 500; -- const int max = 65000; -+ const int min = system ? 10 : 500; -+ const int max = system ? 99 : 65000; - - passwd = wfopen(filename, "r"); - if (!passwd) -@@ -142,7 +142,7 @@ - } - - /* putpwent(3) remix */ --static int adduser(const char *filename, struct passwd *p, int makehome, int setpass) -+static int adduser(const char *filename, struct passwd *p, int makehome, int setpass, int system) - { - FILE *passwd; - int r; -@@ -165,7 +165,7 @@ - fseek(passwd, 0, SEEK_END); - - /* if (passwd_study(filename, p) == 0) { */ -- r = passwd_study(filename, p); -+ r = passwd_study(filename, p, system); - if (r) { - if (r == 1) - error_msg("%s: login already in use", p->pw_name); -@@ -357,7 +357,7 @@ - } - - /* grand finale */ -- return adduser(PASSWD_FILE, &pw, makehome, setpass); -+ return adduser(PASSWD_FILE, &pw, makehome, setpass, system); - } - - /* $Id: adduser.c,v 1.38 2003/06/21 19:35:42 andersen Exp $ */ |