From f6670dbaec1beb6f61af858cfba74fef64143763 Mon Sep 17 00:00:00 2001 From: jkh Date: Sun, 4 Jun 2000 04:41:41 +0000 Subject: Add a new release variable, AUTO_KEYBOARD_DETECT. If you set it to 1, the -P flag is used on the boot floppies. If not, don't. The new default is to not use it. --- release/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'release/Makefile') diff --git a/release/Makefile b/release/Makefile index f1ed9b3..d3c119e 100644 --- a/release/Makefile +++ b/release/Makefile @@ -58,6 +58,10 @@ ALLLANG?= yes DOCPORTS= textproc/docproj # Set this to wherever the distfiles required by ${DOCPORTS} live. DOCDISTFILES?= ${.CURDIR}/../../ports/distfiles +# Set this to 1 if you want -P to be used for automatic keyboard detection +# on the boot floppy. WARNING: Breaks on some Athlon (K7) motherboards. +AUTO_KEYBOARD_DETECT?= 0 + DIST_DOCS= ABOUT.TXT ERRATA.TXT LAYOUT.TXT README.TXT HARDWARE.TXT \ RELNOTES.TXT TROUBLE.TXT UPGRADE.TXT INSTALL.TXT @@ -771,7 +775,7 @@ doMFSKERN: @echo "echo \\007\\007" >> ${RD}/image.${FSIMAGE}/boot/loader.rc @echo "autoboot 10" >> ${RD}/image.${FSIMAGE}/boot/loader.rc @touch ${RD}/image.${FSIMAGE}/boot/loader.config -.if ${MACHINE_ARCH} == "i386" +.if ${MACHINE_ARCH} == "i386" && ${AUTO_KEYBOARD_DETECT} @echo "-P" >> ${RD}/image.${FSIMAGE}/boot.config .endif .if defined(BIGBOOT) -- cgit v1.1