1 /* opkg_install.h - the opkg package management system
5 Copyright (C) 2001 University of Southern California
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License as
9 published by the Free Software Foundation; either version 2, or (at
10 your option) any later version.
12 This program is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
18 #ifndef OPKG_INSTALL_H
19 #define OPKG_INSTALL_H
22 #include "opkg_conf.h"
23 #include "opkg_error.h"
27 PKG_INSTALL_ERR_NOT_TRUSTED
,
28 PKG_INSTALL_ERR_DOWNLOAD
,
29 PKG_INSTALL_ERR_CONFLICTS
,
30 PKG_INSTALL_ERR_ALREADY_INSTALLED
,
31 PKG_INSTALL_ERR_DEPENDENCIES
,
32 PKG_INSTALL_ERR_NO_DOWNGRADE
,
33 PKG_INSTALL_ERR_NO_SPACE
,
34 PKG_INSTALL_ERR_SIGNATURE
,
36 PKG_INSTALL_ERR_INTERNAL
,
37 PKG_INSTALL_ERR_UNKNOWN
40 opkg_error_t
opkg_install_by_name(opkg_conf_t
*conf
, const char *pkg_name
);
41 opkg_error_t
opkg_install_multi_by_name(opkg_conf_t
*conf
, const char *pkg_name
);
42 int opkg_install_from_file(opkg_conf_t
*conf
, const char *filename
);
43 int opkg_install_pkg(opkg_conf_t
*conf
, pkg_t
*pkg
,int from_upgrading
);
44 int satisfy_dependencies_for(opkg_conf_t
*conf
, pkg_t
*pkg
);
46 int opkg_satisfy_all_dependences(opkg_conf_t
*conf
);
48 int pkg_mark_dependencies_for_installation(opkg_conf_t
*conf
, pkg_t
*pkg_name
, pkg_vec_t
*pkgs_needed
);
49 int name_mark_dependencies_for_installation(opkg_conf_t
*conf
, const char *pkg_name
, pkg_vec_t
*pkgs_needed
);