Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | virt-make-fs: Refresh man page. | Richard W.M. Jones | 2011-10-22 | 1 | -36/+38 | |
| | ||||||
* | Fix ./configure --disable-erlang. | Richard W.M. Jones | 2011-10-21 | 1 | -3/+3 | |
| | ||||||
* | out-of-tree build: fixed bindtests and inspector | Hilko Bengen | 2011-10-21 | 7 | -8/+8 | |
| | ||||||
* | out-of-tree build: fix HAVE_OCAML=false case | Hilko Bengen | 2011-10-21 | 1 | -1/+1 | |
| | ||||||
* | out-of-tree build: daemon | Hilko Bengen | 2011-10-21 | 1 | -2/+2 | |
| | ||||||
* | add-drive-opts: Correctly handle unreadable and unwritable files (RHBZ#747287). | Richard W.M. Jones | 2011-10-21 | 1 | -3/+14 | |
| | ||||||
* | virt-make-fs: Set MBR partition type byte correctly (RHBZ#746295). | Richard W.M. Jones | 2011-10-21 | 1 | -0/+16 | |
| | ||||||
* | lib: Common code for formatting the qemu -drive parameter. | Richard W.M. Jones | 2011-10-21 | 1 | -28/+32 | |
| | | | | This is just code refactoring. | |||||
* | Allow compilation without hivex (RHBZ#723474). | Richard W.M. Jones | 2011-10-21 | 3 | -96/+97 | |
| | ||||||
* | po-docs: Force make update-po on first build from git. | Richard W.M. Jones | 2011-10-21 | 2 | -0/+10 | |
| | ||||||
* | Version 1.13.23.1.13.23 | Richard W.M. Jones | 2011-10-20 | 20 | -525/+840 | |
| | ||||||
* | appliance: udev-174 moves udevd to /lib/udev/udevd (instead of /sbin/udevd) | Richard W.M. Jones | 2011-10-20 | 1 | -0/+5 | |
| | ||||||
* | resize: Add --align-first auto|never|always option. | Richard W.M. Jones | 2011-10-20 | 4 | -34/+138 | |
| | | | | | The first partition can now be aligned. We fix the bootloader correctly for Windows by adjusting the "Hidden Sectors" field. | |||||
* | resize: Add --alignment flag to allow partition alignment to be picked. | Richard W.M. Jones | 2011-10-20 | 2 | -11/+57 | |
| | ||||||
* | resize: Refactor the code for creating target partitions. | Richard W.M. Jones | 2011-10-20 | 1 | -92/+97 | |
| | | | | | | | | | | | | | The old code mixed the business of planning the layout of the target partitions with the creation of the target partitions. The replacement code separates these into two tasks: firstly we create a new 'partitions' list with the target layout, secondly this directly drives the creation of the partitions. As part of this change I have *removed* the old code that was supposed to handle extended/logical MBR partitions. It simply didn't work, and didn't have any hope of working, and there is a separate bug open to fix it. | |||||
* | resize: Remove p_size field from partitions structure. | Richard W.M. Jones | 2011-10-20 | 1 | -12/+13 | |
| | | | | | | This field simply contained a duplicate copy of p_part.part_size. There is no functional change in this commit. | |||||
* | Update RELEASE-NOTES. | Richard W.M. Jones | 2011-10-20 | 1 | -1/+6 | |
| | ||||||
* | Version 1.13.22.1.13.22 | Richard W.M. Jones | 2011-10-19 | 2 | -5/+14 | |
| | ||||||
* | Pushed and pulled latest translations from Transifex. | Richard W.M. Jones | 2011-10-19 | 18 | -21059/+20742 | |
| | | | | | | | | | | | | Fixed one bug in the nl PO file: msgid "security: cached appliance %s is not owned by UID %d" msgstr "beveiliging: UID %d is geen eigenaar van toepassing %s in cache" should be: msgid "security: cached appliance %s is not owned by UID %d" msgstr "beveiliging: UID %2$d is geen eigenaar van toepassing %1$s in cache" | |||||
* | inspection: Return root devices sorted. | Richard W.M. Jones | 2011-10-19 | 1 | -0/+11 | |
| | ||||||
* | inspect: Handle cciss devices in /etc/fstab | Matthew Booth | 2011-10-19 | 2 | -0/+64 | |
| | ||||||
* | inspect: Don't assume number of captures in match functions | Matthew Booth | 2011-10-19 | 1 | -30/+13 | |
| | | | | | | | | | | | | | | | It is possible for the pcre library to return a variable number of captures for a single regular expression. e.g.: ^/dev/(cciss/c\d+d\d+)(?:p(\d+))?$ This will return either 1 or 2 captures depending on whether the device has a partition suffix. The current match wrappers don't allow for this, and require that a predictable number of matches are returned. This change updates match, match1, match2, and match3 to ignore the specific number of matches returned. Instead, any returned captures are assigned to the given arguments, and any remaining arguments are set to NULL. | |||||
* | inspect: Add drive naming hints | Matthew Booth | 2011-10-19 | 6 | -24/+84 | |
| | | | | | | | | | | | We currently use a heuristic to guess how drive names we find referenced in the guest map to drive names in the appliance. If this heuristic fails it can cause inspection to fail. This change adds a new 'name' option to add_drive_opts, which allows the user to explicitly pass the name of a drive to libguestfs if it is known. This change also updates the fstab-parsing inspection code to use this information if it is available. | |||||
* | NFC: Remove unnecessary goto | Matthew Booth | 2011-10-19 | 1 | -7/+5 | |
| | ||||||
* | launch: Store drive information in guestfs_h | Matthew Booth | 2011-10-19 | 7 | -38/+137 | |
| | | | | | | | | | | | | | | | | | | This is a NFC on its own, but provides a place-holder for drive metadata which can be used after launch. Fixes by RWMJ: - Fix the tests: this requires a new internal function 'debug-drives' that dumps out the g->drives information so it can be checked in two of the tests. Previously these tests used 'debug-cmdline'. - Test file existence / use_cache_off in the add_drive_opts function, not when launching qemu in the child process. - Call free along error paths. - Add comments. | |||||
* | inspect: Fix fstab device mapping for >26 disks | Matthew Booth | 2011-10-19 | 1 | -20/+31 | |
| | | | | | The regular expression matching disk name assumed that there was only a single letter suffix. This change handles a naming scheme for any number of disks. | |||||
* | launch: Ensure g->cmdline is allocated before assigning g->cmdline[0]. | Richard W.M. Jones | 2011-10-19 | 1 | -7/+14 | |
| | ||||||
* | valgrind: guestfish -i: free strings before exit. | Richard W.M. Jones | 2011-10-19 | 1 | -0/+2 | |
| | | | | This isn't really necessary, but it keeps valgrind happy. | |||||
* | Ubuntu 11.10: Create /run and /run/lock if not already. | Richard W.M. Jones | 2011-10-18 | 1 | -0/+1 | |
| | | | | In real machines these directories are a ramdisk. | |||||
* | virt-sysprep: Fix link in documentation. | Richard W.M. Jones | 2011-10-17 | 1 | -1/+1 | |
| | ||||||
* | Skip guestmount and virt-sysprep tests if no /dev/fuse. | Richard W.M. Jones | 2011-10-17 | 2 | -0/+10 | |
| | ||||||
* | virt-sysprep: Fix test to use guestmount and virt-inspector binaries that ↵ | Richard W.M. Jones | 2011-10-15 | 2 | -5/+14 | |
| | | | | have been built. | |||||
* | appliance: Fedora cryptsetup-luks renamed to cryptsetup. | Richard W.M. Jones | 2011-10-14 | 1 | -1/+2 | |
| | | | | Therefore we need both names to be listed in the file. | |||||
* | roadmap: Fix Bugzilla URL. | Richard W.M. Jones | 2011-10-14 | 1 | -1/+1 | |
| | ||||||
* | More TODO items. | Richard W.M. Jones | 2011-10-14 | 1 | -0/+31 | |
| | ||||||
* | Update RELEASE-NOTES file. | Richard W.M. Jones | 2011-10-14 | 1 | -5/+21 | |
| | ||||||
* | Version 1.13.21.1.13.21 | Richard W.M. Jones | 2011-10-14 | 21 | -7849/+8824 | |
| | ||||||
* | Use ArchLinux's new kernel package "linux". | Erik Nolte | 2011-10-14 | 1 | -1/+1 | |
| | ||||||
* | Add basic support for netbsd detection. | Michael Scherer | 2011-10-14 | 7 | -1/+74 | |
| | ||||||
* | Add support for pkgsrc, default NetBSD package manager. | Michael Scherer | 2011-10-14 | 4 | -2/+6 | |
| | | | | | | For now, only detect the tool, but support from reading installed package could be added later ( may require either a package of pkgsrc, or a smaller tool to read the db ). | |||||
* | Add support for mounting ufs from NetBSD, and fix FreeBSD detection on Fedora 16 | Michael Scherer | 2011-10-14 | 1 | -2/+9 | |
| | | | | | | | | While testing on Fedora 16, I noticed that Linux will mount the disk without trouble by using automatically ufstype=old, and yet do not let us read the directories. So we should start directly with usftype=ufs2, and if it fail, try 44bsd, as used for netbsd and openbsd ( as seen on http://wiki-static.aydogan.net/How_to_mount_FFS_partition_under_Linux ). | |||||
* | Add the Opensuse logo ( thanks to Vincent Untz ) | Michael Scherer | 2011-10-14 | 1 | -0/+14 | |
| | | | | Like Ubuntu one, it may not be always present. | |||||
* | Add Opensuse and zypper detection support | Michael Scherer | 2011-10-14 | 5 | -1/+24 | |
| | | | | This would also erronously detect SLES as Opensuse. | |||||
* | Add support for Ubuntu logo | Michael Scherer | 2011-10-14 | 1 | -2/+13 | |
| | | | | | | Ths logo is present on Lucid Lynx, but may not always be installed, like in case of a minimal installation ( or server ). While Edubuntu and Kubuntu have different logo, I didn't check where it would be placed. | |||||
* | Detect Mageia distribution | Michael Scherer | 2011-10-14 | 6 | -0/+25 | |
| | ||||||
* | Partially fix --disable-erlang | Michael Scherer | 2011-10-14 | 1 | -4/+6 | |
| | | | | | | Without this, configure will always enable erlang, no matter what argument are passed. Now, we can disable it, even if configure still need the erlang compiler for some obscure reason. | |||||
* | virt-sysprep: Add cron-spool, mail-spool, utmp. | Richard W.M. Jones | 2011-10-14 | 3 | -2/+38 | |
| | ||||||
* | virt-sysprep: Use /dev/urandom instead of /dev/random. | Richard W.M. Jones | 2011-10-13 | 1 | -1/+1 | |
| | ||||||
* | virt-sysprep: More clarifications to the man page. | Richard W.M. Jones | 2011-10-13 | 1 | -7/+5 | |
| | ||||||
* | virt-sysprep: Clarify docs on enabling operations. | Richard W.M. Jones | 2011-10-13 | 1 | -3/+7 | |
| |