Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Require PCRE library. | Richard W.M. Jones | 2011-07-26 | 1 | -4/+2 |
| | | | | | This library is widely available in distros. (cherry picked from commit 41cd0e302d6554facd6b9f7daaa78304361efaef) | ||||
* | Change download_to_tmp so it can work with multi-root operating systems. | Richard W.M. Jones | 2011-06-28 | 1 | -16/+13 |
| | | | | | | | | | | | | | | | | The previous guestfs___download_to_tmp function did not handle multiboot correctly. In particular it used the same cache name for downloaded files from different roots, which could have caused things like applications in each root to be confused. This changes the function so that the cache filename is prefixed with the root / fs number, eg. $tmpdir/0-Name instead of $tmpdir/Name. This change also requires the function to return the new name, so all places in the code which called this function had to be updated. This updates and fixes commit 3c1f762abed92f7a358f3bc93e3396d0606b18ad. | ||||
* | inspect: Split code into separate files. | Richard W.M. Jones | 2011-04-14 | 1 | -0/+535 |
The src/inspect.c file had grown rather large -- 3,500 lines. Split it across several files according to function. This is just moving code. After the split the files are more evenly divided: 536 src/inspect_apps.c 766 src/inspect.c 537 src/inspect_fs.c 404 src/inspect_fs_cd.c 785 src/inspect_fs_unix.c 535 src/inspect_fs_windows.c 3563 total |