ct-ng.comp
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jan 03 17:36:54 2010 +0100 (2010-01-03)
changeset 1681 cc8ac5ca65aa
parent 1025 fc64f85e41cc
child 1683 09ae4c09ba83
permissions -rw-r--r--
samples: add a new samples for the TI DaVinci processors.

Dragan Marinkovic <marinkovic.dragan@gmail.com> wrote:
I finally had the time (and board) to spend some time with
crosstool-NG version 1.5.2 and TMS320DM6446 (DaVinci Digital Media
System-on-Chip,
http://focus.ti.com/docs/prod/folders/print/tms320dm6446.html).

I was able to successfully build and run v2.6.27-davinci1 kernel
(Kevin Hilman's branch) with busybox based initramfs on it. I don't
believe that any later kernel would represent any challenge (it just
happens that I'm currently working with this version). What a thrill
:).

crosstool-NG/toolchain config is attached. It may be useful to someone
using crosstool-NG ...
     1 # To be sourced
     2 
     3 _ct-ng () {
     4     local cur prev samples show_samples actions steps start_steps stop_steps ct_ng_opts vars
     5     COMPREPLY=()
     6     cur=$(_get_cword)
     7     prev=${COMP_WORDS[COMP_CWORD-1]}
     8 
     9     samples=$(${COMP_WORDS[0]} list-samples 2>/dev/null)
    10     show_samples=$(echo "${samples}" |sed -r -e 's/(^| )/\1show-/g;')
    11     build_samples=$(echo "${samples}" |sed -r -e 's/(^| )/\1build-/g;')
    12 
    13     steps=$(${COMP_WORDS[0]} list-steps 2>/dev/null |awk '$1 == "-" { print $2; }')
    14     start_steps=$(echo "${steps}" |sed -r -e 's/($| )/\1+/;')
    15     stop_steps=$(echo "${steps}" |sed -r -e 's/(^| )/+\1/;')
    16 
    17     actions='help menuconfig oldconfig saveconfig
    18              build build. build-all build-all.
    19              list-samples list-steps show-tuple
    20              clean distclean wiki-samples updatetools
    21              tarball version'
    22 
    23     vars="RESTART= STOP="
    24 
    25     ct_ng_opts="${samples} ${show_samples} ${build_samples}
    26                 ${steps} ${start_steps} ${stop_steps}
    27                 ${actions} ${vars}"
    28 
    29     COMPREPLY=($(compgen -W "${ct_ng_opts}" -- "${cur}"))
    30     return 0
    31 }
    32 complete -F _ct-ng ct-ng