Displaying 20 results from an estimated 400 matches similar to: "Excessive chaining or multiple comboot files"
2001 Jul 07
2
FAQ updated to new bitrates?
I was looking at the Vorbis FAQ at
http://www.vorbis.com/faq.psp#bitrate
and noticed that the FAQ appears to be outdated and still shows Beta2
bitrate limitations.
When will the FAQ be updated to Beta4 or RC1?
What are the officially supported bitrates under Beta4 / RC1?
John
Developer: http://www.vorbis-burner.com
EE's do it 'til it Hz 8-)
~~~~~~~~~~~~~~~~~~John D.
2001 Jul 14
3
Ogg icons / glyphs -- use of copyrighted images?
Do we have a standard icon and/or glyphs identified for GUI-based
applications?
I'm adding Vorbis support to CDMaster32 and I'm finding I'm in need of 17x17
glyphs (.bmp) to graphically show progress of OGG files.
Has anyone thought about this?
If not I was thinking of modifying/reducing the Xiphophorus "fish" logo to
use in my application; however, since the xiph www site
2001 Jul 03
1
Re: ogg vorbis controls (fwd)
Anyone know when/if the RC1 code will appear on the xiph.org WWW site?
John
---------- Forwarded message ----------
Date: Tue, 03 Jul 2001 18:52:53 -0000
From: Deion Galbreath <deiong@hotmail.com>
To: zitt@bigfoot.com
Subject: Re: ogg vorbis controls
hi, ive been trying to get the source code however it seems they are only
includeing it in teh cvs not there online directory. i have
2002 Jun 05
1
Comboot files
First of all Great software,
Do you know how I can get the syslinux to display a help screen and then
return to the menu, or where I can find information on making .cbt
files..
Thanks.
Your help would be much appreciated
Rene
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2003 Dec 04
0
Comboot for showing DOCS
hm, nice algorythm thingie.
I'm not a programmer, so here goes:
currently: F1 helpfile.txt probably results in DISPLAY helpfile.txt
perhaps extend this option:
F1 arg1 arg2 arg3 argX
if arg1 does not exist, abort (currently also done?)
if arg1 ends in COM extension, execute it and pass the optional arg2/3/X parameters
if arg1 ends in C32 extension, same thing.
else DISPLAY arg1 // arg1
2004 Feb 03
0
COMBoot questions
Hi folks,
I'd like to write a graphical menu for a rescue Linux system I'm currently
working on in my spare time. I'm experimenting with VESA for this... but my
real questions are:
How do I boot a Linux kernel from a COMBoot (.cbt) program ?
Supposed I have syslinux.cfg that looks like this:
DEFAULT menu
LABEL menu
KERNEL menu.cbt
LABEL linux
KERNEL kernel.bzi
Do I have to use
2007 Jun 27
2
LSPCI comboot module
Is there an LSPCI comboot module that someone has written?
Or a linux style boot disk that has:
a KERNEL
b LSPCI
c very small size
d quick boot time
I am currently having to get through a 5 - 7 minute boot cycle with a
fedora setup just to get the lspci output.
Heeeeeeeeeeeeeeelp
Authenticlick, Inc.
5757
2008 Nov 27
1
RFC: COMBOOT API directory calls
Currently, I'm looking at implementing 3 COMBOOT API calls for
directories, opendir, readdir, and closedir. In order to track
progress within the directory, I'll need to keep track of the current
sector number that is being read and the offset within the sector for
the next file entry to read. I'm contemplating if I should also keep
track of the starting sector of the directory (in
2009 Jul 12
2
Gfxboot COMBOOT module vs Ubuntu patches
Good afternoon Sebastian,
I am working on upgrading the Ubuntu Syslinux package.
It is currently not in sync with the Debian version, partially because
of merge conflicts with the Gfxboot patches.
Cf:
https://bugs.launchpad.net/ubuntu/+source/syslinux/+bug/270822
https://merges.ubuntu.com/s/syslinux/REPORT
I was wondering where your Gfxboot version comes from. I know both Suse and
2009 Nov 27
1
[PATCH] doc: fix typos in comboot.txt
Fix some typos in the documentation.
Signed-off-by: Sebastian Herbszt <herbszt at gmx.de>
diff --git a/doc/comboot.txt b/doc/comboot.txt
index f5fefda..b3d8e64 100644
--- a/doc/comboot.txt
+++ b/doc/comboot.txt
@@ -553,7 +553,8 @@ AX=000Fh [3.00] Get IPAPPEND strings [PXELINUX]
AX=0010h [3.00] Resolve hostname [PXELINUX]
- Input: ES:BX pointer to null-terminated hostname
+ Input: AX
2010 Mar 01
0
[PATCH] com32: recognize gPXE's COMBOOT as gPXE
This makes is_gpxe() recognize gPXE's COMBOOT implementation as gPXE.
Previously, is_gpxe() only recognized PXELINUX loaded from gPXE.
Signed-off-by: Daniel Verkamp <daniel at drv.nu>
---
com32/include/syslinux/config.h | 1 +
com32/lib/sys/gpxe.c | 4 ++--
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/com32/include/syslinux/config.h
2012 Sep 06
1
[PATCH] comboot: add comapi_chainboot to int22_table
This is missing since "shuffler: comboot interface to the new shuffler".
Signed-off-by: Sebastian Herbszt <herbszt at gmx.de>
---
core/comboot.inc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/core/comboot.inc b/core/comboot.inc
index d6f670c..ef69c49 100644
--- a/core/comboot.inc
+++ b/core/comboot.inc
@@ -950,7 +950,7 @@ int22_table:
dw
2007 Feb 23
1
Return to prompt after comboot execution
Hello,
Is is possible to run a comboot file before the boot message is displayed
and after its execution, display the boot message and prompt?
Regards,
Remko van der Vossen.
2004 Apr 05
1
Comboot menu crashes when it goes off screen
It works!
Now, is there a way to use this handler multiple times so different
submenus can have different position values.
-Aaron
On Fri, 2 Apr 2004, ganapathy murali krishnan wrote:
> You write your own menupos_handler (like in complex.c) and register the
> handler.
>
> So all you need to do is to copy the code for the menupos_handler from
> complex.c and modify it to suit
2009 May 04
3
[RFC][PATCH] poweroff COMBOOT module
This module is able to power off a system via APM.
It was tested on QEMU, Bochs and VMware.
Possible usage:
TIMEOUT 3000
TOTALTIMEOUT 9000
ONTIMEOUT poweroff.com
- Sebastian
Index: syslinux-3.80-pre7/modules/poweroff.asm
===================================================================
--- /dev/null
+++ syslinux-3.80-pre7/modules/poweroff.asm
@@ -0,0 +1,86 @@
+ absolute 0
+pspInt20: resw 1
2004 Nov 23
2
comboot+PXE stack
Hi,
I need to add an additional feature to Murali's menu system: sending and
receiving UDP datagrams. I have no experiences with writing programs at such a
low level. Therefore, I need some help.
1) How to transfer IP address and other options from PXElinux to comboot?
2) I got PXE specification, ver. 2.1 (sept. 1999); can I follow it safely?
3) Is there an easy interface to use PXE stack
2009 May 24
1
Sending UDP packets from comboot
Hi everyone.
I've read through the archives and found a few posts about using the PXE
stack, but none of these really helped me.
What i want to do is: Prompt the user for 2 values, desired hostname and
a "pin" (just a number) and send this information
over UDP to my server
The problem is not the user input but the UDP part.
I've tried to change the code from the post of jesse
2008 Oct 07
2
Gfxboot COMBOOT module
Hello all,
i announce you the gfxboot COMBOOT module which is written in assembler.
Since i didn't find as much spare time as i have hoped last weekend it is
far from complete. Nevertheless the module is able to interact with the
bincode ([1] and [2]) in the bootlogo cpio archive from the openSUSE 10.2
mini cd. So far it is able to call the bincode gfxboot code and setup some
menu entries.
2008 Jan 18
3
Comboot Menu System
On the SysLinux page, there is a screenshot of "COMBOOT Menu System for
SYSLINUX developed by Murali Krishnan Ganapathy" (Advanced Menu System).
I was wondering where I might be able to download this menu system in
full to work with? If you dont want to share, I understand, but I am
really intrigued by this and want to learn more, and maybe make my own
design if I can figure it out.
2009 Mar 01
1
[RFC] COMBOOT: readdir: st_mode or d_type
I'm looking for comments on what to return from readdir in DL or DX.
Currently, the data in DL is misaligned (patch coming soon, along with
at least two more) but it also got me thinking about the fact that
some filesystems, I believe, actually store st_mode directly in the
filesystem. I'm thinking that using DX to return st_mode may prove
more useful in the long run than just returning