blob: ca5edb4d8e60210ebfdee0d736de08641d159015 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
/*
* Copyright (C) 2009 Sony Computer Entertainment Inc.
* Copyright 2009 Sony Corp.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#if !defined(_PB_UI_SYSTEM_H)
#define _PB_UI_SYSTEM_H
#include "pb-protocol/pb-protocol.h"
#include "system/system.h"
#include "ui/common/timer.h"
#include <signal.h>
struct pb_kexec_data {
char *image;
char *initrd;
char *args;
};
int pb_run_kexec(const struct pb_kexec_data *kd);
unsigned int pb_elf_hash(const char *str);
unsigned int pb_cat_hash(const char *a, const char *b);
static inline uint32_t pb_opt_hash(const struct device *dev,
const struct boot_option *opt)
{
return pb_cat_hash(dev->name, opt->name);
}
struct pb_opt_data {
const char *name;
struct pb_kexec_data *kd;
/* optional data */
const struct device *dev;
const struct boot_option *opt;
uint32_t opt_hash;
};
struct pb_signal_data {
sig_atomic_t abort;
sig_atomic_t resize;
struct ui_timer timer;
};
#endif
|