diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-03-31 23:06:34 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-03-31 23:06:34 +0000 |
commit | d56519762d6c1899f2baa3dbbc461af05cd168a6 (patch) | |
tree | 3d68308130e343610f48c1c66982d81dd56a226e /sys/arch/i386/stand/libsa/libsa.h | |
parent | 10a04de1b4af9903e9146ad801619b45a42583c6 (diff) |
commit all my mods to the last imported libsa stuff....
including:
- disklabel support;
- better boot cmd line
- smaller size (using some compilation switches ;)
- no more relocations in /boot, it's loaded in the place;
- better disk performance (maybe were already in there)
- installboot -n does not require write perms for device
- more debugs
- missing parts in libsa (such as cd9660 and so)
- i don't like 2 files for exec_i386 (sorry, toby, let's discuss maybe?)
tricks and tails:
- joined .text and .data (saves you a page)
- prot mode switching still in biosboot (it's freezed for awhile)
- biosdisk internals changed
- biosdev is not passed propery to the kernel (i'll fix it soon)
- sure i missed smth here to note (use the source, Luke!)
Diffstat (limited to 'sys/arch/i386/stand/libsa/libsa.h')
-rw-r--r-- | sys/arch/i386/stand/libsa/libsa.h | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/sys/arch/i386/stand/libsa/libsa.h b/sys/arch/i386/stand/libsa/libsa.h index b5eb8ddea58..28ea3117349 100644 --- a/sys/arch/i386/stand/libsa/libsa.h +++ b/sys/arch/i386/stand/libsa/libsa.h @@ -1,4 +1,4 @@ -/* $OpenBSD: libsa.h,v 1.2 1997/03/31 03:12:14 weingart Exp $ */ +/* $OpenBSD: libsa.h,v 1.3 1997/03/31 23:06:29 mickey Exp $ */ /* * Copyright (c) 1996 Michael Shalayeff @@ -34,12 +34,10 @@ #include <stand.h> -void startprog __P((char *addr, int argv[])); -void gateA20 __P((int on)); -int memsize __P((int which)); -int memprobe __P((void)); +void gateA20 __P((int)); +void memprobe __P((void)); -extern dev_t bootdev, maj, unit, part; -extern u_long cyloffset; -extern u_long ourseg, esym; +extern u_long codeseg; extern int boothowto; +extern u_int cnvmem, extmem; +extern const char bdevs[19][4]; |