]> git.ozlabs.org Git - petitboot/blob - ui/common/ui-system.h
Log file cleanups
[petitboot] / ui / common / ui-system.h
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 #if !defined(_PB_UI_SYSTEM_H)
20 #define _PB_UI_SYSTEM_H
21
22 #include "pb-protocol/pb-protocol.h"
23 #include "system/system.h"
24 #include "ui/common/timer.h"
25
26 #include <signal.h>
27
28 struct pb_kexec_data {
29         char *image;
30         char *initrd;
31         char *args;
32 };
33
34 int pb_run_kexec(const struct pb_kexec_data *kd);
35
36 unsigned int pb_elf_hash(const char *str);
37 unsigned int pb_cat_hash(const char *a, const char *b);
38
39 static inline uint32_t pb_opt_hash(const struct device *dev,
40         const struct boot_option *opt)
41 {
42         return pb_cat_hash(dev->name, opt->name);
43 }
44
45 struct pb_opt_data {
46         const char *name;
47         struct pb_kexec_data *kd;
48
49         /* optional data */
50         const struct device *dev;
51         const struct boot_option *opt;
52         uint32_t opt_hash;
53 };
54
55 struct pb_signal_data {
56         sig_atomic_t abort;
57         sig_atomic_t resize;
58         struct ui_timer timer;
59 };
60
61 #endif