Recognize CPU on BSD/OS.
This commit is contained in:
parent
2eae234023
commit
9c789ad188
9
config
9
config
@ -119,7 +119,14 @@ case "${SYSTEM}:${RELEASE}:${VERSION}:${MACHINE}" in
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
BSD/386:*:*:*486*|BSD/OS:*:*:*:*486*)
|
BSD/386:*:*:*486*|BSD/OS:*:*:*:*486*)
|
||||||
echo "i486-whatever-bsdi"; exit 0
|
case `/sbin/sysctl -n hw.model` in
|
||||||
|
Pentium*)
|
||||||
|
echo "i586-whatever-bsd"; exit 0
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "i386-whatever-bsd"; exit 0
|
||||||
|
;;
|
||||||
|
esac;
|
||||||
;;
|
;;
|
||||||
|
|
||||||
BSD/386:*|BSD/OS:*)
|
BSD/386:*|BSD/OS:*)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user