similar to: find bug:syslinux.exe

Displaying 14 results from an estimated 14 matches similar to: "find bug:syslinux.exe"

2012 Jul 05
2
elflink: STORAGE_DEVICE_NUMBER proposal
(I realize this may get delayed) Per a2fd4f6, the mingw environment should provide a typedef for STORAGE_DEVICE_NUMBER. However, several are known to not provide this. If it exists, that .definition is preferable to one we may create. As a result, a solution should be found for the broken compilers. I have a proposal for a solution that while not elegant does achieve this task: A shell
2013 Nov 14
1
Possible bug: TC with HFSC fails to load if umax is not provided
I stumbled upon a problem while upgrading Ubuntu 13.04, Shorewall version from 4.4.26.1 to 4.5.16.1. Everything was working fine before, after upgrading the script wouldn''t start. First some config files. tcdevices: #INTERFACE IN-BANDWIDTH OUT-BANDWIDTH OPTIONS REDIRECTED eth1 - 6300kbit hfsc,classify ifb0 - 6300kbit hfsc
2009 Apr 26
5
Problems installing NfS2
Hello, i've just tried to install NfS2 using wine, but it didn't work. It aborted the setup.exe saying this: Code: wine: Unhandled privileged instruction at address 0x3a3723 (thread 001d), starting debugger... Unhandled exception: privileged instruction in 32-bit code (0x003a3723). err:dbghelp_msc:pe_load_debug_directory Got a page fault while loading symbols Register dump: CS:0073
2003 Dec 05
5
xenoutil patch 1.643 in bk rep
hi, i''ve submitted a small patch to xen-unstable that makes the ''/dev/xx'' -> devicenumber lookup stuff work on my machine.. basically i''m using os.stat instead of os.popen() hacks. this is my first bitkeeper checkin ever, so please verify i did this correctly. thanks, paul ------------------------------------------------------- This SF.net email is
2013 Oct 20
1
error cant write to function ODBC_DEVICES
Hi all asterisk 1.8.23 I have odbc all setup to mysql but cant figure out why the dialplan wont write to the odbc function fubc_odbc.conf [DEVICES] dsn=device-conn ;dsn in res_odbc not odbc.ini readsql=SELECT call.callNum, call.city, devices.callId, devices.id FROM call INNER JOIN devices ON call.id = devices.callId WHERE deviceNumber = '${ SQL_ESC(${ARG1})}'
2011 Jan 18
0
create xen image using existing xp .img file
Heres my setup. I have a workstation running windows xp sp3 that is currently acting as my symantec ghost and symantec endpoint server. For backup purposes I want to virtualize the physical machine so I can then just backup the xen image as opposed to making a copy of the hard drive image and having to transfer it to another machine in the case of a hardware failure. I connected an external
2017 Nov 25
0
Re: kvm/libvirt on CentOS7 w/Windows 10 Pro guest
Benjammin2068 writes: > Hey all, > > New to list, so I apologize if this has been asked a bunch already... > >  Is there something I'm missing with Windows 10 as a guest that keeps > Windows Updates from nuking the boot process? > > I just did an orderly shutdown and windows updated itself <I forgot to > disable in time> only to reboot to the diagnostics
2004 Aug 19
2
Syslinux patch
Out of necessity, a friend of mine and I have created a patch for syslinux to allow it to modify the mbr and partition table in windows. It adds a -m option to syslinux. If given, it will overwrite the MBR of the drive specified with the mbr.bin provided in syslinux, and if the bootable flag is not set on the partition being syslinuxed, it will set it. This was done to distribute with my USB
2010 Nov 04
0
Problem booting Microsoft Windows KVM virtual machine
Hi all, I'm having problems with a vm's startup, I cloned the entire disk of a Windows 2000 with dd on a drbd device, that disk was configured with two partitions. I'm able to see all the partitions contents by using kpartx and mount them: # kpartx -l /dev/drbd0 drbd0p1 : 0 202751488 /dev/drbd0 32 drbd0p2 : 0 285567360 /dev/drbd0 202751520 The problem is that when i try to startup
2017 Nov 25
2
kvm/libvirt on CentOS7 w/Windows 10 Pro guest
Hey all, New to list, so I apologize if this has been asked a bunch already...  Is there something I'm missing with Windows 10 as a guest that keeps Windows Updates from nuking the boot process? I just did an orderly shutdown and windows updated itself <I forgot to disable in time> only to reboot to the diagnostics screen which couldn't repair. going to command prompt and doing
2010 Oct 08
74
Performance issues with iSCSI under Linux
Hi!We''re trying to pinpoint our performance issues and we could use all the help to community can provide. We''re running the latest version of Nexenta on a pretty powerful machine (4x Xeon 7550, 256GB RAM, 12x 100GB Samsung SSDs for the cache, 50GB Samsung SSD for the ZIL, 10GbE on a dedicated switch, 11x pairs of 15K HDDs for the pool). We''re connecting a single Linux
2012 Nov 22
0
[LLVMdev] Disable loop unroll pass
I am the designer for open64 hwloop structure, but I am not a student. Hope the following helps: To transform a loop into hwloop, we need the help from optimizer. For example, while(k3>=10){ sum+=k1; k3 --; } into the form: zdl_loop(k3-9) { sum+=k1; } So, we introduce a new ZDLBR whirl(open64 optimizer intermediate) operator, which represents the loop in whirl as:
2012 Nov 22
0
[LLVMdev] Disable loop unroll pass
Hi shuxin, Promote while-loop to do-loop is the job of loop induction recognized, not this transformation. The scalar transform for hwloop in optimizer is for that it is a trouble to discriminate trip counting code with the real production code stuff and do the elimination in cg, we have to write customized code to handle this general stuff in ervey targets. So, we take the help from optimizer
2012 Nov 23
0
[LLVMdev] Disable loop unroll pass
Ok, let‘s stop the open64 "polution". Whether the design is as you stated doesn‘t simpler, the code before and after the change already tells us. We take detailed investigation on gcc support for hwloop, then we come to the conclusion we are essentially the same. So i think the idea can be shared among different compilers, general abstract tripcount, make pseudo operators for