Update Config.in for use with CLFS:
-Add pure 64 bit PowerPC target -Write GIT instead of SVN when using CLFS
This commit is contained in:
parent
de84c00168
commit
897416cb4b
1 changed files with 14 additions and 5 deletions
17
Config.in
17
Config.in
|
@ -44,12 +44,20 @@ menu "--- BOOK Settings"
|
||||||
#--- Book version
|
#--- Book version
|
||||||
choice
|
choice
|
||||||
prompt "Release"
|
prompt "Release"
|
||||||
default relSVN
|
default relSVN if BOOK_LFS || BOOK_HLFS
|
||||||
|
default relGIT if BOOK_CLFS || BOOK_CLFS2 || BOOK_CLFS3
|
||||||
config relSVN
|
config relSVN
|
||||||
bool "SVN"
|
bool "SVN"
|
||||||
|
depends on BOOK_LFS || BOOK_HLFS
|
||||||
help
|
help
|
||||||
#-- Current development version as in trunk
|
#-- Current development version as in trunk
|
||||||
|
|
||||||
|
config relGIT
|
||||||
|
bool "GIT"
|
||||||
|
depends on BOOK_CLFS || BOOK_CLFS2 || BOOK_CLFS3
|
||||||
|
help
|
||||||
|
#-- Current development git master branch
|
||||||
|
|
||||||
config WORKING_COPY
|
config WORKING_COPY
|
||||||
bool "Working Copy"
|
bool "Working Copy"
|
||||||
depends on !BOOK_BLFS
|
depends on !BOOK_BLFS
|
||||||
|
@ -59,7 +67,7 @@ menu "--- BOOK Settings"
|
||||||
config BRANCH
|
config BRANCH
|
||||||
bool "Branch or stable book" if !BOOK_CLFS2 && !BOOK_CLFS3
|
bool "Branch or stable book" if !BOOK_CLFS2 && !BOOK_CLFS3
|
||||||
help
|
help
|
||||||
#-- A supported SVN branch or stable released book
|
#-- A supported SVN/GIT branch or stable released book
|
||||||
endchoice
|
endchoice
|
||||||
|
|
||||||
config BRANCH_ID
|
config BRANCH_ID
|
||||||
|
@ -135,7 +143,7 @@ menu "--- BOOK Settings"
|
||||||
bool "32-bit"
|
bool "32-bit"
|
||||||
|
|
||||||
config DATA_64
|
config DATA_64
|
||||||
bool "64-bit" if !ARCH_PPC
|
bool "64-bit"
|
||||||
|
|
||||||
config DATA_MULTI
|
config DATA_MULTI
|
||||||
bool "multilib" if !(BOOK_CLFS3 && ARCH_MIPS )
|
bool "multilib" if !(BOOK_CLFS3 && ARCH_MIPS )
|
||||||
|
@ -251,7 +259,7 @@ menu "--- BOOK Settings"
|
||||||
default "mips64-unknown-linux-uclibc" if BOOK_CLFS3 && PROC_mips && DATA_64
|
default "mips64-unknown-linux-uclibc" if BOOK_CLFS3 && PROC_mips && DATA_64
|
||||||
|
|
||||||
default "powerpc-unknown-linux-gnu" if ARCH_PPC && DATA_32
|
default "powerpc-unknown-linux-gnu" if ARCH_PPC && DATA_32
|
||||||
default "powerpc64-unknown-linux-gnu" if ARCH_PPC && DATA_MULTI
|
default "powerpc64-unknown-linux-gnu" if ARCH_PPC && (DATA_MULTI || DATA-64)
|
||||||
|
|
||||||
default "sparc-unknown-linux-gnu" if ARCH_SPARC && DATA_32
|
default "sparc-unknown-linux-gnu" if ARCH_SPARC && DATA_32
|
||||||
default "sparc64-unknown-linux-gnu" if ARCH_SPARC && (DATA_64 || DATA_MULTI)
|
default "sparc64-unknown-linux-gnu" if ARCH_SPARC && (DATA_64 || DATA_MULTI)
|
||||||
|
@ -311,6 +319,7 @@ menu "--- BOOK Settings"
|
||||||
|
|
||||||
default "ppc" if ARCH_PPC && DATA_32
|
default "ppc" if ARCH_PPC && DATA_32
|
||||||
default "ppc64" if ARCH_PPC && DATA_MULTI
|
default "ppc64" if ARCH_PPC && DATA_MULTI
|
||||||
|
default "ppc64-64" if ARCH_PPC && DATA_64
|
||||||
|
|
||||||
default "sparc" if ARCH_SPARC && DATA_32
|
default "sparc" if ARCH_SPARC && DATA_32
|
||||||
default "sparc64" if ARCH_SPARC && DATA_MULTI
|
default "sparc64" if ARCH_SPARC && DATA_MULTI
|
||||||
|
|
Reference in a new issue