Adjusted files to reflect the removal of sparcv8 identifier from the CLFS book
This commit is contained in:
parent
3570c1cf30
commit
b0dd4bd0f4
4 changed files with 2 additions and 9 deletions
|
@ -20,7 +20,6 @@ TARGET=
|
|||
# ARCH=mips ; TARGET="mipsel-unknown-linux-gnu"
|
||||
# ARCH=mips ; TARGET="mips-unknown-linux-gnu"
|
||||
# ARCH=sparc ; TARGET="sparcv9-unknown-linux-gnu"
|
||||
# ARCH=sparcv8 ; TARGET="sparc-unknown-linux-gnu"
|
||||
#--------------------------------
|
||||
# >>>> 64-64 BUILD <<<<
|
||||
# ARCH=x86_64-64 ; TARGET="x86_64-unknown-linux-gnu"
|
||||
|
|
|
@ -98,7 +98,7 @@ cat <<- -EOF-
|
|||
${BOLD} -A, --arch ARCH ${OFF}
|
||||
Select the TARGET architecture, valid selections are:
|
||||
32bit builds
|
||||
x86, i486, i586, ppc, mips, mipsel, sparc, sparcv8
|
||||
x86, i486, i586, ppc, mips, mipsel, sparc
|
||||
64bit builds
|
||||
x86_64-64, mips64-64, mipsel64-64, sparc64-64, alpha
|
||||
64bit multi-lib
|
||||
|
|
|
@ -33,8 +33,6 @@ validate_target() {
|
|||
;;
|
||||
"sparc") [[ "${TARGET}" = "sparcv9-unknown-linux-gnu" ]] && return
|
||||
;;
|
||||
"sparcv8") [[ "${TARGET}" = "sparc-unknown-linux-gnu" ]] && return
|
||||
;;
|
||||
"x86_64-64") [[ "${TARGET}" = "x86_64-unknown-linux-gnu" ]] && return
|
||||
;;
|
||||
"mips64-64") [[ "${TARGET}" = "mipsel-unknown-linux-gnu" ]] && return
|
||||
|
@ -140,7 +138,7 @@ inline_doc
|
|||
PAGE) validation_str="xletterx xA4x"; validate_str; continue ;;
|
||||
GRSECURITY_HOST) validation_str="x0x x1x"; validate_str; continue ;;
|
||||
METHOD) validation_str="xchrootx xbootx"; validate_str; continue ;;
|
||||
ARCH) validation_str="xx86x xx86_64x xx86_64-64x xsparcx xsparcv8x xsparc64x xsparc64-64x xmipsx xmips64x xmips64-64x xppcx xppc64x xalphax"; validate_str; continue ;;
|
||||
ARCH) validation_str="xx86x xx86_64x xx86_64-64x xsparcx xsparc64x xsparc64-64x xmipsx xmips64x xmips64-64x xppcx xppc64x xalphax"; validate_str; continue ;;
|
||||
TARGET) validate_target; continue ;;
|
||||
esac
|
||||
|
||||
|
|
|
@ -272,10 +272,6 @@ while test $# -gt 0 ; do
|
|||
ARCH=sparc
|
||||
TARGET="sparcv9-unknown-linux-gnu"
|
||||
;;
|
||||
sparcv8 )
|
||||
ARCH=sparcv8
|
||||
TARGET="sparc-unknown-linux-gnu"
|
||||
;;
|
||||
x86_64-64 )
|
||||
ARCH=x86_64-64
|
||||
TARGET="x86_64-unknown-linux-gnu"
|
||||
|
|
Reference in a new issue