diff options
author | Geoff Levand <geoff@infradead.org> | 2012-03-08 20:48:21 -0800 |
---|---|---|
committer | Geoff Levand <geoff@infradead.org> | 2012-03-08 20:51:37 -0800 |
commit | 604a1ccf072f9f33326fb6dc919c1b6233d40866 (patch) | |
tree | 88297738af995f9ea8df78e134d0a2dac111d157 /lib/system/system.h | |
parent | ae0ba68f475ae5b057aad6538765bc8702134b9a (diff) | |
download | talos-petitboot-604a1ccf072f9f33326fb6dc919c1b6233d40866.tar.gz talos-petitboot-604a1ccf072f9f33326fb6dc919c1b6233d40866.zip |
Add --start-daemon option to ui programs
Add the option --start-daemon to automatically start
pb-discover if it is not already started. For use
when running as a stand-alone app.
Signed-off-by: Geoff Levand <geoff@infradead.org>
Diffstat (limited to 'lib/system/system.h')
-rw-r--r-- | lib/system/system.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/system/system.h b/lib/system/system.h index 1918309..d39280d 100644 --- a/lib/system/system.h +++ b/lib/system/system.h @@ -2,6 +2,7 @@ #define _PB_LIB_SYSTEM_H struct pb_system_apps { + const char *prefix; const char *cp; const char *kexec; const char *mount; @@ -14,7 +15,7 @@ struct pb_system_apps { extern const struct pb_system_apps pb_system_apps; -int pb_run_cmd(const char *const *cmd_argv); +int pb_run_cmd(const char *const *cmd_argv, int wait); int pb_mkdir_recursive(const char *dir); int pb_rmdir_recursive(const char *base, const char *dir); |