freebsd-dev/sys/i386/boot/dosboot
Poul-Henning Kamp 0fbb4a064b "jl" and "jb" doesn't quite do the same thing...
Reviewed by:	phk
Submitted by:	"DI. Christian Gusenbauer" <cg@scotty.edvz.uni-linz.ac.at>
1995-04-14 23:01:33 +00:00
..
ansi.h This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00
boot.c This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00
boot.h This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00
bootinfo.h This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00
cdefs.h This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00
dinode.h This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00
dir.h This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00
dirent.h This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00
disk.c This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00
disklabe.h This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00
dkbad.h This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00
dosboot.c This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00
dosboot.h This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00
endian.h This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00
exec.h This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00
fbsdboot.c This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00
fbsdboot.exe.uu "jl" and "jb" doesn't quite do the same thing... 1995-04-14 23:01:33 +00:00
fbsdboot.mak This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00
fs.h This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00
imgact.h This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00
inode.h This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00
Makefile Don't install /usr/mdec/boot 1995-03-28 19:22:43 +00:00
mexec.h This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00
param.h This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00
protmod.c "jl" and "jb" doesn't quite do the same thing... 1995-04-14 23:01:33 +00:00
protmod.h This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00
quota.h This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00
readme This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00
reboot.h This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00
sys.c This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00
syslimit.h This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00
sysparam.h This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00
types.h This is a MS-DOS program, but is does something useful for us: 1995-02-15 04:45:50 +00:00

Hi Everybody!

This is version 1.5 of "fbsdboot", a program that allows you to boot a kernel
from a MS-DOS partition or a FreeBSD partition. This program runs using DOS.
It works with various memory managers (like  EMM386, 386MAX) under certain
circumstances.

First, a FreeBSD kernel is always loaded to memory starting at 0x100000. To
assure that loading the kernel *does not* overwrite memory used by memory
managers, high memory for the kernel is allocated and after loading the kernel
it's moved to 0x100000.

Second, there are many ways to switch to protected mode which is necessary to
start the kernel. Each BIOS gives you the possibility to use INT15H (AH=89H)
to do that. But some memory-managers like 386max does not allow you to use
this method.

An other way to do the switch is to use DPMI services, but they do not
guarantee, that the protected mode application is executed with privilege
level 0. Therefore this method is *not* used.

VCPI services offer another way to switch to protected mode, and VCPI servers
are built into "emm386.exe", "386max" and "qemm". That's why, this method is
implemented in fbsdboot.exe.

Fbsdboot.exe tries to switch to protected mode using VCPI services. If they're
not available INT15H is used to do the switch. If that fails, it's not possible
for this version of fbsdboot.exe to boot a kernel :-(.

You can get commandline options of fbsdboot if you start it with "-?" as option!

I don't know, if fbsdboot works with QEMM, as I don't have the possibility to
test it.

Enjoy and have fun!

Christian.
cg@fimp01.fim.uni-linz.ac.at


PS: Many thanks to Bruce Evans for his assistance!