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