summaryrefslogtreecommitdiff
path: root/rtems
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-09-11 14:53:06 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-09-11 14:53:06 +0000
commit486e255117d901342f1bc0aa5d33c41c7638a072 (patch)
treefcb6146dba33da029f4d04866fce4ae13e2c8f2a /rtems
parent62df6c560eab1508e7baf5a767918154b745b97d (diff)
2009-09-11 Joel Sherrill <joel.sherrill@oarcorp.com>
* bit_all_confs: Update script.
Diffstat (limited to 'rtems')
-rw-r--r--rtems/ChangeLog4
-rwxr-xr-xrtems/bit_all_confs14
2 files changed, 8 insertions, 10 deletions
diff --git a/rtems/ChangeLog b/rtems/ChangeLog
index fa74880..11d71bb 100644
--- a/rtems/ChangeLog
+++ b/rtems/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-11 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * bit_all_confs: Update script.
+
2009-09-08 Joel Sherrill <joel.sherrill@OARcorp.com>
* bit_all: Add lm32 to list of all.
diff --git a/rtems/bit_all_confs b/rtems/bit_all_confs
index 4205064..a0265e2 100755
--- a/rtems/bit_all_confs
+++ b/rtems/bit_all_confs
@@ -11,9 +11,7 @@ fix_usercfg()
posix_f=$3
cxx_f=$4
itron_f=$5
- rdbg_f=$6
- mp_f=$7
- inlines_f=$7
+ mp_f=$6
cp user.cfg user.cfg.back
@@ -22,9 +20,7 @@ fix_usercfg()
-e "s/ENABLE_RTEMS_POSIX=.*$/ENABLE_RTEMS_POSIX=${posix_f}/" \
-e "s/ENABLE_RTEMS_CXX=.*$/ENABLE_RTEMS_CXX=${cxx_f}/" \
-e "s/ENABLE_RTEMS_ITRON=.*$/ENABLE_RTEMS_ITRON=${itron_f}/" \
- -e "s/ENABLE_RTEMS_RDBG=.*$/ENABLE_RTEMS_RDBG=${rdbg_f}/" \
-e "s/ENABLE_RTEMS_MP=.*$/ENABLE_RTEMS_MP=${mp_f}/" \
- -e "s/DISABLE_INLINES=.*$/DISABLE_INLINES=${inlines_f}/" \
<user.cfg.back >user.cfg
}
@@ -40,11 +36,10 @@ start=`date`
for test_l in samples ; do # note yes is left out
for tcpip_l in no yes ; do
for posix_l in no yes ; do
-for itron_l in no yes ; do
for cxx_l in no yes ; do
-for rdbg_l in no yes ; do
+for itron_l in no ; do # note yes is left out
for mp_l in no yes ; do
- fix_usercfg $test_l $tcpip_l $posix_l $cxx_l $itron_l $rdbg_l $mp_l $inlines_l
+ fix_usercfg $test_l $tcpip_l $posix_l $cxx_l $itron_l $mp_l
echo
echo ===============================================
echo
@@ -53,13 +48,12 @@ for mp_l in no yes ; do
echo
outf="log/ALLCONFS-${target}-${bsp}"
outf="${outf}-${test_l}_tests-${tcpip_l}net-${posix_l}posix"
- outf="${outf}-${itron_l}itron-${cxx_l}cxx-${rdbg_l}rdbg"
+ outf="${outf}-${itron_l}itron-${cxx_l}cxx"
outf="${outf}-${mp_l}mp"
outf=`echo ${outf} | sed -e 's/yes//g'`
echo "./bit_rtems ${target} ${bsp} >${outf} 2>&1"
./bit_rtems ${target} ${bsp} >${outf} 2>&1
done # mp
-done # rdbg
done # cxx
done # itron
done # posix