search for: aavmf_dir

Displaying 2 results from an estimated 2 matches for "aavmf_dir".

2015 Jan 21
0
[PATCH] aarch64: appliance: Use AAVMF (UEFI) if available for running the appliance.
...Copyright (C) 2010-2014 Red Hat Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -459,3 +459,67 @@ dir_contains_files (const char *dir, ...) va_end (args); return 1; } + +#ifdef __aarch64__ + +#define AAVMF_DIR "/usr/share/AAVMF" + +/* Return the location of firmware needed to boot the appliance. This + * is aarch64 only currently, since that's the only architecture where + * UEFI is mandatory (and that only for RHEL). + * + * '*code' is initialized with the path to the read-only UE...
2015 Feb 14
2
[PATCH 0/2] Change guestfs__*
libguestfs has used double and triple underscores in identifiers. These aren't valid for global names in C++. (http://stackoverflow.com/a/228797) These large but completely mechanical patches change the illegal identifiers to legal ones. Rich.