Move toolchain-config.in from tools/ to scripts/
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu Dec 11 18:21:18 2008 +0000 (2008-12-11)
changeset 1098035f231898cc
parent 1097 b46a557b33c9
child 1099 e1a5096d432b
Move toolchain-config.in from tools/ to scripts/
Small documentation fix.

/trunk/scripts/crosstool.sh | 2 1 1 0 +-
/trunk/docs/overview.txt | 1 1 0 0 +
2 files changed, 2 insertions(+), 1 deletion(-)
docs/overview.txt
scripts/crosstool.sh
scripts/toolchain-config.in
tools/toolchain-config.in
     1.1 --- a/docs/overview.txt	Thu Dec 11 18:16:54 2008 +0000
     1.2 +++ b/docs/overview.txt	Thu Dec 11 18:21:18 2008 +0000
     1.3 @@ -297,6 +297,7 @@
     1.4  This will dump the configuration to stdout, so to rebuild a toolchain with this
     1.5  configuration, the following is all you need to do:
     1.6    ${CT_TARGET}-config >.config
     1.7 +  ct-ng oldconfig
     1.8  
     1.9  Then, you can review and change the configuration by running:
    1.10    ct-ng menuconfig
     2.1 --- a/scripts/crosstool.sh	Thu Dec 11 18:16:54 2008 +0000
     2.2 +++ b/scripts/crosstool.sh	Thu Dec 11 18:21:18 2008 +0000
     2.3 @@ -406,7 +406,7 @@
     2.4      export PARALLELMFLAGS
     2.5  
     2.6      CT_DoLog EXTRA "Installing user-supplied crosstool-NG configuration"
     2.7 -    CT_DoExecLog DEBUG install -m 0755 "${CT_LIB_DIR}/tools/toolchain-config.in" "${CT_PREFIX_DIR}/bin/${CT_TARGET}-ct-ng.config"
     2.8 +    CT_DoExecLog DEBUG install -m 0755 "${CT_LIB_DIR}/scripts/toolchain-config.in" "${CT_PREFIX_DIR}/bin/${CT_TARGET}-ct-ng.config"
     2.9      bzip2 -c -9 .config >>"${CT_PREFIX_DIR}/bin/${CT_TARGET}-ct-ng.config"
    2.10  
    2.11      CT_DoStep EXTRA "Dumping internal crosstool-NG configuration"
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/scripts/toolchain-config.in	Thu Dec 11 18:21:18 2008 +0000
     3.3 @@ -0,0 +1,8 @@
     3.4 +#!/bin/sh
     3.5 +
     3.6 +SKIP_ME="### CT_NG SKIP ME ###"
     3.7 +skip_me=$(($(cat "${0}" |grep --binary-files=text -o -b -E "^${SKIP_ME}$" |cut -d : -f 1)+${#SKIP_ME}+1))
     3.8 +dd if="${0}" bs=${skip_me} skip=1 2>/dev/null |bzcat
     3.9 +exit 0
    3.10 +
    3.11 +### CT_NG SKIP ME ###
     4.1 --- a/tools/toolchain-config.in	Thu Dec 11 18:16:54 2008 +0000
     4.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.3 @@ -1,8 +0,0 @@
     4.4 -#!/bin/sh
     4.5 -
     4.6 -SKIP_ME="### CT_NG SKIP ME ###"
     4.7 -skip_me=$(($(cat "${0}" |grep --binary-files=text -o -b -E "^${SKIP_ME}$" |cut -d : -f 1)+${#SKIP_ME}+1))
     4.8 -dd if="${0}" bs=${skip_me} skip=1 2>/dev/null |bzcat
     4.9 -exit 0
    4.10 -
    4.11 -### CT_NG SKIP ME ###