diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-09-04 15:42:25 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-09-04 15:42:25 +0000 |
commit | fa8b6c8ffd45869fb0b7189e8d92cb149a208a89 (patch) | |
tree | 9fd56105847810c48f6237b717f1973bbbd34a10 /scripts/showSamples.sh | |
parent | a854ef6eb5a949f95f3ae66357e43240c8bf45ea (diff) | |
download | crosstool-ng-fa8b6c8ffd45869fb0b7189e8d92cb149a208a89.tar.gz crosstool-ng-fa8b6c8ffd45869fb0b7189e8d92cb149a208a89.tar.bz2 crosstool-ng-fa8b6c8ffd45869fb0b7189e8d92cb149a208a89.zip |
Dump the EXPERIMENTAL status and brokenness of samples in the WiKi table.
/trunk/scripts/showSamples.sh | 9 7 2 0 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
Diffstat (limited to 'scripts/showSamples.sh')
-rwxr-xr-x | scripts/showSamples.sh | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/scripts/showSamples.sh b/scripts/showSamples.sh index 8b1b3b8f..eab9edfa 100755 --- a/scripts/showSamples.sh +++ b/scripts/showSamples.sh @@ -57,6 +57,10 @@ dump_single_sample() { fi else printf "| ''${sample}'' " + printf "| " + [ "${CT_EXPERIMENTAL}" = "y" ] && printf "X" + [ -f "${sample_top}/samples/${sample}/broken" ] && printf "B" + printf ' ' printf "| ''${CT_KERNEL}'' " if [ "${CT_KERNEL_LINUX_HEADERS_USE_CUSTOM_DIR}" = "y" ]; then printf "| //custom// " @@ -109,8 +113,9 @@ for sample in "${@}"; do done if [ "${opt}" = -w ]; then - echo "^ @@DATE@@ ^ ||||||||||||" + echo "^ @@DATE@@ ^ |||||||||||||" printf "^ Target " + printf "^ Status " printf "^ Kernel headers\\\\\\\\ version ^" printf "^ binutils version " printf "^ C compiler\\\\\\\\ version ^" @@ -128,7 +133,7 @@ for sample in "${@}"; do done if [ "${opt}" = -w ]; then - printf "^ Total: ${#@} samples | ||||||||||||" + printf "^ Total: ${#@} samples | ''X'': sample uses features marked as being EXPERIMENTAL.\\\\\\\\ ''B'': Samples is curently BROKEN. |||||||||||||" echo "" elif [ -z "${opt}" ]; then echo ' l (local) : sample was found in current directory' |