View source for Libopkg

From Openmoko

Jump to: navigation, search

You do not have permission to edit this page, for the following reasons:

  • The action you have requested is limited to users in the group: Administrators.
  • You must confirm your email address before editing pages. Please set and validate your email address through your user preferences.

You can view and copy the source of this page:

Return to Libopkg.

Personal tools

libopkg is the library interface to Opkg.


Current Status

The current API is not documented, nor intended for general use. Many important functions are missing or incomplete. There is a new proposed API outlined below.


Proposed API

This is a proposed complete API for libopkg.

Type Definitions

typedef _opkg_t opkg_t;

Functions

opkg_t* opkg_new ();
void opkg_free (opkg_t *opkg);
int opkg_install_package (opkg_t *opkg, char *package_name);
int opkg_remove_package (opkg_t *opkg, char *package_name);
int opkg_upgrade_package (opkg_t *opkg, char *package_name);
int opkg_system_upgrade (opkg_t *opkg);
int opkg_update_package_lists (opkg_t *opkg);