Changeset 48971e5e in rtems
- Timestamp:
- 01/23/98 17:06:36 (25 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 2936b425
- Parents:
- bd620fe
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/score/tools/generic/size_rtems.in
rbd620fe r48971e5e 35 35 fi 36 36 37 bsp=$1 38 board=$1 39 37 40 cpu=`echo $target | sed -e 's/-.*//'` 38 case $cpu in 39 hppa1.1) rtems_cpu=hppa1_1 ;; 40 powerpc) rtems_cpu=ppc ;; 41 *) rtems_cpu=$cpu ;; 41 42 echo $target 43 case $target in 44 sparc-sun-solaris*) 45 rtems_cpu=unix 46 bsp=solaris2 47 ;; 48 i[3456]86-pc-linux-gnu) 49 echo linux 50 rtems_cpu=unix 51 bsp=linux1 52 ;; 53 *-rtems*) 54 cpu=`echo $target | sed -e 's/-.*//'` 55 case $cpu in 56 hppa1.1) rtems_cpu=hppa1_1 ;; 57 powerpc) rtems_cpu=ppc ;; 58 *) rtems_cpu=$cpu ;; 59 esac 60 ;; 61 *) 62 echo unknown target $target 63 exit 1 64 ;; 42 65 esac 43 bsp=$1 44 45 echo 46 echo Generating sizes for CPU ${cpu} on board ${bsp} 66 67 echo 68 echo Generating sizes for CPU ${cpu} on board ${board} 47 69 echo 48 70 … … 60 82 fi 61 83 62 if [ ! -d ${b sp} ] ; then63 echo "${b sp} does not exist ... is the current directory the build directory?"84 if [ ! -d ${board} ] ; then 85 echo "${board} does not exist ... is the current directory the build directory?" 64 86 exit 1 65 87 fi … … 70 92 RTEMSOBJ=c/src/exec/rtems/src/o-${bsp} 71 93 SAPIOBJ=c/src/exec/sapi/src/o-${bsp} 72 OPTOBJ=${b sp}/lib94 OPTOBJ=${board}/lib 73 95 74 96 MANLIST=" \ -
tools/cpu/generic/size_rtems.in
rbd620fe r48971e5e 35 35 fi 36 36 37 bsp=$1 38 board=$1 39 37 40 cpu=`echo $target | sed -e 's/-.*//'` 38 case $cpu in 39 hppa1.1) rtems_cpu=hppa1_1 ;; 40 powerpc) rtems_cpu=ppc ;; 41 *) rtems_cpu=$cpu ;; 41 42 echo $target 43 case $target in 44 sparc-sun-solaris*) 45 rtems_cpu=unix 46 bsp=solaris2 47 ;; 48 i[3456]86-pc-linux-gnu) 49 echo linux 50 rtems_cpu=unix 51 bsp=linux1 52 ;; 53 *-rtems*) 54 cpu=`echo $target | sed -e 's/-.*//'` 55 case $cpu in 56 hppa1.1) rtems_cpu=hppa1_1 ;; 57 powerpc) rtems_cpu=ppc ;; 58 *) rtems_cpu=$cpu ;; 59 esac 60 ;; 61 *) 62 echo unknown target $target 63 exit 1 64 ;; 42 65 esac 43 bsp=$1 44 45 echo 46 echo Generating sizes for CPU ${cpu} on board ${bsp} 66 67 echo 68 echo Generating sizes for CPU ${cpu} on board ${board} 47 69 echo 48 70 … … 60 82 fi 61 83 62 if [ ! -d ${b sp} ] ; then63 echo "${b sp} does not exist ... is the current directory the build directory?"84 if [ ! -d ${board} ] ; then 85 echo "${board} does not exist ... is the current directory the build directory?" 64 86 exit 1 65 87 fi … … 70 92 RTEMSOBJ=c/src/exec/rtems/src/o-${bsp} 71 93 SAPIOBJ=c/src/exec/sapi/src/o-${bsp} 72 OPTOBJ=${b sp}/lib94 OPTOBJ=${board}/lib 73 95 74 96 MANLIST=" \
Note: See TracChangeset
for help on using the changeset viewer.