aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugin.h')
-rw-r--r--src/plugin.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/plugin.h b/src/plugin.h
index 404a866..11f79e2 100644
--- a/src/plugin.h
+++ b/src/plugin.h
@@ -47,6 +47,12 @@ typedef enum
POKY_MODE_FULL
} PokyMode;
+typedef enum
+{
+ TARGET_MODE_QEMU,
+ TARGET_MODE_DEVICE
+} TargetMode;
+
struct _AnjutaPluginSdk
{
AnjutaPlugin parent;
@@ -61,6 +67,8 @@ struct _AnjutaPluginSdk
guint rootfs_notifyid;
guint poky_root_notifyid;
guint poky_mode_notifyid;
+ guint target_mode_notifyid;
+ guint target_ip_notifyid;
guint remote_gdb_timeout;
@@ -69,8 +77,7 @@ struct _AnjutaPluginSdk
gchar *poky_root;
PokyMode poky_mode;
- gchar *kernel;
- gchar *rootfs;
+ TargetMode target_mode;
gchar *path_component;
gchar *poky_scripts_dir;