Displaying 4 results from an estimated 4 matches for "loadhigh".
Did you mean:
load_high
2006 Jun 19
0
syslinux 3.11/3.20-pre initrd loading bug
If you load more than one initrd syslinux doesn't clear the memory between
them. Or rather, the code for it does not work. The patch below fixes it.
Steffen
--- loadhigh.inc
+++ loadhigh.inc
@@ -65,7 +65,10 @@
push edi ; <C> Target buffer
mov cx,ax
xor bx,bx ; ES:0
+ push dx
call getfssec ; Load the data into xfer_buf_seg
+ ; getfssec destroys dx!
+ pop dx
pop edi ; <C> Target buffer
pop ecx ; <B> Byte count th...
2003 Jun 20
4
PXELINUX keeppxe mem footprint
...he problem is that the UNDI and PXE
layer take about 90K of base memory, which means that WINNT.EXE has
insufficent memory to run after networking is started.
I have already performed all the base memory saving tricks I can (including
reclaiming 32K from the VGA BIOS area, loading DOS high, using loadhigh for
most things) but still this is not enough.
My question is - do I really need both the UNDI layer and PXE stack to stay
resident for this UNDIS3C to function or could I get away with just keeping
the UNDI layer? Currently PXELINUX only allows both to stay resident. Is
there a way to reduce thi...
2005 Apr 27
1
floppy image issues
.../pxesmbboot # cat autoexec.bat
> path=\qemm;\dos;\net
> \net\net initialize
> if errorlevel 1 pause
> \net\netbind.com
> \net\umb.com
> \net\tcptsr.exe
> \net\tinyrfc.exe
> \net\nmtsr.exe
> \net\emsbfr.exe
> \net\net logon carl abc /yes
>
> Yes, I went nuts with Loadhigh and all. I removed all that once qemm
> opened up enough upper mem for some of these things to use
> automaticaluy
> I guess. If someone would give me a one line descritpon of what the
> /net/ commands do, that would be great. whe could put it on the wiki.
>
> Also, this wo...
2019 Jul 09
0
[PATCH] core: Add support for BLS Type 1 entries
...dd 100644
--- a/com32/elflink/ldlinux/Makefile
+++ b/com32/elflink/ldlinux/Makefile
@@ -18,7 +18,7 @@ LIBS = --whole-archive $(objdir)/com32/lib/libcom32min.a
OBJS = ldlinux.o cli.o readconfig.o refstr.o colors.o getadv.o adv.o \
execute.o chainboot.o kernel.o get_key.o advwrite.o setadv.o \
- loadhigh.o msg.o
+ loadhigh.o msg.o bls.o
BTARGET = $(LDLINUX)
diff --git a/com32/elflink/ldlinux/bls.c b/com32/elflink/ldlinux/bls.c
new file mode 100644
index 00000000..16e8bf18
--- /dev/null
+++ b/com32/elflink/ldlinux/bls.c
@@ -0,0 +1,230 @@
+/*
+ * bls.c
+ *
+ * Source file for the boot loader spe...