Displaying 2 results from an estimated 2 matches for "dpatch_offset".
Did you mean:
patch_offset
2003 May 20
1
[ANNOUNCE] syslinux for win2k/winxp
...lcome.
Enjoy
-- Lars Munch
-------------- next part --------------
# Makefile for syslinux for windows
#
# Created by Lars Munch
# lars at segv.dk
# Linux -> Win2k cross compilation
CC = i586-mingw32msvc-gcc
# Cygwin (using mingw) compilation
#CC = gcc -mno-cygwin
CFLAGS = -O2 -Wall -DPATCH_OFFSET=`cat patch.offset`
LIBS =
OBJS = bootsect_bin.o ldlinux_bin.o syslinux-mingw.c
all: syslinux.exe
syslinux.exe: $(OBJS)
$(CC) $(CFLAGS) $(OBJS) -o syslinux.exe
clean:
rm -f *.o
rm -f *~
rm -f syslinux.exe
2003 May 14
2
Booting from Harddisk
...he HD using a pure Linux alternative.
(Leaf/Bering 1.1 diskette with kernel supporting IDE disks)
In this case running syslinux fails with undefined symbol open64
In attempt to remedy this, I've tried to link syslinux statically.
The 'make installer' fails with:
'nasm -O99 -f bin -DPATCH_OFFSET=`cat patch.offset` \
-l syslinux.lst -o syslinux.com syslinux.asm
syslinux.asm:447: error: expression syntax error
This error is probably because patch.offset is an empty file
removing it and 'make patch.offset' yields:
make patch.offset
perl findpatch.pl > patch.offset
findpatc...