summaryrefslogtreecommitdiffstats
path: root/aclocal
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-01-10 20:56:35 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-01-10 20:56:35 +0000
commit6d3ab0ffdcf4f6e2a338233021658ff83880cbec (patch)
treefad785fc1cdad56487eea123beea01bab1184e55 /aclocal
parentRemoved warning by changing %eax -> %ax as source of move to segment (diff)
downloadrtems-6d3ab0ffdcf4f6e2a338233021658ff83880cbec.tar.bz2
Added pc486 and pc586 as aliases of pc386 with proper cpu flags.
Diffstat (limited to 'aclocal')
-rw-r--r--aclocal/bsp-alias.m43
-rw-r--r--aclocal/check-bsps.m48
2 files changed, 8 insertions, 3 deletions
diff --git a/aclocal/bsp-alias.m4 b/aclocal/bsp-alias.m4
index 97006e308c..19a199c4af 100644
--- a/aclocal/bsp-alias.m4
+++ b/aclocal/bsp-alias.m4
@@ -14,6 +14,9 @@ AC_DEFUN(RTEMS_BSP_ALIAS,
gen68360_040) $2=gen68360 ;; # m68k - 68360 in companion mode
p4600) $2=p4000 ;; # mips64orion - p4000 board w/IDT 4600
p4650) $2=p4000 ;; # mips64orion - p4000 board w/IDT 4650
+ pc486) $2=pc386 ;; # i386 - PC with i486DX
+ pc586) $2=pc386 ;; # i386 - PC with Pentium
+ pc686) $2=pc386 ;; # i386 - PC with PentiumPro
*) $2=$1;;
esac
])
diff --git a/aclocal/check-bsps.m4 b/aclocal/check-bsps.m4
index 3e368db222..081bd57b95 100644
--- a/aclocal/check-bsps.m4
+++ b/aclocal/check-bsps.m4
@@ -20,9 +20,11 @@ AC_MSG_CHECKING([for bsps])
ac*);;
config*);;
# Now account for BSPs with build variants
- gen68360) rtems_bsp="$rtems_bsp gen68360 gen68360_040";;
- p4000) rtems_bsp="$rtems_bsp p4600 p4650";;
- mvme162) rtems_bsp="$rtems_bsp mvme162 mvme162lx";;
+ gen68360) rtems_bsp="$rtems_bsp gen68360 gen68360_040";;
+ p4000) rtems_bsp="$rtems_bsp p4600 p4650";;
+ mvme162) rtems_bsp="$rtems_bsp mvme162 mvme162lx";;
+ motorola_powerpc) rtems_bsp="$rtems_bsp mvme2307 mcp750";;
+ pc386) rtems_bsp="$rtems_bsp pc386 pc486 pc585 pc686";;
*) $1="[$]$1 $file";;
esac;
done