From: Matthew Dillon Date: Tue, 23 Mar 2010 18:52:51 +0000 (-0700) Subject: vkernel - Fix the vfs.root.mountfrom for the vkernel test code X-Git-Url: https://gitweb.dragonflybsd.org/~syl/dragonfly.git/commitdiff_plain/ab4f30c0343036c362ba6b718134609384589997 vkernel - Fix the vfs.root.mountfrom for the vkernel test code * This parameter is not yet used by the vkernel but fix it anyway. --- diff --git a/test/vkernel/Makefile b/test/vkernel/Makefile index f8197375b8..a95c58b5c0 100644 --- a/test/vkernel/Makefile +++ b/test/vkernel/Makefile @@ -118,7 +118,7 @@ install: mount make -j 4 DESTDIR=${VKDIR}/root distribution echo '/dev/vkd0s1a / ufs rw 1 1' > ${VKDIR}/root/etc/fstab echo 'proc /proc procfs rw 0 0' >> ${VKDIR}/root/etc/fstab - echo 'vfs.root.mountfrom="ufs:vkds1a"' > ${VKDIR}/root/boot/loader.conf + echo 'vfs.root.mountfrom="ufs:vkd0s1a"' > ${VKDIR}/root/boot/loader.conf #(egrep -v '^console' ${VKDIR}/root/etc/ttys; echo 'console "/usr/libexec/getty Pc" cons25 on secure') > ${VKDIR}/root/etc/ttys.new #mv -f ${VKDIR}/root/etc/ttys.new ${VKDIR}/root/etc/ttys cd ${SRCDIR} && \