summaryrefslogtreecommitdiffstats
path: root/scripts/mkgdbspec
blob: 29a715ab4721edb5c317ddd1fd90fff16c5763a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/bin/sh 
#
#  Usage: mktoolspec CPU
#

RTEMS_DIR=`dirname $0`

target_alias=$1

# RPM release number
rpm_release=0

# gdb version number
gdb_version=4.18
gdb_patch_version=19991015

# Some linux distributions use /usr/src/packages
# redhat uses /usr/src/redhat
# others might use /usr/src
if test -d /usr/src/packages/SPECS; 
then
dst=/usr/src/packages/SPECS;
elif test -d /usr/src/redhat/SPECS;
 then
dst=/usr/src/redhat/SPECS;
elif test -d /usr/src/SPECS/; 
then
dst=/usr/src/SPECS;
fi

specfile=${dst}/$target_alias-gdb-${gdb_version}.spec

sed -e "s%@Release@%${rpm_release}%g" \
    -e "s%@target_alias@%${target_alias}%g" \
    -e "s%@gdb_version@%${gdb_version}%g" \
    -e "s%@gdb_patch_version@%${gdb_patch_version}%g" \
< ${RTEMS_DIR}/gdb.spec.in \
> ${specfile}

case ${target} in
  powerpc*)
     echo "/opt/rtems/bin/@target_alias@-run" 
     ;;
  sparc*)
     echo "/opt/rtems/bin/@target_alias@-run" 
     echo "/opt/rtems/bin/@target_alias@-sis" 
     ;;
  *) ;;
esac >> ${specfile}

echo Generated ${specfile}.