search for: configsect

Displaying 10 results from an estimated 10 matches for "configsect".

Did you mean: configset
2019 Jul 01
0
[PATCH 1/6] p2v: move kernel config to perl script
...received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +use strict; +use warnings; + +use Class::Struct; +use Getopt::Long; +use List::Util qw(any); + +struct ConfigSection => +{ + name => '$', + elements => '@', +}; + +struct ConfigString => +{ + name => '$', +}; + +struct ConfigInt => +{ + name => '$', + value => '$', +}; + +struct ConfigBool => +{ + name => '$', +}; + +struct Con...
2019 Jul 01
8
[PATCH 0/6] p2v: start making it independent
As preliminary steps in splitting virt-p2v to an own repository, start making p2v more independent within libguestfs. This is accomplished by the following changes: - generate the p2v kernel config sources & docs at build time using a Perl script, rather than the generator (so no need for OCaml when building from git, and no generated sources in dist tarballs) - create two local test
2018 Jun 29
3
p2v: Various cleanups.
These are a prelude to fixing https://bugzilla.redhat.com/show_bug.cgi?id=1590220 A lot of the virt-p2v configuration code was duplicated manually. These changes make sure that most of it is generated. Rich.
2013 Oct 10
0
[LLVMdev] [PATCH] R600/SI: Embed disassembly in ELF object
...if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) > - MF.dump(); > -#endif > - } > SetupMachineFunction(MF); > if (OutStreamer.hasRawTextSupport()) { > OutStreamer.EmitRawText("@" + MF.getName() + ":"); > } > > - const MCSectionELF *ConfigSection = getObjFileLowering().getContext() > - .getELFSection(".AMDGPU.config", > + MCContext &Context = getObjFileLowering().getContext(); > + const MCSectionELF *ConfigSection = Context.getELFSection(".AMDGPU.config", &gt...
2019 Jul 10
1
[p2v PATCH] Use List::MoreUtils instead of List::Util
...deletion(-) diff --git a/generate-p2v-config.pl b/generate-p2v-config.pl index 01387e0..be98838 100755 --- a/generate-p2v-config.pl +++ b/generate-p2v-config.pl @@ -20,7 +20,7 @@ use warnings; use Class::Struct; use Getopt::Long; -use List::Util qw(any); +use List::MoreUtils qw(any); struct ConfigSection => { -- 2.21.0
2013 Oct 10
2
[LLVMdev] [PATCH] R600/SI: Embed disassembly in ELF object
Hi, This patch adds R600/SI disassembly text to compiled object files, when a code dump is requested, to assist debugging in Mesa clients. Here's an example of the output in a Mesa client with a corresponding patch and RADEON_DUMP_SHADERS set: Shader Disassembly: S_WQM_B64 EXEC, EXEC ; BEFE0A7E S_MOV_B32 M0, SGPR6 ; BEFC0306
2012 Mar 06
4
Momentum Datalink v3.0 not working at all
Hi, My first post here, so help me right if I'm not following protocol. My problem basically boils down to this. I need this program to download the data from me and my wife's pedometers for health insurance purposes. This program is supposed to work on Win 2000 through Vista, but should run on 7 as well. I'm running latest Wine ( 1.3.xx from PPA) on Kubuntu 11.10. It installs
2011 Mar 11
4
The Geeks Toy (soft for Betfair)
Hi all, I'm trying to run Geeks Toy (http://www.geekstoy.com/) but get an error Code: [aeo at localhost AGT Pro]$ ./AGT\ Pro.exe fixme:mscoree:ConfigFileHandler_startElement Unknown element L"configSections" in state 1 fixme:mscoree:ConfigFileHandler_startElement Unknown element L"connectionStrings" in state 1 fixme:mscoree:ConfigFileHandler_startElement Unknown element L"add" in state 3 fixme:mscoree:ConfigFileHandler_startElement Unknown element L"system.net" i...
2011 May 20
12
MS Paint with wine?
Hi all, I'm relatively new to Ubuntu and I will most likely install WINE on my next desktop for gaming. However my present puter is an Acer netbook and I would like to run MS Paint on it. I know you will tell me there are a lot of other Ubuntu apps that can do the job but I want MS Paint and it would be nice if I didn't have to log in and out of OS's just to access MS Paint from time
2019 Sep 10
3
[PATCH 0/2] Remove virt-p2v from libguestfs
Now that virt-p2v has its own repository [1] and releases [2], it is time to remove it from libguestfs. [1] https://github.com/libguestfs/virt-p2v [2] http://download.libguestfs.org/virt-p2v/ Pino Toscano (2): Remove virt-p2v Remove remaining virt-p2v bits .gitignore | 4 - Makefile.am | 7 +- bash/Makefile.am