|
# --- ROCK-COPYRIGHT-NOTE-BEGIN ---
|
|
#
|
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
|
# Please add additional copyright information _after_ the line containing
|
|
# the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
|
|
# the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
|
|
#
|
|
# ROCK Linux: rock-src/architecture/mips/config.in
|
|
# ROCK Linux is Copyright (C) 1998 - 2006 Clifford Wolf
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version. A copy of the GNU General Public
|
|
# License can be found at Documentation/COPYING.
|
|
#
|
|
# Many people helped and are helping developing ROCK Linux. Please
|
|
# have a look at http://www.rocklinux.org/ and the Documentation/TEAM
|
|
# file for details.
|
|
#
|
|
# --- ROCK-COPYRIGHT-NOTE-END ---
|
|
|
|
choice ROCKCFG_MIPS_ABI 32 \
|
|
32 "Build with -mabi=32" \
|
|
n32 "Build with -mabi=n32" \
|
|
64 "Build with -mabi=64"
|
|
|
|
ROCKCFG_ID="$ROCKCFG_ID-$ROCKCFG_MIPS_ABI"
|
|
|
|
choice ROCKCFG_MIPS_ENDIANESS EB \
|
|
EB "Build for big endian machines" \
|
|
EL "Build for little endian machines"
|
|
|
|
ROCKCFG_ID="$ROCKCFG_ID-$ROCKCFG_MIPS_ENDIANESS"
|
|
|
|
choice ROCKCFG_MIPS_OPT from-abi \
|
|
from-abi "No special optimisation" \
|
|
r2000 "Build for R2000 CPU" \
|
|
r3000 "Build for R3000 CPU" \
|
|
r3900 "Build for R3900 CPU" \
|
|
r4000 "Build for R4000 CPU" \
|
|
4kc "Build for 4KC CPU" \
|
|
4kp "Build for 4KP CPU" \
|
|
m4k "Build for m4k CPU" \
|
|
r4400 "Build for R4400 CPU" \
|
|
r4600 "Build for R4600 CPU" \
|
|
r4650 "Build for R4650 CPU" \
|
|
5kc "Build for 5KC CPU" \
|
|
r6000 "Build for R6000 CPU" \
|
|
r8000 "Build for R8000 CPU" \
|
|
rm7000 "Build for RM7000 CPU" \
|
|
rm9000 "Build for RM9000 CPU" \
|
|
20kc "Build for 20kc CPU" \
|
|
sb1 "Build for sb1 CPU" \
|
|
vr4100 "Build for vr4100 CPU" \
|
|
vr4111 "Build for vr4111 CPU" \
|
|
vr4120 "Build for vr4120 CPU" \
|
|
vr4300 "Build for vr4300 CPU" \
|
|
vr5000 "Build for vr5000 CPU" \
|
|
vr5400 "Build for vr5400 CPU" \
|
|
vr5500 "Build for vr5500 CPU" \
|
|
orion "Build for Orion CPU"
|
|
|
|
if [ $ROCKCFG_MIPS_OPT != from-abi ] ; then
|
|
ROCKCFG_ID="$ROCKCFG_ID-$ROCKCFG_MIPS_OPT"
|
|
fi
|
|
|