summaryrefslogtreecommitdiffstats
path: root/sys/boot/i386/liloldr/Makefile
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2002-12-31 02:29:03 +0000
committerobrien <obrien@FreeBSD.org>2002-12-31 02:29:03 +0000
commitcadc439a6972f1a09ba24a9054547f8e764821dd (patch)
tree9debd0c9625959a69e7a8561e1a08a7cb8f3f228 /sys/boot/i386/liloldr/Makefile
parent443b8a76b61d163dd939884cc57d6fe158c545e5 (diff)
downloadFreeBSD-src-cadc439a6972f1a09ba24a9054547f8e764821dd.zip
FreeBSD-src-cadc439a6972f1a09ba24a9054547f8e764821dd.tar.gz
RIP liloldr.
It is not complete (the LILO root= specification isn't passed to our loader for instance), it has not been touched in over 2 years. Linux has moved on to GRUB, so this is OBE now. If someone creeps up to work on it, it could become a port.
Diffstat (limited to 'sys/boot/i386/liloldr/Makefile')
-rw-r--r--sys/boot/i386/liloldr/Makefile42
1 files changed, 0 insertions, 42 deletions
diff --git a/sys/boot/i386/liloldr/Makefile b/sys/boot/i386/liloldr/Makefile
deleted file mode 100644
index 5ccffee..0000000
--- a/sys/boot/i386/liloldr/Makefile
+++ /dev/null
@@ -1,42 +0,0 @@
-# $FreeBSD$
-
-ORG= 0x0
-
-LDR= liloldr
-BSECT= lilobsect
-BOOT= liloboot
-PROG= ${BOOT}
-NOMAN= 1
-STRIP=
-BINDIR?= /boot
-
-.if exists(${.OBJDIR}/../loader)
-LOADER= ${.OBJDIR}/../loader/loader
-.else
-LOADER= ${.CURDIR}/../loader/loader
-.endif
-
-.if exists(${LOADER})
-LOADER_SIZE != wc -c ${LOADER} | awk '{print int(($$1 + 15) / 16)}'
-AFLAGS= --defsym LOADER_SIZE=${LOADER_SIZE}
-.endif
-
-${BOOT}: ${BSECT} ${LDR} ${LOADER}
- cat ${BSECT} ${LDR} ${LOADER} > ${.TARGET}.tmp
- dd if=${.TARGET}.tmp of=${.TARGET} obs=2k conv=osync
- rm ${.TARGET}.tmp
-
-${LDR}: ${LDR}.o
- ${LD} -N -e start -Ttext ${ORG} -o ${LDR}.out ${LDR}.o
- objcopy -S -O binary ${LDR}.out ${.TARGET}
-
-${BSECT}: ${BSECT}.o
- ${LD} -N -e start -Ttext ${ORG} -o ${BSECT}.out ${BSECT}.o
- objcopy -S -O binary ${BSECT}.out ${.TARGET}
-
-${BSECT}.o: ${BSECT}.s ${LOADER}
-
-CLEANFILES+= ${LDR} ${LDR}.out ${LDR}.o \
- ${BSECT} ${BSECT}.out ${BSECT}.o ${BOOT}.tmp
-
-.include <bsd.prog.mk>
OpenPOWER on IntegriCloud