* When upgrading a system from the old /boot format to the new /boot
format clarify the error message when someone tries to install a
new kernel onto an old /boot.
It now indicates specifically suggests doing a buildworld / installworld
sequence first.
@if [ ! -f ${DESTDIR}/boot/dloader.rc ]; then \
echo "You need to install a new ${DESTDIR}/boot before you"; \
echo "can install a new kernel, kernels are now installed"; \
- echo "into a subdirectory along with their modules"; \
+ echo "into a subdirectory along with their modules."; \
+ echo "You can do this with a buildworld / installworld"; \
+ echo "sequence."; \
exit 1; \
fi
@exit 0