Displaying 20 results from an estimated 2000 matches similar to: "Comboot for showing DOCS"
2012 Jun 25
1
how to create bootable FreeDOS HDD or USB flash drive?
Hello,
there is a "fdboot.img" floppy drive image included with FreeDOS ISO
file. It's a floppy image file:
root at debian64:~# file -s /home/martin/FreeDOS/isolinux/fdboot.img
/home/martin/FreeDOS/isolinux/fdboot.img: x86 boot sector, FREE-DOS
BEta 0.9 Bootloader KERNEL.SYS, code offset 0x40, OEM-ID "FreeDOS ",
sectors/cluster 2, root entries 112, sectors 720 (volumes
2009 Mar 01
0
[PATCH 1/3] COMBOOT API: Improve readdir
From: Gene Cumm <gene.cumm at gmail.com>
COMBOOT API: Improve readdir. Now returns C struct stat st_mode
compatible data in DX rather than the raw data from a FAT filesystem
or C struct dirent d_mode compatible data.
Signed-off-by: Gene Cumm <gene.cumm at gmail.com>
---
If I return something that's compatible with the C struct stat st_mode
member, this can be used for more
2008 Nov 03
1
[PATCH 1/1] COMBOOT: add get config file full name
From: Gene Cumm <gene.cumm at gmail.com>
COMBOOT API: Add get config full file name to SYSLINUX
Signed-off-by: Gene Cumm <gene.cumm at gmail.com>
---
Returns the full configuration file name. Int 22h AX 001Eh for now as
it appears that the COMBOOT API is designed to be strictly sequential.
The API gets extended but only implemented (for now) for SYSLINUX in
ldlinux.asm.
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 May 25
1
multiple comboot files?
Is there a way for isolinux/syslinux to execute a list of comboot files
immediately at startup, and only once?
I have a bunch of small comboot .com files that I want to batch run immediately,
then after that do a
DISPLAY boot.msg
similar in some ways to an autoexec.bat.
For example:
DEFAULT mycd
APPEND ramdisk_size=100000 init=/etc/init lang=us ....
TIMEOUT 300
ONSTARTUP mybatch <- ???
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
2009 Mar 21
0
[PATCH 1/1] SYSLINUX/COMBOOT: Abstract searchdir and fix the opendir call
From: Gene Cumm <gene.cumm at gmail.com>
SYSLINUX/COMBOOT: Abstract searchdir and fix the opendir call
Signed-off-by: Gene Cumm <gene.cumm at gmail.com>
---
First, change comboot.inc such that INT 22h AX=0020h (opendir) is
about as simple and similar in behavior to INT 22h AX=0006h
(openfile).
Next, rename the function searchdir to searchdir4any, create a new
function called
2014 Nov 07
1
comboot use cases
On Thu, 6 Nov 2014, Geert Stappers wrote:
> > The MirBSD bootloader actually took advantage of COMBOOT to
> > provide access to SYSLINUX storage and other things. It was
> > integrating nicely.
>
> Please tell more about that COMBOOT use case.
Okay.
The BSD kernels are normally loaded by their own BSD-specific
bootloaders (although some other bootloaders can, with
2014 Jul 16
0
Possible memdisk issue
> On 08Jul2014--09Jul2014, Ady, Peter Anvin, Gene Cumm, Bernd Blaauw, Shao
> Miller, Kenneth Davis, wrote:
> > [...]
>
> Thank you all for your responses. You helped me solve my problem. For
> anyone else that runs into similar trouble and finds this thread, here
> follow summaries of what I've learned.
>
> To recap, our PXE server holds Dell BIOS updates in
2008 Nov 10
2
[PATCH 1/1] COMBOOT API: Add get current working directory call to most
From: Gene Cumm <gene.cumm at gmail.com>
COMBOOT API: Add get current working directory call to most
Signed-off-by: Gene Cumm <gene.cumm at gmail.com>
---
Adds an API call to obtain the current working directory. EXTLINUX
will not return the correct value yet however SYSLINUX, ISOLINUX, and
PXELINUX will return the correct value. For the moment, EXTLINUX will
ONLY return
2014 Apr 30
0
Issues with syslinux_run_command(str) and parameters
I don't think that's it, but fair enough, try this sample config:
************************************************# Test File: isolinux.cfg
default vesamenu.c32
ALLOWOPTIONS 0
LABEL Test kernel whichsys.c32 append -iso- memdisk initrd=fdboot.img -sys- initrd=fdboot.img
MENU END************************************************
I am using binaries from 6.03-pre11 from kernel.org. I used
2014 Apr 30
2
Issues with syslinux_run_command(str) and parameters
Apologies for how that formatted. Also on pastebin: http://pastebin.com/EXSq75yX
--Ian
> From: ian at internals.io
> To: ady-sf at hotmail.com; syslinux at zytor.com
> Date: Tue, 29 Apr 2014 19:09:09 -0500
> Subject: Re: [syslinux] Issues with syslinux_run_command(str) and parameters
>
> I don't think that's it, but fair enough, try this sample config:
>
2004 Jan 16
6
Comboot Menu
Since lot of people want this thing, I will try to take a stab at it.
For now, I will hard code the menu in the code, and then somebody else
can remove that restriction. May be we can add some kind of keyword to
the config file which syslinux ignores and the comboot menu does
something with it.
I have one question about comboot: If I write a DOS program using C
(compiled using watcom -3 -mt -osx
2009 Feb 08
1
[PATCH 1/1] COMBOOT API: Add calls for directory functions; Implement for FAT; Try 2
From: Gene Cumm <gene.cumm at gmail.com>
COMBOOT API: Add calls for directory functions; Implement most only
for FAT (SYSLINUX).
Uses INT 22h AX= 001Fh, 0020h, 0021h and 0022h to prepare for the
COM32 C functions getcwd(), opendir(), readdir(), and closedir(),
respectively. INT22h, AX=001Fh will return a valid value for all
variants. INT22h, AX= 0020h, 0021h, and 0022h are only
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.
2006 Mar 01
3
Samples files for comboot and default
Hi
Does subject exist?
Is it possible to get MAC address, video card, RAM and the storage of a harddrive by using comboot? And can some one help me?
/Kenneth
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
2008 Dec 04
2
[PATCH 1/1] COMBOOT API: Add calls for directory functions; Implement for FAT
From: Gene Cumm <gene.cumm at gmail.com>
COMBOOT API: Add calls for directory functions; Implement most only
for FAT (SYSLINUX).
Uses INT 22h AX= 001Eh, 001Fh, 0020h and 0021h to prepare for the
COM32 C functions getcwd(), opendir(), readdir(), and closedir(),
respectively. INT22h, AX=001Eh will return a valid value for all
variants. INT22h, AX= 001Fh, 0020h, and 0021h are only
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 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.