Hi, Robin du wrote:
Recently I build the kernel and use Install to make a kernel image, Install command told me: "kmdb isn't built, and won't be included"Who's wrong?
Have a look at the Install script to decipher:
In function copy_kmdb:
# A kmdb-less workspace isn't fatal, but it is potentially problematic,
# as the changes made to uts may have altered something upon which kmdb
# depends. We will therefore remind the user that they haven't built it
# yet.
if [[ $foundkmdb != "yes" ]] ; then
echo "WARNING: kmdb isn't built, and won't be included"
fi
A little higher up in the script you'll see what it requires to be present
(the first arg to kmdb_copy_kmdbmod).
Essentially you need to cd usr/src/cmd/mdb && dmake install before
generating your Install archive.
Gavin
smime.p7s
Description: S/MIME Cryptographic Signature
_______________________________________________ opensolaris-code mailing list [email protected] http://mail.opensolaris.org/mailman/listinfo/opensolaris-code
