mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-05 12:56:08 +00:00
Do what I think Poul *intended* to do, rather than what he did.. :-)
This commit is contained in:
parent
501d72dd36
commit
431d67b60e
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=6093
@ -12,6 +12,12 @@ CFLAGS += -Wall -g -static
|
||||
LDADD = -ldialog -lncurses -lmytinfo
|
||||
DPADD = ${LIBDIALOG} ${LIBNCURSES} ${LIBMYTINFO}
|
||||
|
||||
.if exists(${.CURDIR}/../../sys/i386/boot/biosboot/obj)
|
||||
BOOTS=${.CURDIR}/../../sys/i386/boot/biosboot/obj
|
||||
.else
|
||||
BOOTS=${.CURDIR}/../../sys/i386/boot/biosboot
|
||||
.endif
|
||||
|
||||
makedevs.c: dev2c.sh Makefile
|
||||
mkdir -p dev
|
||||
cp ${.CURDIR}/../../etc/etc.i386/MAKEDEV dev
|
||||
@ -19,16 +25,10 @@ makedevs.c: dev2c.sh Makefile
|
||||
sh ${.CURDIR}/dev2c.sh dev > makedevs.tmp
|
||||
rm -rf dev
|
||||
uudecode < ${.CURDIR}/bteasy17.uu
|
||||
file2c 'const char boot0[] = {' '};' < \
|
||||
bteasy17 \
|
||||
>> makedevs.tmp
|
||||
file2c 'const char boot0[] = {' '};' < bteasy17 >> makedevs.tmp
|
||||
rm -rf bteasy17
|
||||
file2c 'const char boot1[] = {' '};' < \
|
||||
../../sys/i386/boot/biosboot/boot1 \
|
||||
>> makedevs.tmp
|
||||
file2c 'const char boot2[] = {' '};' < \
|
||||
../../sys/i386/boot/biosboot/boot2 \
|
||||
>> makedevs.tmp
|
||||
file2c 'const char boot1[] = {' '};' < ${BOOTS}/boot1 >> makedevs.tmp
|
||||
file2c 'const char boot2[] = {' '};' < ${BOOTS}/boot2 >> makedevs.tmp
|
||||
tset -Q -S cons25 | sed 's/^.* //' | \
|
||||
file2c 'const char termcap_cons25[] = {' ',0};' \
|
||||
>> makedevs.tmp
|
||||
|
Loading…
Reference in New Issue
Block a user