summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-11-01 16:49:00 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-11-01 16:49:00 (GMT)
commit9c5fd0d3affd4d312d3deee4383b33268c41ad45 (patch)
tree2f70ba1bb02627301971ca31e0e50c72571191f5 /scripts
parentea9b9ea07b96f9b9df767dc2a38141327045dfc1 (diff)
Eyecandy in the WiKi table.
/trunk/scripts/showSamples.sh | 20 12 8 0 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-)
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/showSamples.sh20
1 files changed, 12 insertions, 8 deletions
diff --git a/scripts/showSamples.sh b/scripts/showSamples.sh
index 4503db5..6a847a1 100755
--- a/scripts/showSamples.sh
+++ b/scripts/showSamples.sh
@@ -61,18 +61,22 @@ dump_single_sample() {
[ "${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// "
- else
- printf "| ${CT_KERNEL_VERSION} "
+ printf "| ''${CT_KERNEL}'' |"
+ if [ "${CT_KERNEL}" != "bare-metal" ];then
+ if [ "${CT_KERNEL_LINUX_HEADERS_USE_CUSTOM_DIR}" = "y" ]; then
+ printf " //custom// "
+ else
+ printf " ${CT_KERNEL_VERSION} "
+ fi
fi
printf "| ${CT_BINUTILS_VERSION} "
printf "| ''${CT_CC}'' "
printf "| ${CT_CC_VERSION} "
- printf "| ''${CT_LIBC}'' "
- printf "| ${CT_LIBC_VERSION} "
- printf "| ${CT_THREADS_NPTL:+NPTL}${CT_THREADS_LINUXTHREADS:+linuxthreads}${CT_THREADS_NONE:+none} "
+ printf "| ''${CT_LIBC}'' |"
+ if [ "${CT_LIBC}" != "none" ]; then
+ printf " ${CT_LIBC_VERSION} "
+ fi
+ printf "| ${CT_THREADS:-none} "
printf "| ${CT_ARCH_FLOAT_HW:+hard}${CT_ARCH_FLOAT_SW:+soft} float "
printf "| C"
[ "${CT_CC_LANG_CXX}" = "y" ] && printf ", C++"