diff options
author | Samuel Mendoza-Jonas <sam.mj@au1.ibm.com> | 2014-07-24 15:05:39 +1000 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2014-07-28 16:12:13 +0800 |
commit | 254c2c4233377ba71d0f1c96a77d885c91f9ad4a (patch) | |
tree | f6e79dbeba93f7709be8a9a261dd101be73bbd03 /ui/ncurses/nc-scr.h | |
parent | 0f5d4481891467000c50bf14548c236cfb3e70ad (diff) | |
download | talos-petitboot-254c2c4233377ba71d0f1c96a77d885c91f9ad4a.tar.gz talos-petitboot-254c2c4233377ba71d0f1c96a77d885c91f9ad4a.zip |
ui/ncurses: Add support for 'add-url' action
Creates a menu option to specify a remote conf file url to send to
the server for parsing.
Signed-off-by: Samuel Mendoza-Jonas <sam.mj@au1.ibm.com>
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'ui/ncurses/nc-scr.h')
-rw-r--r-- | ui/ncurses/nc-scr.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/ncurses/nc-scr.h b/ui/ncurses/nc-scr.h index 3d7c4eb..ed87517 100644 --- a/ui/ncurses/nc-scr.h +++ b/ui/ncurses/nc-scr.h @@ -47,7 +47,8 @@ enum pb_nc_sig { pb_text_screen_sig = 555, pb_config_screen_sig = 666, pb_lang_screen_sig = 777, - pb_removed_sig = -888, + pb_add_url_screen_sig = 888, + pb_removed_sig = -999, }; static inline void nc_flush_keys(void) |