summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeoff Levand <geoff@infradead.org>2011-10-30 20:58:04 -0700
committerGeoff Levand <geoff@infradead.org>2011-10-30 20:58:04 -0700
commit28b939a43107cfe5438f3b36bd175f1b9aa138ee (patch)
tree527c2208dd2d076e6c30db47e051240d61b94094
parentdd1b59120f585b2c27d30778e8d81467221a733c (diff)
downloadtalos-petitboot-28b939a43107cfe5438f3b36bd175f1b9aa138ee.tar.gz
talos-petitboot-28b939a43107cfe5438f3b36bd175f1b9aa138ee.zip
Add data structs to ui-system
-rw-r--r--ui/common/ui-system.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/ui/common/ui-system.h b/ui/common/ui-system.h
index fc402ae..2dc37a3 100644
--- a/ui/common/ui-system.h
+++ b/ui/common/ui-system.h
@@ -21,6 +21,9 @@
#include "pb-protocol/pb-protocol.h"
#include "system/system.h"
+#include "ui/common/timer.h"
+
+#include <signal.h>
struct pb_kexec_data {
char *image;
@@ -39,4 +42,22 @@ static inline uint32_t pb_opt_hash(const struct device *dev,
return pb_cat_hash(dev->name, opt->name);
}
+struct pb_opt_data {
+ const char *name;
+ struct pb_kexec_data *kd;
+
+ /* optional data */
+ union {
+ 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
OpenPOWER on IntegriCloud