]> git.ozlabs.org Git - petitboot/blob - ui/common/ui-system.c
ui/ncurses: Simplify menu item names
[petitboot] / ui / common / ui-system.c
1 /*
2  *  Copyright (C) 2009 Sony Computer Entertainment Inc.
3  *  Copyright 2009 Sony Corp.
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; version 2 of the License.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with this program; if not, write to the Free Software
16  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19 #define _GNU_SOURCE
20
21 #include <assert.h>
22 #include <errno.h>
23 #include <signal.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <sys/types.h>
27 #include <sys/wait.h>
28
29 #include "log/log.h"
30 #include <system/system.h>
31 #include "talloc/talloc.h"
32 #include "ui-system.h"
33
34 /**
35  * pb_start_daemon - start the pb-discover daemon.
36  */
37
38 int pb_start_daemon(void)
39 {
40         int result;
41         const char *argv[2];
42         char *name = talloc_asprintf(NULL, "%s/sbin/pb-discover",
43                 pb_system_apps.prefix);
44
45         argv[0] = name;
46         argv[1] =  NULL;
47
48         result = pb_run_cmd(argv, 0, 0);
49
50         talloc_free(name);
51
52         if (result)
53                 pb_log("%s: failed: (%d)\n", __func__, result);
54
55         return result;
56 }
57
58 /**
59  * pb_elf_hash - Standard elf hash routine.
60  */
61
62 unsigned int pb_elf_hash(const char *str)
63 {
64         unsigned int h = 0, g;
65
66         while (*str) {
67                 h = (h << 4) + *str++;
68                 g = h & 0xf0000000;
69                 if (g)
70                         h ^= g >> 24;
71                 h &= ~g;
72         }
73         pb_log("%s: %x\n", __func__, h);
74         return h;
75 }
76
77 /**
78  * pb_cat_hash - Hashes concatenation of two strings.
79  */
80
81 unsigned int pb_cat_hash(const char *a, const char *b)
82 {
83         unsigned int h;
84         char *s;
85
86         s = talloc_asprintf(NULL, "%s%s", a, b);
87         h = pb_elf_hash(s);
88         talloc_free(s);
89
90         return h;
91 }