summaryrefslogtreecommitdiffstats
path: root/libopkg/opkg_install.c
Commit message (Expand)AuthorAgeFilesLines
* Make the error message easier to read for multiple unsatisfied dependencies.graham.gower2010-02-091-1/+1
* Propagate errors up the call stack. Patch by Jens Erdmann <j.erdmann@road.de>.graham.gower2010-01-271-17/+19
* s/dependences/dependencies/ Pointed out by klemmster in Issue 40.graham.gower2010-01-111-1/+1
* --download-only download using original namespixdamix2010-01-051-1/+9
* Add an option to download packages but do not install/upgrade anythingpixdamix2010-01-051-12/+25
* Include config.h to pull in HAVE_* macros where needed.graham.gower2009-12-201-0/+2
* Initial stab at untangling the #include maze. Probably needs a second pass.graham.gower2009-12-201-4/+2
* Print \n where needed.graham.gower2009-12-171-1/+1
* Merge commit 'grg' into HEADgraham.gower2009-12-081-320/+235
* Free memory when there are unresolved dependencies.graham.gower2009-12-021-1/+4
* Remove unused parameter from pkg_hash_fetch_best_installation_candidate().graham.gower2009-11-271-3/+3
* Remove enum opkg_error.graham.gower2009-11-261-64/+51
* Fix some errno abuse.graham.gower2009-11-261-2/+2
* Provide error checking for users of pkg_extract_* functions.graham.gower2009-11-261-14/+59
* Remove str_util.{c,h}graham.gower2009-11-251-1/+0
* file_util.c cleanups. Remove redundant str_chomp from str_util.c.graham.gower2009-11-251-1/+0
* Various cleanups in opkg_remove.{c,h}graham.gower2009-11-251-5/+2
* Remove unused functions. Shuffle things around and remove forward declarations.graham.gower2009-11-241-676/+515
* Fix a leak found when using --force-reinstall.graham.gower2009-11-231-2/+2
* Allow to install a package from a read-only dirpixdamix2009-11-231-1/+1
* Iterate the whole depends array, in the unlikely event that pre_depends_count!=0graham.gower2009-11-191-2/+11
* Clean up pkg_remove_orphan_dependent() and remove_autoinstalled().graham.gower2009-11-191-50/+78
* Use vfork()/execvp() instead of system().graham.gower2009-11-161-7/+2
* Pass the correct file to diff when using an offline_root.graham.gower2009-11-161-1/+1
* Fix pkg_get_installed_files() to work with an offline_root + dest.graham.gower2009-11-161-6/+6
* Remove redundant function.graham.gower2009-11-151-61/+0
* Don't prompt for user input from stdin if it's not a tty.graham.gower2009-11-121-0/+4
* Fix leak when downgrading a package.graham.gower2009-11-121-0/+2
* Dead code removal.graham.gower2009-11-101-24/+7
* Don't try to rerun control scripts, problems caused by circular dependencies.graham.gower2009-11-101-0/+3
* More dead code removal.graham.gower2009-11-051-3/+0
* Remove dead code. We would segfault before following this code path.graham.gower2009-11-051-4/+3
* Removed a bunch of if(0) and dead codepixdamix2009-11-051-31/+0
* s/malloc/xmalloc/ s/calloc/xcalloc/ s/realloc/realloc/graham.gower2009-11-041-2/+2
* s/strdup/xstrdup/ - check memory allocations for failure.graham.gower2009-11-031-1/+2
* Remove some strdup abuse.graham.gower2009-11-031-9/+10
* Remove unused opkg_set_current_state bits.graham.gower2009-11-031-8/+2
* pkg_init_from_file() already does this strdup(), so stop another leak.graham.gower2009-11-011-2/+0
* Missing free in sha256 hash verificationpixdamix2009-10-301-0/+1
* Add error messages in case of signature errorpixdamix2009-10-281-1/+6
* Opkg support for smime (pkcs7) packages list signingticktock352009-10-271-1/+3
* Add sha256 ckecksums to okpgticktock352009-10-271-0/+19
* adding new flag flag_maintainerticktock352009-04-171-12/+14
* using pkg->dest->root_dirticktock352009-04-031-2/+4
* because of the file_hash_set_file_owner may break the file list of pkgsticktock352009-03-091-8/+17
* thanks to Koen, a memory leak were fond and fixed here.ticktock352009-02-281-2/+10
* Initial the 'err' valaible in opkg_install_by_name , or it may be used withoutticktock352009-02-011-1/+1
* adding check_signature configticktock352008-12-281-1/+1
* using hash_table reduce an O(n^2) algorithm to O(n)ticktock352008-12-191-14/+13
* using list_head to handle the listticktock352008-12-181-22/+27