mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-14 19:34:32 -04:00
chroot calls are now generic "target env" calls.
This commit is contained in:
parent
da79082b13
commit
bf885d65db
9 changed files with 74 additions and 74 deletions
|
@ -34,32 +34,32 @@ int mount( const std::string& device_path,
|
|||
const std::string& filesystem_name = std::string(),
|
||||
const std::string& options = std::string() );
|
||||
|
||||
int chroot_call( const std::string& command,
|
||||
int target_env_call( const std::string& command,
|
||||
const std::string& stdin = std::string(),
|
||||
int timeout = 0 );
|
||||
|
||||
int chroot_call( const boost::python::list& args,
|
||||
int target_env_call( const boost::python::list& args,
|
||||
const std::string& stdin = std::string(),
|
||||
int timeout = 0 );
|
||||
|
||||
int check_chroot_call( const std::string& command,
|
||||
int check_target_env_call( const std::string& command,
|
||||
const std::string& stdin = std::string(),
|
||||
int timeout = 0 );
|
||||
|
||||
int check_chroot_call( const boost::python::list& args,
|
||||
int check_target_env_call( const boost::python::list& args,
|
||||
const std::string& stdin = std::string(),
|
||||
int timeout = 0 );
|
||||
|
||||
std::string check_chroot_output( const std::string& command,
|
||||
std::string check_target_env_output( const std::string& command,
|
||||
const std::string& stdin = std::string(),
|
||||
int timeout = 0 );
|
||||
|
||||
std::string check_chroot_output( const boost::python::list& args,
|
||||
std::string check_target_env_output( const boost::python::list& args,
|
||||
const std::string& stdin = std::string(),
|
||||
int timeout = 0 );
|
||||
|
||||
|
||||
inline int _handle_check_chroot_call_error( int ec, const QString& cmd );
|
||||
inline int _handle_check_target_env_call_error( int ec, const QString& cmd );
|
||||
|
||||
void debug( const std::string& s );
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue