Changeset 35c1f65 in rtems-graphics-toolkit
- Timestamp:
- 01/08/10 18:56:10 (13 years ago)
- Branches:
- master
- Children:
- 2102179
- Parents:
- 8c14de8
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r8c14de8 r35c1f65 1 2010-01-08 Joel Sherrill <joel.sherrill@oarcorp.com> 2 3 * do_it: Detect BSP and be able to turn on/off specific features. 4 Also print help even if RTEMS_MAKEFILE_PATH not set. 5 1 6 2010-01-08 Joel Sherrill <joel.sherrill@oarcorp.com> 2 7 -
do_it
r8c14de8 r35c1f65 11 11 if [ ! -r ${vfile} ] ; then 12 12 echo VERSIONS file not found 13 exit 114 fi15 16 if [ X${RTEMS_MAKEFILE_PATH} = X ] ; then17 echo RTEMS_MAKEFILE_PATH not set18 13 exit 1 19 14 fi … … 59 54 + Use of each option toggles the setting. For example, \"-v -v -A -1\" 60 55 results in verbose=no and all steps done except Type 1 fonts. 56 + RTEMS_MAKEFILE_PATH must be set 61 57 EOF 62 58 } … … 106 102 done 107 103 108 ########################### Grab CPU/BSP ###########################109 110 104 shiftcount=`expr $OPTIND - 1` 111 105 shift $shiftcount 112 113 cpu=${1}114 bsp=${2}115 116 case ${cpu} in117 m32c)118 do_ada=no119 do_cxx=no120 run_acats=no121 echo M32C does not support C++ or Ada122 ;;123 *);;124 esac125 106 126 107 if [ ${verbose} = yes ] ; then … … 139 120 fi 140 121 122 ######### START OF Consistency checks 123 124 if [ X${RTEMS_MAKEFILE_PATH} = X ] ; then 125 echo RTEMS_MAKEFILE_PATH not set 126 exit 1 127 fi 128 141 129 test -d ${LIBJPEG} 142 130 check_status $? "${LIBJPEG} not present" … … 167 155 fi 168 156 157 case ${BSP} in 158 pc386) ;; # can be used to turn on detect svgalib supportable on this BSP 159 *) 160 esac 169 161 170 162 ######### Log Directory
Note: See TracChangeset
for help on using the changeset viewer.