1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-12 09:58:36 +00:00

Actually put hint.atkbd.0.flags="0x1" in /boot/device.hints on CD-ROMs.

(Brought to my attention by Brooks while sitting together on the floor
in "Kairo".)
This commit is contained in:
Ruslan Ermilov 2004-11-02 11:59:27 +00:00
parent fbf06e9863
commit b51a042e9a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=137125

View File

@ -951,9 +951,10 @@ cdrom.1:
@echo 'mfsroot_load="YES"' > ${CD_DISC2}/boot/loader.conf
@echo 'mfsroot_type="mfs_root"' >> ${CD_DISC2}/boot/loader.conf
@echo 'mfsroot_name="/boot/mfsroot"' >> ${CD_DISC2}/boot/loader.conf
.if exists(${HINTSFILE})
.if exists(${RD}/trees/base/boot/device.hints)
# Break the link to device.hints so we can modify it
@cp -f ${HINTSFILE} ${CD_DISC2}/boot/device.hints
@rm -f ${CD_DISC2}/boot/device.hints
@cp ${RD}/trees/base/boot/device.hints ${CD_DISC2}/boot/device.hints
.if ${TARGET} == "i386" || ${TARGET_ARCH} == "amd64"
@echo 'hint.atkbd.0.flags="0x1"' >> ${CD_DISC2}/boot/device.hints
.endif