search for: eparam

Displaying 8 results from an estimated 8 matches for "eparam".

Did you mean: param
2013 Sep 06
2
[PATCH 1/2] com32/lib/: Avoid unneeded allocation.
eparam will only be used if EBIOS is available on the underlying disk. If not so, then there is no reason to allocate eparam. --- com32/lib/syslinux/disk.c | 13 +++++++------ 1 files changed, 7 insertions(+), 6 deletions(-) diff --git a/com32/lib/syslinux/disk.c b/com32/lib/syslinux/disk.c index 0937...
2013 Sep 17
2
[PATCH 1/4 v2] com32/lib/: Avoid unneeded allocation.
eparam would only be used if EBIOS is available. If it is not, then there is no reason to allocate eparam. Signed-off-by: Raphael S.Carvalho <raphael.scarv at gmail.com> --- com32/lib/syslinux/disk.c | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/com32/lib/syslin...
2013 Sep 17
0
[PATCH 1/2] com32/lib/: Avoid unneeded allocation.
On Fri, 06 Sep, at 01:00:55AM, Raphael S.Carvalho wrote: > eparam will only be used if EBIOS is available on the underlying disk. > If not so, then there is no reason to allocate eparam. > --- > com32/lib/syslinux/disk.c | 13 +++++++------ > 1 files changed, 7 insertions(+), 6 deletions(-) > > diff --git a/com32/lib/syslinux/disk.c b/com32/...
2013 Sep 30
0
[PATCH 1/4 v2] com32/lib/: Avoid unneeded allocation.
On Tue, 17 Sep, at 04:42:24PM, Raphael S.Carvalho wrote: > eparam would only be used if EBIOS is available. > If it is not, then there is no reason to allocate eparam. > > Signed-off-by: Raphael S.Carvalho <raphael.scarv at gmail.com> > --- > com32/lib/syslinux/disk.c | 10 +++++----- > 1 files changed, 5 insertions(+), 5 deletions(-)...
2006 Jan 17
1
How to loop a Vobis sound ?
...urce state. // All buffers in a queue must have the same format and attributes. // currently only working for single buffer stream. void QueueBuffer (Buffer *pBuf); void UnQueueBuffer (Buffer *pBuf); // Get vector attributes // AL_POSITION, AL_VELOCITY, void Get (ALenum eParam, ALfloat *p3f) { alGetSourcefv (m_id, eParam, p3f); } Source (); virtual ~Source (); private: void Release (); ALuint m_id; // OpanAL id Buffer *m_pBuf; // associated buffer. int m_iRepeats; // for double buffering stream }; typedef std::vector <Sourc...
2015 Sep 24
0
[PATCH] com32/disk: add UEFI support
...CHS geometry is valid */ + }; + struct { /* EFI-specific information */ + void *biop; /* EFI_BLOCK_IO_PROTOCOL pointer */ + }; + }; }; +#ifndef SYSLINUX_EFI + struct disk_ebios_dapa { uint16_t len; uint16_t count; @@ -87,6 +97,8 @@ struct disk_ebios_eparam { uint8_t checksum; } __attribute__ ((packed)); +#endif + /** * CHS (cylinder, head, sector) value extraction macros. * Taken from WinVBlock. None expand to an lvalue. @@ -169,19 +181,25 @@ struct disk_gpt_header { } __attribute__ ((packed)); static const char disk_gpt_sig_magic[]...
2012 Aug 20
13
[PATCH 00/12] Multidisk support
Hello, the following patches should get multidisk access working. The syntax accepted is the following: (hdx,y)/path/to/file where x is the disk number and start at 0 and the y is the partition number starting at 1. So (hd0,1) is the first partition of the first disk. the other accepted syntax is using MBR's 32 bits disk signature so for example: (mbr:0x12345678,2)/foo/bar would address
2012 Jun 26
2
[GIT PULL] elflink bug fixes
...09af..093751a 100644 --- a/com32/lib/syslinux/disk.c +++ b/com32/lib/syslinux/disk.c @@ -73,7 +73,8 @@ int disk_int13_retry(const com32sys_t * inreg, com32sys_t * outreg) int disk_get_params(int disk, struct disk_info *const diskinfo) { static com32sys_t inreg, outreg; - struct disk_ebios_eparam *eparam = __com32.cs_bounce; + struct disk_ebios_eparam *eparam; + int rv = 0; memset(diskinfo, 0, sizeof *diskinfo); diskinfo->disk = disk; @@ -93,6 +94,10 @@ int disk_get_params(int disk, struct disk_info *const diskinfo) diskinfo->ebios = 1; } + eparam = lmall...